Show / Hide Table of Contents

Class CfnGatewayRoute.HttpPathMatchProperty

An object representing the path to match in the request.

Inheritance
object
CfnGatewayRoute.HttpPathMatchProperty
Implements
CfnGatewayRoute.IHttpPathMatchProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGatewayRoute.HttpPathMatchProperty : CfnGatewayRoute.IHttpPathMatchProperty
Syntax (vb)
Public Class CfnGatewayRoute.HttpPathMatchProperty Implements CfnGatewayRoute.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.AWS.AppMesh;

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

Synopsis

Constructors

HttpPathMatchProperty()

An object representing the path to match in the request.

Properties

Exact

The exact path to match on.

Regex

The regex used to match the path.

Constructors

HttpPathMatchProperty()

An object representing the path to match in the request.

public HttpPathMatchProperty()
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.AWS.AppMesh;

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

Properties

Exact

The exact path to match on.

public string? Exact { get; set; }
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.

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

string

Remarks

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

Implements

CfnGatewayRoute.IHttpPathMatchProperty
Back to top Generated by DocFX