[][src]Struct rusoto_cloudfront::Distribution

pub struct Distribution {
    pub arn: String,
    pub active_trusted_signers: ActiveTrustedSigners,
    pub alias_icp_recordals: Option<Vec<AliasICPRecordal>>,
    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,
}

A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.

Fields

arn: String

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

active_trusted_signers: ActiveTrustedSigners

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.

alias_icp_recordals: Option<Vec<AliasICPRecordal>>

AWS services in China customers must file for an Internet Content Provider (ICP) recordal if they want to serve content publicly on an alternate domain name, also known as a CNAME, that they've added to CloudFront. AliasICPRecordal provides the ICP recordal status for CNAMEs associated with distributions.

For more information about ICP recordals, see Signup, Accounts, and Credentials in Getting Started with AWS services in China.

distribution_config: DistributionConfig

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

domain_name: String

The domain name corresponding to the distribution, for example, d111111abcdef8.cloudfront.net.

id: String

The identifier for the distribution. For example: EDFDVBD632BHDS5.

in_progress_invalidation_batches: i64

The number of invalidation batches currently in progress.

last_modified_time: String

The date and time the distribution was last modified.

status: String

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 Clone for Distribution[src]

impl Debug for Distribution[src]

impl Default for Distribution[src]

impl PartialEq<Distribution> for Distribution[src]

impl StructuralPartialEq for Distribution[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.