interface PathMatchTypeProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.VpcLattice.CfnRule.PathMatchTypeProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnRule_PathMatchTypeProperty | 
  Java | software.amazon.awscdk.services.vpclattice.CfnRule.PathMatchTypeProperty | 
  Python | aws_cdk.aws_vpclattice.CfnRule.PathMatchTypeProperty | 
  TypeScript  | aws-cdk-lib » aws_vpclattice » CfnRule » PathMatchTypeProperty | 
Describes a path match type.
Each rule can include only one of the following types of paths.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_vpclattice as vpclattice } from 'aws-cdk-lib';
const pathMatchTypeProperty: vpclattice.CfnRule.PathMatchTypeProperty = {
  exact: 'exact',
  prefix: 'prefix',
};
Properties
| Name | Type | Description | 
|---|---|---|
| exact? | string | An exact match of the path. | 
| prefix? | string | A prefix match of the path. | 
exact?
Type:
string
(optional)
An exact match of the path.
prefix?
Type:
string
(optional)
A prefix match of the path.

 .NET
 Go
 Java
 Python
 TypeScript