Interface BatchUpdateClusterResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchUpdateClusterResponse.Builder,BatchUpdateClusterResponse>,MemoryDbResponse.Builder,SdkBuilder<BatchUpdateClusterResponse.Builder,BatchUpdateClusterResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchUpdateClusterResponse
public static interface BatchUpdateClusterResponse.Builder extends MemoryDbResponse.Builder, SdkPojo, CopyableBuilder<BatchUpdateClusterResponse.Builder,BatchUpdateClusterResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchUpdateClusterResponse.BuilderprocessedClusters(Collection<Cluster> processedClusters)The list of clusters that have been updated.BatchUpdateClusterResponse.BuilderprocessedClusters(Consumer<Cluster.Builder>... processedClusters)The list of clusters that have been updated.BatchUpdateClusterResponse.BuilderprocessedClusters(Cluster... processedClusters)The list of clusters that have been updated.BatchUpdateClusterResponse.BuilderunprocessedClusters(Collection<UnprocessedCluster> unprocessedClusters)The list of clusters where updates have not been applied.BatchUpdateClusterResponse.BuilderunprocessedClusters(Consumer<UnprocessedCluster.Builder>... unprocessedClusters)The list of clusters where updates have not been applied.BatchUpdateClusterResponse.BuilderunprocessedClusters(UnprocessedCluster... unprocessedClusters)The list of clusters where updates have not been applied.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.memorydb.model.MemoryDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
processedClusters
BatchUpdateClusterResponse.Builder processedClusters(Collection<Cluster> processedClusters)
The list of clusters that have been updated.
- Parameters:
processedClusters- The list of clusters that have been updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processedClusters
BatchUpdateClusterResponse.Builder processedClusters(Cluster... processedClusters)
The list of clusters that have been updated.
- Parameters:
processedClusters- The list of clusters that have been updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processedClusters
BatchUpdateClusterResponse.Builder processedClusters(Consumer<Cluster.Builder>... processedClusters)
The list of clusters that have been updated.
This is a convenience method that creates an instance of theCluster.Builderavoiding the need to create one manually viaCluster.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#processedClusters(List.) - Parameters:
processedClusters- a consumer that will call methods onCluster.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#processedClusters(java.util.Collection)
-
unprocessedClusters
BatchUpdateClusterResponse.Builder unprocessedClusters(Collection<UnprocessedCluster> unprocessedClusters)
The list of clusters where updates have not been applied.
- Parameters:
unprocessedClusters- The list of clusters where updates have not been applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedClusters
BatchUpdateClusterResponse.Builder unprocessedClusters(UnprocessedCluster... unprocessedClusters)
The list of clusters where updates have not been applied.
- Parameters:
unprocessedClusters- The list of clusters where updates have not been applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedClusters
BatchUpdateClusterResponse.Builder unprocessedClusters(Consumer<UnprocessedCluster.Builder>... unprocessedClusters)
The list of clusters where updates have not been applied.
This is a convenience method that creates an instance of theUnprocessedCluster.Builderavoiding the need to create one manually viaUnprocessedCluster.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unprocessedClusters(List.) - Parameters:
unprocessedClusters- a consumer that will call methods onUnprocessedCluster.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unprocessedClusters(java.util.Collection)
-
-