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

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

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

origin: software.amazon.awssdk/cognitoidp

  @Override
  public ListUserPoolsResponse build() {
    return new ListUserPoolsResponse(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 ListUserPoolsResponse)) {
    return false;
  }
  ListUserPoolsResponse other = (ListUserPoolsResponse) obj;
  return Objects.equals(userPools(), other.userPools()) && Objects.equals(nextToken(), other.nextToken());
}
origin: software.amazon.awssdk/cognitoidp

public ListUserPoolsResponse unmarshall(JsonUnmarshallerContext context) throws Exception {
  ListUserPoolsResponse.Builder listUserPoolsResponseBuilder = ListUserPoolsResponse.builder();
origin: aws/aws-sdk-java-v2

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

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

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof ListUserPoolsResponse)) {
    return false;
  }
  ListUserPoolsResponse other = (ListUserPoolsResponse) obj;
  return Objects.equals(userPools(), other.userPools()) && Objects.equals(nextToken(), other.nextToken());
}
origin: software.amazon.awssdk/cognitoidp

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(userPools());
  hashCode = 31 * hashCode + Objects.hashCode(nextToken());
  return hashCode;
}
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("ListUserPoolsResponse").add("UserPools", userPools()).add("NextToken", nextToken()).build();
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPools":
    return Optional.ofNullable(clazz.cast(userPools()));
  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 "UserPools":
    return Optional.ofNullable(clazz.cast(userPools()));
  case "NextToken":
    return Optional.ofNullable(clazz.cast(nextToken()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("ListUserPoolsResponse").add("UserPools", userPools()).add("NextToken", nextToken()).build();
}
software.amazon.awssdk.services.cognitoidentityprovider.modelListUserPoolsResponse

Javadoc

Represents the response to list user pools.

Most used methods

  • <init>
  • nextToken
    An identifier that was returned from the previous call to this operation, which can be used to retu
  • userPools
    The user pools from the response to list users. Attempts to modify the collection returned by thi
  • builder

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • setRequestProperty (URLConnection)
  • startActivity (Activity)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Github Copilot alternatives
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