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

# Tag Object

## Description

The `Tag` object represents a resource tag on an AWS resource (EC2 instance, EBS snapshot, etc.)

## Properties

### 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"
}
```
