Interface ICfnTrafficRouting
Type of the {@link CfnCodeDeployBlueGreenEcsAttributes.trafficRouting} property.
public interface ICfnTrafficRouting
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var cfnTrafficRouting = new CfnTrafficRouting {
ProdTrafficRoute = new CfnTrafficRoute {
LogicalId = "logicalId",
Type = "type"
},
TargetGroups = new [] { "targetGroups" },
TestTrafficRoute = new CfnTrafficRoute {
LogicalId = "logicalId",
Type = "type"
}
};
Remarks
ExampleMetadata: fixture=_generated
Properties
ProdTrafficRoute
The listener to be used by your load balancer to direct traffic to your target groups.
ICfnTrafficRoute ProdTrafficRoute { get; }
Property Value
TargetGroups
The logical IDs of the blue and green, respectively, AWS::ElasticLoadBalancingV2::TargetGroup target groups.
string[] TargetGroups { get; }
Property Value
- string[]
TestTrafficRoute
The listener to be used by your load balancer to direct traffic to your target groups.
ICfnTrafficRoute TestTrafficRoute { get; }