/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Override of a particular evaluation for a profile job. See
* Also:
AWS
* API Reference
The name of an evaluation
*/ inline const Aws::String& GetStatistic() const{ return m_statistic; } /** *The name of an evaluation
*/ inline bool StatisticHasBeenSet() const { return m_statisticHasBeenSet; } /** *The name of an evaluation
*/ inline void SetStatistic(const Aws::String& value) { m_statisticHasBeenSet = true; m_statistic = value; } /** *The name of an evaluation
*/ inline void SetStatistic(Aws::String&& value) { m_statisticHasBeenSet = true; m_statistic = std::move(value); } /** *The name of an evaluation
*/ inline void SetStatistic(const char* value) { m_statisticHasBeenSet = true; m_statistic.assign(value); } /** *The name of an evaluation
*/ inline StatisticOverride& WithStatistic(const Aws::String& value) { SetStatistic(value); return *this;} /** *The name of an evaluation
*/ inline StatisticOverride& WithStatistic(Aws::String&& value) { SetStatistic(std::move(value)); return *this;} /** *The name of an evaluation
*/ inline StatisticOverride& WithStatistic(const char* value) { SetStatistic(value); return *this;} /** *A map that includes overrides of an evaluation’s parameters.
*/ inline const Aws::MapA map that includes overrides of an evaluation’s parameters.
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline void SetParameters(const Aws::MapA map that includes overrides of an evaluation’s parameters.
*/ inline void SetParameters(Aws::MapA map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& WithParameters(const Aws::MapA map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& WithParameters(Aws::MapA map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(const Aws::String& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(Aws::String&& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(const Aws::String& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(Aws::String&& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), std::move(value)); return *this; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(const char* key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(Aws::String&& key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *A map that includes overrides of an evaluation’s parameters.
*/ inline StatisticOverride& AddParameters(const char* key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } private: Aws::String m_statistic; bool m_statisticHasBeenSet = false; Aws::Map