Exception: Aws::Waiters::Errors::FailureStateError
- Inherits:
- 
      WaiterFailed
      
        - Object
- StandardError
- WaiterFailed
- Aws::Waiters::Errors::FailureStateError
 
- Defined in:
- lib/aws-sdk-core/waiters/errors.rb
Constant Summary collapse
- MSG =
- "stopped waiting, encountered a failure state"
Instance Attribute Summary collapse
- 
  
    
      #response  ⇒ Seahorse::Client::Response 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    The response that matched the failure state. 
Instance Method Summary collapse
- 
  
    
      #initialize(response)  ⇒ FailureStateError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FailureStateError. 
Constructor Details
#initialize(response) ⇒ FailureStateError
Returns a new instance of FailureStateError.
| 15 16 17 18 | # File 'lib/aws-sdk-core/waiters/errors.rb', line 15 def initialize(response) @response = response super(MSG) end | 
Instance Attribute Details
#response ⇒ Seahorse::Client::Response (readonly)
Returns The response that matched the failure state.
| 22 23 24 | # File 'lib/aws-sdk-core/waiters/errors.rb', line 22 def response @response end |