Class: Aws::ApiGatewayV2::Types::RoutingRuleInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::RoutingRuleInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigatewayv2/types.rb
Overview
Represents the input parameters for an RoutingRule request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Array<Types::RoutingRuleAction>
The resulting action based on matching a routing rules condition.
-
#conditions ⇒ Array<Types::RoutingRuleCondition>
The conditions of the routing rule.
-
#priority ⇒ Integer
The order in which API Gateway evaluates a rule.
Instance Attribute Details
#actions ⇒ Array<Types::RoutingRuleAction>
The resulting action based on matching a routing rules condition. Only InvokeApi is supported.
7961 7962 7963 7964 7965 7966 7967 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7961 class RoutingRuleInput < Struct.new( :actions, :conditions, :priority) SENSITIVE = [] include Aws::Structure end |
#conditions ⇒ Array<Types::RoutingRuleCondition>
The conditions of the routing rule.
7961 7962 7963 7964 7965 7966 7967 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7961 class RoutingRuleInput < Struct.new( :actions, :conditions, :priority) SENSITIVE = [] include Aws::Structure end |
#priority ⇒ Integer
The order in which API Gateway evaluates a rule. Priority is evaluated from the lowest value to the highest value. Rules can’t have the same priority. Priority values 1-1,000,000 are supported.
7961 7962 7963 7964 7965 7966 7967 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7961 class RoutingRuleInput < Struct.new( :actions, :conditions, :priority) SENSITIVE = [] include Aws::Structure end |