Class: Aws::AccessAnalyzer::Errors::ThrottlingException
- Inherits:
 - 
      ServiceError
      
        
- Object
 - ServiceError
 - Aws::AccessAnalyzer::Errors::ThrottlingException
 
 
- Defined in:
 - lib/aws-sdk-accessanalyzer/errors.rb
 
Instance Method Summary collapse
- 
  
    
      #initialize(context, message, data = Aws::EmptyStructure.new)  ⇒ ThrottlingException 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ThrottlingException.
 - #message ⇒ String
 - #retry_after_seconds ⇒ String
 - #retryable? ⇒ Boolean
 - #throttling? ⇒ Boolean
 
Constructor Details
#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException
Returns a new instance of ThrottlingException.
      180 181 182  | 
    
      # File 'lib/aws-sdk-accessanalyzer/errors.rb', line 180 def initialize(context, , data = Aws::EmptyStructure.new) super(context, , data) end  | 
  
Instance Method Details
#message ⇒ String
      185 186 187  | 
    
      # File 'lib/aws-sdk-accessanalyzer/errors.rb', line 185 def @message || @data[:message] end  | 
  
#retry_after_seconds ⇒ String
      190 191 192  | 
    
      # File 'lib/aws-sdk-accessanalyzer/errors.rb', line 190 def retry_after_seconds @data[:retry_after_seconds] end  | 
  
#retryable? ⇒ Boolean
      194 195 196  | 
    
      # File 'lib/aws-sdk-accessanalyzer/errors.rb', line 194 def retryable? true end  | 
  
#throttling? ⇒ Boolean
      198 199 200  | 
    
      # File 'lib/aws-sdk-accessanalyzer/errors.rb', line 198 def throttling? true end  |