Struct rusoto_kinesis::Record [] [src]

pub struct Record {
    pub approximate_arrival_timestamp: Option<Timestamp>,
    pub data: Data,
    pub partition_key: PartitionKey,
    pub sequence_number: SequenceNumber,
}

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

Fields

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

The data blob. The data in the blob is both opaque and immutable to the Amazon Kinesis service, 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 MB).

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

The unique identifier of the record in the stream.

Trait Implementations

impl Default for Record
[src]

Returns the "default value" for a type. Read more

impl Debug for Record
[src]

Formats the value using the given formatter.

impl Clone for Record
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more