Show / Hide Table of Contents

Class CfnRoutePropsMixin.GrpcRouteMetadataMatchMethodProperty

An object that represents the match method.

Inheritance
object
CfnRoutePropsMixin.GrpcRouteMetadataMatchMethodProperty
Implements
CfnRoutePropsMixin.IGrpcRouteMetadataMatchMethodProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppMesh
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRoutePropsMixin.GrpcRouteMetadataMatchMethodProperty : CfnRoutePropsMixin.IGrpcRouteMetadataMatchMethodProperty
Syntax (vb)
Public Class CfnRoutePropsMixin.GrpcRouteMetadataMatchMethodProperty Implements CfnRoutePropsMixin.IGrpcRouteMetadataMatchMethodProperty
Remarks

Specify one of the match values.

See: 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.CfnPropertyMixins.AWS.AppMesh;

             var grpcRouteMetadataMatchMethodProperty = new GrpcRouteMetadataMatchMethodProperty {
                 Exact = "exact",
                 Prefix = "prefix",
                 Range = new MatchRangeProperty {
                     End = 123,
                     Start = 123
                 },
                 Regex = "regex",
                 Suffix = "suffix"
             };

Synopsis

Constructors

GrpcRouteMetadataMatchMethodProperty()

An object that represents the match method.

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()

An object that represents the match method.

public GrpcRouteMetadataMatchMethodProperty()
Remarks

Specify one of the match values.

See: 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.CfnPropertyMixins.AWS.AppMesh;

             var grpcRouteMetadataMatchMethodProperty = new GrpcRouteMetadataMatchMethodProperty {
                 Exact = "exact",
                 Prefix = "prefix",
                 Range = new MatchRangeProperty {
                     End = 123,
                     Start = 123
                 },
                 Regex = "regex",
                 Suffix = "suffix"
             };

Properties

Exact

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

public string? Exact { get; set; }
Property Value

string

Remarks

See: 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

string

Remarks

See: 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

object

Remarks

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

Type union: either IResolvable or CfnRoutePropsMixin.IMatchRangeProperty

Regex

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

public string? Regex { get; set; }
Property Value

string

Remarks

See: 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

string

Remarks

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

Implements

CfnRoutePropsMixin.IGrpcRouteMetadataMatchMethodProperty
Back to top Generated by DocFX