[][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. Not used.

period: Option<i64>

Aggregation period in seconds.

start_time: f64

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

Trait Implementations

impl PartialEq<GetTimeSeriesServiceStatisticsRequest> for GetTimeSeriesServiceStatisticsRequest[src]

impl Default for GetTimeSeriesServiceStatisticsRequest[src]

impl Clone for GetTimeSeriesServiceStatisticsRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetTimeSeriesServiceStatisticsRequest[src]

impl Serialize for GetTimeSeriesServiceStatisticsRequest[src]

Auto Trait Implementations

impl Send for GetTimeSeriesServiceStatisticsRequest

impl Sync for GetTimeSeriesServiceStatisticsRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self