# File lib/aws/resource.rb, line 146
    def cache_static_attributes request_type, resp_obj
      self.class.attribute_providers_for(request_type).each do |provider|
        attributes = provider.attributes_from_response_object(resp_obj)
        attributes.each_pair do |attr_name,value|
          if self.class.attributes[attr_name].static?
            static_attributes[attr_name] = value
          end
        end
      end
    end