Show / Hide Table of Contents

Interface IGatewayRouteProps

Properties to define a new GatewayRoute.

Inherited Members
IGatewayRouteBaseProps.RouteSpec
IGatewayRouteBaseProps.GatewayRouteName
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IGatewayRouteProps : IGatewayRouteBaseProps
Syntax (vb)
Public Interface IGatewayRouteProps Inherits IGatewayRouteBaseProps
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;

            GatewayRouteSpec gatewayRouteSpec;
            VirtualGateway virtualGateway;

            var gatewayRouteProps = new GatewayRouteProps {
                RouteSpec = gatewayRouteSpec,
                VirtualGateway = virtualGateway,

                // the properties below are optional
                GatewayRouteName = "gatewayRouteName"
            };

Synopsis

Properties

VirtualGateway

The VirtualGateway this GatewayRoute is associated with.

Properties

VirtualGateway

The VirtualGateway this GatewayRoute is associated with.

IVirtualGateway VirtualGateway { get; }
Property Value

IVirtualGateway

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX