Module aws_lambda_powertools.utilities.data_classes.dynamo_db_stream_event
Expand source code
from enum import Enum
from typing import Dict, Iterator, List, Optional
from aws_lambda_powertools.utilities.data_classes.common import DictWrapper
class AttributeValue(DictWrapper):
"""Represents the data for an attribute
Documentation: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_AttributeValue.html
"""
@property
def b_value(self) -> Optional[str]:
"""An attribute of type Base64-encoded binary data object
Example:
>>> {"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"}
"""
return self.get("B")
@property
def bs_value(self) -> Optional[List[str]]:
"""An attribute of type Array of Base64-encoded binary data objects
Example:
>>> {"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]}
"""
return self.get("BS")
@property
def bool_value(self) -> Optional[bool]:
"""An attribute of type Boolean
Example:
>>> {"BOOL": True}
"""
item = self.get("BOOL")
return None if item is None else bool(item)
@property
def list_value(self) -> Optional[List["AttributeValue"]]:
"""An attribute of type Array of AttributeValue objects
Example:
>>> {"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]}
"""
item = self.get("L")
return None if item is None else [AttributeValue(v) for v in item]
@property
def map_value(self) -> Optional[Dict[str, "AttributeValue"]]:
"""An attribute of type String to AttributeValue object map
Example:
>>> {"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}}
"""
return _attribute_value_dict(self._data, "M")
@property
def n_value(self) -> Optional[str]:
"""An attribute of type Number
Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages
and libraries. However, DynamoDB treats them as number type attributes for mathematical operations.
Example:
>>> {"N": "123.45"}
"""
return self.get("N")
@property
def ns_value(self) -> Optional[List[str]]:
"""An attribute of type Number Set
Example:
>>> {"NS": ["42.2", "-19", "7.5", "3.14"]}
"""
return self.get("NS")
@property
def null_value(self) -> Optional[bool]:
"""An attribute of type Null.
Example:
>>> {"NULL": True}
"""
item = self.get("NULL")
return None if item is None else bool(item)
@property
def s_value(self) -> Optional[str]:
"""An attribute of type String
Example:
>>> {"S": "Hello"}
"""
return self.get("S")
@property
def ss_value(self) -> Optional[List[str]]:
"""An attribute of type Array of strings
Example:
>>> {"SS": ["Giraffe", "Hippo" ,"Zebra"]}
"""
return self.get("SS")
def _attribute_value_dict(attr_values: Dict[str, dict], key: str) -> Optional[Dict[str, AttributeValue]]:
"""A dict of type String to AttributeValue object map
Example:
>>> {"NewImage": {"Id": {"S": "xxx-xxx"}, "Value": {"N": "35"}}}
"""
attr_values_dict = attr_values.get(key)
return None if attr_values_dict is None else {k: AttributeValue(v) for k, v in attr_values_dict.items()}
class StreamViewType(Enum):
"""The type of data from the modified DynamoDB item that was captured in this stream record"""
KEYS_ONLY = 0 # only the key attributes of the modified item
NEW_IMAGE = 1 # the entire item, as it appeared after it was modified.
OLD_IMAGE = 2 # the entire item, as it appeared before it was modified.
NEW_AND_OLD_IMAGES = 3 # both the new and the old item images of the item.
class StreamRecord(DictWrapper):
@property
def approximate_creation_date_time(self) -> Optional[int]:
"""The approximate date and time when the stream record was created, in UNIX epoch time format."""
item = self.get("ApproximateCreationDateTime")
return None if item is None else int(item)
@property
def keys(self) -> Optional[Dict[str, AttributeValue]]:
"""The primary key attribute(s) for the DynamoDB item that was modified."""
return _attribute_value_dict(self._data, "Keys")
@property
def new_image(self) -> Optional[Dict[str, AttributeValue]]:
"""The item in the DynamoDB table as it appeared after it was modified."""
return _attribute_value_dict(self._data, "NewImage")
@property
def old_image(self) -> Optional[Dict[str, AttributeValue]]:
"""The item in the DynamoDB table as it appeared before it was modified."""
return _attribute_value_dict(self._data, "OldImage")
@property
def sequence_number(self) -> Optional[str]:
"""The sequence number of the stream record."""
return self.get("SequenceNumber")
@property
def size_bytes(self) -> Optional[int]:
"""The size of the stream record, in bytes."""
item = self.get("SizeBytes")
return None if item is None else int(item)
@property
def stream_view_type(self) -> Optional[StreamViewType]:
"""The type of data from the modified DynamoDB item that was captured in this stream record"""
item = self.get("StreamViewType")
return None if item is None else StreamViewType[str(item)]
class DynamoDBRecordEventName(Enum):
INSERT = 0 # a new item was added to the table
MODIFY = 1 # one or more of an existing item's attributes were modified
REMOVE = 2 # the item was deleted from the table
class DynamoDBRecord(DictWrapper):
"""A description of a unique event within a stream"""
@property
def aws_region(self) -> Optional[str]:
"""The region in which the GetRecords request was received"""
return self.get("awsRegion")
@property
def dynamodb(self) -> Optional[StreamRecord]:
"""The main body of the stream record, containing all of the DynamoDB-specific fields."""
stream_record = self.get("dynamodb")
return None if stream_record is None else StreamRecord(stream_record)
@property
def event_id(self) -> Optional[str]:
"""A globally unique identifier for the event that was recorded in this stream record."""
return self.get("eventID")
@property
def event_name(self) -> Optional[DynamoDBRecordEventName]:
"""The type of data modification that was performed on the DynamoDB table"""
item = self.get("eventName")
return None if item is None else DynamoDBRecordEventName[item]
@property
def event_source(self) -> Optional[str]:
"""The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb."""
return self.get("eventSource")
@property
def event_source_arn(self) -> Optional[str]:
"""The Amazon Resource Name (ARN) of the event source"""
return self.get("eventSourceARN")
@property
def event_version(self) -> Optional[str]:
"""The version number of the stream record format."""
return self.get("eventVersion")
@property
def user_identity(self) -> Optional[dict]:
"""Contains details about the type of identity that made the request"""
return self.get("userIdentity")
class DynamoDBStreamEvent(DictWrapper):
"""Dynamo DB Stream Event
Documentation:
-------------
- https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html
"""
@property
def records(self) -> Iterator[DynamoDBRecord]:
for record in self["Records"]:
yield DynamoDBRecord(record)
Classes
class AttributeValue (data: Dict[str, Any])
-
Represents the data for an attribute
Documentation: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_AttributeValue.html
Expand source code
class AttributeValue(DictWrapper): """Represents the data for an attribute Documentation: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_AttributeValue.html """ @property def b_value(self) -> Optional[str]: """An attribute of type Base64-encoded binary data object Example: >>> {"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"} """ return self.get("B") @property def bs_value(self) -> Optional[List[str]]: """An attribute of type Array of Base64-encoded binary data objects Example: >>> {"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]} """ return self.get("BS") @property def bool_value(self) -> Optional[bool]: """An attribute of type Boolean Example: >>> {"BOOL": True} """ item = self.get("BOOL") return None if item is None else bool(item) @property def list_value(self) -> Optional[List["AttributeValue"]]: """An attribute of type Array of AttributeValue objects Example: >>> {"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]} """ item = self.get("L") return None if item is None else [AttributeValue(v) for v in item] @property def map_value(self) -> Optional[Dict[str, "AttributeValue"]]: """An attribute of type String to AttributeValue object map Example: >>> {"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}} """ return _attribute_value_dict(self._data, "M") @property def n_value(self) -> Optional[str]: """An attribute of type Number Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations. Example: >>> {"N": "123.45"} """ return self.get("N") @property def ns_value(self) -> Optional[List[str]]: """An attribute of type Number Set Example: >>> {"NS": ["42.2", "-19", "7.5", "3.14"]} """ return self.get("NS") @property def null_value(self) -> Optional[bool]: """An attribute of type Null. Example: >>> {"NULL": True} """ item = self.get("NULL") return None if item is None else bool(item) @property def s_value(self) -> Optional[str]: """An attribute of type String Example: >>> {"S": "Hello"} """ return self.get("S") @property def ss_value(self) -> Optional[List[str]]: """An attribute of type Array of strings Example: >>> {"SS": ["Giraffe", "Hippo" ,"Zebra"]} """ return self.get("SS")
Ancestors
Instance variables
var b_value : Union[str, NoneType]
-
An attribute of type Base64-encoded binary data object
Example
>>> {"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"}
Expand source code
@property def b_value(self) -> Optional[str]: """An attribute of type Base64-encoded binary data object Example: >>> {"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"} """ return self.get("B")
var bool_value : Union[bool, NoneType]
-
An attribute of type Boolean
Example
>>> {"BOOL": True}
Expand source code
@property def bool_value(self) -> Optional[bool]: """An attribute of type Boolean Example: >>> {"BOOL": True} """ item = self.get("BOOL") return None if item is None else bool(item)
var bs_value : Union[List[str], NoneType]
-
An attribute of type Array of Base64-encoded binary data objects
Example
>>> {"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]}
Expand source code
@property def bs_value(self) -> Optional[List[str]]: """An attribute of type Array of Base64-encoded binary data objects Example: >>> {"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]} """ return self.get("BS")
var list_value : Union[List[AttributeValue], NoneType]
-
An attribute of type Array of AttributeValue objects
Example
>>> {"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]}
Expand source code
@property def list_value(self) -> Optional[List["AttributeValue"]]: """An attribute of type Array of AttributeValue objects Example: >>> {"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]} """ item = self.get("L") return None if item is None else [AttributeValue(v) for v in item]
var map_value : Union[Dict[str, AttributeValue], NoneType]
-
An attribute of type String to AttributeValue object map
Example
>>> {"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}}
Expand source code
@property def map_value(self) -> Optional[Dict[str, "AttributeValue"]]: """An attribute of type String to AttributeValue object map Example: >>> {"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}} """ return _attribute_value_dict(self._data, "M")
var n_value : Union[str, NoneType]
-
An attribute of type Number
Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations.
Example
>>> {"N": "123.45"}
Expand source code
@property def n_value(self) -> Optional[str]: """An attribute of type Number Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations. Example: >>> {"N": "123.45"} """ return self.get("N")
var ns_value : Union[List[str], NoneType]
-
An attribute of type Number Set
Example
>>> {"NS": ["42.2", "-19", "7.5", "3.14"]}
Expand source code
@property def ns_value(self) -> Optional[List[str]]: """An attribute of type Number Set Example: >>> {"NS": ["42.2", "-19", "7.5", "3.14"]} """ return self.get("NS")
var null_value : Union[bool, NoneType]
-
An attribute of type Null.
Example
>>> {"NULL": True}
Expand source code
@property def null_value(self) -> Optional[bool]: """An attribute of type Null. Example: >>> {"NULL": True} """ item = self.get("NULL") return None if item is None else bool(item)
var s_value : Union[str, NoneType]
-
An attribute of type String
Example
>>> {"S": "Hello"}
Expand source code
@property def s_value(self) -> Optional[str]: """An attribute of type String Example: >>> {"S": "Hello"} """ return self.get("S")
var ss_value : Union[List[str], NoneType]
-
An attribute of type Array of strings
Example
>>> {"SS": ["Giraffe", "Hippo" ,"Zebra"]}
Expand source code
@property def ss_value(self) -> Optional[List[str]]: """An attribute of type Array of strings Example: >>> {"SS": ["Giraffe", "Hippo" ,"Zebra"]} """ return self.get("SS")
Inherited members
class DynamoDBRecord (data: Dict[str, Any])
-
A description of a unique event within a stream
Expand source code
class DynamoDBRecord(DictWrapper): """A description of a unique event within a stream""" @property def aws_region(self) -> Optional[str]: """The region in which the GetRecords request was received""" return self.get("awsRegion") @property def dynamodb(self) -> Optional[StreamRecord]: """The main body of the stream record, containing all of the DynamoDB-specific fields.""" stream_record = self.get("dynamodb") return None if stream_record is None else StreamRecord(stream_record) @property def event_id(self) -> Optional[str]: """A globally unique identifier for the event that was recorded in this stream record.""" return self.get("eventID") @property def event_name(self) -> Optional[DynamoDBRecordEventName]: """The type of data modification that was performed on the DynamoDB table""" item = self.get("eventName") return None if item is None else DynamoDBRecordEventName[item] @property def event_source(self) -> Optional[str]: """The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.""" return self.get("eventSource") @property def event_source_arn(self) -> Optional[str]: """The Amazon Resource Name (ARN) of the event source""" return self.get("eventSourceARN") @property def event_version(self) -> Optional[str]: """The version number of the stream record format.""" return self.get("eventVersion") @property def user_identity(self) -> Optional[dict]: """Contains details about the type of identity that made the request""" return self.get("userIdentity")
Ancestors
Instance variables
var aws_region : Union[str, NoneType]
-
The region in which the GetRecords request was received
Expand source code
@property def aws_region(self) -> Optional[str]: """The region in which the GetRecords request was received""" return self.get("awsRegion")
var dynamodb : Union[StreamRecord, NoneType]
-
The main body of the stream record, containing all of the DynamoDB-specific fields.
Expand source code
@property def dynamodb(self) -> Optional[StreamRecord]: """The main body of the stream record, containing all of the DynamoDB-specific fields.""" stream_record = self.get("dynamodb") return None if stream_record is None else StreamRecord(stream_record)
var event_id : Union[str, NoneType]
-
A globally unique identifier for the event that was recorded in this stream record.
Expand source code
@property def event_id(self) -> Optional[str]: """A globally unique identifier for the event that was recorded in this stream record.""" return self.get("eventID")
var event_name : Union[DynamoDBRecordEventName, NoneType]
-
The type of data modification that was performed on the DynamoDB table
Expand source code
@property def event_name(self) -> Optional[DynamoDBRecordEventName]: """The type of data modification that was performed on the DynamoDB table""" item = self.get("eventName") return None if item is None else DynamoDBRecordEventName[item]
var event_source : Union[str, NoneType]
-
The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.
Expand source code
@property def event_source(self) -> Optional[str]: """The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.""" return self.get("eventSource")
var event_source_arn : Union[str, NoneType]
-
The Amazon Resource Name (ARN) of the event source
Expand source code
@property def event_source_arn(self) -> Optional[str]: """The Amazon Resource Name (ARN) of the event source""" return self.get("eventSourceARN")
var event_version : Union[str, NoneType]
-
The version number of the stream record format.
Expand source code
@property def event_version(self) -> Optional[str]: """The version number of the stream record format.""" return self.get("eventVersion")
var user_identity : Union[dict, NoneType]
-
Contains details about the type of identity that made the request
Expand source code
@property def user_identity(self) -> Optional[dict]: """Contains details about the type of identity that made the request""" return self.get("userIdentity")
Inherited members
class DynamoDBRecordEventName (value, names=None, *, module=None, qualname=None, type=None, start=1)
-
An enumeration.
Expand source code
class DynamoDBRecordEventName(Enum): INSERT = 0 # a new item was added to the table MODIFY = 1 # one or more of an existing item's attributes were modified REMOVE = 2 # the item was deleted from the table
Ancestors
- enum.Enum
Class variables
var INSERT
var MODIFY
var REMOVE
class DynamoDBStreamEvent (data: Dict[str, Any])
-
Expand source code
class DynamoDBStreamEvent(DictWrapper): """Dynamo DB Stream Event Documentation: ------------- - https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html """ @property def records(self) -> Iterator[DynamoDBRecord]: for record in self["Records"]: yield DynamoDBRecord(record)
Ancestors
Instance variables
var records : Iterator[DynamoDBRecord]
-
Expand source code
@property def records(self) -> Iterator[DynamoDBRecord]: for record in self["Records"]: yield DynamoDBRecord(record)
Inherited members
class StreamRecord (data: Dict[str, Any])
-
Provides a single read only access to a wrapper dict
Expand source code
class StreamRecord(DictWrapper): @property def approximate_creation_date_time(self) -> Optional[int]: """The approximate date and time when the stream record was created, in UNIX epoch time format.""" item = self.get("ApproximateCreationDateTime") return None if item is None else int(item) @property def keys(self) -> Optional[Dict[str, AttributeValue]]: """The primary key attribute(s) for the DynamoDB item that was modified.""" return _attribute_value_dict(self._data, "Keys") @property def new_image(self) -> Optional[Dict[str, AttributeValue]]: """The item in the DynamoDB table as it appeared after it was modified.""" return _attribute_value_dict(self._data, "NewImage") @property def old_image(self) -> Optional[Dict[str, AttributeValue]]: """The item in the DynamoDB table as it appeared before it was modified.""" return _attribute_value_dict(self._data, "OldImage") @property def sequence_number(self) -> Optional[str]: """The sequence number of the stream record.""" return self.get("SequenceNumber") @property def size_bytes(self) -> Optional[int]: """The size of the stream record, in bytes.""" item = self.get("SizeBytes") return None if item is None else int(item) @property def stream_view_type(self) -> Optional[StreamViewType]: """The type of data from the modified DynamoDB item that was captured in this stream record""" item = self.get("StreamViewType") return None if item is None else StreamViewType[str(item)]
Ancestors
Instance variables
var approximate_creation_date_time : Union[int, NoneType]
-
The approximate date and time when the stream record was created, in UNIX epoch time format.
Expand source code
@property def approximate_creation_date_time(self) -> Optional[int]: """The approximate date and time when the stream record was created, in UNIX epoch time format.""" item = self.get("ApproximateCreationDateTime") return None if item is None else int(item)
var keys : Union[Dict[str, AttributeValue], NoneType]
-
The primary key attribute(s) for the DynamoDB item that was modified.
Expand source code
@property def keys(self) -> Optional[Dict[str, AttributeValue]]: """The primary key attribute(s) for the DynamoDB item that was modified.""" return _attribute_value_dict(self._data, "Keys")
var new_image : Union[Dict[str, AttributeValue], NoneType]
-
The item in the DynamoDB table as it appeared after it was modified.
Expand source code
@property def new_image(self) -> Optional[Dict[str, AttributeValue]]: """The item in the DynamoDB table as it appeared after it was modified.""" return _attribute_value_dict(self._data, "NewImage")
var old_image : Union[Dict[str, AttributeValue], NoneType]
-
The item in the DynamoDB table as it appeared before it was modified.
Expand source code
@property def old_image(self) -> Optional[Dict[str, AttributeValue]]: """The item in the DynamoDB table as it appeared before it was modified.""" return _attribute_value_dict(self._data, "OldImage")
var sequence_number : Union[str, NoneType]
-
The sequence number of the stream record.
Expand source code
@property def sequence_number(self) -> Optional[str]: """The sequence number of the stream record.""" return self.get("SequenceNumber")
var size_bytes : Union[int, NoneType]
-
The size of the stream record, in bytes.
Expand source code
@property def size_bytes(self) -> Optional[int]: """The size of the stream record, in bytes.""" item = self.get("SizeBytes") return None if item is None else int(item)
var stream_view_type : Union[StreamViewType, NoneType]
-
The type of data from the modified DynamoDB item that was captured in this stream record
Expand source code
@property def stream_view_type(self) -> Optional[StreamViewType]: """The type of data from the modified DynamoDB item that was captured in this stream record""" item = self.get("StreamViewType") return None if item is None else StreamViewType[str(item)]
Inherited members
class StreamViewType (value, names=None, *, module=None, qualname=None, type=None, start=1)
-
The type of data from the modified DynamoDB item that was captured in this stream record
Expand source code
class StreamViewType(Enum): """The type of data from the modified DynamoDB item that was captured in this stream record""" KEYS_ONLY = 0 # only the key attributes of the modified item NEW_IMAGE = 1 # the entire item, as it appeared after it was modified. OLD_IMAGE = 2 # the entire item, as it appeared before it was modified. NEW_AND_OLD_IMAGES = 3 # both the new and the old item images of the item.
Ancestors
- enum.Enum
Class variables
var KEYS_ONLY
var NEW_AND_OLD_IMAGES
var NEW_IMAGE
var OLD_IMAGE