Struct rusoto_dynamodbstreams::StreamRecord[][src]

pub struct StreamRecord {
    pub approximate_creation_date_time: Option<f64>,
    pub keys: Option<HashMap<String, AttributeValue>>,
    pub new_image: Option<HashMap<String, AttributeValue>>,
    pub old_image: Option<HashMap<String, AttributeValue>>,
    pub sequence_number: Option<String>,
    pub size_bytes: Option<i64>,
    pub stream_view_type: Option<String>,
}

A description of a single data modification that was performed on an item in a DynamoDB table.

Fields

The approximate date and time when the stream record was created, in UNIX epoch time format.

The primary key attribute(s) for the DynamoDB item that was modified.

The item in the DynamoDB table as it appeared after it was modified.

The item in the DynamoDB table as it appeared before it was modified.

The sequence number of the stream record.

The size of the stream record, in bytes.

The type of data from the modified DynamoDB item that was captured in this stream record:

  • KEYSONLY - only the key attributes of the modified item.

  • NEWIMAGE - the entire item, as it appeared after it was modified.

  • OLDIMAGE - the entire item, as it appeared before it was modified.

  • NEWANDOLDIMAGES - both the new and the old item images of the item.

Trait Implementations

impl Default for StreamRecord
[src]

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

impl Debug for StreamRecord
[src]

Formats the value using the given formatter. Read more

impl Clone for StreamRecord
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StreamRecord
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations