Class: Aws::States::Types::SendTaskSuccessInput

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

Overview

Constant Summary collapse

SENSITIVE =
[:output]

Instance Attribute Summary collapse

Instance Attribute Details

#outputString

The JSON output of the task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

Returns:

  • (String)


3191
3192
3193
3194
3195
3196
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3191

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

#task_tokenString

The token that represents this task. Task tokens are generated by Step Functions when tasks are assigned to a worker, or in the context object when a workflow enters a task state. See GetActivityTaskOutput$taskToken.

Returns:

  • (String)


3191
3192
3193
3194
3195
3196
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3191

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