Show / Hide Table of Contents

Class CfnDeploymentGroup.TrafficRouteProperty

Information about a listener.

Inheritance
object
CfnDeploymentGroup.TrafficRouteProperty
Implements
CfnDeploymentGroup.ITrafficRouteProperty
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.TrafficRouteProperty : CfnDeploymentGroup.ITrafficRouteProperty
Syntax (vb)
Public Class CfnDeploymentGroup.TrafficRouteProperty Implements CfnDeploymentGroup.ITrafficRouteProperty
Remarks

The listener contains the path used to route traffic that is received from the load balancer to a target group.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-trafficroute.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 trafficRouteProperty = new TrafficRouteProperty {
                 ListenerArns = new [] { "listenerArns" }
             };

Synopsis

Constructors

TrafficRouteProperty()

Information about a listener.

Properties

ListenerArns

The Amazon Resource Name (ARN) of one listener.

Constructors

TrafficRouteProperty()

Information about a listener.

public TrafficRouteProperty()
Remarks

The listener contains the path used to route traffic that is received from the load balancer to a target group.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-trafficroute.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 trafficRouteProperty = new TrafficRouteProperty {
                 ListenerArns = new [] { "listenerArns" }
             };

Properties

ListenerArns

The Amazon Resource Name (ARN) of one listener.

public string[]? ListenerArns { get; set; }
Property Value

string[]

Remarks

The listener identifies the route between a target group and a load balancer. This is an array of strings with a maximum size of one.

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

Implements

CfnDeploymentGroup.ITrafficRouteProperty
Back to top Generated by DocFX