Class: Aws::ApiGatewayV2::Types::RoutingRuleMatchHeaders
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::RoutingRuleMatchHeaders
- Defined in:
- gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb
Overview
Represents a MatchHeaders condition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#any_of ⇒ Array<Types::RoutingRuleMatchHeaderValue>
The header name and header value glob to be matched.
Instance Attribute Details
#any_of ⇒ Array<Types::RoutingRuleMatchHeaderValue>
The header name and header value glob to be matched. The matchHeaders condition is matched if any of the header name and header value globs are matched.
8014 8015 8016 8017 8018 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 8014 class RoutingRuleMatchHeaders < Struct.new( :any_of) SENSITIVE = [] include Aws::Structure end |