Show / Hide Table of Contents

Class RouteSpecOptionsBase

Base options for all route specs.

Inheritance
object
RouteSpecOptionsBase
Implements
IRouteSpecOptionsBase
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RouteSpecOptionsBase : IRouteSpecOptionsBase
Syntax (vb)
Public Class RouteSpecOptionsBase Implements IRouteSpecOptionsBase
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 routeSpecOptionsBase = new RouteSpecOptionsBase {
                Priority = 123
            };

Synopsis

Constructors

RouteSpecOptionsBase()

Base options for all route specs.

Properties

Priority

The priority for the route.

Constructors

RouteSpecOptionsBase()

Base options for all route specs.

public RouteSpecOptionsBase()
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 routeSpecOptionsBase = new RouteSpecOptionsBase {
                Priority = 123
            };

Properties

Priority

The priority for the route.

public double? Priority { get; set; }
Property Value

double?

Remarks

When a Virtual Router has multiple routes, route match is performed in the order of specified value, where 0 is the highest priority, and first matched route is selected.

Default: - no particular priority

Implements

IRouteSpecOptionsBase
Back to top Generated by DocFX