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