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