Show / Hide Table of Contents

Class CfnRoutePropsMixin.TcpRouteActionProperty

An object that represents the action to take if a match is determined.

Inheritance
object
CfnRoutePropsMixin.TcpRouteActionProperty
Implements
CfnRoutePropsMixin.ITcpRouteActionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnRoutePropsMixin.TcpRouteActionProperty : CfnRoutePropsMixin.ITcpRouteActionProperty
Syntax (vb)
Public Class CfnRoutePropsMixin.TcpRouteActionProperty Implements CfnRoutePropsMixin.ITcpRouteActionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-tcprouteaction.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var tcpRouteActionProperty = new TcpRouteActionProperty {
                 WeightedTargets = new [] { new WeightedTargetProperty {
                     Port = 123,
                     VirtualNode = "virtualNode",
                     Weight = 123
                 } }
             };

Synopsis

Constructors

TcpRouteActionProperty()

An object that represents the action to take if a match is determined.

Properties

WeightedTargets

An object that represents the targets that traffic is routed to when a request matches the route.

Constructors

TcpRouteActionProperty()

An object that represents the action to take if a match is determined.

public TcpRouteActionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-tcprouteaction.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var tcpRouteActionProperty = new TcpRouteActionProperty {
                 WeightedTargets = new [] { new WeightedTargetProperty {
                     Port = 123,
                     VirtualNode = "virtualNode",
                     Weight = 123
                 } }
             };

Properties

WeightedTargets

An object that represents the targets that traffic is routed to when a request matches the route.

public object? WeightedTargets { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-tcprouteaction.html#cfn-appmesh-route-tcprouteaction-weightedtargets

Type union: either IResolvable or (either IResolvable or CfnRoutePropsMixin.IWeightedTargetProperty)[]

Implements

CfnRoutePropsMixin.ITcpRouteActionProperty
Back to top Generated by DocFX