Struct rusoto_cognito_idp::DomainDescriptionType[][src]

pub struct DomainDescriptionType {
    pub aws_account_id: Option<String>,
    pub cloud_front_distribution: Option<String>,
    pub domain: Option<String>,
    pub s3_bucket: Option<String>,
    pub status: Option<String>,
    pub user_pool_id: Option<String>,
    pub version: Option<String>,
}

A container for information about a domain.

Fields

The AWS account ID for the user pool owner.

The ARN of the CloudFront distribution.

The domain string.

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

The domain status.

The user pool ID.

The app version.

Trait Implementations

impl Default for DomainDescriptionType
[src]

Returns the "default value" for a type. Read more

impl Debug for DomainDescriptionType
[src]

Formats the value using the given formatter. Read more

impl Clone for DomainDescriptionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DomainDescriptionType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations