/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Aggregated statistics for a group of anomalous metrics.See
* Also:
AWS
* API Reference
The start of the time range that was searched.
*/ inline const Aws::String& GetEvaluationStartDate() const{ return m_evaluationStartDate; } /** *The start of the time range that was searched.
*/ inline bool EvaluationStartDateHasBeenSet() const { return m_evaluationStartDateHasBeenSet; } /** *The start of the time range that was searched.
*/ inline void SetEvaluationStartDate(const Aws::String& value) { m_evaluationStartDateHasBeenSet = true; m_evaluationStartDate = value; } /** *The start of the time range that was searched.
*/ inline void SetEvaluationStartDate(Aws::String&& value) { m_evaluationStartDateHasBeenSet = true; m_evaluationStartDate = std::move(value); } /** *The start of the time range that was searched.
*/ inline void SetEvaluationStartDate(const char* value) { m_evaluationStartDateHasBeenSet = true; m_evaluationStartDate.assign(value); } /** *The start of the time range that was searched.
*/ inline AnomalyGroupStatistics& WithEvaluationStartDate(const Aws::String& value) { SetEvaluationStartDate(value); return *this;} /** *The start of the time range that was searched.
*/ inline AnomalyGroupStatistics& WithEvaluationStartDate(Aws::String&& value) { SetEvaluationStartDate(std::move(value)); return *this;} /** *The start of the time range that was searched.
*/ inline AnomalyGroupStatistics& WithEvaluationStartDate(const char* value) { SetEvaluationStartDate(value); return *this;} /** *The number of groups found.
*/ inline int GetTotalCount() const{ return m_totalCount; } /** *The number of groups found.
*/ inline bool TotalCountHasBeenSet() const { return m_totalCountHasBeenSet; } /** *The number of groups found.
*/ inline void SetTotalCount(int value) { m_totalCountHasBeenSet = true; m_totalCount = value; } /** *The number of groups found.
*/ inline AnomalyGroupStatistics& WithTotalCount(int value) { SetTotalCount(value); return *this;} /** *Statistics for individual metrics within the group.
*/ inline const Aws::VectorStatistics for individual metrics within the group.
*/ inline bool ItemizedMetricStatsListHasBeenSet() const { return m_itemizedMetricStatsListHasBeenSet; } /** *Statistics for individual metrics within the group.
*/ inline void SetItemizedMetricStatsList(const Aws::VectorStatistics for individual metrics within the group.
*/ inline void SetItemizedMetricStatsList(Aws::VectorStatistics for individual metrics within the group.
*/ inline AnomalyGroupStatistics& WithItemizedMetricStatsList(const Aws::VectorStatistics for individual metrics within the group.
*/ inline AnomalyGroupStatistics& WithItemizedMetricStatsList(Aws::VectorStatistics for individual metrics within the group.
*/ inline AnomalyGroupStatistics& AddItemizedMetricStatsList(const ItemizedMetricStats& value) { m_itemizedMetricStatsListHasBeenSet = true; m_itemizedMetricStatsList.push_back(value); return *this; } /** *Statistics for individual metrics within the group.
*/ inline AnomalyGroupStatistics& AddItemizedMetricStatsList(ItemizedMetricStats&& value) { m_itemizedMetricStatsListHasBeenSet = true; m_itemizedMetricStatsList.push_back(std::move(value)); return *this; } private: Aws::String m_evaluationStartDate; bool m_evaluationStartDateHasBeenSet = false; int m_totalCount; bool m_totalCountHasBeenSet = false; Aws::Vector