Class CfnCodeDeployBlueGreenApplication
The application actually being deployed.
public class CfnCodeDeployBlueGreenApplication : ICfnCodeDeployBlueGreenApplication
- Inheritance
-
CfnCodeDeployBlueGreenApplication
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var cfnCodeDeployBlueGreenApplication = new CfnCodeDeployBlueGreenApplication {
EcsAttributes = 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"
}
}
},
Target = new CfnCodeDeployBlueGreenApplicationTarget {
LogicalId = "logicalId",
Type = "type"
}
};
Remarks
Type of the {@link CfnCodeDeployBlueGreenHookProps.applications} property.
ExampleMetadata: fixture=_generated
Constructors
CfnCodeDeployBlueGreenApplication()
public CfnCodeDeployBlueGreenApplication()
Properties
EcsAttributes
The detailed attributes of the deployed target.
public ICfnCodeDeployBlueGreenEcsAttributes EcsAttributes { get; set; }
Property Value
Target
The target that is being deployed.
public ICfnCodeDeployBlueGreenApplicationTarget Target { get; set; }