Skip to content

Poll For Third Party Jobs

codepipeline_poll_for_third_party_jobs R Documentation

Determines whether there are any third party jobs for a job worker to act on

Description

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

Usage

codepipeline_poll_for_third_party_jobs(actionTypeId, maxBatchSize)

Arguments

actionTypeId

[required] Represents information about an action type.

maxBatchSize

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

Value

A list with the following syntax:

list(
  jobs = list(
    list(
      clientId = "string",
      jobId = "string"
    )
  )
)

Request syntax

svc$poll_for_third_party_jobs(
  actionTypeId = list(
    category = "Source"|"Build"|"Deploy"|"Test"|"Invoke"|"Approval",
    owner = "AWS"|"ThirdParty"|"Custom",
    provider = "string",
    version = "string"
  ),
  maxBatchSize = 123
)