Module: Aws::CloudFront::Signer

Included in:
CookieSigner, UrlSigner
Defined in:
lib/aws-sdk-core/cloudfront/signer.rb

Instance Method Summary collapse

Instance Method Details

#initialize(options = {}) ⇒ Object

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :key_pair_id (String)
  • :private_key (String)
  • :private_key_path (String)


15
16
17
18
# File 'lib/aws-sdk-core/cloudfront/signer.rb', line 15

def initialize(options = {})
  @key_pair_id = key_pair_id(options)
  @private_key = private_key(options)
end