Interface RelationalTable.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<RelationalTable.Builder,,RelationalTable> SdkBuilder<RelationalTable.Builder,,RelationalTable> SdkPojo
- Enclosing class:
 RelationalTable
@Mutable
@NotThreadSafe
public static interface RelationalTable.Builder
extends SdkPojo, CopyableBuilder<RelationalTable.Builder,RelationalTable> 
- 
Method Summary
Modifier and TypeMethodDescriptionThe catalog associated with a table.dataSourceArn(String dataSourceArn) The Amazon Resource Name (ARN) for the data source.inputColumns(Collection<InputColumn> inputColumns) The column schema of the table.inputColumns(Consumer<InputColumn.Builder>... inputColumns) The column schema of the table.inputColumns(InputColumn... inputColumns) The column schema of the table.The name of the relational table.The schema name.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, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
dataSourceArn
The Amazon Resource Name (ARN) for the data source.
- Parameters:
 dataSourceArn- The Amazon Resource Name (ARN) for the data source.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
catalog
The catalog associated with a table.
- Parameters:
 catalog- The catalog associated with a table.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
schema
The schema name. This name applies to certain relational database engines.
- Parameters:
 schema- The schema name. This name applies to certain relational database engines.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
name
The name of the relational table.
- Parameters:
 name- The name of the relational table.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
inputColumns
The column schema of the table.
- Parameters:
 inputColumns- The column schema of the table.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
inputColumns
The column schema of the table.
- Parameters:
 inputColumns- The column schema of the table.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
inputColumns
The column schema of the table.
This is a convenience method that creates an instance of theInputColumn.Builderavoiding the need to create one manually viaInputColumn.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toinputColumns(List<InputColumn>).- Parameters:
 inputColumns- a consumer that will call methods onInputColumn.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -