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

TagDescription

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

Describes a tag for an Auto Scaling group.

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

§Properties

§
Key?: string | null
[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 group.

§
ResourceType?: string | null
[src]

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

§
Value?: string | null
[src]

The tag value.