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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateTableObjectsRequest.BuildercatalogId(String catalogId)The catalog containing the governed table to update.UpdateTableObjectsRequest.BuilderdatabaseName(String databaseName)The database containing the governed table to update.UpdateTableObjectsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateTableObjectsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateTableObjectsRequest.BuildertableName(String tableName)The governed table to update.UpdateTableObjectsRequest.BuildertransactionId(String transactionId)The transaction at which to do the write.UpdateTableObjectsRequest.BuilderwriteOperations(Collection<WriteOperation> writeOperations)A list ofWriteOperationobjects that define an object to add to or delete from the manifest for a governed table.UpdateTableObjectsRequest.BuilderwriteOperations(Consumer<WriteOperation.Builder>... writeOperations)A list ofWriteOperationobjects that define an object to add to or delete from the manifest for a governed table.UpdateTableObjectsRequest.BuilderwriteOperations(WriteOperation... writeOperations)A list ofWriteOperationobjects 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 Detail
-
catalogId
UpdateTableObjectsRequest.Builder catalogId(String 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
UpdateTableObjectsRequest.Builder databaseName(String 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
UpdateTableObjectsRequest.Builder tableName(String 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
UpdateTableObjectsRequest.Builder transactionId(String 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
UpdateTableObjectsRequest.Builder writeOperations(Collection<WriteOperation> writeOperations)
A list of
WriteOperationobjects that define an object to add to or delete from the manifest for a governed table.- Parameters:
writeOperations- A list ofWriteOperationobjects 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(WriteOperation... writeOperations)
A list of
WriteOperationobjects that define an object to add to or delete from the manifest for a governed table.- Parameters:
writeOperations- A list ofWriteOperationobjects 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 theWriteOperationobjects that define an object to add to or delete from the manifest for a governed table.WriteOperation.Builderavoiding the need to create one manually viaWriteOperation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#writeOperations(List.) - 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:
#writeOperations(java.util.Collection)
-
overrideConfiguration
UpdateTableObjectsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateTableObjectsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-