public static interface PipelineDeclaration.Builder extends SdkPojo, CopyableBuilder<PipelineDeclaration.Builder,PipelineDeclaration>
| Modifier and Type | Method and Description | 
|---|---|
PipelineDeclaration.Builder | 
artifactStore(ArtifactStore artifactStore)
 Represents information about the Amazon S3 bucket where artifacts are stored for the pipeline. 
 | 
default PipelineDeclaration.Builder | 
artifactStore(Consumer<ArtifactStore.Builder> artifactStore)
 Represents information about the Amazon S3 bucket where artifacts are stored for the pipeline. 
 | 
PipelineDeclaration.Builder | 
artifactStores(Map<String,ArtifactStore> artifactStores)
 A mapping of artifactStore objects and their corresponding regions. 
 | 
PipelineDeclaration.Builder | 
name(String name)
 The name of the action to be performed. 
 | 
PipelineDeclaration.Builder | 
roleArn(String roleArn)
 The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn,
 or to use to assume roles for actions with an actionRoleArn. 
 | 
PipelineDeclaration.Builder | 
stages(Collection<StageDeclaration> stages)
 The stage in which to perform the action. 
 | 
PipelineDeclaration.Builder | 
stages(Consumer<StageDeclaration.Builder>... stages)
 The stage in which to perform the action. 
 | 
PipelineDeclaration.Builder | 
stages(StageDeclaration... stages)
 The stage in which to perform the action. 
 | 
PipelineDeclaration.Builder | 
version(Integer version)
 The version number of the pipeline. 
 | 
copyapplyMutation, buildPipelineDeclaration.Builder name(String name)
The name of the action to be performed.
name - The name of the action to be performed.PipelineDeclaration.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.
roleArn - The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no
        actionRoleArn, or to use to assume roles for actions with an actionRoleArn.PipelineDeclaration.Builder artifactStore(ArtifactStore artifactStore)
Represents information about the Amazon S3 bucket where artifacts are stored for the pipeline.
artifactStore - Represents information about the Amazon S3 bucket where artifacts are stored for the pipeline.default PipelineDeclaration.Builder artifactStore(Consumer<ArtifactStore.Builder> artifactStore)
Represents information about the Amazon S3 bucket where artifacts are stored for the pipeline.
This is a convenience that creates an instance of theArtifactStore.Builder avoiding the need to
 create one manually via ArtifactStore.builder().
 When the Consumer completes, SdkBuilder.build() is called immediately and its
 result is passed to artifactStore(ArtifactStore).artifactStore - a consumer that will call methods on ArtifactStore.BuilderartifactStore(ArtifactStore)PipelineDeclaration.Builder artifactStores(Map<String,ArtifactStore> artifactStores)
A mapping of artifactStore objects and their corresponding regions. There must be an artifact store for the pipeline region and for each cross-region action within the pipeline. You can only use either artifactStore or artifactStores, not both.
If you create a cross-region action in your pipeline, you must use artifactStores.
artifactStores - A mapping of artifactStore objects and their corresponding regions. There must be an artifact store
        for the pipeline region and for each cross-region action within the pipeline. You can only use either
        artifactStore or artifactStores, not both.
        If you create a cross-region action in your pipeline, you must use artifactStores.
PipelineDeclaration.Builder stages(Collection<StageDeclaration> stages)
The stage in which to perform the action.
stages - The stage in which to perform the action.PipelineDeclaration.Builder stages(StageDeclaration... stages)
The stage in which to perform the action.
stages - The stage in which to perform the action.PipelineDeclaration.Builder stages(Consumer<StageDeclaration.Builder>... stages)
The stage in which to perform the action.
This is a convenience that creates an instance of theList.Builder  avoiding the
 need to create one manually via List#builder() .
 When the Consumer completes, List.Builder#build()  is called immediately and
 its result is passed to #stages(List) .stages - a consumer that will call methods on List.Builder #stages(List) PipelineDeclaration.Builder version(Integer version)
The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.
version - The version number of the pipeline. A new pipeline always has a version number of 1. This number is
        automatically incremented when a pipeline is updated.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.