Show / Hide Table of Contents

Interface CfnRoute.IGrpcRouteMetadataProperty

An object that represents the match metadata for the route.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRoute.IGrpcRouteMetadataProperty
Syntax (vb)
Public Interface CfnRoute.IGrpcRouteMetadataProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadata.html

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 grpcRouteMetadataProperty = new GrpcRouteMetadataProperty {
                 Name = "name",

                 // the properties below are optional
                 Invert = false,
                 Match = new GrpcRouteMetadataMatchMethodProperty {
                     Exact = "exact",
                     Prefix = "prefix",
                     Range = new MatchRangeProperty {
                         End = 123,
                         Start = 123
                     },
                     Regex = "regex",
                     Suffix = "suffix"
                 }
             };

Synopsis

Properties

Invert

Specify True to match anything except the match criteria.

Match

An object that represents the data to match from the request.

Name

The name of the route.

Properties

Invert

Specify True to match anything except the match criteria.

object? Invert { get; }
Property Value

object

Remarks

The default value is False .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadata.html#cfn-appmesh-route-grpcroutemetadata-invert

Match

An object that represents the data to match from the request.

object? Match { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadata.html#cfn-appmesh-route-grpcroutemetadata-match

Name

The name of the route.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadata.html#cfn-appmesh-route-grpcroutemetadata-name

Back to top Generated by DocFX