Struct aws_sdk_rum::operation::list_rum_metrics_destinations::ListRumMetricsDestinationsInput
source · #[non_exhaustive]pub struct ListRumMetricsDestinationsInput {
pub app_monitor_name: Option<String>,
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.app_monitor_name: Option<String>The name of the app monitor associated with the destinations that you want to retrieve.
max_results: Option<i32>The maximum number of results to return in one operation. The default is 50. The maximum that you can specify is 100.
To retrieve the remaining results, make another call with the returned NextToken value.
next_token: Option<String>Use the token returned by the previous operation to request the next page of results.
Implementations§
source§impl ListRumMetricsDestinationsInput
impl ListRumMetricsDestinationsInput
sourcepub fn app_monitor_name(&self) -> Option<&str>
pub fn app_monitor_name(&self) -> Option<&str>
The name of the app monitor associated with the destinations that you want to retrieve.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in one operation. The default is 50. The maximum that you can specify is 100.
To retrieve the remaining results, make another call with the returned NextToken value.
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 ListRumMetricsDestinationsInput
impl ListRumMetricsDestinationsInput
sourcepub fn builder() -> ListRumMetricsDestinationsInputBuilder
pub fn builder() -> ListRumMetricsDestinationsInputBuilder
Creates a new builder-style object to manufacture ListRumMetricsDestinationsInput.
Trait Implementations§
source§impl Clone for ListRumMetricsDestinationsInput
impl Clone for ListRumMetricsDestinationsInput
source§fn clone(&self) -> ListRumMetricsDestinationsInput
fn clone(&self) -> ListRumMetricsDestinationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListRumMetricsDestinationsInput
impl PartialEq for ListRumMetricsDestinationsInput
source§fn eq(&self, other: &ListRumMetricsDestinationsInput) -> bool
fn eq(&self, other: &ListRumMetricsDestinationsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListRumMetricsDestinationsInput
Auto Trait Implementations§
impl Freeze for ListRumMetricsDestinationsInput
impl RefUnwindSafe for ListRumMetricsDestinationsInput
impl Send for ListRumMetricsDestinationsInput
impl Sync for ListRumMetricsDestinationsInput
impl Unpin for ListRumMetricsDestinationsInput
impl UnwindSafe for ListRumMetricsDestinationsInput
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> 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