Class: Aws::States::Types::LambdaFunctionSucceededEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::LambdaFunctionSucceededEventDetails
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about a Lambda function that successfully terminated during an execution.
Constant Summary collapse
- SENSITIVE =
[:output]
Instance Attribute Summary collapse
-
#output ⇒ String
The JSON data output by the Lambda function.
-
#output_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the output of an execution history event.
Instance Attribute Details
#output ⇒ String
The JSON data output by the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
2494 2495 2496 2497 2498 2499 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2494 class LambdaFunctionSucceededEventDetails < Struct.new( :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |
#output_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the output of an execution history event.
2494 2495 2496 2497 2498 2499 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2494 class LambdaFunctionSucceededEventDetails < Struct.new( :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |