> 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/amiimagetag-object.md).

# AmiImageTag Object

## Description

Represents a resource tag on an AMI image.

## Properties

### addToImage

Indicates that the tag should be added to the AMI image.

Type: `boolean`

Required: No

Default: `true`

### addToSnapshots

Indicates that the tag should be added to the associated EBS snapshots.

Type: `boolean`

Required: No

Default: `true`

### key

Key (name) of the resource tag.

Type: `string`

Required: Yes

### value

Value of the resource tag.

Type: `string`

Required: Yes

## Sample JSON

```javascript
{
    "key": "Name",
    "value": "my-ec2-instance",
    "addToImage": true,
    "addToSnapshots": true
}
```
