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

ListInstalledComponentsRequest

import type { ListInstalledComponentsRequest } from "https://aws-api.deno.dev/v0.4/services/greengrassv2.ts?docs=full";
interface ListInstalledComponentsRequest {
coreDeviceThingName: string;
maxResults?: number | null;
nextToken?: string | null;
topologyFilter?: InstalledComponentTopologyFilter | null;
}

§Properties

§
coreDeviceThingName: string
[src]

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

§
maxResults?: number | null
[src]

The maximum number of results to be returned per paginated request.

§
nextToken?: string | null
[src]

The token to be used for the next set of paginated results.

§

The filter for the list of components. Choose from the following options:

  • ALL – The list includes all components installed on the core device.
  • ROOT – The list includes only root components, which are components that you specify in a deployment. When you choose this option, the list doesn't include components that the core device installs as dependencies of other components.

Default: ROOT