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
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
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
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
SequenceNumber
Gets and sets the property SequenceNumber.
The sequence number of the stream record.
public string SequenceNumber { get; set; }
Property Value
SizeBytes
Gets and sets the property SizeBytes.
The size of the stream record, in bytes.
public long SizeBytes { get; set; }
Property Value
StreamViewType
Gets and sets the property StreamViewType.
The type of data from the modified DynamoDB item that was captured in this stream record:
- only the key attributes of the modified item.KEYS_ONLY
- the entire item, as it appeared after it was modified.NEW_IMAGE
- the entire item, as it appeared before it was modified.OLD_IMAGE
- both the new and the old item images of the item.NEW_AND_OLD_IMAGES
public StreamViewType StreamViewType { get; set; }