Interface GovernedCatalogTarget.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<GovernedCatalogTarget.Builder,,GovernedCatalogTarget> SdkBuilder<GovernedCatalogTarget.Builder,,GovernedCatalogTarget> SdkPojo
- Enclosing class:
 GovernedCatalogTarget
public static interface GovernedCatalogTarget.Builder
extends SdkPojo, CopyableBuilder<GovernedCatalogTarget.Builder,GovernedCatalogTarget> 
- 
Method Summary
Modifier and TypeMethodDescriptionThe name of the database to write to.The nodes that are inputs to the data target.inputs(Collection<String> inputs) The nodes that are inputs to the data target.The name of the data target.partitionKeys(Collection<? extends Collection<String>> partitionKeys) Specifies native partitioning using a sequence of keys.partitionKeys(Collection<String>... partitionKeys) Specifies native partitioning using a sequence of keys.default GovernedCatalogTarget.BuilderschemaChangePolicy(Consumer<CatalogSchemaChangePolicy.Builder> schemaChangePolicy) A policy that specifies update behavior for the governed catalog.schemaChangePolicy(CatalogSchemaChangePolicy schemaChangePolicy) A policy that specifies update behavior for the governed catalog.The name of the table in the database to write to.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields 
- 
Method Details
- 
name
The name of the data target.
- Parameters:
 name- The name of the data target.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
inputs
The nodes that are inputs to the data target.
- Parameters:
 inputs- The nodes that are inputs to the data target.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
inputs
The nodes that are inputs to the data target.
- Parameters:
 inputs- The nodes that are inputs to the data target.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
partitionKeys
Specifies native partitioning using a sequence of keys.
- Parameters:
 partitionKeys- Specifies native partitioning using a sequence of keys.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
partitionKeys
Specifies native partitioning using a sequence of keys.
- Parameters:
 partitionKeys- Specifies native partitioning using a sequence of keys.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
table
The name of the table in the database to write to.
- Parameters:
 table- The name of the table in the database to write to.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
database
The name of the database to write to.
- Parameters:
 database- The name of the database to write to.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
schemaChangePolicy
A policy that specifies update behavior for the governed catalog.
- Parameters:
 schemaChangePolicy- A policy that specifies update behavior for the governed catalog.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
schemaChangePolicy
default GovernedCatalogTarget.Builder schemaChangePolicy(Consumer<CatalogSchemaChangePolicy.Builder> schemaChangePolicy) A policy that specifies update behavior for the governed catalog.
This is a convenience method that creates an instance of theCatalogSchemaChangePolicy.Builderavoiding the need to create one manually viaCatalogSchemaChangePolicy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toschemaChangePolicy(CatalogSchemaChangePolicy).- Parameters:
 schemaChangePolicy- a consumer that will call methods onCatalogSchemaChangePolicy.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -