Tabnine Logo
DescribeUserPoolRequest
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: software.amazon.awssdk/cognitoidp

  @Override
  public DescribeUserPoolRequest build() {
    return new DescribeUserPoolRequest(this);
  }
}
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 DescribeUserPoolRequest)) {
    return false;
  }
  DescribeUserPoolRequest other = (DescribeUserPoolRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId());
}
origin: aws/aws-sdk-java-v2

return describeUserPool(DescribeUserPoolRequest.builder().applyMutation(describeUserPoolRequest).build());
origin: software.amazon.awssdk/cognitoidp

return describeUserPool(DescribeUserPoolRequest.builder().applyMutation(describeUserPoolRequest).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 DescribeUserPoolRequest)) {
    return false;
  }
  DescribeUserPoolRequest other = (DescribeUserPoolRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId());
}
origin: aws/aws-sdk-java-v2

  UserPoolTaggingException, InternalErrorException, AwsServiceException, SdkClientException,
  CognitoIdentityProviderException {
return describeUserPool(DescribeUserPoolRequest.builder().applyMutation(describeUserPoolRequest).build());
origin: aws/aws-sdk-java-v2

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

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

  UserPoolTaggingException, InternalErrorException, AwsServiceException, SdkClientException,
  CognitoIdentityProviderException {
return describeUserPool(DescribeUserPoolRequest.builder().applyMutation(describeUserPoolRequest).build());
origin: software.amazon.awssdk/cognitoidp

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(userPoolId());
  return hashCode;
}
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()));
  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("DescribeUserPoolRequest").add("UserPoolId", userPoolId()).build();
}
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()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("DescribeUserPoolRequest").add("UserPoolId", userPoolId()).build();
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(DescribeUserPoolRequest describeUserPoolRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(describeUserPoolRequest, "describeUserPoolRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(describeUserPoolRequest.userPoolId(), USERPOOLID_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelDescribeUserPoolRequest

Javadoc

Represents the request to describe the user pool.

Most used methods

  • <init>
  • builder
  • userPoolId
    The user pool ID for the user pool you want to describe.

Popular in Java

  • Running tasks concurrently on multiple threads
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (Timer)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • From CI to AI: The AI layer in your organization
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