Interface UpdateTableObjectsRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateTableObjectsRequest.Builder,
,UpdateTableObjectsRequest> LakeFormationRequest.Builder
,SdkBuilder<UpdateTableObjectsRequest.Builder,
,UpdateTableObjectsRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateTableObjectsRequest
public static interface UpdateTableObjectsRequest.Builder
extends LakeFormationRequest.Builder, SdkPojo, CopyableBuilder<UpdateTableObjectsRequest.Builder,UpdateTableObjectsRequest>
-
Method Summary
Modifier and TypeMethodDescriptionThe catalog containing the governed table to update.databaseName
(String databaseName) The database containing the governed table to update.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.The governed table to update.transactionId
(String transactionId) The transaction at which to do the write.writeOperations
(Collection<WriteOperation> writeOperations) A list ofWriteOperation
objects that define an object to add to or delete from the manifest for a governed table.writeOperations
(Consumer<WriteOperation.Builder>... writeOperations) A list ofWriteOperation
objects that define an object to add to or delete from the manifest for a governed table.writeOperations
(WriteOperation... writeOperations) A list ofWriteOperation
objects that define an object to add to or delete from the manifest for a governed table.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.lakeformation.model.LakeFormationRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
catalogId
The catalog containing the governed table to update. Defaults to the caller’s account ID.
- Parameters:
catalogId
- The catalog containing the governed table to update. Defaults to the caller’s account ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
The database containing the governed table to update.
- Parameters:
databaseName
- The database containing the governed table to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
The governed table to update.
- Parameters:
tableName
- The governed table to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transactionId
The transaction at which to do the write.
- Parameters:
transactionId
- The transaction at which to do the write.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
writeOperations
A list of
WriteOperation
objects that define an object to add to or delete from the manifest for a governed table.- Parameters:
writeOperations
- A list ofWriteOperation
objects that define an object to add to or delete from the manifest for a governed table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
writeOperations
A list of
WriteOperation
objects that define an object to add to or delete from the manifest for a governed table.- Parameters:
writeOperations
- A list ofWriteOperation
objects that define an object to add to or delete from the manifest for a governed table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
writeOperations
UpdateTableObjectsRequest.Builder writeOperations(Consumer<WriteOperation.Builder>... writeOperations) A list of
This is a convenience method that creates an instance of theWriteOperation
objects that define an object to add to or delete from the manifest for a governed table.WriteOperation.Builder
avoiding the need to create one manually viaWriteOperation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed towriteOperations(List<WriteOperation>)
.- Parameters:
writeOperations
- a consumer that will call methods onWriteOperation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdateTableObjectsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateTableObjectsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-