Exception: Aws::Errors::InvalidARNRegionError
- Inherits:
- 
      RuntimeError
      
        - Object
- RuntimeError
- Aws::Errors::InvalidARNRegionError
 
- Defined in:
- lib/aws-sdk-core/errors.rb
Overview
Raised when the region from the ARN string is different from the :region configured on the service client.
Instance Method Summary collapse
- 
  
    
      #initialize(*args)  ⇒ InvalidARNRegionError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InvalidARNRegionError. 
Constructor Details
#initialize(*args) ⇒ InvalidARNRegionError
Returns a new instance of InvalidARNRegionError.
| 145 146 147 148 | # File 'lib/aws-sdk-core/errors.rb', line 145 def initialize(*args) msg = 'ARN region is different from the configured client region.' super(msg) end |