Struct rusoto_cloudfront::Distribution [] [src]

pub struct Distribution {
    pub arn: String,
    pub active_trusted_signers: ActiveTrustedSigners,
    pub distribution_config: DistributionConfig,
    pub domain_name: String,
    pub id: String,
    pub in_progress_invalidation_batches: i64,
    pub last_modified_time: String,
    pub status: String,
}

The distribution's information.

Fields

The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, where 123456789012 is your AWS account ID.

CloudFront automatically adds this element to the response only if you've set up the distribution to serve private content with signed URLs. The element lists the key pair IDs that CloudFront is aware of for each trusted signer. The Signer child element lists the AWS account number of the trusted signer (or an empty Self element if the signer is you). The Signer element also includes the IDs of any active key pairs associated with the trusted signer's AWS account. If no KeyPairId element appears for a Signer, that signer can't create working signed URLs.

The current configuration information for the distribution. Send a GET request to the /CloudFront API version/distribution ID/config resource.

The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net.

The identifier for the distribution. For example: EDFDVBD632BHDS5.

The number of invalidation batches currently in progress.

The date and time the distribution was last modified.

This response element indicates the current status of the distribution. When the status is Deployed, the distribution's information is fully propagated to all CloudFront edge locations.

Trait Implementations

impl Default for Distribution
[src]

[src]

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

impl Debug for Distribution
[src]

[src]

Formats the value using the given formatter.