public static interface CustomSql.Builder extends SdkPojo, CopyableBuilder<CustomSql.Builder,CustomSql>
| Modifier and Type | Method and Description |
|---|---|
CustomSql.Builder |
columns(Collection<InputColumn> columns)
The column schema from the SQL query result set.
|
CustomSql.Builder |
columns(Consumer<InputColumn.Builder>... columns)
The column schema from the SQL query result set.
|
CustomSql.Builder |
columns(InputColumn... columns)
The column schema from the SQL query result set.
|
CustomSql.Builder |
dataSourceArn(String dataSourceArn)
The Amazon Resource Name (ARN) of the data source.
|
CustomSql.Builder |
name(String name)
A display name for the SQL query result.
|
CustomSql.Builder |
sqlQuery(String sqlQuery)
The SQL query.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildCustomSql.Builder dataSourceArn(String dataSourceArn)
The Amazon Resource Name (ARN) of the data source.
dataSourceArn - The Amazon Resource Name (ARN) of the data source.CustomSql.Builder name(String name)
A display name for the SQL query result.
name - A display name for the SQL query result.CustomSql.Builder sqlQuery(String sqlQuery)
The SQL query.
sqlQuery - The SQL query.CustomSql.Builder columns(Collection<InputColumn> columns)
The column schema from the SQL query result set.
columns - The column schema from the SQL query result set.CustomSql.Builder columns(InputColumn... columns)
The column schema from the SQL query result set.
columns - The column schema from the SQL query result set.CustomSql.Builder columns(Consumer<InputColumn.Builder>... columns)
The column schema from the SQL query result set.
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 #columns(List) .columns - a consumer that will call methods on List.Builder #columns(List) Copyright © 2020. All rights reserved.