[][src]Struct rusoto_xray::GetTimeSeriesServiceStatisticsRequest

pub struct GetTimeSeriesServiceStatisticsRequest {
    pub end_time: f64,
    pub entity_selector_expression: Option<String>,
    pub group_arn: Option<String>,
    pub group_name: Option<String>,
    pub next_token: Option<String>,
    pub period: Option<i64>,
    pub start_time: f64,
}

Fields

end_time: f64

The end of the time frame for which to aggregate statistics.

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.

group_arn: Option<String>

The ARN of the group for which to pull statistics from.

group_name: Option<String>

The case-sensitive name of the group for which to pull statistics from.

next_token: Option<String>

Pagination token.

period: Option<i64>

Aggregation period in seconds.

start_time: f64

The start of the time frame for which to aggregate statistics.

Trait Implementations

impl Clone for GetTimeSeriesServiceStatisticsRequest[src]

impl Debug for GetTimeSeriesServiceStatisticsRequest[src]

impl Default for GetTimeSeriesServiceStatisticsRequest[src]

impl PartialEq<GetTimeSeriesServiceStatisticsRequest> for GetTimeSeriesServiceStatisticsRequest[src]

impl Serialize for GetTimeSeriesServiceStatisticsRequest[src]

impl StructuralPartialEq for GetTimeSeriesServiceStatisticsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.