Class: Aws::ApiGatewayV2::Types::RoutingRuleAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::RoutingRuleAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigatewayv2/types.rb
Overview
Represents a routing rule action. The only supported action is invokeApi.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invoke_api ⇒ Types::RoutingRuleActionInvokeApi
Action to invoke a stage of a target API.
Instance Attribute Details
#invoke_api ⇒ Types::RoutingRuleActionInvokeApi
Action to invoke a stage of a target API. Only REST APIs are supported.
7894 7895 7896 7897 7898 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 7894 class RoutingRuleAction < Struct.new( :invoke_api) SENSITIVE = [] include Aws::Structure end |