Class: Aws::ApiGatewayV2::Types::RoutingRuleCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::RoutingRuleCondition
- Defined in:
- gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb
Overview
Represents a condition. Conditions can contain up to two matchHeaders conditions and one matchBasePaths conditions. API Gateway evaluates header conditions and base path conditions together. You can only use AND between header and base path conditions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#match_base_paths ⇒ Types::RoutingRuleMatchBasePaths
The base path to be matched.
-
#match_headers ⇒ Types::RoutingRuleMatchHeaders
The headers to be matched.
Instance Attribute Details
#match_base_paths ⇒ Types::RoutingRuleMatchBasePaths
The base path to be matched.
7937 7938 7939 7940 7941 7942 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 7937 class RoutingRuleCondition < Struct.new( :match_base_paths, :match_headers) SENSITIVE = [] include Aws::Structure end |
#match_headers ⇒ Types::RoutingRuleMatchHeaders
The headers to be matched.
7937 7938 7939 7940 7941 7942 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 7937 class RoutingRuleCondition < Struct.new( :match_base_paths, :match_headers) SENSITIVE = [] include Aws::Structure end |