Class: Aws::States::Types::TaskStartFailedEventDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::States::Types::TaskStartFailedEventDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-states/types.rb
 
Overview
Contains details about a task that failed to start during an execution.
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.
 - 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The action of the resource called by a task state.
 - 
  
    
      #resource_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The service name of the resource in a task state.
 
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the failure.
      4096 4097 4098 4099 4100 4101 4102 4103  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 4096 class TaskStartFailedEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end  | 
  
#error ⇒ String
The error code of the failure.
      4096 4097 4098 4099 4100 4101 4102 4103  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 4096 class TaskStartFailedEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end  | 
  
#resource ⇒ String
The action of the resource called by a task state.
      4096 4097 4098 4099 4100 4101 4102 4103  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 4096 class TaskStartFailedEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end  | 
  
#resource_type ⇒ String
The service name of the resource in a task state.
      4096 4097 4098 4099 4100 4101 4102 4103  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 4096 class TaskStartFailedEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end  |