Class representing Amazon S3 configuration.
Amazon S3 configuration is used for storing backup data in Amazon's S3
cloud storage using the s3cmd
tool.
|
__init__(self,
warnMidnite=None,
s3Bucket=None,
encryptCommand=None,
fullBackupSizeLimit=None,
incrementalBackupSizeLimit=None)
Constructor for the AmazonS3Config class. |
source code
|
|
|
|
|
|
|
|
|
__eq__(self,
other)
Equals operator, iplemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__lt__(self,
other)
Less-than operator, iplemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__gt__(self,
other)
Greater-than operator, iplemented in terms of original Python 2
compare operator. |
source code
|
|
|
|
|
_getWarnMidnite(self)
Property target used to get the midnite warning flag. |
source code
|
|
|
_setS3Bucket(self,
value)
Property target used to set the S3 bucket. |
source code
|
|
|
_getS3Bucket(self)
Property target used to get the S3 bucket. |
source code
|
|
|
_setEncryptCommand(self,
value)
Property target used to set the encrypt command. |
source code
|
|
|
_getEncryptCommand(self)
Property target used to get the encrypt command. |
source code
|
|
|
|
|
_getFullBackupSizeLimit(self)
Property target used to get the full backup size limit. |
source code
|
|
|
|
|
_getIncrementalBackupSizeLimit(self)
Property target used to get the incremental backup size limit. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|