Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

S3ObjectTag

import type { S3ObjectTag } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

The tags to apply to the AMI object that will be stored in the Amazon S3 bucket. For more information, see Categorizing your storage using tags in the Amazon Simple Storage Service User Guide.

interface S3ObjectTag {
Key?: string | null;
Value?: string | null;
}

§Properties

§
Key?: string | null
[src]

The key of the tag.

Constraints: Tag keys are case-sensitive and can be up to 128 Unicode characters in length. May not begin with aws:.

§
Value?: string | null
[src]

The value of the tag.

Constraints: Tag values are case-sensitive and can be up to 256 Unicode characters in length.