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