max_record_sizes
Creates, updates, deletes, gets or lists a max_record_sizes resource.
Overview
| Name | max_record_sizes |
| Type | Resource |
| Id | aws.kinesis.max_record_sizes |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update_max_record_size | update | region, MaxRecordSizeInKiB | This allows you to update the MaxRecordSize of a single record that you can write to, and read from a stream. You can ingest and digest single records up to 10240 KiB. |
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) |
UPDATE examples
- update_max_record_size
This allows you to update the MaxRecordSize of a single record that you can write to, and read from a stream. You can ingest and digest single records up to 10240 KiB.
UPDATE aws.kinesis.max_record_sizes
SET
StreamARN = '{{ StreamARN }}',
StreamId = '{{ StreamId }}',
MaxRecordSizeInKiB = {{ MaxRecordSizeInKiB }}
WHERE
region = '{{ region }}' --required
AND MaxRecordSizeInKiB = '{{ MaxRecordSizeInKiB }}' --required;