congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DeleteUserPoolClientRequest.clientId
Code IndexAdd Tabnine to your IDE (free)

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

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

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

/**
 * 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: 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

@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("DeleteUserPoolClientRequest").add("UserPoolId", userPoolId()).add("ClientId", clientId())
      .build();
}
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 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

@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

  /**
   * 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.modelDeleteUserPoolClientRequestclientId

Javadoc

The app client ID of the app associated with the user pool.

Popular methods of DeleteUserPoolClientRequest

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

Popular in Java

  • Updating database using SQL prepared statement
  • getContentResolver (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • scheduleAtFixedRate (ScheduledExecutorService)
  • 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
  • Menu (java.awt)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now