public static interface RelationalTable.Builder extends SdkPojo, CopyableBuilder<RelationalTable.Builder,RelationalTable>
| Modifier and Type | Method and Description |
|---|---|
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, sdkFieldscopyapplyMutation, buildRelationalTable.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 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 © 2020. All rights reserved.