Determines whether there are any third party jobs for a job worker to act on. Used
for partner actions only.
When this API is called, AWS CodePipeline returns temporary credentials for the
S3 bucket used to store artifacts for the pipeline, if the action requires access to
that S3 bucket for input or output artifacts.
example
Use a bare-bones client and the command you need to make an API call.
Determines whether there are any third party jobs for a job worker to act on. Used for partner actions only.
When this API is called, AWS CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, PollForThirdPartyJobsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, PollForThirdPartyJobsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new PollForThirdPartyJobsCommand(input); const response = await client.send(command);
PollForThirdPartyJobsCommandInput for command's
input
shape.PollForThirdPartyJobsCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.