/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about a set of real-time metrics.See
* Also:
AWS
* API Reference
The dimensions for the metrics.
*/ inline const Dimensions& GetDimensions() const{ return m_dimensions; } /** *The dimensions for the metrics.
*/ inline bool DimensionsHasBeenSet() const { return m_dimensionsHasBeenSet; } /** *The dimensions for the metrics.
*/ inline void SetDimensions(const Dimensions& value) { m_dimensionsHasBeenSet = true; m_dimensions = value; } /** *The dimensions for the metrics.
*/ inline void SetDimensions(Dimensions&& value) { m_dimensionsHasBeenSet = true; m_dimensions = std::move(value); } /** *The dimensions for the metrics.
*/ inline CurrentMetricResult& WithDimensions(const Dimensions& value) { SetDimensions(value); return *this;} /** *The dimensions for the metrics.
*/ inline CurrentMetricResult& WithDimensions(Dimensions&& value) { SetDimensions(std::move(value)); return *this;} /** *The set of metrics.
*/ inline const Aws::VectorThe set of metrics.
*/ inline bool CollectionsHasBeenSet() const { return m_collectionsHasBeenSet; } /** *The set of metrics.
*/ inline void SetCollections(const Aws::VectorThe set of metrics.
*/ inline void SetCollections(Aws::VectorThe set of metrics.
*/ inline CurrentMetricResult& WithCollections(const Aws::VectorThe set of metrics.
*/ inline CurrentMetricResult& WithCollections(Aws::VectorThe set of metrics.
*/ inline CurrentMetricResult& AddCollections(const CurrentMetricData& value) { m_collectionsHasBeenSet = true; m_collections.push_back(value); return *this; } /** *The set of metrics.
*/ inline CurrentMetricResult& AddCollections(CurrentMetricData&& value) { m_collectionsHasBeenSet = true; m_collections.push_back(std::move(value)); return *this; } private: Dimensions m_dimensions; bool m_dimensionsHasBeenSet = false; Aws::Vector