Show / Hide Table of Contents

Interface CfnRule.IPathMatchTypeProperty

Describes a path match type.

Namespace: Amazon.CDK.AWS.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRule.IPathMatchTypeProperty
Syntax (vb)
Public Interface CfnRule.IPathMatchTypeProperty
Remarks

Each rule can include only one of the following types of paths.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-pathmatchtype.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 pathMatchTypeProperty = new PathMatchTypeProperty {
                 Exact = "exact",
                 Prefix = "prefix"
             };

Synopsis

Properties

Exact

An exact match of the path.

Prefix

A prefix match of the path.

Properties

Exact

An exact match of the path.

string? Exact { get; }
Property Value

string

Remarks

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

Prefix

A prefix match of the path.

string? Prefix { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX