Show / Hide Table of Contents

Interface CfnGatewayRoute.IGrpcGatewayRouteMetadataProperty

An object representing the metadata of the gateway route.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-grpcgatewayroutemetadata.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 grpcGatewayRouteMetadataProperty = new GrpcGatewayRouteMetadataProperty {
                 Name = "name",

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

Synopsis

Properties

Invert

Specify True to match anything except the match criteria.

Match

The criteria for determining a metadata match.

Name

A name for the gateway route metadata.

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-gatewayroute-grpcgatewayroutemetadata.html#cfn-appmesh-gatewayroute-grpcgatewayroutemetadata-invert

Type union: either bool or IResolvable

Match

The criteria for determining a metadata match.

object? Match { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnGatewayRoute.IGatewayRouteMetadataMatchProperty

Name

A name for the gateway route metadata.

string Name { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX