Class: Aws::States::Types::GetActivityTaskOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-states/lib/aws-sdk-states/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:input]

Instance Attribute Summary collapse

Instance Attribute Details

#inputString

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.

Returns:

  • (String)


1542
1543
1544
1545
1546
1547
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1542

class GetActivityTaskOutput < Struct.new(
  :task_token,
  :input)
  SENSITIVE = [:input]
  include Aws::Structure
end

#task_tokenString

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.

Returns:

  • (String)


1542
1543
1544
1545
1546
1547
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 1542

class GetActivityTaskOutput < Struct.new(
  :task_token,
  :input)
  SENSITIVE = [:input]
  include Aws::Structure
end