Tabnine Logo
DomainDescriptionType.customDomainConfig
Code IndexAdd Tabnine to your IDE (free)

How to use
customDomainConfig
method
in
software.amazon.awssdk.services.cognitoidentityprovider.model.DomainDescriptionType

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

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("DomainDescriptionType").add("UserPoolId", userPoolId()).add("AWSAccountId", awsAccountId())
      .add("Domain", domain()).add("S3Bucket", s3Bucket()).add("CloudFrontDistribution", cloudFrontDistribution())
      .add("Version", version()).add("Status", statusAsString()).add("CustomDomainConfig", customDomainConfig())
      .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(awsAccountId());
  hashCode = 31 * hashCode + Objects.hashCode(domain());
  hashCode = 31 * hashCode + Objects.hashCode(s3Bucket());
  hashCode = 31 * hashCode + Objects.hashCode(cloudFrontDistribution());
  hashCode = 31 * hashCode + Objects.hashCode(version());
  hashCode = 31 * hashCode + Objects.hashCode(statusAsString());
  hashCode = 31 * hashCode + Objects.hashCode(customDomainConfig());
  return hashCode;
}
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 "AWSAccountId":
    return Optional.ofNullable(clazz.cast(awsAccountId()));
  case "Domain":
    return Optional.ofNullable(clazz.cast(domain()));
  case "S3Bucket":
    return Optional.ofNullable(clazz.cast(s3Bucket()));
  case "CloudFrontDistribution":
    return Optional.ofNullable(clazz.cast(cloudFrontDistribution()));
  case "Version":
    return Optional.ofNullable(clazz.cast(version()));
  case "Status":
    return Optional.ofNullable(clazz.cast(statusAsString()));
  case "CustomDomainConfig":
    return Optional.ofNullable(clazz.cast(customDomainConfig()));
  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 DomainDescriptionType)) {
    return false;
  }
  DomainDescriptionType other = (DomainDescriptionType) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(awsAccountId(), other.awsAccountId())
      && Objects.equals(domain(), other.domain()) && Objects.equals(s3Bucket(), other.s3Bucket())
      && Objects.equals(cloudFrontDistribution(), other.cloudFrontDistribution())
      && Objects.equals(version(), other.version()) && Objects.equals(statusAsString(), other.statusAsString())
      && Objects.equals(customDomainConfig(), other.customDomainConfig());
}
software.amazon.awssdk.services.cognitoidentityprovider.modelDomainDescriptionTypecustomDomainConfig

Javadoc

Returns the value of the CustomDomainConfig property for this object.

Popular methods of DomainDescriptionType

  • <init>
  • awsAccountId
    The AWS account ID for the user pool owner.
  • builder
  • cloudFrontDistribution
    The ARN of the CloudFront distribution.
  • domain
    The domain string.
  • s3Bucket
    The S3 bucket where the static files for this domain are stored.
  • statusAsString
    The domain status. If the service returns an enum value that is not available in the current SDK
  • toBuilder
  • userPoolId
    The user pool ID.
  • version
    The app version.

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • getExternalFilesDir (Context)
  • runOnUiThread (Activity)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Reference (javax.naming)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • 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