Class: Aws::Kinesis::Types::Record
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::Record
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
The unit of data of the Kinesis data stream, which is composed of a sequence number, a partition key, and a data blob.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#approximate_arrival_timestamp ⇒ Time
The approximate time that the record was inserted into the stream.
-
#data ⇒ String
The data blob.
-
#encryption_type ⇒ String
The encryption type used on the record.
-
#partition_key ⇒ String
Identifies which shard in the stream the data record is assigned to.
-
#sequence_number ⇒ String
The unique identifier of the record within its shard.
Instance Attribute Details
#approximate_arrival_timestamp ⇒ Time
The approximate time that the record was inserted into the stream.
1708 1709 1710 1711 1712 1713 1714 1715 1716 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1708 class Record < Struct.new( :sequence_number, :approximate_arrival_timestamp, :data, :partition_key, :encryption_type) SENSITIVE = [] include Aws::Structure end |
#data ⇒ String
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).
1708 1709 1710 1711 1712 1713 1714 1715 1716 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1708 class Record < Struct.new( :sequence_number, :approximate_arrival_timestamp, :data, :partition_key, :encryption_type) SENSITIVE = [] include Aws::Structure end |
#encryption_type ⇒ String
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 Amazon Web Services KMS key.
1708 1709 1710 1711 1712 1713 1714 1715 1716 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1708 class Record < Struct.new( :sequence_number, :approximate_arrival_timestamp, :data, :partition_key, :encryption_type) SENSITIVE = [] include Aws::Structure end |
#partition_key ⇒ String
Identifies which shard in the stream the data record is assigned to.
1708 1709 1710 1711 1712 1713 1714 1715 1716 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1708 class Record < Struct.new( :sequence_number, :approximate_arrival_timestamp, :data, :partition_key, :encryption_type) SENSITIVE = [] include Aws::Structure end |
#sequence_number ⇒ String
The unique identifier of the record within its shard.
1708 1709 1710 1711 1712 1713 1714 1715 1716 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1708 class Record < Struct.new( :sequence_number, :approximate_arrival_timestamp, :data, :partition_key, :encryption_type) SENSITIVE = [] include Aws::Structure end |