Download the PHP package ssigwart/aws-high-availability-s3 without Composer
On this page you can find all versions of the php package ssigwart/aws-high-availability-s3. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ssigwart/aws-high-availability-s3
More information about ssigwart/aws-high-availability-s3
Files in ssigwart/aws-high-availability-s3
Download ssigwart/aws-high-availability-s3
More information about ssigwart/aws-high-availability-s3
Files in ssigwart/aws-high-availability-s3
Vendor ssigwart
Package aws-high-availability-s3
Short Description Library to make high availability S3 calls.
License MIT
Homepage https://github.com/ssigwart/aws-high-availability-s3
Package aws-high-availability-s3
Short Description Library to make high availability S3 calls.
License MIT
Homepage https://github.com/ssigwart/aws-high-availability-s3
Please rate this library. Is it a good library?
Informations about the package aws-high-availability-s3
AWS High Availability S3
This library makes it easy to write files to S3 with high availability. It includes the following features:
- Upload an S3 file to the first successful file location.
- Download an S3 file that is available in multiple file locations.
Usage
The APIs require you to pass in an \Aws\Sdk
object.
In the examples below, $awsSdk
is used for this object.
Uploading a File
- Create a list of available upload locations.
- This is an
S3AvailableUploadFileBucketAndKeyLocations
object. - You can add anything that implements
S3FileBucketAndKeyProviderInterface
to the list of locations. - The simplest option is to use
S3FileBucketAndKey
, which implements this interface.
- This is an
- Set up
S3UploadFileMetadata
with metadata for the file to be uploaded. - Create an
AwsHighAvailabilityS3Uploader
object and calluploadFileToS3
.- You can configure the uploader with an
AwsHighAvailabilityS3UploaderErrorHandlerInterface
to customize handling of failures. For example, you might want to use it to log the exception or you can throw an exception if you want to stop attempted alternative locations.
- You can configure the uploader with an
Downloading a File
- Create a list of available download locations.
- This is an
S3AvailableDownloadFileBucketAndKeyLocations
object. - You can add anything that implements
S3FileBucketAndKeyProviderInterface
to the list of locations. - The simplest option is to use
S3FileBucketAndKey
, which implements this interface.
- This is an
- Create an
AwsHighAvailabilityS3Downloader
object and calldownloadFileFromS3
.- You can configure the downloader with an
AwsHighAvailabilityS3DownloaderErrorHandlerInterface
to customize handling of failures. For example, you might want to use it to log the exception or you can throw an exception if you want to stop attempted alternative locations.
- You can configure the downloader with an
S3UploadFileMetadata
Options
The S3UploadFileMetadata
class allows you to customize the following:
- S3 storage class.
- S3 ACL (public vs private).
- Cache TTL for public objects.
All versions of aws-high-availability-s3 with dependencies
PHP Build Version
Package Version
The package ssigwart/aws-high-availability-s3 contains the following files
Loading the files please wait ....