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

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

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

origin: aws/aws-sdk-java-v2

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

return deleteUserPoolClient(DeleteUserPoolClientRequest.builder().applyMutation(deleteUserPoolClientRequest).build());
origin: aws/aws-sdk-java-v2

  InvalidParameterException, TooManyRequestsException, NotAuthorizedException, InternalErrorException,
  AwsServiceException, SdkClientException, CognitoIdentityProviderException {
return deleteUserPoolClient(DeleteUserPoolClientRequest.builder().applyMutation(deleteUserPoolClientRequest).build());
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: software.amazon.awssdk/cognitoidp

return deleteUserPoolClient(DeleteUserPoolClientRequest.builder().applyMutation(deleteUserPoolClientRequest).build());
origin: software.amazon.awssdk/cognitoidp

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

  InvalidParameterException, TooManyRequestsException, NotAuthorizedException, InternalErrorException,
  AwsServiceException, SdkClientException, CognitoIdentityProviderException {
return deleteUserPoolClient(DeleteUserPoolClientRequest.builder().applyMutation(deleteUserPoolClientRequest).build());
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: 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("DeleteUserPoolClientRequest").add("UserPoolId", userPoolId())
      .add("ClientId", clientId() == null ? null : "*** Sensitive Data Redacted ***").build();
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("DeleteUserPoolClientRequest").add("UserPoolId", userPoolId()).add("ClientId", clientId())
      .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: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(DeleteUserPoolClientRequest deleteUserPoolClientRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(deleteUserPoolClientRequest, "deleteUserPoolClientRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(deleteUserPoolClientRequest.userPoolId(), USERPOOLID_BINDING);
      protocolMarshaller.marshall(deleteUserPoolClientRequest.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.modelDeleteUserPoolClientRequest

Javadoc

Represents the request to delete a user pool client.

Most used methods

  • <init>
  • builder
  • clientId
    The app client ID of the app associated with the user pool.
  • userPoolId
    The user pool ID for the user pool where you want to delete the client.

Popular in Java

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • 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