Skip to main content

limits

Creates, updates, deletes, gets or lists a limits resource.

Overview

Namelimits
TypeResource
Idaws.kinesis.limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
on_demand_stream_countintegerIndicates the number of data streams with the on-demand capacity mode.
on_demand_stream_count_limitintegerThe maximum number of data streams with the on-demand capacity mode.
open_shard_countintegerThe number of open shards.
shard_limitintegerThe maximum number of shards.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_limitsselectregionDescribes the shard limits and usage for the account. If you update your account limits, the old limits might be returned for a few minutes. This operation has a limit of one transaction per second per account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the shard limits and usage for the account. If you update your account limits, the old limits might be returned for a few minutes. This operation has a limit of one transaction per second per account.

SELECT
on_demand_stream_count,
on_demand_stream_count_limit,
open_shard_count,
shard_limit
FROM aws.kinesis.limits
WHERE region = '{{ region }}' -- required
;