Class: Backup::Configuration::Syncer::S3
- Defined in:
- lib/backup/configuration/syncer/s3.rb
Class Attribute Summary collapse
-
.access_key_id ⇒ Object
Amazon Simple Storage Service (S3) Credentials.
-
.additional_options ⇒ Object
Additional options for the s3sync cli.
-
.bucket ⇒ Object
Amazon S3 bucket name and path to sync to.
-
.directories ⇒ Object
Directories to sync.
-
.mirror ⇒ Object
Flag to enable mirroring.
-
.path ⇒ Object
Amazon S3 bucket name and path to sync to.
-
.secret_access_key ⇒ Object
Amazon Simple Storage Service (S3) Credentials.
Method Summary
Methods inherited from Base
Methods included from Helpers
#clear_defaults!, #getter_methods, #load_defaults!, #setter_methods
Class Attribute Details
.access_key_id ⇒ Object
Amazon Simple Storage Service (S3) Credentials
11 12 13 |
# File 'lib/backup/configuration/syncer/s3.rb', line 11 def access_key_id @access_key_id end |
.additional_options ⇒ Object
Additional options for the s3sync cli
27 28 29 |
# File 'lib/backup/configuration/syncer/s3.rb', line 27 def @additional_options end |
.bucket ⇒ Object
Amazon S3 bucket name and path to sync to
15 16 17 |
# File 'lib/backup/configuration/syncer/s3.rb', line 15 def bucket @bucket end |
.directories ⇒ Object
Directories to sync
19 20 21 |
# File 'lib/backup/configuration/syncer/s3.rb', line 19 def directories @directories end |
.mirror ⇒ Object
Flag to enable mirroring
23 24 25 |
# File 'lib/backup/configuration/syncer/s3.rb', line 23 def mirror @mirror end |
.path ⇒ Object
Amazon S3 bucket name and path to sync to
15 16 17 |
# File 'lib/backup/configuration/syncer/s3.rb', line 15 def path @path end |
.secret_access_key ⇒ Object
Amazon Simple Storage Service (S3) Credentials
11 12 13 |
# File 'lib/backup/configuration/syncer/s3.rb', line 11 def secret_access_key @secret_access_key end |