#[non_exhaustive]pub struct DescribeCustomMetricOutput {
pub metric_name: Option<String>,
pub metric_arn: Option<String>,
pub metric_type: Option<CustomMetricType>,
pub display_name: Option<String>,
pub creation_date: Option<DateTime>,
pub last_modified_date: Option<DateTime>,
/* private fields */
}
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.metric_name: Option<String>
The name of the custom metric.
metric_arn: Option<String>
The Amazon Resource Number (ARN) of the custom metric.
metric_type: Option<CustomMetricType>
The type of the custom metric.
The type number
only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.
display_name: Option<String>
Field represents a friendly name in the console for the custom metric; doesn't have to be unique. Don't use this name as the metric identifier in the device metric report. Can be updated.
creation_date: Option<DateTime>
The creation date of the custom metric in milliseconds since epoch.
last_modified_date: Option<DateTime>
The time the custom metric was last modified in milliseconds since epoch.
Implementations§
source§impl DescribeCustomMetricOutput
impl DescribeCustomMetricOutput
sourcepub fn metric_name(&self) -> Option<&str>
pub fn metric_name(&self) -> Option<&str>
The name of the custom metric.
sourcepub fn metric_arn(&self) -> Option<&str>
pub fn metric_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the custom metric.
sourcepub fn metric_type(&self) -> Option<&CustomMetricType>
pub fn metric_type(&self) -> Option<&CustomMetricType>
The type of the custom metric.
The type number
only takes a single metric value as an input, but while submitting the metrics value in the DeviceMetrics report, it must be passed as an array with a single value.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
Field represents a friendly name in the console for the custom metric; doesn't have to be unique. Don't use this name as the metric identifier in the device metric report. Can be updated.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The creation date of the custom metric in milliseconds since epoch.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The time the custom metric was last modified in milliseconds since epoch.
source§impl DescribeCustomMetricOutput
impl DescribeCustomMetricOutput
sourcepub fn builder() -> DescribeCustomMetricOutputBuilder
pub fn builder() -> DescribeCustomMetricOutputBuilder
Creates a new builder-style object to manufacture DescribeCustomMetricOutput
.
Trait Implementations§
source§impl Clone for DescribeCustomMetricOutput
impl Clone for DescribeCustomMetricOutput
source§fn clone(&self) -> DescribeCustomMetricOutput
fn clone(&self) -> DescribeCustomMetricOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeCustomMetricOutput
impl Debug for DescribeCustomMetricOutput
source§impl RequestId for DescribeCustomMetricOutput
impl RequestId for DescribeCustomMetricOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeCustomMetricOutput
Auto Trait Implementations§
impl Freeze for DescribeCustomMetricOutput
impl RefUnwindSafe for DescribeCustomMetricOutput
impl Send for DescribeCustomMetricOutput
impl Sync for DescribeCustomMetricOutput
impl Unpin for DescribeCustomMetricOutput
impl UnwindSafe for DescribeCustomMetricOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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