Struct aws_sdk_rum::operation::batch_get_rum_metric_definitions::BatchGetRumMetricDefinitionsInput
source · #[non_exhaustive]pub struct BatchGetRumMetricDefinitionsInput {
pub app_monitor_name: Option<String>,
pub destination: Option<MetricDestination>,
pub destination_arn: 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 CloudWatch RUM app monitor that is sending the metrics.
destination: Option<MetricDestination>The type of destination that you want to view metrics for. Valid values are CloudWatch and Evidently.
destination_arn: Option<String>This parameter is required if Destination is Evidently. If Destination is CloudWatch, do not use this parameter.
This parameter specifies the ARN of the Evidently experiment that corresponds to the destination.
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 BatchGetRumMetricDefinitionsInput
impl BatchGetRumMetricDefinitionsInput
sourcepub fn app_monitor_name(&self) -> Option<&str>
pub fn app_monitor_name(&self) -> Option<&str>
The name of the CloudWatch RUM app monitor that is sending the metrics.
sourcepub fn destination(&self) -> Option<&MetricDestination>
pub fn destination(&self) -> Option<&MetricDestination>
The type of destination that you want to view metrics for. Valid values are CloudWatch and Evidently.
sourcepub fn destination_arn(&self) -> Option<&str>
pub fn destination_arn(&self) -> Option<&str>
This parameter is required if Destination is Evidently. If Destination is CloudWatch, do not use this parameter.
This parameter specifies the ARN of the Evidently experiment that corresponds to the destination.
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 BatchGetRumMetricDefinitionsInput
impl BatchGetRumMetricDefinitionsInput
sourcepub fn builder() -> BatchGetRumMetricDefinitionsInputBuilder
pub fn builder() -> BatchGetRumMetricDefinitionsInputBuilder
Creates a new builder-style object to manufacture BatchGetRumMetricDefinitionsInput.
Trait Implementations§
source§impl Clone for BatchGetRumMetricDefinitionsInput
impl Clone for BatchGetRumMetricDefinitionsInput
source§fn clone(&self) -> BatchGetRumMetricDefinitionsInput
fn clone(&self) -> BatchGetRumMetricDefinitionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BatchGetRumMetricDefinitionsInput
impl PartialEq for BatchGetRumMetricDefinitionsInput
source§fn eq(&self, other: &BatchGetRumMetricDefinitionsInput) -> bool
fn eq(&self, other: &BatchGetRumMetricDefinitionsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetRumMetricDefinitionsInput
Auto Trait Implementations§
impl Freeze for BatchGetRumMetricDefinitionsInput
impl RefUnwindSafe for BatchGetRumMetricDefinitionsInput
impl Send for BatchGetRumMetricDefinitionsInput
impl Sync for BatchGetRumMetricDefinitionsInput
impl Unpin for BatchGetRumMetricDefinitionsInput
impl UnwindSafe for BatchGetRumMetricDefinitionsInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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