Class: Aws::States::Types::TaskSubmittedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskSubmittedEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a task submitted to a resource .
Constant Summary collapse
- SENSITIVE =
[:output]
Instance Attribute Summary collapse
-
#output ⇒ String
The response from a resource when a task has started.
-
#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 response from a resource when a task has started. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
4176 4177 4178 4179 4180 4181 4182 4183 |
# File 'lib/aws-sdk-states/types.rb', line 4176 class TaskSubmittedEventDetails < 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.
4176 4177 4178 4179 4180 4181 4182 4183 |
# File 'lib/aws-sdk-states/types.rb', line 4176 class TaskSubmittedEventDetails < 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.
4176 4177 4178 4179 4180 4181 4182 4183 |
# File 'lib/aws-sdk-states/types.rb', line 4176 class TaskSubmittedEventDetails < 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.
4176 4177 4178 4179 4180 4181 4182 4183 |
# File 'lib/aws-sdk-states/types.rb', line 4176 class TaskSubmittedEventDetails < Struct.new( :resource_type, :resource, :output, :output_details) SENSITIVE = [:output] include Aws::Structure end |