Struct aws_sdk_iot::types::MetricValue
source · #[non_exhaustive]pub struct MetricValue {
pub count: Option<i64>,
pub cidrs: Option<Vec<String>>,
pub ports: Option<Vec<i32>>,
pub number: Option<f64>,
pub numbers: Option<Vec<f64>>,
pub strings: Option<Vec<String>>,
}
Expand description
The value to be compared with the metric
.
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.count: Option<i64>
If the comparisonOperator
calls for a numeric value, use this to specify that numeric value to be compared with the metric
.
cidrs: Option<Vec<String>>
If the comparisonOperator
calls for a set of CIDRs, use this to specify that set to be compared with the metric
.
ports: Option<Vec<i32>>
If the comparisonOperator
calls for a set of ports, use this to specify that set to be compared with the metric
.
number: Option<f64>
The numeral value of a metric.
numbers: Option<Vec<f64>>
The numeral values of a metric.
strings: Option<Vec<String>>
The string values of a metric.
Implementations§
source§impl MetricValue
impl MetricValue
sourcepub fn count(&self) -> Option<i64>
pub fn count(&self) -> Option<i64>
If the comparisonOperator
calls for a numeric value, use this to specify that numeric value to be compared with the metric
.
sourcepub fn cidrs(&self) -> &[String]
pub fn cidrs(&self) -> &[String]
If the comparisonOperator
calls for a set of CIDRs, use this to specify that set to be compared with the metric
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cidrs.is_none()
.
sourcepub fn ports(&self) -> &[i32]
pub fn ports(&self) -> &[i32]
If the comparisonOperator
calls for a set of ports, use this to specify that set to be compared with the metric
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ports.is_none()
.
source§impl MetricValue
impl MetricValue
sourcepub fn builder() -> MetricValueBuilder
pub fn builder() -> MetricValueBuilder
Creates a new builder-style object to manufacture MetricValue
.
Trait Implementations§
source§impl Clone for MetricValue
impl Clone for MetricValue
source§fn clone(&self) -> MetricValue
fn clone(&self) -> MetricValue
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MetricValue
impl Debug for MetricValue
source§impl PartialEq for MetricValue
impl PartialEq for MetricValue
impl StructuralPartialEq for MetricValue
Auto Trait Implementations§
impl Freeze for MetricValue
impl RefUnwindSafe for MetricValue
impl Send for MetricValue
impl Sync for MetricValue
impl Unpin for MetricValue
impl UnwindSafe for MetricValue
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