Tabnine Logo
ListUsersInGroupRequest.limit
Code IndexAdd Tabnine to your IDE (free)

How to use
limit
method
in
software.amazon.awssdk.services.cognitoidentityprovider.model.ListUsersInGroupRequest

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

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("ListUsersInGroupRequest").add("UserPoolId", userPoolId()).add("GroupName", groupName())
      .add("Limit", limit()).add("NextToken", nextToken()).build();
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("ListUsersInGroupRequest").add("UserPoolId", userPoolId()).add("GroupName", groupName())
      .add("Limit", limit()).add("NextToken", nextToken()).build();
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPoolId":
    return Optional.ofNullable(clazz.cast(userPoolId()));
  case "GroupName":
    return Optional.ofNullable(clazz.cast(groupName()));
  case "Limit":
    return Optional.ofNullable(clazz.cast(limit()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPoolId":
    return Optional.ofNullable(clazz.cast(userPoolId()));
  case "GroupName":
    return Optional.ofNullable(clazz.cast(groupName()));
  case "Limit":
    return Optional.ofNullable(clazz.cast(limit()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  default:
    return Optional.empty();
  }
}
origin: aws/aws-sdk-java-v2

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

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

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListUsersInGroupRequest)) {
    return false;
  }
  ListUsersInGroupRequest other = (ListUsersInGroupRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(groupName(), other.groupName())
      && Objects.equals(limit(), other.limit()) && Objects.equals(nextToken(), other.nextToken());
}
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 ListUsersInGroupRequest)) {
    return false;
  }
  ListUsersInGroupRequest other = (ListUsersInGroupRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(groupName(), other.groupName())
      && Objects.equals(limit(), other.limit()) && Objects.equals(nextToken(), other.nextToken());
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(ListUsersInGroupRequest listUsersInGroupRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(listUsersInGroupRequest, "listUsersInGroupRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(listUsersInGroupRequest.userPoolId(), USERPOOLID_BINDING);
      protocolMarshaller.marshall(listUsersInGroupRequest.groupName(), GROUPNAME_BINDING);
      protocolMarshaller.marshall(listUsersInGroupRequest.limit(), LIMIT_BINDING);
      protocolMarshaller.marshall(listUsersInGroupRequest.nextToken(), NEXTTOKEN_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelListUsersInGroupRequestlimit

Javadoc

The limit of the request to list users.

Popular methods of ListUsersInGroupRequest

  • <init>
  • builder
  • groupName
    The name of the group.
  • nextToken
    An identifier that was returned from the previous call to this operation, which can be used to retu
  • userPoolId
    The user pool ID for the user pool.

Popular in Java

  • Reading from database using SQL prepared statement
  • getExternalFilesDir (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • getContentResolver (Context)
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Notification (javax.management)
  • JOptionPane (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now