Codota Logo
UpdateGroupRequest.groupName
Code IndexAdd Codota to your IDE (free)

How to use
groupName
method
in
software.amazon.awssdk.services.cognitoidentityprovider.model.UpdateGroupRequest

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.UpdateGroupRequest.groupName (Showing top 9 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "GroupName":
    return Optional.ofNullable(clazz.cast(groupName()));
  case "UserPoolId":
    return Optional.ofNullable(clazz.cast(userPoolId()));
  case "Description":
    return Optional.ofNullable(clazz.cast(description()));
  case "RoleArn":
    return Optional.ofNullable(clazz.cast(roleArn()));
  case "Precedence":
    return Optional.ofNullable(clazz.cast(precedence()));
  default:
    return Optional.empty();
  }
}
origin: aws/aws-sdk-java-v2

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 */
@Override
public String toString() {
  return ToString.builder("UpdateGroupRequest").add("GroupName", groupName()).add("UserPoolId", userPoolId())
      .add("Description", description()).add("RoleArn", roleArn()).add("Precedence", precedence()).build();
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("UpdateGroupRequest").add("GroupName", groupName()).add("UserPoolId", userPoolId())
      .add("Description", description()).add("RoleArn", roleArn()).add("Precedence", precedence()).build();
}
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(groupName());
  hashCode = 31 * hashCode + Objects.hashCode(userPoolId());
  hashCode = 31 * hashCode + Objects.hashCode(description());
  hashCode = 31 * hashCode + Objects.hashCode(roleArn());
  hashCode = 31 * hashCode + Objects.hashCode(precedence());
  return hashCode;
}
origin: software.amazon.awssdk/cognitoidp

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "GroupName":
    return Optional.ofNullable(clazz.cast(groupName()));
  case "UserPoolId":
    return Optional.ofNullable(clazz.cast(userPoolId()));
  case "Description":
    return Optional.ofNullable(clazz.cast(description()));
  case "RoleArn":
    return Optional.ofNullable(clazz.cast(roleArn()));
  case "Precedence":
    return Optional.ofNullable(clazz.cast(precedence()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(groupName());
  hashCode = 31 * hashCode + Objects.hashCode(userPoolId());
  hashCode = 31 * hashCode + Objects.hashCode(description());
  hashCode = 31 * hashCode + Objects.hashCode(roleArn());
  hashCode = 31 * hashCode + Objects.hashCode(precedence());
  return hashCode;
}
origin: aws/aws-sdk-java-v2

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof UpdateGroupRequest)) {
    return false;
  }
  UpdateGroupRequest other = (UpdateGroupRequest) obj;
  return Objects.equals(groupName(), other.groupName()) && Objects.equals(userPoolId(), other.userPoolId())
      && Objects.equals(description(), other.description()) && Objects.equals(roleArn(), other.roleArn())
      && Objects.equals(precedence(), other.precedence());
}
origin: software.amazon.awssdk/cognitoidp

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof UpdateGroupRequest)) {
    return false;
  }
  UpdateGroupRequest other = (UpdateGroupRequest) obj;
  return Objects.equals(groupName(), other.groupName()) && Objects.equals(userPoolId(), other.userPoolId())
      && Objects.equals(description(), other.description()) && Objects.equals(roleArn(), other.roleArn())
      && Objects.equals(precedence(), other.precedence());
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(UpdateGroupRequest updateGroupRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(updateGroupRequest, "updateGroupRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(updateGroupRequest.groupName(), GROUPNAME_BINDING);
      protocolMarshaller.marshall(updateGroupRequest.userPoolId(), USERPOOLID_BINDING);
      protocolMarshaller.marshall(updateGroupRequest.description(), DESCRIPTION_BINDING);
      protocolMarshaller.marshall(updateGroupRequest.roleArn(), ROLEARN_BINDING);
      protocolMarshaller.marshall(updateGroupRequest.precedence(), PRECEDENCE_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelUpdateGroupRequestgroupName

Javadoc

The name of the group.

Popular methods of UpdateGroupRequest

  • <init>
  • builder
  • description
    A string containing the new description of the group.
  • precedence
    The new precedence value for the group. For more information about this parameter, see CreateGroup
  • roleArn
    The new role ARN for the group. This is used for setting the cognito:roles and cognito:preferred_ro
  • userPoolId
    The user pool ID for the user pool.

Popular in Java

  • Reactive rest calls using spring rest template
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • StringTokenizer (java.util)
    The string tokenizer class allows an application to break a string into tokens. The tokenization met
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now