Class: Aws::States::Types::ExecutionSucceededEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::ExecutionSucceededEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about the successful termination of the execution.
Constant Summary collapse
- SENSITIVE =
[:output]
Instance Attribute Summary collapse
-
#output ⇒ String
The JSON data output by the execution.
-
#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 execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
1606 1607 1608 1609 1610 1611 |
# File 'lib/aws-sdk-states/types.rb', line 1606 class ExecutionSucceededEventDetails < 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.
1606 1607 1608 1609 1610 1611 |
# File 'lib/aws-sdk-states/types.rb', line 1606 class ExecutionSucceededEventDetails < Struct.new( :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |