# File lib/aws/core/model.rb, line 21
      def initialize(*args)
        options = args.last.kind_of?(Hash) ? args.last : {}
        @config = case
        when options[:config] then options[:config]
        when args.first.respond_to?(:config) then args.first.config
        else AWS.config
        end
      end