Class: Aws::States::Types::ExecutionSucceededEventDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#outputString

The JSON data output by the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

Returns:

  • (String)


1480
1481
1482
1483
1484
1485
# File 'lib/aws-sdk-states/types.rb', line 1480

class ExecutionSucceededEventDetails < Struct.new(
  :output,
  :output_details)
  SENSITIVE = [:output]
  include Aws::Structure
end

#output_detailsTypes::HistoryEventExecutionDataDetails

Contains details about the output of an execution history event.



1480
1481
1482
1483
1484
1485
# File 'lib/aws-sdk-states/types.rb', line 1480

class ExecutionSucceededEventDetails < Struct.new(
  :output,
  :output_details)
  SENSITIVE = [:output]
  include Aws::Structure
end