Struct rusoto_cloudwatch::ListMetricsInput[][src]

pub struct ListMetricsInput {
    pub dimensions: Option<Vec<DimensionFilter>>,
    pub metric_name: Option<String>,
    pub namespace: Option<String>,
    pub next_token: Option<String>,
}

Fields

The dimensions to filter against.

The name of the metric to filter against.

The namespace to filter against.

The token returned by a previous call to indicate that there is more data available.

Trait Implementations

impl Default for ListMetricsInput
[src]

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

impl Debug for ListMetricsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListMetricsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListMetricsInput
[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