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

GetCoreDeviceResponse

import type { GetCoreDeviceResponse } from "https://aws-api.deno.dev/v0.4/services/greengrassv2.ts?docs=full";
interface GetCoreDeviceResponse {
architecture?: string | null;
coreDeviceThingName?: string | null;
coreVersion?: string | null;
lastStatusUpdateTimestamp?: Date | number | null;
platform?: string | null;
status?: CoreDeviceStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
architecture?: string | null
[src]

The computer architecture of the core device.

§
coreDeviceThingName?: string | null
[src]

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

§
coreVersion?: string | null
[src]

The version of the IoT Greengrass Core software that the core device runs. This version is equivalent to the version of the Greengrass nucleus component that runs on the core device. For more information, see the Greengrass nucleus component in the IoT Greengrass V2 Developer Guide.

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

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

§
platform?: string | null
[src]

The operating system platform that the core device runs.

§
status?: CoreDeviceStatus | null
[src]

The status of the core device. The core device status can be:

  • 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.
§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of key-value pairs that contain metadata for the resource. For more information, see Tag your resources in the IoT Greengrass V2 Developer Guide.