Class QueryRequest
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<QueryRequest.Builder,QueryRequest>
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic QueryRequest.Builderbuilder()final StringUnique, case-sensitive string of up to 64 ASCII characters specified when aQueryrequest is made.final booleanfinal booleanequalsBySdkFields(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) Used to retrieve the value of a field from any class that extendsSdkRequest.final inthashCode()final IntegermaxRows()The total number of rows to be returned in theQueryoutput.final StringA pagination token used to return a set of results.final StringThe query to be run by Timestream.static Class<? extends QueryRequest.Builder> Take this object and create a builder that contains all of the current property values of this object.final StringtoString()Returns a string representation of this object.Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
queryString
The query to be run by Timestream.
- Returns:
- The query to be run by Timestream.
-
clientToken
Unique, case-sensitive string of up to 64 ASCII characters specified when a
Queryrequest is made. Providing aClientTokenmakes the call toQueryidempotent. This means that running the same query repeatedly will produce the same result. In other words, making multiple identicalQueryrequests has the same effect as making a single request. When usingClientTokenin a query, note the following:-
If the Query API is instantiated without a
ClientToken, the Query SDK generates aClientTokenon your behalf. -
If the
Queryinvocation only contains theClientTokenbut does not include aNextToken, that invocation ofQueryis assumed to be a new query run. -
If the invocation contains
NextToken, that particular invocation is assumed to be a subsequent invocation of a prior call to the Query API, and a result set is returned. -
After 4 hours, any request with the same
ClientTokenis treated as a new request.
- Returns:
- Unique, case-sensitive string of up to 64 ASCII characters specified when a
Queryrequest is made. Providing aClientTokenmakes the call toQueryidempotent. This means that running the same query repeatedly will produce the same result. In other words, making multiple identicalQueryrequests has the same effect as making a single request. When usingClientTokenin a query, note the following:-
If the Query API is instantiated without a
ClientToken, the Query SDK generates aClientTokenon your behalf. -
If the
Queryinvocation only contains theClientTokenbut does not include aNextToken, that invocation ofQueryis assumed to be a new query run. -
If the invocation contains
NextToken, that particular invocation is assumed to be a subsequent invocation of a prior call to the Query API, and a result set is returned. -
After 4 hours, any request with the same
ClientTokenis treated as a new request.
-
-
-
nextToken
A pagination token used to return a set of results. When the
QueryAPI is invoked usingNextToken, that particular invocation is assumed to be a subsequent invocation of a prior call toQuery, and a result set is returned. However, if theQueryinvocation only contains theClientToken, that invocation ofQueryis assumed to be a new query run.Note the following when using NextToken in a query:
-
A pagination token can be used for up to five
Queryinvocations, OR for a duration of up to 1 hour – whichever comes first. -
Using the same
NextTokenwill return the same set of records. To keep paginating through the result set, you must to use the most recentnextToken. -
Suppose a
Queryinvocation returns twoNextTokenvalues,TokenAandTokenB. IfTokenBis used in a subsequentQueryinvocation, thenTokenAis invalidated and cannot be reused. -
To request a previous result set from a query after pagination has begun, you must re-invoke the Query API.
-
The latest
NextTokenshould be used to paginate untilnullis returned, at which point a newNextTokenshould be used. -
If the IAM principal of the query initiator and the result reader are not the same and/or the query initiator and the result reader do not have the same query string in the query requests, the query will fail with an
Invalid pagination tokenerror.
- Returns:
- A pagination token used to return a set of results. When the
QueryAPI is invoked usingNextToken, that particular invocation is assumed to be a subsequent invocation of a prior call toQuery, and a result set is returned. However, if theQueryinvocation only contains theClientToken, that invocation ofQueryis assumed to be a new query run.Note the following when using NextToken in a query:
-
A pagination token can be used for up to five
Queryinvocations, OR for a duration of up to 1 hour – whichever comes first. -
Using the same
NextTokenwill return the same set of records. To keep paginating through the result set, you must to use the most recentnextToken. -
Suppose a
Queryinvocation returns twoNextTokenvalues,TokenAandTokenB. IfTokenBis used in a subsequentQueryinvocation, thenTokenAis invalidated and cannot be reused. -
To request a previous result set from a query after pagination has begun, you must re-invoke the Query API.
-
The latest
NextTokenshould be used to paginate untilnullis returned, at which point a newNextTokenshould be used. -
If the IAM principal of the query initiator and the result reader are not the same and/or the query initiator and the result reader do not have the same query string in the query requests, the query will fail with an
Invalid pagination tokenerror.
-
-
-
maxRows
The total number of rows to be returned in the
Queryoutput. The initial run ofQuerywith aMaxRowsvalue specified will return the result set of the query in two cases:-
The size of the result is less than
1MB. -
The number of rows in the result set is less than the value of
maxRows.
Otherwise, the initial invocation of
Queryonly returns aNextToken, which can then be used in subsequent calls to fetch the result set. To resume pagination, provide theNextTokenvalue in the subsequent command.If the row size is large (e.g. a row has many columns), Timestream may return fewer rows to keep the response size from exceeding the 1 MB limit. If
MaxRowsis not provided, Timestream will send the necessary number of rows to meet the 1 MB limit.- Returns:
- The total number of rows to be returned in the
Queryoutput. The initial run ofQuerywith aMaxRowsvalue specified will return the result set of the query in two cases:-
The size of the result is less than
1MB. -
The number of rows in the result set is less than the value of
maxRows.
Otherwise, the initial invocation of
Queryonly returns aNextToken, which can then be used in subsequent calls to fetch the result set. To resume pagination, provide theNextTokenvalue in the subsequent command.If the row size is large (e.g. a row has many columns), Timestream may return fewer rows to keep the response size from exceeding the 1 MB limit. If
MaxRowsis not provided, Timestream will send the necessary number of rows to meet the 1 MB limit. -
-
-
toBuilder
Description copied from interface:ToCopyableBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilderin interfaceToCopyableBuilder<QueryRequest.Builder,QueryRequest> - Specified by:
toBuilderin classTimestreamQueryRequest- Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
public final int hashCode()- Overrides:
hashCodein classAwsRequest
-
equals
- Overrides:
equalsin classAwsRequest
-
equalsBySdkFields
Description copied from interface:SdkPojoIndicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojoclass, and is generated based on a service model.If an
SdkPojoclass does not have any inherited fields,equalsBySdkFieldsandequalsare essentially the same.- Specified by:
equalsBySdkFieldsin interfaceSdkPojo- Parameters:
obj- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
-
getValueForField
Description copied from class:SdkRequestUsed to retrieve the value of a field from any class that extendsSdkRequest. The field name specified should match the member name from the corresponding service-2.json model specified in the codegen-resources folder for a given service. The class specifies what class to cast the returned value to. If the returned value is also a modeled class, theSdkRequest.getValueForField(String, Class)method will again be available.- Overrides:
getValueForFieldin classSdkRequest- Parameters:
fieldName- The name of the member to be retrieved.clazz- The class to cast the returned object to.- Returns:
- Optional containing the casted return value
-
sdkFields
-