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

ConfigurationTag

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

Tags for a configuration item. Tags are metadata that help you categorize IT assets.

interface ConfigurationTag {
configurationId?: string | null;
configurationType?: ConfigurationItemType | null;
key?: string | null;
timeOfCreation?: Date | number | null;
value?: string | null;
}

§Properties

§
configurationId?: string | null
[src]

The configuration ID for the item to tag. You can specify a list of keys and values.

§
configurationType?: ConfigurationItemType | null
[src]

A type of IT asset to tag.

§
key?: string | null
[src]

A type of tag on which to filter. For example, serverType.

§
timeOfCreation?: Date | number | null
[src]

The time the configuration tag was created in Coordinated Universal Time (UTC).

§
value?: string | null
[src]

A value on which to filter. For example key = serverType and value = web server.