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

Tag

import type { Tag } from "https://aws-api.deno.dev/v0.4/services/autoscaling.ts?docs=full";

Describes a tag for an Auto Scaling group.

interface Tag {
Key: string;
PropagateAtLaunch?: boolean | null;
ResourceId?: string | null;
ResourceType?: string | null;
Value?: string | null;
}

§Properties

§
Key: string
[src]

The tag key.

§
PropagateAtLaunch?: boolean | null
[src]

Determines whether the tag is added to new instances as they are launched in the group.

§
ResourceId?: string | null
[src]

The name of the Auto Scaling group.

§
ResourceType?: string | null
[src]

The type of resource. The only supported value is auto-scaling-group.

§
Value?: string | null
[src]

The tag value.