Interface IGatewayRouteAttributes
Interface with properties necessary to import a reusable GatewayRoute.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IGatewayRouteAttributes
Syntax (vb)
Public Interface IGatewayRouteAttributes
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;
VirtualGateway virtualGateway;
var gatewayRouteAttributes = new GatewayRouteAttributes {
GatewayRouteName = "gatewayRouteName",
VirtualGateway = virtualGateway
};
Synopsis
Properties
GatewayRouteName | The name of the GatewayRoute. |
VirtualGateway | The VirtualGateway this GatewayRoute is associated with. |
Properties
GatewayRouteName
The name of the GatewayRoute.
string GatewayRouteName { get; }
Property Value
System.String
VirtualGateway
The VirtualGateway this GatewayRoute is associated with.
IVirtualGateway VirtualGateway { get; }
Property Value