Show / Hide Table of Contents

Interface CfnGatewayRoute.IGatewayRouteTargetProperty

An object that represents a gateway route target.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnGatewayRoute.IGatewayRouteTargetProperty
Syntax (vb)
Public Interface CfnGatewayRoute.IGatewayRouteTargetProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-gatewayroutetarget.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.AppMesh;

             var gatewayRouteTargetProperty = new GatewayRouteTargetProperty {
                 VirtualService = new GatewayRouteVirtualServiceProperty {
                     VirtualServiceName = "virtualServiceName"
                 },

                 // the properties below are optional
                 Port = 123
             };

Synopsis

Properties

Port

The port number of the gateway route target.

VirtualService

An object that represents a virtual service gateway route target.

Properties

Port

The port number of the gateway route target.

double? Port { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-gatewayroutetarget.html#cfn-appmesh-gatewayroute-gatewayroutetarget-port

VirtualService

An object that represents a virtual service gateway route target.

object VirtualService { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-gatewayroutetarget.html#cfn-appmesh-gatewayroute-gatewayroutetarget-virtualservice

Back to top Generated by DocFX