Codota Logo
DescribeUserPoolClientRequest.userPoolId
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
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

  • Running tasks concurrently on multiple threads
  • addToBackStack (FragmentTransaction)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • ObjectMapper (com.fasterxml.jackson.databind)
    This mapper (or, data binder, or codec) provides functionality for converting between Java objects (
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Kernel (java.awt.image)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
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