#[non_exhaustive]pub struct ListMetricValuesInput {
pub thing_name: Option<String>,
pub metric_name: Option<String>,
pub dimension_name: Option<String>,
pub dimension_value_operator: Option<DimensionValueOperator>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}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.thing_name: Option<String>The name of the thing for which security profile metric values are returned.
metric_name: Option<String>The name of the security profile metric for which values are returned.
dimension_name: Option<String>The dimension name.
dimension_value_operator: Option<DimensionValueOperator>The dimension value operator.
start_time: Option<DateTime>The start of the time period for which metric values are returned.
end_time: Option<DateTime>The end of the time period for which metric values are returned.
max_results: Option<i32>The maximum number of results to return at one time.
next_token: Option<String>The token for the next set of results.
Implementations§
source§impl ListMetricValuesInput
impl ListMetricValuesInput
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing for which security profile metric values are returned.
sourcepub fn metric_name(&self) -> Option<&str>
pub fn metric_name(&self) -> Option<&str>
The name of the security profile metric for which values are returned.
sourcepub fn dimension_name(&self) -> Option<&str>
pub fn dimension_name(&self) -> Option<&str>
The dimension name.
sourcepub fn dimension_value_operator(&self) -> Option<&DimensionValueOperator>
pub fn dimension_value_operator(&self) -> Option<&DimensionValueOperator>
The dimension value operator.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start of the time period for which metric values are returned.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The end of the time period for which metric values are returned.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results.
source§impl ListMetricValuesInput
impl ListMetricValuesInput
sourcepub fn builder() -> ListMetricValuesInputBuilder
pub fn builder() -> ListMetricValuesInputBuilder
Creates a new builder-style object to manufacture ListMetricValuesInput.
Trait Implementations§
source§impl Clone for ListMetricValuesInput
impl Clone for ListMetricValuesInput
source§fn clone(&self) -> ListMetricValuesInput
fn clone(&self) -> ListMetricValuesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListMetricValuesInput
impl Debug for ListMetricValuesInput
source§impl PartialEq for ListMetricValuesInput
impl PartialEq for ListMetricValuesInput
source§fn eq(&self, other: &ListMetricValuesInput) -> bool
fn eq(&self, other: &ListMetricValuesInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListMetricValuesInput
Auto Trait Implementations§
impl Freeze for ListMetricValuesInput
impl RefUnwindSafe for ListMetricValuesInput
impl Send for ListMetricValuesInput
impl Sync for ListMetricValuesInput
impl Unpin for ListMetricValuesInput
impl UnwindSafe for ListMetricValuesInput
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