Class: Aws::States::Types::SendTaskSuccessInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::States::Types::SendTaskSuccessInput
 
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [:output] 
Instance Attribute Summary collapse
- 
  
    
      #output  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The JSON output of the task. 
- 
  
    
      #task_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token that represents this task. 
Instance Attribute Details
#output ⇒ String
The JSON output of the task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
| 3476 3477 3478 3479 3480 3481 | # File 'lib/aws-sdk-states/types.rb', line 3476 class SendTaskSuccessInput < Struct.new( :task_token, :output) SENSITIVE = [:output] include Aws::Structure end | 
#task_token ⇒ String
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][1
- 
when a workflow enters a task state. See 
GetActivityTaskOutput$taskToken.
[1]: docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html
| 3476 3477 3478 3479 3480 3481 | # File 'lib/aws-sdk-states/types.rb', line 3476 class SendTaskSuccessInput < Struct.new( :task_token, :output) SENSITIVE = [:output] include Aws::Structure end |