interface PathMatchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VpcLattice.CfnRulePropsMixin.PathMatchProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsvpclattice#CfnRulePropsMixin_PathMatchProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.vpclattice.CfnRulePropsMixin.PathMatchProperty |
Python | aws_cdk.cfn_property_mixins.aws_vpclattice.CfnRulePropsMixin.PathMatchProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_vpclattice » CfnRulePropsMixin » PathMatchProperty |
Describes the conditions that can be applied when matching a path for incoming requests.
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 pathMatchProperty: vpclattice.CfnRulePropsMixin.PathMatchProperty = {
caseSensitive: false,
match: {
exact: 'exact',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| case | boolean | IResolvable | Indicates whether the match is case sensitive. |
| match? | IResolvable | Path | The type of path match. |
caseSensitive?
Type:
boolean | IResolvable
(optional, default: false)
Indicates whether the match is case sensitive.
match?
Type:
IResolvable | Path
(optional)
The type of path match.

.NET
Go
Java
Python
TypeScript