# File lib/aws/core/http/response.rb, line 46
        def initialize options = {}, &block
          @status = options[:status] || 200
          @headers = options[:headers] || {}
          @body = options[:body] || ''
          yield(self) if block_given?
          self
        end