Class: Aws::States::Types::GetActivityTaskOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::GetActivityTaskOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:input]
Instance Attribute Summary collapse
-
#input ⇒ String
The string that contains the JSON input data for the task.
-
#task_token ⇒ String
A token that identifies the scheduled task.
Instance Attribute Details
#input ⇒ String
The string that contains the JSON input data for the task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
1732 1733 1734 1735 1736 1737 |
# File 'lib/aws-sdk-states/types.rb', line 1732 class GetActivityTaskOutput < Struct.new( :task_token, :input) SENSITIVE = [:input] include Aws::Structure end |
#task_token ⇒ String
A token that identifies the scheduled task. This token must be copied and included in subsequent calls to SendTaskHeartbeat, SendTaskSuccess or SendTaskFailure in order to report the progress or completion of the task.
1732 1733 1734 1735 1736 1737 |
# File 'lib/aws-sdk-states/types.rb', line 1732 class GetActivityTaskOutput < Struct.new( :task_token, :input) SENSITIVE = [:input] include Aws::Structure end |