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

IoTJobsDataPlane

import { IoTJobsDataPlane } from "https://aws-api.deno.dev/v0.3/services/iotjobsdataplane.ts?docs=full";
class IoTJobsDataPlane {
constructor(apiFactory: client.ApiFactory);
async describeJobExecution(params: DescribeJobExecutionRequest, opts?: client.RequestOptions): Promise<DescribeJobExecutionResponse>;
async getPendingJobExecutions(params: GetPendingJobExecutionsRequest, opts?: client.RequestOptions): Promise<GetPendingJobExecutionsResponse>;
async startNextPendingJobExecution(params: StartNextPendingJobExecutionRequest, opts?: client.RequestOptions): Promise<StartNextPendingJobExecutionResponse>;
async updateJobExecution(params: UpdateJobExecutionRequest, opts?: client.RequestOptions): Promise<UpdateJobExecutionResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new IoTJobsDataPlane(apiFactory: client.ApiFactory)
[src]

§Methods

§

Gets details of a job execution.

§

Gets the list of all jobs for a thing that are not in a terminal status.

§

Gets and starts the next pending (status IN_PROGRESS or QUEUED) job execution for a thing.

§

Updates the status of a job execution.

§Static Properties