/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CloudWatchEvidently { namespace Model { /** *

This structure contains information about one Evidently feature in your * account.

See Also:

AWS * API Reference

*/ class Feature { public: AWS_CLOUDWATCHEVIDENTLY_API Feature(); AWS_CLOUDWATCHEVIDENTLY_API Feature(Aws::Utils::Json::JsonView jsonValue); AWS_CLOUDWATCHEVIDENTLY_API Feature& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CLOUDWATCHEVIDENTLY_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ARN of the feature.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The ARN of the feature.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The ARN of the feature.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The ARN of the feature.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The ARN of the feature.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The ARN of the feature.

*/ inline Feature& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The ARN of the feature.

*/ inline Feature& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The ARN of the feature.

*/ inline Feature& WithArn(const char* value) { SetArn(value); return *this;} /** *

The date and time that the feature is created.

*/ inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; } /** *

The date and time that the feature is created.

*/ inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; } /** *

The date and time that the feature is created.

*/ inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; } /** *

The date and time that the feature is created.

*/ inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); } /** *

The date and time that the feature is created.

*/ inline Feature& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;} /** *

The date and time that the feature is created.

*/ inline Feature& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;} /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline const Aws::String& GetDefaultVariation() const{ return m_defaultVariation; } /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline bool DefaultVariationHasBeenSet() const { return m_defaultVariationHasBeenSet; } /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline void SetDefaultVariation(const Aws::String& value) { m_defaultVariationHasBeenSet = true; m_defaultVariation = value; } /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline void SetDefaultVariation(Aws::String&& value) { m_defaultVariationHasBeenSet = true; m_defaultVariation = std::move(value); } /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline void SetDefaultVariation(const char* value) { m_defaultVariationHasBeenSet = true; m_defaultVariation.assign(value); } /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline Feature& WithDefaultVariation(const Aws::String& value) { SetDefaultVariation(value); return *this;} /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline Feature& WithDefaultVariation(Aws::String&& value) { SetDefaultVariation(std::move(value)); return *this;} /** *

The name of the variation that is used as the default variation. The default * variation is served to users who are not allocated to any ongoing launches or * experiments of this feature.

This variation must also be listed in the * variations structure.

If you omit * defaultVariation, the first variation listed in the * variations structure is used as the default variation.

*/ inline Feature& WithDefaultVariation(const char* value) { SetDefaultVariation(value); return *this;} /** *

The description of the feature.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the feature.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of the feature.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of the feature.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of the feature.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of the feature.

*/ inline Feature& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the feature.

*/ inline Feature& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the feature.

