Class: Aws::States::Types::TaskSucceededEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskSucceededEventDetails
- Defined in:
- gems/aws-sdk-states/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.
4311 4312 4313 4314 4315 4316 4317 4318 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4311 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.
4311 4312 4313 4314 4315 4316 4317 4318 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4311 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.
4311 4312 4313 4314 4315 4316 4317 4318 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4311 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.
4311 4312 4313 4314 4315 4316 4317 4318 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4311 class TaskSucceededEventDetails < Struct.new( :resource_type, :resource, :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |