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
source§fn eq(&self, other: &MetricValue) -> bool
fn eq(&self, other: &MetricValue) -> bool
self
and other
values to be equal, and is used
by ==
.