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.
61 62 63 |
# File 'lib/fog/aws/storage.rb', line 61 def region @region end |
Instance Method Details
#cdn ⇒ Object
63 64 65 66 67 68 |
# File 'lib/fog/aws/storage.rb', line 63 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
70 71 72 |
# File 'lib/fog/aws/storage.rb', line 70 def http_url(params, expires) "http://" << host_path_query(params, expires) end |
#https_url(params, expires) ⇒ Object
74 75 76 |
# File 'lib/fog/aws/storage.rb', line 74 def https_url(params, expires) "https://" << host_path_query(params, expires) end |