congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
ListUserPoolClientsRequest
Code IndexAdd Tabnine to your IDE (free)

How to use
ListUserPoolClientsRequest
in
software.amazon.awssdk.services.cognitoidentityprovider.model

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

origin: aws/aws-sdk-java-v2

@Override
public ListUserPoolClientsRequest build() {
  return new ListUserPoolClientsRequest(this);
}
origin: aws/aws-sdk-java-v2

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

  ResourceNotFoundException, TooManyRequestsException, NotAuthorizedException, InternalErrorException,
  AwsServiceException, SdkClientException, CognitoIdentityProviderException {
return listUserPoolClients(ListUserPoolClientsRequest.builder().applyMutation(listUserPoolClientsRequest).build());
origin: aws/aws-sdk-java-v2

return listUserPoolClients(ListUserPoolClientsRequest.builder().applyMutation(listUserPoolClientsRequest).build());
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 ListUserPoolClientsRequest)) {
    return false;
  }
  ListUserPoolClientsRequest other = (ListUserPoolClientsRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(maxResults(), other.maxResults())
      && Objects.equals(nextToken(), other.nextToken());
}
origin: software.amazon.awssdk/cognitoidp

  ResourceNotFoundException, TooManyRequestsException, NotAuthorizedException, InternalErrorException,
  AwsServiceException, SdkClientException, CognitoIdentityProviderException {
return listUserPoolClients(ListUserPoolClientsRequest.builder().applyMutation(listUserPoolClientsRequest).build());
origin: software.amazon.awssdk/cognitoidp

  @Override
  public ListUserPoolClientsRequest build() {
    return new ListUserPoolClientsRequest(this);
  }
}
origin: software.amazon.awssdk/cognitoidp

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

return listUserPoolClients(ListUserPoolClientsRequest.builder().applyMutation(listUserPoolClientsRequest).build());
origin: software.amazon.awssdk/cognitoidp

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListUserPoolClientsRequest)) {
    return false;
  }
  ListUserPoolClientsRequest other = (ListUserPoolClientsRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(maxResults(), other.maxResults())
      && Objects.equals(nextToken(), other.nextToken());
}
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("ListUserPoolClientsRequest").add("UserPoolId", userPoolId()).add("MaxResults", maxResults())
      .add("NextToken", nextToken()).build();
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("ListUserPoolClientsRequest").add("UserPoolId", userPoolId()).add("MaxResults", maxResults())
      .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 "MaxResults":
    return Optional.ofNullable(clazz.cast(maxResults()));
  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 "MaxResults":
    return Optional.ofNullable(clazz.cast(maxResults()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(ListUserPoolClientsRequest listUserPoolClientsRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(listUserPoolClientsRequest, "listUserPoolClientsRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(listUserPoolClientsRequest.userPoolId(), USERPOOLID_BINDING);
      protocolMarshaller.marshall(listUserPoolClientsRequest.maxResults(), MAXRESULTS_BINDING);
      protocolMarshaller.marshall(listUserPoolClientsRequest.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.modelListUserPoolClientsRequest

Javadoc

Represents the request to list the user pool clients.

Most used methods

  • <init>
  • builder
  • maxResults
    The maximum number of results you want the request to return when listing the user pool clients.
  • 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 where you want to list user pool clients.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • runOnUiThread (Activity)
  • getExternalFilesDir (Context)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • BoxLayout (javax.swing)
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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