You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Kinesis::Types::Record

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

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

Instance Attribute Summary collapse

Instance Attribute Details

#approximate_arrival_timestampTime

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

Returns:

  • (Time)

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

#dataString

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).

Returns:

  • (String)

    The data blob.

#encryption_typeString

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

  • NONE: Do not encrypt the records in the stream.

  • KMS: Use server-side encryption on the records in the stream using a customer-managed AWS KMS key.

    Possible values:

    • NONE
    • KMS

Returns:

  • (String)

    The encryption type used on the record.

#partition_keyString

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

Returns:

  • (String)

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

#sequence_numberString

The unique identifier of the record within its shard.

Returns:

  • (String)

    The unique identifier of the record within its shard.