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

InstalledComponent

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

Contains information about a component on a Greengrass core device.

interface InstalledComponent {
componentName?: string | null;
componentVersion?: string | null;
isRoot?: boolean | null;
lifecycleState?: InstalledComponentLifecycleState | null;
lifecycleStateDetails?: string | null;
}

§Properties

§
componentName?: string | null
[src]

The name of the component.

§
componentVersion?: string | null
[src]

The version of the component.

§
isRoot?: boolean | null
[src]

Whether or not the component is a root component.

§

The lifecycle state of the component.

§
lifecycleStateDetails?: string | null
[src]

The details about the lifecycle state of the component.