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: i32The 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
sourceimpl GetAppMonitorDataInput
impl GetAppMonitorDataInput
sourcepub 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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetAppMonitorDataInput
sourceimpl 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) -> Option<&[QueryFilter]>
pub fn filters(&self) -> Option<&[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.
sourcepub fn max_results(&self) -> i32
pub fn max_results(&self) -> 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.
Trait Implementations
sourceimpl Clone for GetAppMonitorDataInput
impl Clone for GetAppMonitorDataInput
sourcefn clone(&self) -> GetAppMonitorDataInput
fn clone(&self) -> GetAppMonitorDataInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GetAppMonitorDataInput
impl Debug for GetAppMonitorDataInput
sourceimpl PartialEq<GetAppMonitorDataInput> for GetAppMonitorDataInput
impl PartialEq<GetAppMonitorDataInput> for GetAppMonitorDataInput
sourcefn eq(&self, other: &GetAppMonitorDataInput) -> bool
fn eq(&self, other: &GetAppMonitorDataInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetAppMonitorDataInput) -> bool
fn ne(&self, other: &GetAppMonitorDataInput) -> bool
This method tests for !=.
impl StructuralPartialEq for GetAppMonitorDataInput
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more