Show / Hide Table of Contents

Class CfnRoute.GrpcRouteMetadataMatchMethodProperty

An object that represents the match method.

Inheritance
System.Object
CfnRoute.GrpcRouteMetadataMatchMethodProperty
Implements
CfnRoute.IGrpcRouteMetadataMatchMethodProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.AWS.AppMesh.dll
Syntax (csharp)
public class GrpcRouteMetadataMatchMethodProperty : Object, CfnRoute.IGrpcRouteMetadataMatchMethodProperty
Syntax (vb)
Public Class GrpcRouteMetadataMatchMethodProperty
    Inherits Object
    Implements CfnRoute.IGrpcRouteMetadataMatchMethodProperty
Remarks

Specify one of the match values.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadatamatchmethod.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 grpcRouteMetadataMatchMethodProperty = new GrpcRouteMetadataMatchMethodProperty {
    Exact = "exact",
    Prefix = "prefix",
    Range = new MatchRangeProperty {
        End = 123,
        Start = 123
    },
    Regex = "regex",
    Suffix = "suffix"
};

Synopsis

Constructors

GrpcRouteMetadataMatchMethodProperty()

Properties

Exact

The value sent by the client must match the specified value exactly.

Prefix

The value sent by the client must begin with the specified characters.

Range

An object that represents the range of values to match on.

Regex

The value sent by the client must include the specified characters.

Suffix

The value sent by the client must end with the specified characters.

Constructors

GrpcRouteMetadataMatchMethodProperty()

public GrpcRouteMetadataMatchMethodProperty()

Properties

Exact

The value sent by the client must match the specified value exactly.

public string Exact { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadatamatchmethod.html#cfn-appmesh-route-grpcroutemetadatamatchmethod-exact

Prefix

The value sent by the client must begin with the specified characters.

public string Prefix { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadatamatchmethod.html#cfn-appmesh-route-grpcroutemetadatamatchmethod-prefix

Range

An object that represents the range of values to match on.

public object Range { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadatamatchmethod.html#cfn-appmesh-route-grpcroutemetadatamatchmethod-range

Regex

The value sent by the client must include the specified characters.

public string Regex { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadatamatchmethod.html#cfn-appmesh-route-grpcroutemetadatamatchmethod-regex

Suffix

The value sent by the client must end with the specified characters.

public string Suffix { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-grpcroutemetadatamatchmethod.html#cfn-appmesh-route-grpcroutemetadatamatchmethod-suffix

Implements

CfnRoute.IGrpcRouteMetadataMatchMethodProperty
Back to top Generated by DocFX