Requests the details of a job for a third party action. 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. This API also returns any secret
values defined for the action.
example
Use a bare-bones client and the command you need to make an API call.
Requests the details of a job for a third party action. 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. This API also returns any secret values defined for the action.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, GetThirdPartyJobDetailsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, GetThirdPartyJobDetailsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new GetThirdPartyJobDetailsCommand(input); const response = await client.send(command);
GetThirdPartyJobDetailsCommandInput for command's
input
shape.GetThirdPartyJobDetailsCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.