Show / Hide Table of Contents

Interface CfnGatewayRoute.IGatewayRouteMetadataMatchProperty

An object representing the method header to be matched.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-gatewayroutemetadatamatch.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 gatewayRouteMetadataMatchProperty = new GatewayRouteMetadataMatchProperty {
                 Exact = "exact",
                 Prefix = "prefix",
                 Range = new GatewayRouteRangeMatchProperty {
                     End = 123,
                     Start = 123
                 },
                 Regex = "regex",
                 Suffix = "suffix"
             };

Synopsis

Properties

Exact

The exact method header to be matched on.

Prefix

The specified beginning characters of the method header to be matched on.

Range

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

Regex

The regex used to match the method header.

Suffix

The specified ending characters of the method header to match on.

Properties

Exact

The exact method header to be matched on.

string? Exact { get; }
Property Value

string

Remarks

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

Prefix

The specified beginning characters of the method header to be matched on.

string? Prefix { get; }
Property Value

string

Remarks

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

Range

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

object? Range { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnGatewayRoute.IGatewayRouteRangeMatchProperty

Regex

The regex used to match the method header.

string? Regex { get; }
Property Value

string

Remarks

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

Suffix

The specified ending characters of the method header to match on.

string? Suffix { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX