amazonka-codepipeline-2.0: Amazon CodePipeline SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodePipeline.Types.JobData

Description

 
Synopsis

Documentation

data JobData Source #

Represents other information about a job required for a job worker to complete the job.

See: newJobData smart constructor.

Constructors

JobData' 

Fields

Instances

Instances details
FromJSON JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Generic JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Associated Types

type Rep JobData :: Type -> Type #

Methods

from :: JobData -> Rep JobData x #

to :: Rep JobData x -> JobData #

Show JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

NFData JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Methods

rnf :: JobData -> () #

Eq JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Methods

(==) :: JobData -> JobData -> Bool #

(/=) :: JobData -> JobData -> Bool #

Hashable JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Methods

hashWithSalt :: Int -> JobData -> Int #

hash :: JobData -> Int #

type Rep JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

newJobData :: JobData Source #

Create a value of JobData with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:actionConfiguration:JobData', jobData_actionConfiguration - Represents information about an action configuration.

$sel:actionTypeId:JobData', jobData_actionTypeId - Represents information about an action type.

$sel:artifactCredentials:JobData', jobData_artifactCredentials - 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 artifacts for the pipeline in AWS CodePipeline.

$sel:continuationToken:JobData', jobData_continuationToken - A system-generated token, such as a AWS CodeDeploy deployment ID, required by a job to continue the job asynchronously.

$sel:encryptionKey:JobData', jobData_encryptionKey - Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.

$sel:inputArtifacts:JobData', jobData_inputArtifacts - The artifact supplied to the job.

$sel:outputArtifacts:JobData', jobData_outputArtifacts - The output of the job.

$sel:pipelineContext:JobData', jobData_pipelineContext - Represents information about a pipeline to a job worker.

Includes pipelineArn and pipelineExecutionId for custom jobs.

jobData_actionConfiguration :: Lens' JobData (Maybe ActionConfiguration) Source #

Represents information about an action configuration.

jobData_actionTypeId :: Lens' JobData (Maybe ActionTypeId) Source #

Represents information about an action type.

jobData_artifactCredentials :: Lens' JobData (Maybe AWSSessionCredentials) Source #

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 artifacts for the pipeline in AWS CodePipeline.

jobData_continuationToken :: Lens' JobData (Maybe Text) Source #

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

jobData_encryptionKey :: Lens' JobData (Maybe EncryptionKey) Source #

Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.

jobData_inputArtifacts :: Lens' JobData (Maybe [Artifact]) Source #

The artifact supplied to the job.

jobData_pipelineContext :: Lens' JobData (Maybe PipelineContext) Source #

Represents information about a pipeline to a job worker.

Includes pipelineArn and pipelineExecutionId for custom jobs.