Record

class Record

The unit of data of the Kinesis data stream, which is composed of a sequence number, a partition key, and a data blob.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The approximate time that the record was inserted into the stream.

Link copied to clipboard

The data blob. The data in the blob is both opaque and immutable to Kinesis Data Streams, which does not inspect, interpret, or change the data in the blob in any way. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MiB).

Link copied to clipboard

The encryption type used on the record. This parameter can be one of the following values:

Link copied to clipboard

Identifies which shard in the stream the data record is assigned to.

Link copied to clipboard

The unique identifier of the record within its shard.

Functions

Link copied to clipboard
inline fun copy(block: Record.Builder.() -> Unit = {}): Record
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String