Table of Contents

Interface ICfnTrafficRouting

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

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

ICfnTrafficRoute

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; }

Property Value

ICfnTrafficRoute