Struct rusoto_iot::CloudwatchMetricAction[][src]

pub struct CloudwatchMetricAction {
    pub metric_name: String,
    pub metric_namespace: String,
    pub metric_timestamp: Option<String>,
    pub metric_unit: String,
    pub metric_value: String,
    pub role_arn: String,
}

Describes an action that captures a CloudWatch metric.

Fields

The CloudWatch metric name.

The CloudWatch metric namespace name.

An optional Unix timestamp.

The metric unit supported by CloudWatch.

The CloudWatch metric value.

The IAM role that allows access to the CloudWatch metric.

Trait Implementations

impl Default for CloudwatchMetricAction
[src]

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

impl Debug for CloudwatchMetricAction
[src]

Formats the value using the given formatter. Read more

impl Clone for CloudwatchMetricAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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