Skip to content

Query

async_boto.validation.timestream_query.query

QueryRequest

Bases: BaseModel

Query is a synchronous operation that enables you to run a query against your Amazon Timestream data.

PARAMETER DESCRIPTION
ClientToken

Unique, case-sensitive string of up to 64 ASCII characters specified when a Query request is made. Providing a ClientToken makes the call to Query idempotent.

TYPE: str

MaxRows

The total number of rows to be returned in the Query output.

TYPE: int

NextToken

A pagination token used to return a set of results.

TYPE: str

QueryInsights

Encapsulates settings for enabling QueryInsights.

TYPE: QueryInsights

QueryString

The query to be run by Timestream.

TYPE: str

ClientToken class-attribute instance-attribute

ClientToken = None

MaxRows class-attribute instance-attribute

MaxRows = Field(None, ge=1, le=1000)

NextToken class-attribute instance-attribute

NextToken = None

QueryInsights class-attribute instance-attribute

QueryInsights = None

QueryString instance-attribute

QueryString

QueryResponse

Bases: BaseModel

The response returned by the service when a Query action is successful.

PARAMETER DESCRIPTION
ColumnInfo

The column data types of the returned result set.

TYPE: List[ColumnInfo]

NextToken

A pagination token that can be used again on a Query call to get the next set of results.

TYPE: Optional[str]

QueryId

A unique ID for the given query.

TYPE: str

QueryInsightsResponse

Encapsulates QueryInsights containing insights and metrics related to the query.

TYPE: Optional[QueryInsightsResponse]

QueryStatus

Information about the status of the query, including progress and bytes scanned.

TYPE: QueryStatus

Rows

The result set rows returned by the query.

TYPE: List[Row]

ColumnInfo instance-attribute

ColumnInfo

NextToken class-attribute instance-attribute

NextToken = None

QueryId instance-attribute

QueryId

QueryInsightsResponse class-attribute instance-attribute

QueryInsightsResponse = None

QueryStatus instance-attribute

QueryStatus

Rows instance-attribute

Rows