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

ThirdPartyJobData

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

Represents information about the job data for a partner action.

interface ThirdPartyJobData {
actionConfiguration?: ActionConfiguration | null;
actionTypeId?: ActionTypeId | null;
artifactCredentials?: AWSSessionCredentials | null;
continuationToken?: string | null;
encryptionKey?: EncryptionKey | null;
inputArtifacts?: Artifact[] | null;
outputArtifacts?: Artifact[] | null;
pipelineContext?: PipelineContext | null;
}

§Properties

§
actionConfiguration?: ActionConfiguration | null
[src]

Represents information about an action configuration.

§
actionTypeId?: ActionTypeId | null
[src]

Represents information about an action type.

§
artifactCredentials?: AWSSessionCredentials | null
[src]

Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

§
continuationToken?: string | null
[src]

A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires to continue the job asynchronously.

§
encryptionKey?: EncryptionKey | null
[src]

The encryption key used to encrypt and decrypt data in the artifact store for the pipeline, such as an AWS Key Management Service (AWS KMS) key. This is optional and might not be present.

§
inputArtifacts?: Artifact[] | null
[src]

The name of the artifact that is worked on by the action, if any. This name might be system-generated, such as "MyApp", or it might be defined by the user when the action is created. The input artifact name must match the name of an output artifact generated by an action in an earlier action or stage of the pipeline.

§
outputArtifacts?: Artifact[] | null
[src]

The name of the artifact that is the result of the action, if any. This name might be system-generated, such as "MyBuiltApp", or it might be defined by the user when the action is created.

§
pipelineContext?: PipelineContext | null
[src]

Represents information about a pipeline to a job worker.

Note: Does not include pipelineArn and pipelineExecutionId for ThirdParty jobs.