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

ListDeploymentsRequest

import type { ListDeploymentsRequest } from "https://aws-api.deno.dev/v0.4/services/greengrassv2.ts?docs=full";
interface ListDeploymentsRequest {
historyFilter?: DeploymentHistoryFilter | null;
maxResults?: number | null;
nextToken?: string | null;
parentTargetArn?: string | null;
targetArn?: string | null;
}

§Properties

§
historyFilter?: DeploymentHistoryFilter | null
[src]

The filter for the list of deployments. Choose one of the following options:

  • ALL – The list includes all deployments.
  • LATEST_ONLY – The list includes only the latest revision of each deployment.

Default: LATEST_ONLY

§
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.

§
parentTargetArn?: string | null
[src]

The parent deployment's target ARN within a subdeployment.

§
targetArn?: string | null
[src]

The ARN of the target IoT thing or thing group.