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