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

ListJobsRequest

import type { ListJobsRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface ListJobsRequest {
maxResults?: number | null;
namespaceId?: string | null;
nextToken?: string | null;
status?: JobStatus | null;
targetSelection?: TargetSelection | null;
thingGroupId?: string | null;
thingGroupName?: string | null;
}

§Properties

§
maxResults?: number | null
[src]

The maximum number of results to return per request.

§
namespaceId?: string | null
[src]

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/_THING_NAME_/jobs/_JOB_ID_/notify-namespace-_NAMESPACE_ID_/

Note: The namespaceId feature is in public preview.

§
nextToken?: string | null
[src]

The token to retrieve the next set of results.

§
status?: JobStatus | null
[src]

An optional filter that lets you search for jobs that have the specified status.

§
targetSelection?: TargetSelection | null
[src]

Specifies whether the job will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the job (SNAPSHOT). If continuous, the job may also be run on a thing when a change is detected in a target. For example, a job will run on a thing when the thing is added to a target group, even after the job was completed by all things originally in the group.

§
thingGroupId?: string | null
[src]

A filter that limits the returned jobs to those for the specified group.

§
thingGroupName?: string | null
[src]

A filter that limits the returned jobs to those for the specified group.