Class: Aws::States::Types::ExecutionTimedOutEventDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::States::Types::ExecutionTimedOutEventDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-states/types.rb
 
Overview
Contains details about the execution timeout that occurred during the execution.
Constant Summary collapse
- SENSITIVE =
 [:error, :cause]
Instance Attribute Summary collapse
- 
  
    
      #cause  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A more detailed explanation of the cause of the timeout.
 - 
  
    
      #error  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error code of the failure.
 
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the timeout.
      1627 1628 1629 1630 1631 1632  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1627 class ExecutionTimedOutEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end  | 
  
#error ⇒ String
The error code of the failure.
      1627 1628 1629 1630 1631 1632  | 
    
      # File 'lib/aws-sdk-states/types.rb', line 1627 class ExecutionTimedOutEventDetails < Struct.new( :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end  |