Show / Hide Table of Contents

Interface CfnRule.IPathMatchProperty

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

Namespace: Amazon.CDK.AWS.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRule.IPathMatchProperty
Syntax (vb)
Public Interface 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

Properties

CaseSensitive

Indicates whether the match is case sensitive.

Match

The type of path match.

Properties

CaseSensitive

Indicates whether the match is case sensitive.

object? CaseSensitive { get; }
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.

object Match { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX