Struct aws_sdk_xray::operation::get_time_series_service_statistics::GetTimeSeriesServiceStatisticsInput
source · #[non_exhaustive]pub struct GetTimeSeriesServiceStatisticsInput {
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub group_name: Option<String>,
pub group_arn: Option<String>,
pub entity_selector_expression: Option<String>,
pub period: Option<i32>,
pub forecast_statistics: Option<bool>,
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.start_time: Option<DateTime>
The start of the time frame for which to aggregate statistics.
end_time: Option<DateTime>
The end of the time frame for which to aggregate statistics.
group_name: Option<String>
The case-sensitive name of the group for which to pull statistics from.
group_arn: Option<String>
The Amazon Resource Name (ARN) of the group for which to pull statistics from.
entity_selector_expression: Option<String>
A filter expression defining entities that will be aggregated for statistics. Supports ID, service, and edge functions. If no selector expression is specified, edge statistics are returned.
period: Option<i32>
Aggregation period in seconds.
forecast_statistics: Option<bool>
The forecasted high and low fault count values. Forecast enabled requests require the EntitySelectorExpression ID be provided.
next_token: Option<String>
Pagination token.
Implementations§
source§impl GetTimeSeriesServiceStatisticsInput
impl GetTimeSeriesServiceStatisticsInput
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start of the time frame for which to aggregate statistics.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The end of the time frame for which to aggregate statistics.
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
The case-sensitive name of the group for which to pull statistics from.
sourcepub fn group_arn(&self) -> Option<&str>
pub fn group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the group for which to pull statistics from.
sourcepub fn entity_selector_expression(&self) -> Option<&str>
pub fn entity_selector_expression(&self) -> Option<&str>
A filter expression defining entities that will be aggregated for statistics. Supports ID, service, and edge functions. If no selector expression is specified, edge statistics are returned.
sourcepub fn forecast_statistics(&self) -> Option<bool>
pub fn forecast_statistics(&self) -> Option<bool>
The forecasted high and low fault count values. Forecast enabled requests require the EntitySelectorExpression ID be provided.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token.
source§impl GetTimeSeriesServiceStatisticsInput
impl GetTimeSeriesServiceStatisticsInput
sourcepub fn builder() -> GetTimeSeriesServiceStatisticsInputBuilder
pub fn builder() -> GetTimeSeriesServiceStatisticsInputBuilder
Creates a new builder-style object to manufacture GetTimeSeriesServiceStatisticsInput
.
Trait Implementations§
source§impl Clone for GetTimeSeriesServiceStatisticsInput
impl Clone for GetTimeSeriesServiceStatisticsInput
source§fn clone(&self) -> GetTimeSeriesServiceStatisticsInput
fn clone(&self) -> GetTimeSeriesServiceStatisticsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetTimeSeriesServiceStatisticsInput
impl PartialEq for GetTimeSeriesServiceStatisticsInput
source§fn eq(&self, other: &GetTimeSeriesServiceStatisticsInput) -> bool
fn eq(&self, other: &GetTimeSeriesServiceStatisticsInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetTimeSeriesServiceStatisticsInput
Auto Trait Implementations§
impl Freeze for GetTimeSeriesServiceStatisticsInput
impl RefUnwindSafe for GetTimeSeriesServiceStatisticsInput
impl Send for GetTimeSeriesServiceStatisticsInput
impl Sync for GetTimeSeriesServiceStatisticsInput
impl Unpin for GetTimeSeriesServiceStatisticsInput
impl UnwindSafe for GetTimeSeriesServiceStatisticsInput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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