Show / Hide Table of Contents

Interface IRouteProps

Properties to define new Routes.

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

            Mesh mesh;
            RouteSpec routeSpec;
            VirtualRouter virtualRouter;

            var routeProps = new RouteProps {
                Mesh = mesh,
                RouteSpec = routeSpec,
                VirtualRouter = virtualRouter,

                // the properties below are optional
                RouteName = "routeName"
            };

Synopsis

Properties

Mesh

The service mesh to define the route in.

VirtualRouter

The VirtualRouter the Route belongs to.

Properties

Mesh

The service mesh to define the route in.

IMesh Mesh { get; }
Property Value

IMesh

Remarks

ExampleMetadata: fixture=_generated

VirtualRouter

The VirtualRouter the Route belongs to.

IVirtualRouter VirtualRouter { get; }
Property Value

IVirtualRouter

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX