interface MatchHeaderValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigatewayv2#CfnRoutingRule_MatchHeaderValueProperty |
Java | software.amazon.awscdk.services.apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty |
Python | aws_cdk.aws_apigatewayv2.CfnRoutingRule.MatchHeaderValueProperty |
TypeScript | aws-cdk-lib » aws_apigatewayv2 » CfnRoutingRule » 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 { aws_apigatewayv2 as apigatewayv2 } from 'aws-cdk-lib';
const matchHeaderValueProperty: apigatewayv2.CfnRoutingRule.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
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
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