Show / Hide Table of Contents

Class CfnRule.PathMatchProperty

Describes the conditions that can be applied when matching a path for incoming requests.

Inheritance
object
CfnRule.PathMatchProperty
Implements
CfnRule.IPathMatchProperty
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.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRule.PathMatchProperty : CfnRule.IPathMatchProperty
Syntax (vb)
Public Class CfnRule.PathMatchProperty Implements CfnRule.IPathMatchProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.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.VpcLattice;

             var pathMatchProperty = new PathMatchProperty {
                 Match = new PathMatchTypeProperty {
                     Exact = "exact",
                     Prefix = "prefix"
                 },

                 // the properties below are optional
                 CaseSensitive = false
             };

Synopsis

Constructors

PathMatchProperty()

Describes the conditions that can be applied when matching a path for incoming requests.

Properties

CaseSensitive

Indicates whether the match is case sensitive.

Match

The type of path match.

Constructors

PathMatchProperty()

Describes the conditions that can be applied when matching a path for incoming requests.

public PathMatchProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.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.VpcLattice;

             var pathMatchProperty = new PathMatchProperty {
                 Match = new PathMatchTypeProperty {
                     Exact = "exact",
                     Prefix = "prefix"
                 },

                 // the properties below are optional
                 CaseSensitive = false
             };

Properties

CaseSensitive

Indicates whether the match is case sensitive.

public object? CaseSensitive { get; set; }
Property Value

object

Remarks

Default: - false

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.html#cfn-vpclattice-rule-pathmatch-casesensitive

Match

The type of path match.

public object Match { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatch.html#cfn-vpclattice-rule-pathmatch-match

Implements

CfnRule.IPathMatchProperty
Back to top Generated by DocFX