Show / Hide Table of Contents

Class CfnCodeDeployBlueGreenEcsAttributes

The attributes of the ECS Service being deployed.

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

Type of the CfnCodeDeployBlueGreenApplication.ecsAttributes property.

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;

             var cfnCodeDeployBlueGreenEcsAttributes = new CfnCodeDeployBlueGreenEcsAttributes {
                 TaskDefinitions = new [] { "taskDefinitions" },
                 TaskSets = new [] { "taskSets" },
                 TrafficRouting = new CfnTrafficRouting {
                     ProdTrafficRoute = new CfnTrafficRoute {
                         LogicalId = "logicalId",
                         Type = "type"
                     },
                     TargetGroups = new [] { "targetGroups" },
                     TestTrafficRoute = new CfnTrafficRoute {
                         LogicalId = "logicalId",
                         Type = "type"
                     }
                 }
             };

Synopsis

Constructors

CfnCodeDeployBlueGreenEcsAttributes()

The attributes of the ECS Service being deployed.

Properties

TaskDefinitions

The logical IDs of the blue and green, respectively, AWS::ECS::TaskDefinition task definitions.

TaskSets

The logical IDs of the blue and green, respectively, AWS::ECS::TaskSet task sets.

TrafficRouting

The traffic routing configuration.

Constructors

CfnCodeDeployBlueGreenEcsAttributes()

The attributes of the ECS Service being deployed.

public CfnCodeDeployBlueGreenEcsAttributes()
Remarks

Type of the CfnCodeDeployBlueGreenApplication.ecsAttributes property.

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;

             var cfnCodeDeployBlueGreenEcsAttributes = new CfnCodeDeployBlueGreenEcsAttributes {
                 TaskDefinitions = new [] { "taskDefinitions" },
                 TaskSets = new [] { "taskSets" },
                 TrafficRouting = new CfnTrafficRouting {
                     ProdTrafficRoute = new CfnTrafficRoute {
                         LogicalId = "logicalId",
                         Type = "type"
                     },
                     TargetGroups = new [] { "targetGroups" },
                     TestTrafficRoute = new CfnTrafficRoute {
                         LogicalId = "logicalId",
                         Type = "type"
                     }
                 }
             };

Properties

TaskDefinitions

The logical IDs of the blue and green, respectively, AWS::ECS::TaskDefinition task definitions.

public string[] TaskDefinitions { get; set; }
Property Value

string[]

Remarks

Type of the CfnCodeDeployBlueGreenApplication.ecsAttributes property.

ExampleMetadata: fixture=_generated

TaskSets

The logical IDs of the blue and green, respectively, AWS::ECS::TaskSet task sets.

public string[] TaskSets { get; set; }
Property Value

string[]

Remarks

Type of the CfnCodeDeployBlueGreenApplication.ecsAttributes property.

ExampleMetadata: fixture=_generated

TrafficRouting

The traffic routing configuration.

public ICfnTrafficRouting TrafficRouting { get; set; }
Property Value

ICfnTrafficRouting

Remarks

Type of the CfnCodeDeployBlueGreenApplication.ecsAttributes property.

ExampleMetadata: fixture=_generated

Implements

ICfnCodeDeployBlueGreenEcsAttributes
Back to top Generated by DocFX