Sha256: 0e0c8c895c424537ca461d5b305f9787611936eb3200714b18bb0a777b84eac9

Contents?: true

Size: 480 Bytes

Versions: 3

Compression:

Stored size: 480 Bytes

Contents

# encoding: utf-8

module Backup
  module Configuration
    module Syncer
      class S3 < Cloud
        class << self
          ##
          # Amazon Simple Storage Service (S3) Credentials
          attr_accessor :access_key_id, :secret_access_key

          ##
          # The S3 bucket to store files to
          attr_accessor :bucket

          ##
          # The AWS region of the specified S3 bucket
          attr_accessor :region
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
backup_checksum-3.0.23 lib/backup/configuration/syncer/s3.rb
backup-3.0.23 lib/backup/configuration/syncer/s3.rb
backup-3.0.22 lib/backup/configuration/syncer/s3.rb