Interface BatchGetNamedQueryResponse.Builder
-
- All Superinterfaces:
AthenaResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetNamedQueryResponse.Builder,BatchGetNamedQueryResponse>,SdkBuilder<BatchGetNamedQueryResponse.Builder,BatchGetNamedQueryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetNamedQueryResponse
public static interface BatchGetNamedQueryResponse.Builder extends AthenaResponse.Builder, SdkPojo, CopyableBuilder<BatchGetNamedQueryResponse.Builder,BatchGetNamedQueryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetNamedQueryResponse.BuildernamedQueries(Collection<NamedQuery> namedQueries)Information about the named query IDs submitted.BatchGetNamedQueryResponse.BuildernamedQueries(Consumer<NamedQuery.Builder>... namedQueries)Information about the named query IDs submitted.BatchGetNamedQueryResponse.BuildernamedQueries(NamedQuery... namedQueries)Information about the named query IDs submitted.BatchGetNamedQueryResponse.BuilderunprocessedNamedQueryIds(Collection<UnprocessedNamedQueryId> unprocessedNamedQueryIds)Information about provided query IDs.BatchGetNamedQueryResponse.BuilderunprocessedNamedQueryIds(Consumer<UnprocessedNamedQueryId.Builder>... unprocessedNamedQueryIds)Information about provided query IDs.BatchGetNamedQueryResponse.BuilderunprocessedNamedQueryIds(UnprocessedNamedQueryId... unprocessedNamedQueryIds)Information about provided query IDs.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
namedQueries
BatchGetNamedQueryResponse.Builder namedQueries(Collection<NamedQuery> namedQueries)
Information about the named query IDs submitted.
- Parameters:
namedQueries- Information about the named query IDs submitted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namedQueries
BatchGetNamedQueryResponse.Builder namedQueries(NamedQuery... namedQueries)
Information about the named query IDs submitted.
- Parameters:
namedQueries- Information about the named query IDs submitted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namedQueries
BatchGetNamedQueryResponse.Builder namedQueries(Consumer<NamedQuery.Builder>... namedQueries)
Information about the named query IDs submitted.
This is a convenience method that creates an instance of theNamedQuery.Builderavoiding the need to create one manually viaNamedQuery.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#namedQueries(List.) - Parameters:
namedQueries- a consumer that will call methods onNamedQuery.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#namedQueries(java.util.Collection)
-
unprocessedNamedQueryIds
BatchGetNamedQueryResponse.Builder unprocessedNamedQueryIds(Collection<UnprocessedNamedQueryId> unprocessedNamedQueryIds)
Information about provided query IDs.
- Parameters:
unprocessedNamedQueryIds- Information about provided query IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedNamedQueryIds
BatchGetNamedQueryResponse.Builder unprocessedNamedQueryIds(UnprocessedNamedQueryId... unprocessedNamedQueryIds)
Information about provided query IDs.
- Parameters:
unprocessedNamedQueryIds- Information about provided query IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unprocessedNamedQueryIds
BatchGetNamedQueryResponse.Builder unprocessedNamedQueryIds(Consumer<UnprocessedNamedQueryId.Builder>... unprocessedNamedQueryIds)
Information about provided query IDs.
This is a convenience method that creates an instance of theUnprocessedNamedQueryId.Builderavoiding the need to create one manually viaUnprocessedNamedQueryId.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#unprocessedNamedQueryIds(List.) - Parameters:
unprocessedNamedQueryIds- a consumer that will call methods onUnprocessedNamedQueryId.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#unprocessedNamedQueryIds(java.util.Collection)
-
-