CopyableBuilder<JobData.Builder,JobData>
, SdkBuilder<JobData.Builder,JobData>
public static interface JobData.Builder extends CopyableBuilder<JobData.Builder,JobData>
Modifier and Type | Method | Description |
---|---|---|
JobData.Builder |
actionConfiguration(ActionConfiguration actionConfiguration) |
Represents information about an action configuration.
|
JobData.Builder |
actionTypeId(ActionTypeId actionTypeId) |
Represents information about an action type.
|
JobData.Builder |
artifactCredentials(AWSSessionCredentials artifactCredentials) |
Represents an AWS session credentials object.
|
JobData.Builder |
continuationToken(String continuationToken) |
A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires in order to continue
the job asynchronously.
|
JobData.Builder |
encryptionKey(EncryptionKey encryptionKey) |
Represents information about the key used to encrypt data in the artifact store, such as an AWS Key
Management Service (AWS KMS) key.
|
JobData.Builder |
inputArtifacts(Collection<Artifact> inputArtifacts) |
The artifact supplied to the job.
|
JobData.Builder |
inputArtifacts(Artifact... inputArtifacts) |
The artifact supplied to the job.
|
JobData.Builder |
outputArtifacts(Collection<Artifact> outputArtifacts) |
The output of the job.
|
JobData.Builder |
outputArtifacts(Artifact... outputArtifacts) |
The output of the job.
|
JobData.Builder |
pipelineContext(PipelineContext pipelineContext) |
Represents information about a pipeline to a job worker.
|
copy
apply, build
JobData.Builder actionTypeId(ActionTypeId actionTypeId)
Represents information about an action type.
actionTypeId
- Represents information about an action type.JobData.Builder actionConfiguration(ActionConfiguration actionConfiguration)
Represents information about an action configuration.
actionConfiguration
- Represents information about an action configuration.JobData.Builder pipelineContext(PipelineContext pipelineContext)
Represents information about a pipeline to a job worker.
pipelineContext
- Represents information about a pipeline to a job worker.JobData.Builder inputArtifacts(Collection<Artifact> inputArtifacts)
The artifact supplied to the job.
inputArtifacts
- The artifact supplied to the job.JobData.Builder inputArtifacts(Artifact... inputArtifacts)
The artifact supplied to the job.
NOTE: This method appends the values to the existing list (if any). Use
#setInputArtifacts(java.util.Collection)
or #withInputArtifacts(java.util.Collection)
if you
want to override the existing values.
inputArtifacts
- The artifact supplied to the job.JobData.Builder outputArtifacts(Collection<Artifact> outputArtifacts)
The output of the job.
outputArtifacts
- The output of the job.JobData.Builder outputArtifacts(Artifact... outputArtifacts)
The output of the job.
NOTE: This method appends the values to the existing list (if any). Use
#setOutputArtifacts(java.util.Collection)
or #withOutputArtifacts(java.util.Collection)
if
you want to override the existing values.
outputArtifacts
- The output of the job.JobData.Builder artifactCredentials(AWSSessionCredentials 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 Amazon S3 bucket used to store artifact for the pipeline in AWS CodePipeline.
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
Amazon S3 bucket used to store artifact for the pipeline in AWS CodePipeline.JobData.Builder continuationToken(String continuationToken)
A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires in order to continue the job asynchronously.
continuationToken
- A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires in order to
continue the job asynchronously.JobData.Builder encryptionKey(EncryptionKey encryptionKey)
Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.
encryptionKey
- Represents information about the key used to encrypt data in the artifact store, such as an AWS Key
Management Service (AWS KMS) key.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.