Class: Aws::States::Types::SendTaskFailureInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::States::Types::SendTaskFailureInput
 
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [:error, :cause] 
Instance Attribute Summary collapse
- 
  
    
      #cause  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A more detailed explanation of the cause of the failure. 
- 
  
    
      #error  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error code of the failure. 
- 
  
    
      #task_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token that represents this task. 
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the failure.
| 3331 3332 3333 3334 3335 3336 3337 | # File 'lib/aws-sdk-states/types.rb', line 3331 class SendTaskFailureInput < Struct.new( :task_token, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end | 
#error ⇒ String
The error code of the failure.
| 3331 3332 3333 3334 3335 3336 3337 | # File 'lib/aws-sdk-states/types.rb', line 3331 class SendTaskFailureInput < Struct.new( :task_token, :error, :cause) SENSITIVE = [:error, :cause] 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
| 3331 3332 3333 3334 3335 3336 3337 | # File 'lib/aws-sdk-states/types.rb', line 3331 class SendTaskFailureInput < Struct.new( :task_token, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |