Tabnine Logo
DescribeUserPoolClientRequest.userPoolId
Code IndexAdd Tabnine to your IDE (free)

How to use
userPoolId
method
in
software.amazon.awssdk.services.cognitoidentityprovider.model.DescribeUserPoolClientRequest

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.DescribeUserPoolClientRequest.userPoolId (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("DescribeUserPoolClientRequest").add("UserPoolId", userPoolId())
      .add("ClientId", clientId() == null ? null : "*** Sensitive Data Redacted ***").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 "ClientId":
    return Optional.ofNullable(clazz.cast(clientId()));
  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 "ClientId":
    return Optional.ofNullable(clazz.cast(clientId()));
  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(clientId());
  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 DescribeUserPoolClientRequest)) {
    return false;
  }
  DescribeUserPoolClientRequest other = (DescribeUserPoolClientRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(clientId(), other.clientId());
}
origin: software.amazon.awssdk/cognitoidp

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

@Override
public String toString() {
  return ToString.builder("DescribeUserPoolClientRequest").add("UserPoolId", userPoolId()).add("ClientId", clientId())
      .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 DescribeUserPoolClientRequest)) {
    return false;
  }
  DescribeUserPoolClientRequest other = (DescribeUserPoolClientRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(clientId(), other.clientId());
}
origin: software.amazon.awssdk/cognitoidp

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

Javadoc

The user pool ID for the user pool you want to describe.

Popular methods of DescribeUserPoolClientRequest

  • <init>
  • builder
  • clientId
    The app client ID of the app associated with the user pool.

Popular in Java

  • Reactive rest calls using spring rest template
  • getExternalFilesDir (Context)
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top 12 Jupyter Notebook extensions
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