Show / Hide Table of Contents

Interface CfnGatewayRoutePropsMixin.IHttpPathMatchProperty

An object representing the path to match in the request.

Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnGatewayRoutePropsMixin.IHttpPathMatchProperty
Syntax (vb)
Public Interface CfnGatewayRoutePropsMixin.IHttpPathMatchProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-gatewayroute-httppathmatch.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var httpPathMatchProperty = new HttpPathMatchProperty {
                 Exact = "exact",
                 Regex = "regex"
             };

Synopsis

Properties

Exact

The exact path to match on.

Regex

The regex used to match the path.

Properties

Exact

The exact path to match on.

string? Exact { get; }
Property Value

string

Remarks

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

Regex

The regex used to match the path.

string? Regex { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX