#[non_exhaustive]pub struct UpdateCustomMetricOutput {
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>
A friendly name in the console for the custom metric
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 UpdateCustomMetricOutput
impl UpdateCustomMetricOutput
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>
A friendly name in the console for the custom metric
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 UpdateCustomMetricOutput
impl UpdateCustomMetricOutput
sourcepub fn builder() -> UpdateCustomMetricOutputBuilder
pub fn builder() -> UpdateCustomMetricOutputBuilder
Creates a new builder-style object to manufacture UpdateCustomMetricOutput
.
Trait Implementations§
source§impl Clone for UpdateCustomMetricOutput
impl Clone for UpdateCustomMetricOutput
source§fn clone(&self) -> UpdateCustomMetricOutput
fn clone(&self) -> UpdateCustomMetricOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateCustomMetricOutput
impl Debug for UpdateCustomMetricOutput
source§impl PartialEq for UpdateCustomMetricOutput
impl PartialEq for UpdateCustomMetricOutput
source§fn eq(&self, other: &UpdateCustomMetricOutput) -> bool
fn eq(&self, other: &UpdateCustomMetricOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateCustomMetricOutput
impl RequestId for UpdateCustomMetricOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for UpdateCustomMetricOutput
Auto Trait Implementations§
impl Freeze for UpdateCustomMetricOutput
impl RefUnwindSafe for UpdateCustomMetricOutput
impl Send for UpdateCustomMetricOutput
impl Sync for UpdateCustomMetricOutput
impl Unpin for UpdateCustomMetricOutput
impl UnwindSafe for UpdateCustomMetricOutput
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