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 ==.