scottgerring / payload-offloading-java-common-lib-for-aws

Shared library between AWS extended messaging clients to manage payloads larger than their limits.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Payload Offloading Java Common Library For AWS

The Payload Offloading Java Common Library For AWS enables you to manage payloads with Amazon S3. For example, this is useful for storing and retrieving payloads with size greater than the current SQS/SNS limit of 256 KB, up to a maximum of 2 GB.

You can use this library to:

  • Specify whether payloads are always stored in Amazon S3 or only when a payload's size exceeds 256 KB.

  • Get the corresponding payload object from an Amazon S3 bucket.

  • Delete the corresponding payload object from an Amazon S3 bucket.

You can download release builds through the releases section of this project.

Getting Started

  • Sign up for AWS -- Before using this library with Amazon services, you need an AWS account. For more information about creating an AWS account and retrieving your AWS credentials, see AWS Account and Credentials in the AWS SDK for Java Developer Guide.
  • Minimum requirements -- You'll need Java 8 (or later) and Maven 3.
  • Download -- Download the latest preview release or pick it up from Maven:

Version 2.x

  <dependency>
    <groupId>software.amazon.payloadoffloading</groupId>
    <artifactId>payloadoffloading-common</artifactId>
    <version>2.1.3</version>
  </dependency>

Version 1.x

  <dependency>
    <groupId>software.amazon.payloadoffloading</groupId>
    <artifactId>payloadoffloading-common</artifactId>
    <version>1.1.3</version>
  </dependency>

Security

See CONTRIBUTING for more information.

License

This project is licensed under the Apache-2.0 License.

About

Shared library between AWS extended messaging clients to manage payloads larger than their limits.

License:Apache License 2.0


Languages

Language:Java 100.0%