An Amazon S3 JDBBackup destination manager
s3://[accessKey:secretKey@][region:]bucket/path
If accessKey:secretKey are not provided, the manager uses the default AWS credentials provider chain.
If region is not provided, the manager uses the default AWS region provider chain.
All the patterns detailed here are supported.
As other JDBBackup components, this library uses the slf4J framework.
As the Java Amazon S3 library uses the Apache Commons Logging, this library uses the jcl-over-slf4j. If you plan to bind SLF4J to JCL, you should remove the jcl-over-slf4j dependency and add the commons-logging.
Here is an example using Maven:
<dependency>
<groupId>com.fathzer</groupId>
<artifactId>jdbbackup-s3</artifactId>
<version>...</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>...</version>
</dependency>