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

ThingGroupDocument

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

The thing group search index document.

interface ThingGroupDocument {
attributes?: {
[key: string]: string | null | undefined;
}
| null;
parentGroupNames?: string[] | null;
thingGroupDescription?: string | null;
thingGroupId?: string | null;
thingGroupName?: string | null;
}

§Properties

§
attributes?: {
[key: string]: string | null | undefined;
}
| null
[src]

The thing group attributes.

§
parentGroupNames?: string[] | null
[src]

Parent group names.

§
thingGroupDescription?: string | null
[src]

The thing group description.

§
thingGroupId?: string | null
[src]

The thing group ID.

§
thingGroupName?: string | null
[src]

The thing group name.