/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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.See Also:
AWS
* API Reference
The dimension name.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *The dimension name.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *The dimension name.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *The dimension name.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *The dimension name.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *The dimension name.
*/ inline MetricDimension& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *The dimension name.
*/ inline MetricDimension& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *The dimension name.
*/ inline MetricDimension& WithKey(const char* value) { SetKey(value); return *this;} /** *The dimension value.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The dimension value.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The dimension value.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The dimension value.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The dimension value.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The dimension value.
*/ inline MetricDimension& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The dimension value.
*/ inline MetricDimension& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The dimension value.
*/ inline MetricDimension& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace EMR } // namespace Aws