limits
Creates, updates, deletes, gets or lists a limits resource.
Overview
| Name | limits |
| Type | Resource |
| Id | aws.kinesis.limits |
Fields
The following fields are returned by SELECT queries:
- describe_limits
| Name | Datatype | Description |
|---|---|---|
on_demand_stream_count | integer | Indicates the number of data streams with the on-demand capacity mode. |
on_demand_stream_count_limit | integer | The maximum number of data streams with the on-demand capacity mode. |
open_shard_count | integer | The number of open shards. |
shard_limit | integer | The maximum number of shards. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_limits | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_limits
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
;