Class: Aws::Lambda::Types::ChainedInvokeDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ChainedInvokeDetails
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Contains details about a chained function invocation in a durable execution, including the target function and invocation parameters.
Constant Summary collapse
- SENSITIVE =
[:result]
Instance Attribute Summary collapse
-
#error ⇒ Types::ErrorObject
Details about the chained invocation failure.
-
#result ⇒ String
The response payload from the chained invocation.
Instance Attribute Details
#error ⇒ Types::ErrorObject
Details about the chained invocation failure.
679 680 681 682 683 684 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 679 class ChainedInvokeDetails < Struct.new( :result, :error) SENSITIVE = [:result] include Aws::Structure end |
#result ⇒ String
The response payload from the chained invocation.
679 680 681 682 683 684 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 679 class ChainedInvokeDetails < Struct.new( :result, :error) SENSITIVE = [:result] include Aws::Structure end |