AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the CreateDeploymentStrategy operation. Creates a deployment strategy that defines important criteria for rolling out your configuration to the designated targets. A deployment strategy includes the overall duration required, a percentage of targets to receive the deployment during each interval, an algorithm that defines how percentage grows, and bake time.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.AppConfig.AmazonAppConfigRequest
      Amazon.AppConfig.Model.CreateDeploymentStrategyRequest

Namespace: Amazon.AppConfig.Model
Assembly: AWSSDK.AppConfig.dll
Version: 3.x.y.z

Syntax

C#
public class CreateDeploymentStrategyRequest : AmazonAppConfigRequest
         IAmazonWebServiceRequest

The CreateDeploymentStrategyRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property DeploymentDurationInMinutes System.Int32

Gets and sets the property DeploymentDurationInMinutes.

Total amount of time for a deployment to last.

Public Property Description System.String

Gets and sets the property Description.

A description of the deployment strategy.

Public Property FinalBakeTimeInMinutes System.Int32

Gets and sets the property FinalBakeTimeInMinutes.

Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered during this time, AppConfig rolls back the deployment. You must configure permissions for AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User Guide.

Public Property GrowthFactor System.Single

Gets and sets the property GrowthFactor.

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

Public Property GrowthType Amazon.AppConfig.GrowthType

Gets and sets the property GrowthType.

The algorithm used to define how percentage grows over time. 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.

Public Property Name System.String

Gets and sets the property Name.

A name for the deployment strategy.

Public Property ReplicateTo Amazon.AppConfig.ReplicateTo

Gets and sets the property ReplicateTo.

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

Public Property Tags System.Collections.Generic.Dictionary<System.String, System.String>

Gets and sets the property 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.

Examples

The following create-deployment-strategy example creates a deployment strategy called Example-Deployment that takes 15 minutes and deploys the configuration to 25% of the application at a time. The strategy is also copied to an SSM Document.

To create a deployment strategy


var client = new AmazonAppConfigClient();
var response = client.CreateDeploymentStrategy(new CreateDeploymentStrategyRequest 
{
    DeploymentDurationInMinutes = 15,
    GrowthFactor = 25,
    Name = "Example-Deployment",
    ReplicateTo = "SSM_DOCUMENT"
});

int deploymentDurationInMinutes = response.DeploymentDurationInMinutes;
int finalBakeTimeInMinutes = response.FinalBakeTimeInMinutes;
float growthFactor = response.GrowthFactor;
string growthType = response.GrowthType;
string id = response.Id;
string name = response.Name;
string replicateTo = response.ReplicateTo;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5