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

PollForJobsInput

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

Represents the input of a PollForJobs action.

interface PollForJobsInput {
actionTypeId: ActionTypeId;
maxBatchSize?: number | null;
queryParam?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
actionTypeId: ActionTypeId
[src]

Represents information about an action type.

§
maxBatchSize?: number | null
[src]

The maximum number of jobs to return in a poll for jobs call.

§
queryParam?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value are returned.