Class: Aws::ApiGatewayV2::Types::RoutingRuleCondition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#match_base_pathsTypes::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_headersTypes::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