class Aws::Errors::InvalidARNPartitionError

Raised when the partition of the ARN region is different than the partition of the :region configured on the service client.

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/aws-sdk-core/errors.rb, line 154
def initialize(*args)
  msg = 'ARN region partition is different from the configured '\
        'client region partition.'
  super(msg)
end