#[non_exhaustive]pub struct DistributionConfiguration { /* private fields */ }
Expand description
A distribution configuration.
Implementations§
source§impl DistributionConfiguration
impl DistributionConfiguration
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the distribution configuration.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the distribution configuration.
sourcepub fn distributions(&self) -> Option<&[Distribution]>
pub fn distributions(&self) -> Option<&[Distribution]>
The distribution objects that apply Region-specific settings for the deployment of the image to targeted Regions.
sourcepub fn timeout_minutes(&self) -> Option<i32>
pub fn timeout_minutes(&self) -> Option<i32>
The maximum duration in minutes for this distribution configuration.
sourcepub fn date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The date on which this distribution configuration was created.
sourcepub fn date_updated(&self) -> Option<&str>
pub fn date_updated(&self) -> Option<&str>
The date on which this distribution configuration was last updated.
The tags of the distribution configuration.
source§impl DistributionConfiguration
impl DistributionConfiguration
sourcepub fn builder() -> DistributionConfigurationBuilder
pub fn builder() -> DistributionConfigurationBuilder
Creates a new builder-style object to manufacture DistributionConfiguration
.
Trait Implementations§
source§impl Clone for DistributionConfiguration
impl Clone for DistributionConfiguration
source§fn clone(&self) -> DistributionConfiguration
fn clone(&self) -> DistributionConfiguration
Returns a copy 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 DistributionConfiguration
impl Debug for DistributionConfiguration
source§impl PartialEq<DistributionConfiguration> for DistributionConfiguration
impl PartialEq<DistributionConfiguration> for DistributionConfiguration
source§fn eq(&self, other: &DistributionConfiguration) -> bool
fn eq(&self, other: &DistributionConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.