Class GatewayRouteAttributes
Interface with properties necessary to import a reusable GatewayRoute.
Inheritance
System.Object
GatewayRouteAttributes
Implements
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GatewayRouteAttributes : Object, IGatewayRouteAttributes
Syntax (vb)
Public Class GatewayRouteAttributes
Inherits Object
Implements 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
Constructors
GatewayRouteAttributes() |
Properties
GatewayRouteName | The name of the GatewayRoute. |
VirtualGateway | The VirtualGateway this GatewayRoute is associated with. |
Constructors
GatewayRouteAttributes()
public GatewayRouteAttributes()
Properties
GatewayRouteName
The name of the GatewayRoute.
public string GatewayRouteName { get; set; }
Property Value
System.String
VirtualGateway
The VirtualGateway this GatewayRoute is associated with.
public IVirtualGateway VirtualGateway { get; set; }
Property Value