interface MatchHeaderValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnRoutingRulePropsMixin.MatchHeaderValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnRoutingRulePropsMixin_MatchHeaderValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnRoutingRulePropsMixin.MatchHeaderValueProperty |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnRoutingRulePropsMixin.MatchHeaderValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnRoutingRulePropsMixin » MatchHeaderValueProperty |
Represents a MatchHeaderValue .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigatewayv2_mixins } from '@aws-cdk/mixins-preview/aws-apigatewayv2';
const matchHeaderValueProperty: apigatewayv2_mixins.CfnRoutingRulePropsMixin.MatchHeaderValueProperty = {
header: 'header',
valueGlob: 'valueGlob',
};
Properties
| Name | Type | Description |
|---|---|---|
| header? | string | The case insensitive header name to be matched. |
| value | string | The case sensitive header glob value to be matched against entire header value. |
header?
Type:
string
(optional)
The case insensitive header name to be matched.
The header name must be less than 40 characters and the only allowed characters are a-z , A-Z , 0-9 , and the following special characters: *?-!#$%&'.^_|~.` .
valueGlob?
Type:
string
(optional)
The case sensitive header glob value to be matched against entire header value.
The header glob value must be less than 128 characters and the only allowed characters are a-z , A-Z , 0-9 , and the following special characters: *?-!#$%&'.^_|~. Wildcard matching is supported for header glob values but must be forprefix-match,suffix-match, orinfix-match` .

.NET
Go
Java
Python
TypeScript