> For the complete documentation index, see [llms.txt](https://ciusji.gitbook.io/luden/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ciusji.gitbook.io/luden/configuration/destinations-conf/aws-s3.md).

# AWS S3

Luden upports S3 ([AWS](https://aws.amazon.com/ru/s3/), [DigitalOcean](https://www.digitalocean.com/products/spaces/)) as a destination. The only difference between them is `endpoint` parameter in the configuration.

## Configuration

S3 destination config consists of the following schema:

```
destinations:
  my_s3:
    type: s3
    s3:
      access_key_id: abc123
      secret_access_key: secretabc123
      bucket: my-bucket
      region: us-west-1
      folder: my_s3_events
      endpoint: s3_provider_endpoint
      format: json
      compression: gzip
```
