public static interface RelationalTable.Builder extends SdkPojo, CopyableBuilder<RelationalTable.Builder,RelationalTable>
Modifier and Type | Method and Description |
---|---|
RelationalTable.Builder |
catalog(String catalog)
The catalog associated with a table.
|
RelationalTable.Builder |
dataSourceArn(String dataSourceArn)
The Amazon Resource Name (ARN) for the data source.
|
RelationalTable.Builder |
inputColumns(Collection<InputColumn> inputColumns)
The column schema of the table.
|
RelationalTable.Builder |
inputColumns(Consumer<InputColumn.Builder>... inputColumns)
The column schema of the table.
|
RelationalTable.Builder |
inputColumns(InputColumn... inputColumns)
The column schema of the table.
|
RelationalTable.Builder |
name(String name)
The name of the relational table.
|
RelationalTable.Builder |
schema(String schema)
The schema name.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
RelationalTable.Builder dataSourceArn(String dataSourceArn)
The Amazon Resource Name (ARN) for the data source.
dataSourceArn
- The Amazon Resource Name (ARN) for the data source.RelationalTable.Builder catalog(String catalog)
The catalog associated with a table.
catalog
- The catalog associated with a table.RelationalTable.Builder schema(String schema)
The schema name. This name applies to certain relational database engines.
schema
- The schema name. This name applies to certain relational database engines.RelationalTable.Builder name(String name)
The name of the relational table.
name
- The name of the relational table.RelationalTable.Builder inputColumns(Collection<InputColumn> inputColumns)
The column schema of the table.
inputColumns
- The column schema of the table.RelationalTable.Builder inputColumns(InputColumn... inputColumns)
The column schema of the table.
inputColumns
- The column schema of the table.RelationalTable.Builder inputColumns(Consumer<InputColumn.Builder>... inputColumns)
The column schema of the table.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #inputColumns(List)
.inputColumns
- a consumer that will call methods on List.Builder
#inputColumns(List)
Copyright © 2021. All rights reserved.