Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html

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

string

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: *?-!#$%&'.^_|~.` .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html#cfn-apigatewayv2-routingrule-matchheadervalue-header

ValueGlob

The case sensitive header glob value to be matched against entire header value.

string? ValueGlob { get; }
Property Value

string

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` .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-routingrule-matchheadervalue.html#cfn-apigatewayv2-routingrule-matchheadervalue-valueglob

Back to top Generated by DocFX