Class: Aws::States::Types::TaskSucceededEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskSucceededEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about the successful completion of a task state.
Constant Summary collapse
- SENSITIVE =
[:output]
Instance Attribute Summary collapse
-
#output ⇒ String
The full JSON response from a resource when a task has succeeded.
-
#output_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the output of an execution history event.
-
#resource ⇒ String
The action of the resource called by a task state.
-
#resource_type ⇒ String
The service name of the resource in a task state.
Instance Attribute Details
#output ⇒ String
The full JSON response from a resource when a task has succeeded. This response becomes the output of the related task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
4207 4208 4209 4210 4211 4212 4213 4214 |
# File 'lib/aws-sdk-states/types.rb', line 4207 class TaskSucceededEventDetails < Struct.new( :resource_type, :resource, :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |
#output_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about the output of an execution history event.
4207 4208 4209 4210 4211 4212 4213 4214 |
# File 'lib/aws-sdk-states/types.rb', line 4207 class TaskSucceededEventDetails < Struct.new( :resource_type, :resource, :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |
#resource ⇒ String
The action of the resource called by a task state.
4207 4208 4209 4210 4211 4212 4213 4214 |
# File 'lib/aws-sdk-states/types.rb', line 4207 class TaskSucceededEventDetails < Struct.new( :resource_type, :resource, :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |
#resource_type ⇒ String
The service name of the resource in a task state.
4207 4208 4209 4210 4211 4212 4213 4214 |
# File 'lib/aws-sdk-states/types.rb', line 4207 class TaskSucceededEventDetails < Struct.new( :resource_type, :resource, :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |