#[non_exhaustive]pub struct DistributionConfiguration {
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub distributions: Option<Vec<Distribution>>,
pub timeout_minutes: Option<i32>,
pub date_created: Option<String>,
pub date_updated: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
A distribution configuration.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The Amazon Resource Name (ARN) of the distribution configuration.
name: Option<String>
The name of the distribution configuration.
description: Option<String>
The description of the distribution configuration.
distributions: Option<Vec<Distribution>>
The distribution objects that apply Region-specific settings for the deployment of the image to targeted Regions.
timeout_minutes: Option<i32>
The maximum duration in minutes for this distribution configuration.
date_created: Option<String>
The date on which this distribution configuration was created.
date_updated: Option<String>
The date on which this distribution configuration was last updated.
The tags of the distribution configuration.
Implementations
The Amazon Resource Name (ARN) of the distribution configuration.
The description of the distribution configuration.
The distribution objects that apply Region-specific settings for the deployment of the image to targeted Regions.
The maximum duration in minutes for this distribution configuration.
The date on which this distribution configuration was created.
The date on which this distribution configuration was last updated.
The tags of the distribution configuration.
Creates a new builder-style object to manufacture DistributionConfiguration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DistributionConfiguration
impl Send for DistributionConfiguration
impl Sync for DistributionConfiguration
impl Unpin for DistributionConfiguration
impl UnwindSafe for DistributionConfiguration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more