CopyableBuilder<ThirdPartyJobData.Builder,ThirdPartyJobData>
, SdkBuilder<ThirdPartyJobData.Builder,ThirdPartyJobData>
public static interface ThirdPartyJobData.Builder extends CopyableBuilder<ThirdPartyJobData.Builder,ThirdPartyJobData>
Modifier and Type | Method | Description |
---|---|---|
ThirdPartyJobData.Builder |
actionConfiguration(ActionConfiguration actionConfiguration) |
Represents information about an action configuration.
|
ThirdPartyJobData.Builder |
actionTypeId(ActionTypeId actionTypeId) |
Represents information about an action type.
|
ThirdPartyJobData.Builder |
artifactCredentials(AWSSessionCredentials artifactCredentials) |
Represents an AWS session credentials object.
|
ThirdPartyJobData.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.
|
ThirdPartyJobData.Builder |
encryptionKey(EncryptionKey encryptionKey) |
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.
|
ThirdPartyJobData.Builder |
inputArtifacts(Collection<Artifact> inputArtifacts) |
The name of the artifact that will be worked upon by the action, if any.
|
ThirdPartyJobData.Builder |
inputArtifacts(Artifact... inputArtifacts) |
The name of the artifact that will be worked upon by the action, if any.
|
ThirdPartyJobData.Builder |
outputArtifacts(Collection<Artifact> outputArtifacts) |
The name of the artifact that will be the result of the action, if any.
|
ThirdPartyJobData.Builder |
outputArtifacts(Artifact... outputArtifacts) |
The name of the artifact that will be the result of the action, if any.
|
ThirdPartyJobData.Builder |
pipelineContext(PipelineContext pipelineContext) |
Represents information about a pipeline to a job worker.
|
copy
apply, build
ThirdPartyJobData.Builder actionTypeId(ActionTypeId actionTypeId)
Represents information about an action type.
actionTypeId
- Represents information about an action type.ThirdPartyJobData.Builder actionConfiguration(ActionConfiguration actionConfiguration)
Represents information about an action configuration.
actionConfiguration
- Represents information about an action configuration.ThirdPartyJobData.Builder pipelineContext(PipelineContext pipelineContext)
Represents information about a pipeline to a job worker.
pipelineContext
- Represents information about a pipeline to a job worker.ThirdPartyJobData.Builder inputArtifacts(Collection<Artifact> inputArtifacts)
The name of the artifact that will be worked upon by the action, if any. This name might be system-generated, such as "MyApp", or 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.
inputArtifacts
- The name of the artifact that will be worked upon by the action, if any. This name might be
system-generated, such as "MyApp", or 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.ThirdPartyJobData.Builder inputArtifacts(Artifact... inputArtifacts)
The name of the artifact that will be worked upon by the action, if any. This name might be system-generated, such as "MyApp", or 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.
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 name of the artifact that will be worked upon by the action, if any. This name might be
system-generated, such as "MyApp", or 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.ThirdPartyJobData.Builder outputArtifacts(Collection<Artifact> outputArtifacts)
The name of the artifact that will be the result of the action, if any. This name might be system-generated, such as "MyBuiltApp", or might be defined by the user when the action is created.
outputArtifacts
- The name of the artifact that will be the result of the action, if any. This name might be
system-generated, such as "MyBuiltApp", or might be defined by the user when the action is created.ThirdPartyJobData.Builder outputArtifacts(Artifact... outputArtifacts)
The name of the artifact that will be the result of the action, if any. This name might be system-generated, such as "MyBuiltApp", or might be defined by the user when the action is created.
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 name of the artifact that will be the result of the action, if any. This name might be
system-generated, such as "MyBuiltApp", or might be defined by the user when the action is created.ThirdPartyJobData.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.ThirdPartyJobData.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.ThirdPartyJobData.Builder encryptionKey(EncryptionKey encryptionKey)
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.
encryptionKey
- 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.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.