Interface CfnRoutingRulePropsMixin.IMatchHeaderValueProperty
Represents a MatchHeaderValue .
Namespace: Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnRoutingRulePropsMixin.IMatchHeaderValueProperty
Syntax (vb)
Public Interface CfnRoutingRulePropsMixin.IMatchHeaderValueProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins;
var matchHeaderValueProperty = new MatchHeaderValueProperty {
Header = "header",
ValueGlob = "valueGlob"
};
Synopsis
Properties
| Header | The case insensitive header name to be matched. |
| ValueGlob | The case sensitive header glob value to be matched against entire header value. |
Properties
Header
The case insensitive header name to be matched.
string? Header { get; }
Property Value
Remarks
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
The case sensitive header glob value to be matched against entire header value.
string? ValueGlob { get; }
Property Value
Remarks
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` .