interface PathMatchProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.VpcLattice.CfnRule.PathMatchProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnRule_PathMatchProperty |
Java | software.amazon.awscdk.services.vpclattice.CfnRule.PathMatchProperty |
Python | aws_cdk.aws_vpclattice.CfnRule.PathMatchProperty |
TypeScript | aws-cdk-lib » aws_vpclattice » CfnRule » 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-lib';
const pathMatchProperty: vpclattice.CfnRule.PathMatchProperty = {
match: {
exact: 'exact',
prefix: 'prefix',
},
// the properties below are optional
caseSensitive: false,
};
Properties
Name | Type | Description |
---|---|---|
match | IResolvable | Path | The type of path match. |
case | boolean | IResolvable | Indicates whether the match is case sensitive. |
match
Type:
IResolvable
|
Path
The type of path match.
caseSensitive?
Type:
boolean |
IResolvable
(optional, default: false)
Indicates whether the match is case sensitive.