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

CloudComponentStatus

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

Contains the status of a component in the IoT Greengrass service.

interface CloudComponentStatus {
componentState?: CloudComponentState | null;
errors?: {
[key: string]: string | null | undefined;
}
| null;
message?: string | null;
}

§Properties

§
componentState?: CloudComponentState | null
[src]

The state of the component.

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

A dictionary of errors that communicate why the component is in an error state. For example, if IoT Greengrass can't access an artifact for the component, then errors contains the artifact's URI as a key, and the error message as the value for that key.

§
message?: string | null
[src]

A message that communicates details, such as errors, about the status of the component.