Interface ListNamedQueriesResponse.Builder
-
- All Superinterfaces:
AthenaResponse.Builder
,AwsResponse.Builder
,Buildable
,CopyableBuilder<ListNamedQueriesResponse.Builder,ListNamedQueriesResponse>
,SdkBuilder<ListNamedQueriesResponse.Builder,ListNamedQueriesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListNamedQueriesResponse
public static interface ListNamedQueriesResponse.Builder extends AthenaResponse.Builder, SdkPojo, CopyableBuilder<ListNamedQueriesResponse.Builder,ListNamedQueriesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListNamedQueriesResponse.Builder
namedQueryIds(String... namedQueryIds)
The list of unique query IDs.ListNamedQueriesResponse.Builder
namedQueryIds(Collection<String> namedQueryIds)
The list of unique query IDs.ListNamedQueriesResponse.Builder
nextToken(String nextToken)
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.-
Methods inherited from interface software.amazon.awssdk.services.athena.model.AthenaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
namedQueryIds
ListNamedQueriesResponse.Builder namedQueryIds(Collection<String> namedQueryIds)
The list of unique query IDs.
- Parameters:
namedQueryIds
- The list of unique query IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namedQueryIds
ListNamedQueriesResponse.Builder namedQueryIds(String... namedQueryIds)
The list of unique query IDs.
- Parameters:
namedQueryIds
- The list of unique query IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListNamedQueriesResponse.Builder nextToken(String nextToken)
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the
NextToken
from the response object of the previous page call.- Parameters:
nextToken
- A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in theNextToken
from the response object of the previous page call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-