Struct rusoto_emr::MetricDimension[][src]

pub struct MetricDimension {
    pub key: Option<String>,
    pub value: Option<String>,
}

A CloudWatch dimension, which is specified using a Key (known as a Name in CloudWatch), Value pair. By default, Amazon EMR uses one dimension whose Key is JobFlowID and Value is a variable representing the cluster ID, which is ${emr.clusterId}. This enables the rule to bootstrap when the cluster ID becomes available.

Fields

The dimension name.

The dimension value.

Trait Implementations

impl Default for MetricDimension
[src]

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

impl Debug for MetricDimension
[src]

Formats the value using the given formatter. Read more

impl Clone for MetricDimension
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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