public static interface GetQueryResultsResponse.Builder extends AthenaResponse.Builder, SdkPojo, CopyableBuilder<GetQueryResultsResponse.Builder,GetQueryResultsResponse>
Modifier and Type | Method and Description |
---|---|
GetQueryResultsResponse.Builder |
nextToken(String nextToken)
A token to be used by the next request if this request is truncated.
|
default GetQueryResultsResponse.Builder |
resultSet(Consumer<ResultSet.Builder> resultSet)
The results of the query execution.
|
GetQueryResultsResponse.Builder |
resultSet(ResultSet resultSet)
The results of the query execution.
|
GetQueryResultsResponse.Builder |
updateCount(Long updateCount)
The number of rows inserted with a CREATE TABLE AS SELECT statement.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
GetQueryResultsResponse.Builder updateCount(Long updateCount)
The number of rows inserted with a CREATE TABLE AS SELECT statement.
updateCount
- The number of rows inserted with a CREATE TABLE AS SELECT statement.GetQueryResultsResponse.Builder resultSet(ResultSet resultSet)
The results of the query execution.
resultSet
- The results of the query execution.default GetQueryResultsResponse.Builder resultSet(Consumer<ResultSet.Builder> resultSet)
The results of the query execution.
This is a convenience that creates an instance of theResultSet.Builder
avoiding the need to create
one manually via ResultSet.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to resultSet(ResultSet)
.resultSet
- a consumer that will call methods on ResultSet.Builder
resultSet(ResultSet)
GetQueryResultsResponse.Builder nextToken(String nextToken)
A token to be used by the next request if this request is truncated.
nextToken
- A token to be used by the next request if this request is truncated.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.