Skip to main content

max_record_sizes

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

Overview

Namemax_record_sizes
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
update_max_record_sizeupdateregion, MaxRecordSizeInKiBThis 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.

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

UPDATE examples

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;