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

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

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

origin: software.amazon.awssdk/cognitoidp

@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()).build();
}
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: software.amazon.awssdk/cognitoidp

@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());
  return hashCode;
}
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 "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()));
  default:
    return Optional.empty();
  }
}
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());
}
origin: software.amazon.awssdk/cognitoidp

@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());
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(DomainDescriptionType domainDescriptionType, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(domainDescriptionType, "domainDescriptionType");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(domainDescriptionType.userPoolId(), USERPOOLID_BINDING);
      protocolMarshaller.marshall(domainDescriptionType.awsAccountId(), AWSACCOUNTID_BINDING);
      protocolMarshaller.marshall(domainDescriptionType.domain(), DOMAIN_BINDING);
      protocolMarshaller.marshall(domainDescriptionType.s3Bucket(), S3BUCKET_BINDING);
      protocolMarshaller.marshall(domainDescriptionType.cloudFrontDistribution(), CLOUDFRONTDISTRIBUTION_BINDING);
      protocolMarshaller.marshall(domainDescriptionType.version(), VERSION_BINDING);
      protocolMarshaller.marshall(domainDescriptionType.statusAsString(), STATUS_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelDomainDescriptionTypes3Bucket

Javadoc

The S3 bucket where the static files for this domain are stored.

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.
  • 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.
  • customDomainConfig
    Returns the value of the CustomDomainConfig property for this object.

Popular in Java

  • Updating database using SQL prepared statement
  • getSystemService (Context)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Kernel (java.awt.image)
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • JList (javax.swing)
  • 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