interface PathMatchTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnRulePropsMixin.PathMatchTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnRulePropsMixin_PathMatchTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnRulePropsMixin.PathMatchTypeProperty |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnRulePropsMixin.PathMatchTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnRulePropsMixin » 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 { mixins as vpclattice_mixins } from '@aws-cdk/mixins-preview/aws-vpclattice';
const pathMatchTypeProperty: vpclattice_mixins.CfnRulePropsMixin.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