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 IGatewayRouteTargetProperty
Syntax (vb)
Public Interface IGatewayRouteTargetProperty
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.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.
virtual Nullable<double> Port { get; }
Property Value
System.Nullable<System.Double>
Remarks
VirtualService
An object that represents a virtual service gateway route target.
object VirtualService { get; }
Property Value
System.Object