String queryId
The id of the query that needs to be cancelled. QueryID is returned as part of QueryResult.
String cancellationMessage
A CancellationMessage is returned when a CancelQuery request for the query specified by
QueryId has already been issued.
String name
The name of the result set column. The name of the result set is available for columns of all data types except for arrays.
Type type
The data type of the result set column. The data type can be a scalar or complex. Scalar data types are integers, strings, doubles, booleans, and others. Complex data types are types such as arrays, rows, and others.
String scalarValue
Indicates if the data point is a scalar value such as integer, string, double, or boolean.
List<E> timeSeriesValue
Indicates if the data point is of timeseries data type.
List<E> arrayValue
Indicates if the data point is an array.
Row rowValue
Indicates if the data point is a row.
Boolean nullValue
Indicates if the data point is null.
String queryString
The query to be executed by Timestream.
String clientToken
Unique, case-sensitive string of up to 64 ASCII characters that you specify when you make a Query request.
Providing a ClientToken makes the call to Query idempotent, meaning that multiple
identical calls have the same effect as one single call.
Your query request will fail in the following cases:
If you submit a request with the same client token outside the 5-minute idepotency window.
If you submit a request with the same client token but a change in other parameters within the 5-minute idempotency window.
After 4 hours, any request with the same client token is treated as a new request.
String nextToken
A pagination token passed to get a set of results.
Integer maxRows
The total number of rows to return in the output. If the total number of rows available is more than the value specified, a NextToken is provided in the command's output. To resume pagination, provide the NextToken value in the starting-token argument of a subsequent command.
String queryId
A unique ID for the given query.
String nextToken
A pagination token that can be used again on a Query call to get the next set of results.
List<E> rows
The result set rows returned by the query.
List<E> columnInfo
The column data types of the returned result set.
QueryStatus queryStatus
Information about the status of the query, including progress and bytes scannned.
Double progressPercentage
The progress of the query, expressed as a percentage.
Long cumulativeBytesScanned
The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.
Long cumulativeBytesMetered
The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes execution or when the query is cancelled.
String scalarType
Indicates if the column is of type string, integer, boolean, double, timestamp, date, time.
ColumnInfo arrayColumnInfo
Indicates if the column is an array.
ColumnInfo timeSeriesMeasureValueColumnInfo
Indicates if the column is a timeseries data type.
List<E> rowColumnInfo
Indicates if the column is a row.
Copyright © 2021. All rights reserved.