Interface ExecuteQueryResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ExecuteQueryResponse.Builder,
,ExecuteQueryResponse> IoTSiteWiseResponse.Builder
,SdkBuilder<ExecuteQueryResponse.Builder,
,ExecuteQueryResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
ExecuteQueryResponse
@Mutable
@NotThreadSafe
public static interface ExecuteQueryResponse.Builder
extends IoTSiteWiseResponse.Builder, SdkPojo, CopyableBuilder<ExecuteQueryResponse.Builder,ExecuteQueryResponse>
-
Method Summary
Modifier and TypeMethodDescriptioncolumns
(Collection<ColumnInfo> columns) Represents a single column in the query results.columns
(Consumer<ColumnInfo.Builder>... columns) Represents a single column in the query results.columns
(ColumnInfo... columns) Represents a single column in the query results.The string that specifies the next page of results.rows
(Collection<Row> rows) Represents a single row in the query results.rows
(Consumer<Row.Builder>... rows) Represents a single row in the query results.Represents a single row in the query results.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.iotsitewise.model.IoTSiteWiseResponse.Builder
build, responseMetadata, responseMetadata
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 Details
-
columns
Represents a single column in the query results.
- Parameters:
columns
- Represents a single column in the query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
Represents a single column in the query results.
- Parameters:
columns
- Represents a single column in the query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
Represents a single column in the query results.
This is a convenience method that creates an instance of theColumnInfo.Builder
avoiding the need to create one manually viaColumnInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocolumns(List<ColumnInfo>)
.- Parameters:
columns
- a consumer that will call methods onColumnInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
rows
Represents a single row in the query results.
- Parameters:
rows
- Represents a single row in the query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
Represents a single row in the query results.
- Parameters:
rows
- Represents a single row in the query results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rows
Represents a single row in the query results.
This is a convenience method that creates an instance of theRow.Builder
avoiding the need to create one manually viaRow.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torows(List<Row>)
.- Parameters:
rows
- a consumer that will call methods onRow.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
nextToken
The string that specifies the next page of results.
- Parameters:
nextToken
- The string that specifies the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-