#[non_exhaustive]pub struct GetAppMonitorDataInput {
pub name: Option<String>,
pub time_range: Option<TimeRange>,
pub filters: Option<Vec<QueryFilter>>,
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.name: Option<String>The name of the app monitor that collected the data that you want to retrieve.
time_range: Option<TimeRange>A structure that defines the time range that you want to retrieve results from.
filters: Option<Vec<QueryFilter>>An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify.
max_results: Option<i32>The maximum number of results to return in one operation.
next_token: Option<String>Use the token returned by the previous operation to request the next page of results.
Implementations§
source§impl GetAppMonitorDataInput
impl GetAppMonitorDataInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the app monitor that collected the data that you want to retrieve.
sourcepub fn time_range(&self) -> Option<&TimeRange>
pub fn time_range(&self) -> Option<&TimeRange>
A structure that defines the time range that you want to retrieve results from.
sourcepub fn filters(&self) -> &[QueryFilter]
pub fn filters(&self) -> &[QueryFilter]
An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in one operation.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Use the token returned by the previous operation to request the next page of results.
source§impl GetAppMonitorDataInput
impl GetAppMonitorDataInput
sourcepub fn builder() -> GetAppMonitorDataInputBuilder
pub fn builder() -> GetAppMonitorDataInputBuilder
Creates a new builder-style object to manufacture GetAppMonitorDataInput.
Trait Implementations§
source§impl Clone for GetAppMonitorDataInput
impl Clone for GetAppMonitorDataInput
source§fn clone(&self) -> GetAppMonitorDataInput
fn clone(&self) -> GetAppMonitorDataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetAppMonitorDataInput
impl Debug for GetAppMonitorDataInput
source§impl PartialEq for GetAppMonitorDataInput
impl PartialEq for GetAppMonitorDataInput
impl StructuralPartialEq for GetAppMonitorDataInput
Auto Trait Implementations§
impl Freeze for GetAppMonitorDataInput
impl RefUnwindSafe for GetAppMonitorDataInput
impl Send for GetAppMonitorDataInput
impl Sync for GetAppMonitorDataInput
impl Unpin for GetAppMonitorDataInput
impl UnwindSafe for GetAppMonitorDataInput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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