#[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 ==
.impl StructuralPartialEq for DistributionConfigurationSummary
Auto Trait Implementations§
impl Freeze for DistributionConfigurationSummary
impl RefUnwindSafe for DistributionConfigurationSummary
impl Send for DistributionConfigurationSummary
impl Sync for DistributionConfigurationSummary
impl Unpin for DistributionConfigurationSummary
impl UnwindSafe for DistributionConfigurationSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more