[][src]Struct rusoto_cloudwatch::GetMetricDataInput

pub struct GetMetricDataInput {
    pub end_time: String,
    pub max_datapoints: Option<i64>,
    pub metric_data_queries: Vec<MetricDataQuery>,
    pub next_token: Option<String>,
    pub scan_by: Option<String>,
    pub start_time: String,
}

Fields

The time stamp indicating the latest data to be returned.

The maximum number of data points the request should return before paginating. If you omit this, the default of 100,800 is used.

The metric queries to be returned. A single GetMetricData call can include as many as 100 MetricDataQuery structures. Each of these structures can specify either a metric to retrieve, or a math expression to perform on retrieved data.

Include this value, if it was returned by the previous call, to get the next set of data points.

The order in which data points should be returned. TimestampDescending returns the newest data first and paginates when the MaxDatapoints limit is reached. TimestampAscending returns the oldest data first and paginates when the MaxDatapoints limit is reached.

The time stamp indicating the earliest data to be returned.

Trait Implementations

impl Clone for GetMetricDataInput
[src]

Performs copy-assignment from source. Read more

impl Default for GetMetricDataInput
[src]

impl PartialEq<GetMetricDataInput> for GetMetricDataInput
[src]

impl Debug for GetMetricDataInput
[src]

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T