*/ inline Feature& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline const Aws::Map& GetEntityOverrides() const{ return m_entityOverrides; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline bool EntityOverridesHasBeenSet() const { return m_entityOverridesHasBeenSet; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline void SetEntityOverrides(const Aws::Map& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides = value; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline void SetEntityOverrides(Aws::Map&& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides = std::move(value); } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& WithEntityOverrides(const Aws::Map& value) { SetEntityOverrides(value); return *this;} /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& WithEntityOverrides(Aws::Map&& value) { SetEntityOverrides(std::move(value)); return *this;} /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(const Aws::String& key, const Aws::String& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(key, value); return *this; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(Aws::String&& key, const Aws::String& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(std::move(key), value); return *this; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(const Aws::String& key, Aws::String&& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(key, std::move(value)); return *this; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(Aws::String&& key, Aws::String&& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(std::move(key), std::move(value)); return *this; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(const char* key, Aws::String&& value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(key, std::move(value)); return *this; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(Aws::String&& key, const char* value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(std::move(key), value); return *this; } /** *

A set of key-value pairs that specify users who should always be served a * specific variation of a feature. Each key specifies a user using their user ID, * account ID, or some other identifier. The value specifies the name of the * variation that the user is to be served.

For the override to be * successful, the value of the key must match the entityId used in * the EvaluateFeature * operation.

*/ inline Feature& AddEntityOverrides(const char* key, const char* value) { m_entityOverridesHasBeenSet = true; m_entityOverrides.emplace(key, value); return *this; } /** *

An array of structures that define the evaluation rules for the feature.

*/ inline const Aws::Vector& GetEvaluationRules() const{ return m_evaluationRules; } /** *

An array of structures that define the evaluation rules for the feature.

*/ inline bool EvaluationRulesHasBeenSet() const { return m_evaluationRulesHasBeenSet; } /** *

An array of structures that define the evaluation rules for the feature.

*/ inline void SetEvaluationRules(const Aws::Vector& value) { m_evaluationRulesHasBeenSet = true; m_evaluationRules = value; } /** *

An array of structures that define the evaluation rules for the feature.

*/ inline void SetEvaluationRules(Aws::Vector&& value) { m_evaluationRulesHasBeenSet = true; m_evaluationRules = std::move(value); } /** *

An array of structures that define the evaluation rules for the feature.

*/ inline Feature& WithEvaluationRules(const Aws::Vector& value) { SetEvaluationRules(value); return *this;} /** *

An array of structures that define the evaluation rules for the feature.

*/ inline Feature& WithEvaluationRules(Aws::Vector&& value) { SetEvaluationRules(std::move(value)); return *this;} /** *

An array of structures that define the evaluation rules for the feature.

*/ inline Feature& AddEvaluationRules(const EvaluationRule& value) { m_evaluationRulesHasBeenSet = true; m_evaluationRules.push_back(value); return *this; } /** *

An array of structures that define the evaluation rules for the feature.

*/ inline Feature& AddEvaluationRules(EvaluationRule&& value) { m_evaluationRulesHasBeenSet = true; m_evaluationRules.push_back(std::move(value)); return *this; } /** *

If this value is ALL_RULES, the traffic allocation specified by * any ongoing launches or experiments is being used. If this is * DEFAULT_VARIATION, the default variation is being served to all * users.

*/ inline const FeatureEvaluationStrategy& GetEvaluationStrategy() const{ return m_evaluationStrategy; } /** *

If this value is ALL_RULES, the traffic allocation specified by * any ongoing launches or experiments is being used. If this is * DEFAULT_VARIATION, the default variation is being served to all * users.

*/ inline bool EvaluationStrategyHasBeenSet() const { return m_evaluationStrategyHasBeenSet; } /** *

If this value is ALL_RULES, the traffic allocation specified by * any ongoing launches or experiments is being used. If this is * DEFAULT_VARIATION, the default variation is being served to all * users.

*/ inline void SetEvaluationStrategy(const FeatureEvaluationStrategy& value) { m_evaluationStrategyHasBeenSet = true; m_evaluationStrategy = value; } /** *

If this value is ALL_RULES, the traffic allocation specified by * any ongoing launches or experiments is being used. If this is * DEFAULT_VARIATION, the default variation is being served to all * users.

*/ inline void SetEvaluationStrategy(FeatureEvaluationStrategy&& value) { m_evaluationStrategyHasBeenSet = true; m_evaluationStrategy = std::move(value); } /** *

If this value is ALL_RULES, the traffic allocation specified by * any ongoing launches or experiments is being used. If this is * DEFAULT_VARIATION, the default variation is being served to all * users.

*/ inline Feature& WithEvaluationStrategy(const FeatureEvaluationStrategy& value) { SetEvaluationStrategy(value); return *this;} /** *

If this value is ALL_RULES, the traffic allocation specified by * any ongoing launches or experiments is being used. If this is * DEFAULT_VARIATION, the default variation is being served to all * users.

*/ inline Feature& WithEvaluationStrategy(FeatureEvaluationStrategy&& value) { SetEvaluationStrategy(std::move(value)); return *this;} /** *

The date and time that the feature was most recently updated.

*/ inline const Aws::Utils::DateTime& GetLastUpdatedTime() const{ return m_lastUpdatedTime; } /** *

The date and time that the feature was most recently updated.

*/ inline bool LastUpdatedTimeHasBeenSet() const { return m_lastUpdatedTimeHasBeenSet; } /** *

The date and time that the feature was most recently updated.

*/ inline void SetLastUpdatedTime(const Aws::Utils::DateTime& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = value; } /** *

The date and time that the feature was most recently updated.

*/ inline void SetLastUpdatedTime(Aws::Utils::DateTime&& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = std::move(value); } /** *

The date and time that the feature was most recently updated.

*/ inline Feature& WithLastUpdatedTime(const Aws::Utils::DateTime& value) { SetLastUpdatedTime(value); return *this;} /** *

The date and time that the feature was most recently updated.

*/ inline Feature& WithLastUpdatedTime(Aws::Utils::DateTime&& value) { SetLastUpdatedTime(std::move(value)); return *this;} /** *

The name of the feature.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the feature.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the feature.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the feature.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the feature.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the feature.

*/ inline Feature& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the feature.

*/ inline Feature& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the feature.

*/ inline Feature& WithName(const char* value) { SetName(value); return *this;} /** *

The name or ARN of the project that contains the feature.

*/ inline const Aws::String& GetProject() const{ return m_project; } /** *

The name or ARN of the project that contains the feature.

*/ inline bool ProjectHasBeenSet() const { return m_projectHasBeenSet; } /** *

The name or ARN of the project that contains the feature.

*/ inline void SetProject(const Aws::String& value) { m_projectHasBeenSet = true; m_project = value; } /** *

The name or ARN of the project that contains the feature.

*/ inline void SetProject(Aws::String&& value) { m_projectHasBeenSet = true; m_project = std::move(value); } /** *

The name or ARN of the project that contains the feature.

*/ inline void SetProject(const char* value) { m_projectHasBeenSet = true; m_project.assign(value); } /** *

The name or ARN of the project that contains the feature.

*/ inline Feature& WithProject(const Aws::String& value) { SetProject(value); return *this;} /** *

The name or ARN of the project that contains the feature.

*/ inline Feature& WithProject(Aws::String&& value) { SetProject(std::move(value)); return *this;} /** *

The name or ARN of the project that contains the feature.

*/ inline Feature& WithProject(const char* value) { SetProject(value); return *this;} /** *

The current state of the feature.

*/ inline const FeatureStatus& GetStatus() const{ return m_status; } /** *

The current state of the feature.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The current state of the feature.

*/ inline void SetStatus(const FeatureStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The current state of the feature.

*/ inline void SetStatus(FeatureStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The current state of the feature.

*/ inline Feature& WithStatus(const FeatureStatus& value) { SetStatus(value); return *this;} /** *

The current state of the feature.

*/ inline Feature& WithStatus(FeatureStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The list of tag keys and values associated with this feature.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

The list of tag keys and values associated with this feature.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

The list of tag keys and values associated with this feature.

*/ inline void SetTags(const Aws::Map& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The list of tag keys and values associated with this feature.

*/ inline void SetTags(Aws::Map&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

The list of tag keys and values associated with this feature.

*/ inline Feature& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

Defines the type of value used to define the different feature variations. * For more information, see Variation * types

*/ inline const VariationValueType& GetValueType() const{ return m_valueType; } /** *

Defines the type of value used to define the different feature variations. * For more information, see Variation * types

*/ inline bool ValueTypeHasBeenSet() const { return m_valueTypeHasBeenSet; } /** *

Defines the type of value used to define the different feature variations. * For more information, see Variation * types

*/ inline void SetValueType(const VariationValueType& value) { m_valueTypeHasBeenSet = true; m_valueType = value; } /** *

Defines the type of value used to define the different feature variations. * For more information, see Variation * types

*/ inline void SetValueType(VariationValueType&& value) { m_valueTypeHasBeenSet = true; m_valueType = std::move(value); } /** *

Defines the type of value used to define the different feature variations. * For more information, see Variation * types

*/ inline Feature& WithValueType(const VariationValueType& value) { SetValueType(value); return *this;} /** *

Defines the type of value used to define the different feature variations. * For more information, see Variation * types

*/ inline Feature& WithValueType(VariationValueType&& value) { SetValueType(std::move(value)); return *this;} /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline const Aws::Vector& GetVariations() const{ return m_variations; } /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline bool VariationsHasBeenSet() const { return m_variationsHasBeenSet; } /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline void SetVariations(const Aws::Vector& value) { m_variationsHasBeenSet = true; m_variations = value; } /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline void SetVariations(Aws::Vector&& value) { m_variationsHasBeenSet = true; m_variations = std::move(value); } /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline Feature& WithVariations(const Aws::Vector& value) { SetVariations(value); return *this;} /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline Feature& WithVariations(Aws::Vector&& value) { SetVariations(std::move(value)); return *this;} /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline Feature& AddVariations(const Variation& value) { m_variationsHasBeenSet = true; m_variations.push_back(value); return *this; } /** *

An array of structures that contain the configuration of the feature's * different variations.

*/ inline Feature& AddVariations(Variation&& value) { m_variationsHasBeenSet = true; m_variations.push_back(std::move(value)); return *this; } private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Utils::DateTime m_createdTime; bool m_createdTimeHasBeenSet = false; Aws::String m_defaultVariation; bool m_defaultVariationHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Map m_entityOverrides; bool m_entityOverridesHasBeenSet = false; Aws::Vector m_evaluationRules; bool m_evaluationRulesHasBeenSet = false; FeatureEvaluationStrategy m_evaluationStrategy; bool m_evaluationStrategyHasBeenSet = false; Aws::Utils::DateTime m_lastUpdatedTime; bool m_lastUpdatedTimeHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_project; bool m_projectHasBeenSet = false; FeatureStatus m_status; bool m_statusHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; VariationValueType m_valueType; bool m_valueTypeHasBeenSet = false; Aws::Vector m_variations; bool m_variationsHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchEvidently } // namespace Aws