#[non_exhaustive]pub struct DistributionConfigurationSummary {
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub date_created: Option<String>,
pub date_updated: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub regions: Option<Vec<String>>,
}
Expand description
A high-level overview of 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.
date_created: Option<String>
The date on which the distribution configuration was created.
date_updated: Option<String>
The date on which the distribution configuration was updated.
The tags associated with the distribution configuration.
regions: Option<Vec<String>>
A list of Regions where the container image is distributed to.
Implementations§
source§impl DistributionConfigurationSummary
impl DistributionConfigurationSummary
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 date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The date on which the distribution configuration was created.
sourcepub fn date_updated(&self) -> Option<&str>
pub fn date_updated(&self) -> Option<&str>
The date on which the distribution configuration was updated.
The tags associated with the distribution configuration.
source§impl DistributionConfigurationSummary
impl DistributionConfigurationSummary
sourcepub fn builder() -> DistributionConfigurationSummaryBuilder
pub fn builder() -> DistributionConfigurationSummaryBuilder
Creates a new builder-style object to manufacture DistributionConfigurationSummary
.
Trait Implementations§
source§impl Clone for DistributionConfigurationSummary
impl Clone for DistributionConfigurationSummary
source§fn clone(&self) -> DistributionConfigurationSummary
fn clone(&self) -> DistributionConfigurationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DistributionConfigurationSummary
impl PartialEq for DistributionConfigurationSummary
source§fn eq(&self, other: &DistributionConfigurationSummary) -> bool
fn eq(&self, other: &DistributionConfigurationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.