pub struct Distribution {
pub id: String,
pub arn: String,
pub status: String,
pub domain_name: String,
pub distribution_config: DistributionConfig,
}Expand description
A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.
AWS API: cloudfront.v1.Distribution
Reference: https://docs.aws.amazon.com/cloudfront/latest/APIReference/Distribution
§Coverage
5 of 10 fields included. Omitted fields:
LastModifiedTime— not selected in manifestInProgressInvalidationBatches— not selected in manifestActiveTrustedSigners— not selected in manifestActiveTrustedKeyGroups— not selected in manifestAliasICPRecordals— not selected in manifest
Fields§
§id: StringThe distribution’s identifier. For example: E1U5RQF7T870K0.
arn: StringThe distribution’s Amazon Resource Name (ARN).
status: StringThe distribution’s status. When the status is Deployed, the distribution’s information is fully propagated to all CloudFront edge locations.
domain_name: StringThe distribution’s CloudFront domain name. For example: d111111abcdef8.cloudfront.net.
distribution_config: DistributionConfigThe distribution’s configuration.
Trait Implementations§
Source§impl Clone for Distribution
impl Clone for Distribution
Source§fn clone(&self) -> Distribution
fn clone(&self) -> Distribution
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Distribution
impl Debug for Distribution
Source§impl Default for Distribution
impl Default for Distribution
Source§fn default() -> Distribution
fn default() -> Distribution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Distribution
impl<'de> Deserialize<'de> for Distribution
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Distribution
impl RefUnwindSafe for Distribution
impl Send for Distribution
impl Sync for Distribution
impl Unpin for Distribution
impl UnsafeUnpin for Distribution
impl UnwindSafe for Distribution
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more