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

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

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

origin: aws/aws-sdk-java-v2

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

return deleteUserPool(DeleteUserPoolRequest.builder().applyMutation(deleteUserPoolRequest).build());
origin: software.amazon.awssdk/cognitoidp

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

  UserImportInProgressException, InternalErrorException, AwsServiceException, SdkClientException,
  CognitoIdentityProviderException {
return deleteUserPool(DeleteUserPoolRequest.builder().applyMutation(deleteUserPoolRequest).build());
origin: software.amazon.awssdk/cognitoidp

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

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

  UserImportInProgressException, InternalErrorException, AwsServiceException, SdkClientException,
  CognitoIdentityProviderException {
return deleteUserPool(DeleteUserPoolRequest.builder().applyMutation(deleteUserPoolRequest).build());
origin: aws/aws-sdk-java-v2

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

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

  /**
   * Marshall the given parameter object
   */
  public void marshall(DeleteUserPoolRequest deleteUserPoolRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(deleteUserPoolRequest, "deleteUserPoolRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(deleteUserPoolRequest.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.modelDeleteUserPoolRequest

Javadoc

Represents the request to delete a user pool.

Most used methods

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

Popular in Java

  • Making http requests using okhttp
  • getExternalFilesDir (Context)
  • onRequestPermissionsResult (Fragment)
  • getContentResolver (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Option (scala)
  • Best plugins for Eclipse
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