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

CoreDevice

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

Contains information about a Greengrass core device, which is an IoT thing that runs the IoT Greengrass Core software.

interface CoreDevice {
coreDeviceThingName?: string | null;
lastStatusUpdateTimestamp?: Date | number | null;
status?: CoreDeviceStatus | null;
}

§Properties

§
coreDeviceThingName?: string | null
[src]

The name of the core device. This is also the name of the IoT thing.

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

The time at which the core device's status last updated, expressed in ISO 8601 format.

§
status?: CoreDeviceStatus | null
[src]

The status of the core device. Core devices can have the following statuses:

  • HEALTHY – The IoT Greengrass Core software and all components run on the core device without issue.
  • UNHEALTHY – The IoT Greengrass Core software or a component is in a failed state on the core device.