Show / Hide Table of Contents

Class CfnTrafficRoute

A traffic route, representing where the traffic is being directed to.

Inheritance
object
CfnTrafficRoute
Implements
ICfnTrafficRoute
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 CfnTrafficRoute : ICfnTrafficRoute
Syntax (vb)
Public Class CfnTrafficRoute Implements ICfnTrafficRoute
Remarks

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 cfnTrafficRoute = new CfnTrafficRoute {
                LogicalId = "logicalId",
                Type = "type"
            };

Synopsis

Constructors

CfnTrafficRoute()

A traffic route, representing where the traffic is being directed to.

Properties

LogicalId

The logical id of the target resource.

Type

The resource type of the route.

Constructors

CfnTrafficRoute()

A traffic route, representing where the traffic is being directed to.

public CfnTrafficRoute()
Remarks

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 cfnTrafficRoute = new CfnTrafficRoute {
                LogicalId = "logicalId",
                Type = "type"
            };

Properties

LogicalId

The logical id of the target resource.

public string LogicalId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Type

The resource type of the route.

public string Type { get; set; }
Property Value

string

Remarks

Today, the only allowed value is 'AWS::ElasticLoadBalancingV2::Listener'.

Implements

ICfnTrafficRoute
Back to top Generated by DocFX