/** * 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 namespace Aws { namespace AppConfig { namespace Model { /** */ class AWS_APPCONFIG_API CreateDeploymentStrategyRequest : public AppConfigRequest { public: CreateDeploymentStrategyRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateDeploymentStrategy"; } Aws::String SerializePayload() const override; /** *

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A name for the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

A description of the deployment strategy.

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

Total amount of time for a deployment to last.

*/ inline int GetDeploymentDurationInMinutes() const{ return m_deploymentDurationInMinutes; } /** *

Total amount of time for a deployment to last.

*/ inline bool DeploymentDurationInMinutesHasBeenSet() const { return m_deploymentDurationInMinutesHasBeenSet; } /** *

Total amount of time for a deployment to last.

*/ inline void SetDeploymentDurationInMinutes(int value) { m_deploymentDurationInMinutesHasBeenSet = true; m_deploymentDurationInMinutes = value; } /** *

Total amount of time for a deployment to last.

*/ inline CreateDeploymentStrategyRequest& WithDeploymentDurationInMinutes(int value) { SetDeploymentDurationInMinutes(value); return *this;} /** *

The amount of time AppConfig monitors for alarms before considering the * deployment to be complete and no longer eligible for automatic roll back.

*/ inline int GetFinalBakeTimeInMinutes() const{ return m_finalBakeTimeInMinutes; } /** *

The amount of time AppConfig monitors for alarms before considering the * deployment to be complete and no longer eligible for automatic roll back.

*/ inline bool FinalBakeTimeInMinutesHasBeenSet() const { return m_finalBakeTimeInMinutesHasBeenSet; } /** *

The amount of time AppConfig monitors for alarms before considering the * deployment to be complete and no longer eligible for automatic roll back.

*/ inline void SetFinalBakeTimeInMinutes(int value) { m_finalBakeTimeInMinutesHasBeenSet = true; m_finalBakeTimeInMinutes = value; } /** *

The amount of time AppConfig monitors for alarms before considering the * deployment to be complete and no longer eligible for automatic roll back.

*/ inline CreateDeploymentStrategyRequest& WithFinalBakeTimeInMinutes(int value) { SetFinalBakeTimeInMinutes(value); return *this;} /** *

The percentage of targets to receive a deployed configuration during each * interval.

*/ inline double GetGrowthFactor() const{ return m_growthFactor; } /** *

The percentage of targets to receive a deployed configuration during each * interval.

*/ inline bool GrowthFactorHasBeenSet() const { return m_growthFactorHasBeenSet; } /** *

The percentage of targets to receive a deployed configuration during each * interval.

*/ inline void SetGrowthFactor(double value) { m_growthFactorHasBeenSet = true; m_growthFactor = value; } /** *

The percentage of targets to receive a deployed configuration during each * interval.

*/ inline CreateDeploymentStrategyRequest& WithGrowthFactor(double value) { SetGrowthFactor(value); return *this;} /** *

The algorithm used to define how percentage grows over time. AWS AppConfig * supports the following growth types:

Linear: For this type, * AppConfig processes the deployment by dividing the total number of targets by * the value specified for Step percentage. For example, a linear * deployment that uses a Step percentage of 10 deploys the * configuration to 10 percent of the hosts. After those deployments are complete, * the system deploys the configuration to the next 10 percent. This continues * until 100% of the targets have successfully received the configuration.

* Exponential: For this type, AppConfig processes the deployment * exponentially using the following formula: G*(2^N). In this * formula, G is the growth factor specified by the user and * N is the number of steps until the configuration is deployed to all * targets. For example, if you specify a growth factor of 2, then the system rolls * out the configuration as follows:

2*(2^0)

* 2*(2^1)

2*(2^2)

Expressed * numerically, the deployment rolls out as follows: 2% of the targets, 4% of the * targets, 8% of the targets, and continues until the configuration has been * deployed to all targets.

*/ inline const GrowthType& GetGrowthType() const{ return m_growthType; } /** *

The algorithm used to define how percentage grows over time. AWS AppConfig * supports the following growth types:

Linear: For this type, * AppConfig processes the deployment by dividing the total number of targets by * the value specified for Step percentage. For example, a linear * deployment that uses a Step percentage of 10 deploys the * configuration to 10 percent of the hosts. After those deployments are complete, * the system deploys the configuration to the next 10 percent. This continues * until 100% of the targets have successfully received the configuration.

* Exponential: For this type, AppConfig processes the deployment * exponentially using the following formula: G*(2^N). In this * formula, G is the growth factor specified by the user and * N is the number of steps until the configuration is deployed to all * targets. For example, if you specify a growth factor of 2, then the system rolls * out the configuration as follows:

2*(2^0)

* 2*(2^1)

2*(2^2)

Expressed * numerically, the deployment rolls out as follows: 2% of the targets, 4% of the * targets, 8% of the targets, and continues until the configuration has been * deployed to all targets.

*/ inline bool GrowthTypeHasBeenSet() const { return m_growthTypeHasBeenSet; } /** *

The algorithm used to define how percentage grows over time. AWS AppConfig * supports the following growth types:

Linear: For this type, * AppConfig processes the deployment by dividing the total number of targets by * the value specified for Step percentage. For example, a linear * deployment that uses a Step percentage of 10 deploys the * configuration to 10 percent of the hosts. After those deployments are complete, * the system deploys the configuration to the next 10 percent. This continues * until 100% of the targets have successfully received the configuration.

* Exponential: For this type, AppConfig processes the deployment * exponentially using the following formula: G*(2^N). In this * formula, G is the growth factor specified by the user and * N is the number of steps until the configuration is deployed to all * targets. For example, if you specify a growth factor of 2, then the system rolls * out the configuration as follows:

2*(2^0)

* 2*(2^1)

2*(2^2)

Expressed * numerically, the deployment rolls out as follows: 2% of the targets, 4% of the * targets, 8% of the targets, and continues until the configuration has been * deployed to all targets.

*/ inline void SetGrowthType(const GrowthType& value) { m_growthTypeHasBeenSet = true; m_growthType = value; } /** *

The algorithm used to define how percentage grows over time. AWS AppConfig * supports the following growth types:

Linear: For this type, * AppConfig processes the deployment by dividing the total number of targets by * the value specified for Step percentage. For example, a linear * deployment that uses a Step percentage of 10 deploys the * configuration to 10 percent of the hosts. After those deployments are complete, * the system deploys the configuration to the next 10 percent. This continues * until 100% of the targets have successfully received the configuration.

* Exponential: For this type, AppConfig processes the deployment * exponentially using the following formula: G*(2^N). In this * formula, G is the growth factor specified by the user and * N is the number of steps until the configuration is deployed to all * targets. For example, if you specify a growth factor of 2, then the system rolls * out the configuration as follows:

2*(2^0)

* 2*(2^1)

2*(2^2)

Expressed * numerically, the deployment rolls out as follows: 2% of the targets, 4% of the * targets, 8% of the targets, and continues until the configuration has been * deployed to all targets.

*/ inline void SetGrowthType(GrowthType&& value) { m_growthTypeHasBeenSet = true; m_growthType = std::move(value); } /** *

The algorithm used to define how percentage grows over time. AWS AppConfig * supports the following growth types:

Linear: For this type, * AppConfig processes the deployment by dividing the total number of targets by * the value specified for Step percentage. For example, a linear * deployment that uses a Step percentage of 10 deploys the * configuration to 10 percent of the hosts. After those deployments are complete, * the system deploys the configuration to the next 10 percent. This continues * until 100% of the targets have successfully received the configuration.

* Exponential: For this type, AppConfig processes the deployment * exponentially using the following formula: G*(2^N). In this * formula, G is the growth factor specified by the user and * N is the number of steps until the configuration is deployed to all * targets. For example, if you specify a growth factor of 2, then the system rolls * out the configuration as follows:

2*(2^0)

* 2*(2^1)

2*(2^2)

Expressed * numerically, the deployment rolls out as follows: 2% of the targets, 4% of the * targets, 8% of the targets, and continues until the configuration has been * deployed to all targets.

*/ inline CreateDeploymentStrategyRequest& WithGrowthType(const GrowthType& value) { SetGrowthType(value); return *this;} /** *

The algorithm used to define how percentage grows over time. AWS AppConfig * supports the following growth types:

Linear: For this type, * AppConfig processes the deployment by dividing the total number of targets by * the value specified for Step percentage. For example, a linear * deployment that uses a Step percentage of 10 deploys the * configuration to 10 percent of the hosts. After those deployments are complete, * the system deploys the configuration to the next 10 percent. This continues * until 100% of the targets have successfully received the configuration.

* Exponential: For this type, AppConfig processes the deployment * exponentially using the following formula: G*(2^N). In this * formula, G is the growth factor specified by the user and * N is the number of steps until the configuration is deployed to all * targets. For example, if you specify a growth factor of 2, then the system rolls * out the configuration as follows:

2*(2^0)

* 2*(2^1)

2*(2^2)

Expressed * numerically, the deployment rolls out as follows: 2% of the targets, 4% of the * targets, 8% of the targets, and continues until the configuration has been * deployed to all targets.

*/ inline CreateDeploymentStrategyRequest& WithGrowthType(GrowthType&& value) { SetGrowthType(std::move(value)); return *this;} /** *

Save the deployment strategy to a Systems Manager (SSM) document.

*/ inline const ReplicateTo& GetReplicateTo() const{ return m_replicateTo; } /** *

Save the deployment strategy to a Systems Manager (SSM) document.

*/ inline bool ReplicateToHasBeenSet() const { return m_replicateToHasBeenSet; } /** *

Save the deployment strategy to a Systems Manager (SSM) document.

*/ inline void SetReplicateTo(const ReplicateTo& value) { m_replicateToHasBeenSet = true; m_replicateTo = value; } /** *

Save the deployment strategy to a Systems Manager (SSM) document.

*/ inline void SetReplicateTo(ReplicateTo&& value) { m_replicateToHasBeenSet = true; m_replicateTo = std::move(value); } /** *

Save the deployment strategy to a Systems Manager (SSM) document.

*/ inline CreateDeploymentStrategyRequest& WithReplicateTo(const ReplicateTo& value) { SetReplicateTo(value); return *this;} /** *

Save the deployment strategy to a Systems Manager (SSM) document.

*/ inline CreateDeploymentStrategyRequest& WithReplicateTo(ReplicateTo&& value) { SetReplicateTo(std::move(value)); return *this;} /** *

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

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

Metadata to assign to the deployment strategy. Tags help organize and * categorize your AppConfig resources. Each tag consists of a key and an optional * value, both of which you define.

*/ inline CreateDeploymentStrategyRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet; Aws::String m_description; bool m_descriptionHasBeenSet; int m_deploymentDurationInMinutes; bool m_deploymentDurationInMinutesHasBeenSet; int m_finalBakeTimeInMinutes; bool m_finalBakeTimeInMinutesHasBeenSet; double m_growthFactor; bool m_growthFactorHasBeenSet; GrowthType m_growthType; bool m_growthTypeHasBeenSet; ReplicateTo m_replicateTo; bool m_replicateToHasBeenSet; Aws::Map m_tags; bool m_tagsHasBeenSet; }; } // namespace Model } // namespace AppConfig } // namespace Aws