Module: Fog::Storage::AWS::Utils
Instance Attribute Summary collapse
-
#region ⇒ Object
Returns the value of attribute region.
Instance Method Summary collapse
- #cdn ⇒ Object
- #http_url(params, expires) ⇒ Object
- #https_url(params, expires) ⇒ Object
- #url(params, expires) ⇒ Object
Instance Attribute Details
#region ⇒ Object
Returns the value of attribute region.
58 59 60 |
# File 'lib/fog/storage/aws.rb', line 58 def region @region end |
Instance Method Details
#cdn ⇒ Object
60 61 62 63 64 65 |
# File 'lib/fog/storage/aws.rb', line 60 def cdn @cdn ||= Fog::AWS::CDN.new( :aws_access_key_id => @aws_access_key_id, :aws_secret_access_key => @aws_secret_access_key ) end |
#http_url(params, expires) ⇒ Object
67 68 69 |
# File 'lib/fog/storage/aws.rb', line 67 def http_url(params, expires) "http://" << host_path_query(params, expires) end |
#https_url(params, expires) ⇒ Object
71 72 73 |
# File 'lib/fog/storage/aws.rb', line 71 def https_url(params, expires) "https://" << host_path_query(params, expires) end |