#[non_exhaustive]pub struct MetricAttributionSummary {
pub name: Option<String>,
pub metric_attribution_arn: Option<String>,
pub status: Option<String>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
pub failure_reason: Option<String>,
}Expand description
Provides a summary of the properties of a metric attribution. For a complete listing, call the DescribeMetricAttribution.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the metric attribution.
metric_attribution_arn: Option<String>The metric attribution's Amazon Resource Name (ARN).
status: Option<String>The metric attribution's status.
creation_date_time: Option<DateTime>The metric attribution's creation date time.
last_updated_date_time: Option<DateTime>The metric attribution's last updated date time.
failure_reason: Option<String>The metric attribution's failure reason.
Implementations§
source§impl MetricAttributionSummary
impl MetricAttributionSummary
sourcepub fn metric_attribution_arn(&self) -> Option<&str>
pub fn metric_attribution_arn(&self) -> Option<&str>
The metric attribution's Amazon Resource Name (ARN).
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The metric attribution's creation date time.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The metric attribution's last updated date time.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The metric attribution's failure reason.
source§impl MetricAttributionSummary
impl MetricAttributionSummary
sourcepub fn builder() -> MetricAttributionSummaryBuilder
pub fn builder() -> MetricAttributionSummaryBuilder
Creates a new builder-style object to manufacture MetricAttributionSummary.
Trait Implementations§
source§impl Clone for MetricAttributionSummary
impl Clone for MetricAttributionSummary
source§fn clone(&self) -> MetricAttributionSummary
fn clone(&self) -> MetricAttributionSummary
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 MetricAttributionSummary
impl Debug for MetricAttributionSummary
source§impl PartialEq for MetricAttributionSummary
impl PartialEq for MetricAttributionSummary
source§fn eq(&self, other: &MetricAttributionSummary) -> bool
fn eq(&self, other: &MetricAttributionSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MetricAttributionSummary
Auto Trait Implementations§
impl RefUnwindSafe for MetricAttributionSummary
impl Send for MetricAttributionSummary
impl Sync for MetricAttributionSummary
impl Unpin for MetricAttributionSummary
impl UnwindSafe for MetricAttributionSummary
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
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>
Creates a shared type from an unshared type.