Show / Hide Table of Contents

Class CfnRule.PathMatchTypeProperty

Describes a path match type.

Inheritance
object
CfnRule.PathMatchTypeProperty
Implements
CfnRule.IPathMatchTypeProperty
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.PathMatchTypeProperty : CfnRule.IPathMatchTypeProperty
Syntax (vb)
Public Class CfnRule.PathMatchTypeProperty Implements 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

Constructors

PathMatchTypeProperty()

Describes a path match type.

Properties

Exact

An exact match of the path.

Prefix

A prefix match of the path.

Constructors

PathMatchTypeProperty()

Describes a path match type.

public PathMatchTypeProperty()
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"
             };

Properties

Exact

An exact match of the path.

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

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

string

Remarks

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

Implements

CfnRule.IPathMatchTypeProperty
Back to top Generated by DocFX