Sha256: f98fd95aff925010f2c4cbd86c071aaa42b5addaee5de0f2037bf2bf6bd93b5f
Contents?: true
Size: 991 Bytes
Versions: 7
Compression:
Stored size: 991 Bytes
Contents
# frozen_string_literal: true module Aws module Sigv4 class Signature # @api private def initialize(options) options.each_pair do |attr_name, attr_value| send("#{attr_name}=", attr_value) end end # @return [Hash<String,String>] A hash of headers that should # be applied to the HTTP request. Header keys are lower # cased strings and may include the following: # # * 'host' # * 'x-amz-date' # * 'x-amz-security-token' # * 'x-amz-content-sha256' # * 'authorization' # attr_accessor :headers # @return [String] For debugging purposes. attr_accessor :canonical_request # @return [String] For debugging purposes. attr_accessor :string_to_sign # @return [String] For debugging purposes. attr_accessor :content_sha256 # @return [Hash] Internal data for debugging purposes. attr_accessor :extra end end end
Version data entries
7 entries across 7 versions & 1 rubygems