Struct rusoto_cloudwatch::GetMetricDataInput[][src]

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 Default for GetMetricDataInput
[src]

Returns the "default value" for a type. Read more

impl Debug for GetMetricDataInput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetMetricDataInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetMetricDataInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations