Show / Hide Table of Contents

Class CfnDeploymentGroup.DeploymentReadyOptionProperty

Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.

Inheritance
object
CfnDeploymentGroup.DeploymentReadyOptionProperty
Implements
CfnDeploymentGroup.IDeploymentReadyOptionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.DeploymentReadyOptionProperty : CfnDeploymentGroup.IDeploymentReadyOptionProperty
Syntax (vb)
Public Class CfnDeploymentGroup.DeploymentReadyOptionProperty Implements CfnDeploymentGroup.IDeploymentReadyOptionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentreadyoption.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.CodeDeploy;

             var deploymentReadyOptionProperty = new DeploymentReadyOptionProperty {
                 ActionOnTimeout = "actionOnTimeout",
                 WaitTimeInMinutes = 123
             };

Synopsis

Constructors

DeploymentReadyOptionProperty()

Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.

Properties

ActionOnTimeout

Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.

WaitTimeInMinutes

The number of minutes to wait before the status of a blue/green deployment is changed to Stopped if rerouting is not started manually.

Constructors

DeploymentReadyOptionProperty()

Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.

public DeploymentReadyOptionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentreadyoption.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.CodeDeploy;

             var deploymentReadyOptionProperty = new DeploymentReadyOptionProperty {
                 ActionOnTimeout = "actionOnTimeout",
                 WaitTimeInMinutes = 123
             };

Properties

ActionOnTimeout

Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.

public string? ActionOnTimeout { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentreadyoption.html#cfn-codedeploy-deploymentgroup-deploymentreadyoption-actionontimeout

    WaitTimeInMinutes

    The number of minutes to wait before the status of a blue/green deployment is changed to Stopped if rerouting is not started manually.

    public double? WaitTimeInMinutes { get; set; }
    Property Value

    double?

    Remarks

    Applies only to the STOP_DEPLOYMENT option for actionOnTimeout .

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentreadyoption.html#cfn-codedeploy-deploymentgroup-deploymentreadyoption-waittimeinminutes

    Implements

    CfnDeploymentGroup.IDeploymentReadyOptionProperty
    Back to top Generated by DocFX