> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/createebssnapshot-object.md).

# CreateEbsSnapshot Object

## Description

Specifications when creating an EBS snapshot.

## Properties

### description

Description of the snapshot.

Type: `string`

Required: No

### snapshotName

Value to use for the `Name` tag on the snapshot.

Type: `string`

Required: No

### tags

Resource tags to add to the snapshot.

Type: array of [Tag](/data-types/tag-object.md) objects

Required: No

## Sample JSON

```javascript
{
    "description": "$(VOLUMEID)-$(DATE)",
    "snapshotName": "$(VOLUMEID)-$(DATE)",
    "tags": [
        {
            "key": "volume-id",
            "value": "$(VOLUMEID)"
        }
    ]
}
```
