Show / Hide Table of Contents

Interface CfnRoute.IHttpPathMatchProperty

An object representing the path to match in the request.

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

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

             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-route-httppathmatch.html#cfn-appmesh-route-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-route-httppathmatch.html#cfn-appmesh-route-httppathmatch-regex

Back to top Generated by DocFX