Skip to content

List scheduled queries

async_boto.validation.timestream_query.list_scheduled_queries

ListScheduledQueriesRequest

Bases: BaseModel

Gets a list of all scheduled queries in the caller's Amazon account and Region. ListScheduledQueries is eventually consistent.

PARAMETER DESCRIPTION
MaxResults

The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as the argument to the subsequent call to ListScheduledQueriesRequest.

TYPE: int

NextToken

A pagination token to resume pagination.

TYPE: str

MaxResults class-attribute instance-attribute

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

NextToken class-attribute instance-attribute

NextToken = None

ListScheduledQueriesResponse

Bases: BaseModel

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

PARAMETER DESCRIPTION
NextToken

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

TYPE: str

ScheduledQueries

A list of scheduled queries.

TYPE: List[ScheduledQuery]

NextToken class-attribute instance-attribute

NextToken = None

ScheduledQueries instance-attribute

ScheduledQueries