Struct aws_sdk_rum::input::GetAppMonitorDataInput
source · [−]#[non_exhaustive]pub struct GetAppMonitorDataInput {
pub name: Option<String>,
pub time_range: Option<TimeRange>,
pub filters: Option<Vec<QueryFilter>>,
pub max_results: 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: 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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetAppMonitorData, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetAppMonitorData, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetAppMonitorData
>
Creates a new builder-style object to manufacture GetAppMonitorDataInput
The name of the app monitor that collected the data that you want to retrieve.
A structure that defines the time range that you want to retrieve results from.
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.
The maximum number of results to return in one operation.
Use the token returned by the previous operation to request the next page of results.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetAppMonitorDataInput
impl Send for GetAppMonitorDataInput
impl Sync for GetAppMonitorDataInput
impl Unpin for GetAppMonitorDataInput
impl UnwindSafe for GetAppMonitorDataInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more