Show / Hide Table of Contents

Class CfnGatewayRoute.HttpPathMatchProperty

An object representing the path to match in the request.

Inheritance
System.Object
CfnGatewayRoute.HttpPathMatchProperty
Implements
CfnGatewayRoute.IHttpPathMatchProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HttpPathMatchProperty : Object, CfnGatewayRoute.IHttpPathMatchProperty
Syntax (vb)
Public Class HttpPathMatchProperty
    Inherits Object
    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()

Properties

Exact

The exact path to match on.

Regex

The regex used to match the path.

Constructors

HttpPathMatchProperty()

public HttpPathMatchProperty()

Properties

Exact

The exact path to match on.

public string Exact { get; set; }
Property Value

System.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

System.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