Sha256: a063629431602e48bc6ba60b3e4f6ba9043e52c8971d7f807007f16355b53c28
Contents?: true
Size: 487 Bytes
Versions: 11
Compression:
Stored size: 487 Bytes
Contents
# frozen_string_literal: true module Aws module Crt module Auth # Signing Config class Signable include Aws::Crt::ManagedNative native_destroy Aws::Crt::Native.method(:signable_release) # @param [Http::Message] http_request def initialize(http_request) manage_native do Aws::Crt::Native.signable_new_from_http_request(http_request.native) end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems