Sha256: d16346ce6b997e17fc8a96895c56b1f5eb009238ba3666a1884700e8307358c0

Contents?: true

Size: 564 Bytes

Versions: 3

Compression:

Stored size: 564 Bytes

Contents

# encoding: utf-8

module Backup
  module Configuration
    module Syncer
      class S3 < Base
        class << self

          ##
          # Amazon Simple Storage Service (S3) Credentials
          attr_accessor :access_key_id, :secret_access_key

          ##
          # Amazon S3 bucket name and path to sync to
          attr_accessor :bucket, :path

          ##
          # Directories to sync
          attr_accessor :directories

          ##
          # Flag to enable mirroring
          attr_accessor :mirror

        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
backup-3.0.9 lib/backup/configuration/syncer/s3.rb
backup-3.0.8 lib/backup/configuration/syncer/s3.rb
backup-3.0.7 lib/backup/configuration/syncer/s3.rb