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

DeviceDescription

import type { DeviceDescription } from "https://aws-api.deno.dev/v0.3/services/iot1clickdevicesservice.ts?docs=full";
interface DeviceDescription {
Arn?: string | null;
Attributes?: {
[key: string]: string | null | undefined;
}
| null;
DeviceId?: string | null;
Enabled?: boolean | null;
RemainingLife?: number | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
Type?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The ARN of the device.

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

An array of zero or more elements of DeviceAttribute objects providing user specified device attributes.

§
DeviceId?: string | null
[src]

The unique identifier of the device.

§
Enabled?: boolean | null
[src]

A Boolean value indicating whether or not the device is enabled.

§
RemainingLife?: number | null
[src]

A value between 0 and 1 inclusive, representing the fraction of life remaining for the device.

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

The tags currently associated with the AWS IoT 1-Click device.

§
Type?: string | null
[src]

The type of the device, such as "button".