---
sidebar_label: AWS S3
doc_id: 8cf13c6a-2144-4960-a638-7dda5a76eb0d
description: >-
  Configuration schema for AWS S3 bucket settings, defining bucket name
  requirements and validation patterns.
keywords:
  - AWS S3
  - bucket configuration
  - cloud storage
  - JSON schema
  - object storage
---

# AWS S3

AWS S3 Configuration

**Type**: `s3-configuration`

**Properties**

|Name|Type|Description|Required|
|----|----|-----------|--------|
|[**bucket**](#bucket)|`object`|The bucket to store the files in<br/>|yes|

**Additional Properties:** not allowed  
**Example**

```json
{
    "bucket": {
        "name": "my-bucket-name"
    }
}
```

<a name="bucket"></a>
## bucket: Bucket

The bucket to store the files in

**Properties**

|Name|Type|Description|Required|
|----|----|-----------|--------|
|**name**|`string`|The name of the bucket<br/>Pattern: `^(?!.*\.\.)[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`<br/>|yes|

**Example**

```json
{
    "name": "my-bucket-name"
}
```

