Interface UpdatePipelineRequest.Builder
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdatePipelineRequest.Builder,,UpdatePipelineRequest> IoTSiteWiseRequest.Builder,SdkBuilder<UpdatePipelineRequest.Builder,,UpdatePipelineRequest> SdkPojo,SdkRequest.Builder
- Enclosing class:
UpdatePipelineRequest
@Mutable
@NotThreadSafe
public static interface UpdatePipelineRequest.Builder
extends IoTSiteWiseRequest.Builder, SdkPojo, CopyableBuilder<UpdatePipelineRequest.Builder,UpdatePipelineRequest>
-
Method Summary
Modifier and TypeMethodDescriptioncomputations(Collection<ComputeNode> computations) Updated list of compute nodes forming the pipeline DAG.computations(Consumer<ComputeNode.Builder>... computations) Updated list of compute nodes forming the pipeline DAG.computations(ComputeNode... computations) Updated list of compute nodes forming the pipeline DAG.description(String description) A new description for the pipeline.environmentVariables(Map<String, String> environmentVariables) Updated environment variables shared across all compute nodes.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.pipelineName(String pipelineName) The name of the pipeline to update.workspaceName(String workspaceName) The name of the workspace.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.services.iotsitewise.model.IoTSiteWiseRequest.Builder
buildMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
workspaceName
The name of the workspace.
- Parameters:
workspaceName- The name of the workspace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineName
The name of the pipeline to update.
- Parameters:
pipelineName- The name of the pipeline to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
A new description for the pipeline.
- Parameters:
description- A new description for the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentVariables
Updated environment variables shared across all compute nodes.
- Parameters:
environmentVariables- Updated environment variables shared across all compute nodes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computations
Updated list of compute nodes forming the pipeline DAG.
- Parameters:
computations- Updated list of compute nodes forming the pipeline DAG.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computations
Updated list of compute nodes forming the pipeline DAG.
- Parameters:
computations- Updated list of compute nodes forming the pipeline DAG.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computations
Updated list of compute nodes forming the pipeline DAG.
This is a convenience method that creates an instance of theComputeNode.Builderavoiding the need to create one manually viaComputeNode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocomputations(List<ComputeNode>).- Parameters:
computations- a consumer that will call methods onComputeNode.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdatePipelineRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
overrideConfiguration- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdatePipelineRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
builderConsumer- AConsumerto which an emptyAwsRequestOverrideConfiguration.Builderwill be given.- Returns:
- This object for method chaining.
-