interface HeaderMatchTypeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.VpcLattice.CfnRule.HeaderMatchTypeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnRule_HeaderMatchTypeProperty |
![]() | software.amazon.awscdk.services.vpclattice.CfnRule.HeaderMatchTypeProperty |
![]() | aws_cdk.aws_vpclattice.CfnRule.HeaderMatchTypeProperty |
![]() | aws-cdk-lib » aws_vpclattice » CfnRule » HeaderMatchTypeProperty |
Describes a header match type.
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 headerMatchTypeProperty: vpclattice.CfnRule.HeaderMatchTypeProperty = {
contains: 'contains',
exact: 'exact',
prefix: 'prefix',
};
Properties
Name | Type | Description |
---|---|---|
contains? | string | A contains type match. |
exact? | string | An exact type match. |
prefix? | string | A prefix type match. |
contains?
Type:
string
(optional)
A contains type match.
exact?
Type:
string
(optional)
An exact type match.
prefix?
Type:
string
(optional)
A prefix type match.
Matches the value with the prefix.