Sha256: 466b375b844e22f8d184bfcd692d71aa003275d3b886be391b4f23b8a8bb267f
Contents?: true
Size: 561 Bytes
Versions: 31
Compression:
Stored size: 561 Bytes
Contents
# frozen_string_literal: true module Aws module Glacier module Plugins class AccountId < Seahorse::Client::Plugin option(:account_id, default: '-', doc_type: String, docstring: <<-DOCS) The default Glacier AWS account ID to use for all glacier operations. The default value of `-` uses the account your `:credentials` belong to. DOCS handle_request(step: :initialize) do |context| context.params[:account_id] ||= context.config.account_id end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems