libZSservicesZSamazonka-codepipelineZSamazonka-codepipeline
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

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
Eq JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Methods

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

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

Show 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 #

NFData JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Methods

rnf :: JobData -> () #

Hashable JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

Methods

hashWithSalt :: Int -> JobData -> Int #

hash :: JobData -> Int #

FromJSON JobData Source # 
Instance details

Defined in Amazonka.CodePipeline.Types.JobData

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: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:outputArtifacts:JobData', jobData_outputArtifacts - The output of the job.

$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:pipelineContext:JobData', jobData_pipelineContext - Represents information about a pipeline to a job worker.

Includes pipelineArn and pipelineExecutionId for custom jobs.

$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:actionTypeId:JobData', jobData_actionTypeId - Represents information about an action type.

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

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

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_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_pipelineContext :: Lens' JobData (Maybe PipelineContext) Source #

Represents information about a pipeline to a job worker.

Includes pipelineArn and pipelineExecutionId for custom jobs.

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_actionTypeId :: Lens' JobData (Maybe ActionTypeId) Source #

Represents information about an action type.

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

The artifact supplied to the job.

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

Represents information about an action configuration.