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

.NET
Go
Java
Python
TypeScript