# File lib/fog/aws/storage.rb, line 69 def cdn @cdn ||= Fog::AWS::CDN.new( :aws_access_key_id => @aws_access_key_id, :aws_secret_access_key => @aws_secret_access_key, :use_iam_profile => @use_iam_profile ) end
# File lib/fog/aws/storage.rb, line 77 def http_url(params, expires) scheme_host_path_query(params.merge(:scheme => 'http', :port => 80), expires) end
# File lib/fog/aws/storage.rb, line 81 def https_url(params, expires) scheme_host_path_query(params.merge(:scheme => 'https', :port => 443), expires) end
# File lib/fog/aws/storage.rb, line 85 def url(params, expires) Fog::Logger.deprecation("Fog::Storage::AWS => #url is deprecated, use #https_url instead [light_black](#{caller.first})[/]") https_url(params, expires) end