Table of Contents

Class StreamRecord

Namespace
Amazon.DynamoDBv2.Model
Assembly
AWSSDK.DynamoDBv2.dll

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

public class StreamRecord
Inheritance
StreamRecord
Inherited Members

Constructors

StreamRecord()

public StreamRecord()

Properties

ApproximateCreationDateTime

Gets and sets the property ApproximateCreationDateTime.

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

public DateTime ApproximateCreationDateTime { get; set; }

Property Value

DateTime

Keys

Gets and sets the property Keys.

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

public Dictionary<string, AttributeValue> Keys { get; set; }

Property Value

Dictionary<string, AttributeValue>

NewImage

Gets and sets the property NewImage.

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

public Dictionary<string, AttributeValue> NewImage { get; set; }

Property Value

Dictionary<string, AttributeValue>

OldImage

Gets and sets the property OldImage.

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

public Dictionary<string, AttributeValue> OldImage { get; set; }

Property Value

Dictionary<string, AttributeValue>

SequenceNumber

Gets and sets the property SequenceNumber.

The sequence number of the stream record.

public string SequenceNumber { get; set; }

Property Value

string

SizeBytes

Gets and sets the property SizeBytes.

The size of the stream record, in bytes.

public long SizeBytes { get; set; }

Property Value

long

StreamViewType

Gets and sets the property StreamViewType.

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

  • KEYS_ONLY
    - only the key attributes of the modified item.
  • NEW_IMAGE
    - the entire item, as it appeared after it was modified.
  • OLD_IMAGE
    - the entire item, as it appeared before it was modified.
  • NEW_AND_OLD_IMAGES
    - both the new and the old item images of the item.
public StreamViewType StreamViewType { get; set; }

Property Value

StreamViewType