Struct rusoto_cloudwatch::PutMetricDataInput[][src]

pub struct PutMetricDataInput {
    pub metric_data: Vec<MetricDatum>,
    pub namespace: String,
}

Fields

The data for the metric.

The namespace for the metric data.

You cannot specify a namespace that begins with "AWS/". Namespaces that begin with "AWS/" are reserved for use by Amazon Web Services products.

Trait Implementations

impl Default for PutMetricDataInput
[src]

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

impl Debug for PutMetricDataInput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutMetricDataInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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