Class: Aws::SWF::Types::RespondActivityTaskCanceledInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-swf/types.rb

Overview

Note:

When making an API call, you may pass RespondActivityTaskCanceledInput data as a hash:

{
  task_token: "TaskToken", # required
  details: "Data",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#detailsString

Information about the cancellation.

Returns:

  • (String)


4626
4627
4628
4629
4630
4631
# File 'lib/aws-sdk-swf/types.rb', line 4626

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

#task_tokenString

The ‘taskToken` of the ActivityTask.

‘taskToken` is generated by the service and should be treated as an opaque value. If the task is passed to another process, its `taskToken` must also be passed. This enables it to provide its progress and respond with results.

Returns:

  • (String)


4626
4627
4628
4629
4630
4631
# File 'lib/aws-sdk-swf/types.rb', line 4626

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