Sha256: 682fb45776f36fb61b0761918ef9a442793aeec48762dbd11797b843d5424b9b
Contents?: true
Size: 1.05 KB
Versions: 5
Compression:
Stored size: 1.05 KB
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 [String] For debugging purposes. attr_accessor :signature # @return [Hash] Internal data for debugging purposes. attr_accessor :extra end end end
Version data entries
5 entries across 5 versions & 1 rubygems