Module aws_lambda_powertools.utilities.data_classes.aws_config_rule_event
Functions
def get_invoke_event(invoking_event: dict) ‑> AWSConfigConfigurationChanged | AWSConfigScheduledNotification | AWSConfigOversizedConfiguration
-
Returns the corresponding event object based on the messageType in the invoking event.
Parameters
invoking_event
:dict
- The invoking event received.
Returns
AWSConfigConfigurationChanged | AWSConfigScheduledNotification | AWSConfigOversizedConfiguration:
- The event object based on the messageType in the invoking event.
Classes
class AWSConfigConfigurationChanged (data: dict[str, Any], json_deserializer: Callable | None = None)
-
Provides a single read only access to a wrapper dict
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
Expand source code
class AWSConfigConfigurationChanged(DictWrapper): @property def configuration_item_diff(self) -> dict: """The configuration item diff of the ConfigurationItemChangeNotification event.""" return self["configurationItemDiff"] @property def configuration_item(self) -> AWSConfigConfigurationItemChanged: """The configuration item of the ConfigurationItemChangeNotification event.""" return AWSConfigConfigurationItemChanged(self["configurationItem"]) @property def raw_configuration_item(self) -> dict: """The raw configuration item of the ConfigurationItemChangeNotification event.""" return self["configurationItem"] @property def record_version(self) -> str: """The record version of the ConfigurationItemChangeNotification event.""" return self["recordVersion"] @property def message_type(self) -> str: """The message type of the ConfigurationItemChangeNotification event.""" return self["messageType"] @property def notification_creation_time(self) -> str: """The notification creation time of the ConfigurationItemChangeNotification event.""" return self["notificationCreationTime"]
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop configuration_item : AWSConfigConfigurationItemChanged
-
The configuration item of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_item(self) -> AWSConfigConfigurationItemChanged: """The configuration item of the ConfigurationItemChangeNotification event.""" return AWSConfigConfigurationItemChanged(self["configurationItem"])
prop configuration_item_diff : dict
-
The configuration item diff of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_item_diff(self) -> dict: """The configuration item diff of the ConfigurationItemChangeNotification event.""" return self["configurationItemDiff"]
prop message_type : str
-
The message type of the ConfigurationItemChangeNotification event.
Expand source code
@property def message_type(self) -> str: """The message type of the ConfigurationItemChangeNotification event.""" return self["messageType"]
prop notification_creation_time : str
-
The notification creation time of the ConfigurationItemChangeNotification event.
Expand source code
@property def notification_creation_time(self) -> str: """The notification creation time of the ConfigurationItemChangeNotification event.""" return self["notificationCreationTime"]
prop raw_configuration_item : dict
-
The raw configuration item of the ConfigurationItemChangeNotification event.
Expand source code
@property def raw_configuration_item(self) -> dict: """The raw configuration item of the ConfigurationItemChangeNotification event.""" return self["configurationItem"]
prop record_version : str
-
The record version of the ConfigurationItemChangeNotification event.
Expand source code
@property def record_version(self) -> str: """The record version of the ConfigurationItemChangeNotification event.""" return self["recordVersion"]
Inherited members
class AWSConfigConfigurationItemChanged (data: dict[str, Any], json_deserializer: Callable | None = None)
-
Provides a single read only access to a wrapper dict
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
Expand source code
class AWSConfigConfigurationItemChanged(DictWrapper): @property def related_events(self) -> list: """The related events of the ConfigurationItemChangeNotification event.""" return self["relatedEvents"] @property def relationships(self) -> list: """The relationships of the ConfigurationItemChangeNotification event.""" return self["relationships"] @property def configuration(self) -> dict: """The configuration of the ConfigurationItemChangeNotification event.""" return self["configuration"] @property def supplementary_configuration(self) -> dict: """The supplementary configuration of the ConfigurationItemChangeNotification event.""" return self["supplementaryConfiguration"] @property def tags(self) -> dict: """The tags of the ConfigurationItemChangeNotification event.""" return self["tags"] @property def configuration_item_version(self) -> str: """The configuration item version of the ConfigurationItemChangeNotification event.""" return self["configurationItemVersion"] @property def configuration_item_capture_time(self) -> str: """The configuration item capture time of the ConfigurationItemChangeNotification event.""" return self["configurationItemCaptureTime"] @property def configuration_state_id(self) -> str: """The configuration state id of the ConfigurationItemChangeNotification event.""" return self["configurationStateId"] @property def accountid(self) -> str: """The accountid of the ConfigurationItemChangeNotification event.""" return self["awsAccountId"] @property def configuration_item_status(self) -> str: """The configuration item status of the ConfigurationItemChangeNotification event.""" return self["configurationItemStatus"] @property def resource_type(self) -> str: """The resource type of the ConfigurationItemChangeNotification event.""" return self["resourceType"] @property def resource_id(self) -> str: """The resource id of the ConfigurationItemChangeNotification event.""" return self["resourceId"] @property def resource_name(self) -> str: """The resource name of the ConfigurationItemChangeNotification event.""" return self["resourceName"] @property def resource_arn(self) -> str: """The resource arn of the ConfigurationItemChangeNotification event.""" return self["ARN"] @property def region(self) -> str: """The region of the ConfigurationItemChangeNotification event.""" return self["awsRegion"] @property def availability_zone(self) -> str: """The availability zone of the ConfigurationItemChangeNotification event.""" return self["availabilityZone"] @property def configuration_state_md5_hash(self) -> str: """The md5 hash of the state of the ConfigurationItemChangeNotification event.""" return self["configurationStateMd5Hash"] @property def resource_creation_time(self) -> str: """The resource creation time of the ConfigurationItemChangeNotification event.""" return self["resourceCreationTime"]
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop accountid : str
-
The accountid of the ConfigurationItemChangeNotification event.
Expand source code
@property def accountid(self) -> str: """The accountid of the ConfigurationItemChangeNotification event.""" return self["awsAccountId"]
prop availability_zone : str
-
The availability zone of the ConfigurationItemChangeNotification event.
Expand source code
@property def availability_zone(self) -> str: """The availability zone of the ConfigurationItemChangeNotification event.""" return self["availabilityZone"]
prop configuration : dict
-
The configuration of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration(self) -> dict: """The configuration of the ConfigurationItemChangeNotification event.""" return self["configuration"]
prop configuration_item_capture_time : str
-
The configuration item capture time of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_item_capture_time(self) -> str: """The configuration item capture time of the ConfigurationItemChangeNotification event.""" return self["configurationItemCaptureTime"]
prop configuration_item_status : str
-
The configuration item status of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_item_status(self) -> str: """The configuration item status of the ConfigurationItemChangeNotification event.""" return self["configurationItemStatus"]
prop configuration_item_version : str
-
The configuration item version of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_item_version(self) -> str: """The configuration item version of the ConfigurationItemChangeNotification event.""" return self["configurationItemVersion"]
prop configuration_state_id : str
-
The configuration state id of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_state_id(self) -> str: """The configuration state id of the ConfigurationItemChangeNotification event.""" return self["configurationStateId"]
prop configuration_state_md5_hash : str
-
The md5 hash of the state of the ConfigurationItemChangeNotification event.
Expand source code
@property def configuration_state_md5_hash(self) -> str: """The md5 hash of the state of the ConfigurationItemChangeNotification event.""" return self["configurationStateMd5Hash"]
prop region : str
-
The region of the ConfigurationItemChangeNotification event.
Expand source code
@property def region(self) -> str: """The region of the ConfigurationItemChangeNotification event.""" return self["awsRegion"]
-
The related events of the ConfigurationItemChangeNotification event.
Expand source code
@property def related_events(self) -> list: """The related events of the ConfigurationItemChangeNotification event.""" return self["relatedEvents"]
prop relationships : list
-
The relationships of the ConfigurationItemChangeNotification event.
Expand source code
@property def relationships(self) -> list: """The relationships of the ConfigurationItemChangeNotification event.""" return self["relationships"]
prop resource_arn : str
-
The resource arn of the ConfigurationItemChangeNotification event.
Expand source code
@property def resource_arn(self) -> str: """The resource arn of the ConfigurationItemChangeNotification event.""" return self["ARN"]
prop resource_creation_time : str
-
The resource creation time of the ConfigurationItemChangeNotification event.
Expand source code
@property def resource_creation_time(self) -> str: """The resource creation time of the ConfigurationItemChangeNotification event.""" return self["resourceCreationTime"]
prop resource_id : str
-
The resource id of the ConfigurationItemChangeNotification event.
Expand source code
@property def resource_id(self) -> str: """The resource id of the ConfigurationItemChangeNotification event.""" return self["resourceId"]
prop resource_name : str
-
The resource name of the ConfigurationItemChangeNotification event.
Expand source code
@property def resource_name(self) -> str: """The resource name of the ConfigurationItemChangeNotification event.""" return self["resourceName"]
prop resource_type : str
-
The resource type of the ConfigurationItemChangeNotification event.
Expand source code
@property def resource_type(self) -> str: """The resource type of the ConfigurationItemChangeNotification event.""" return self["resourceType"]
prop supplementary_configuration : dict
-
The supplementary configuration of the ConfigurationItemChangeNotification event.
Expand source code
@property def supplementary_configuration(self) -> dict: """The supplementary configuration of the ConfigurationItemChangeNotification event.""" return self["supplementaryConfiguration"]
-
The tags of the ConfigurationItemChangeNotification event.
Expand source code
@property def tags(self) -> dict: """The tags of the ConfigurationItemChangeNotification event.""" return self["tags"]
Inherited members
class AWSConfigOversizedConfiguration (data: dict[str, Any], json_deserializer: Callable | None = None)
-
Provides a single read only access to a wrapper dict
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
Expand source code
class AWSConfigOversizedConfiguration(DictWrapper): @property def configuration_item_summary(self) -> AWSConfigOversizedConfigurationItemSummary: """The configuration item summary of the OversizedConfiguration event.""" return AWSConfigOversizedConfigurationItemSummary(self["configurationItemSummary"]) @property def raw_configuration_item_summary(self) -> str: """The raw configuration item summary of the OversizedConfiguration event.""" return self["configurationItemSummary"] @property def message_type(self) -> str: """The message type of the OversizedConfiguration event.""" return self["messageType"] @property def notification_creation_time(self) -> str: """The notification creation time of the OversizedConfiguration event.""" return self["notificationCreationTime"] @property def record_version(self) -> str: """The record version of the OversizedConfiguration event.""" return self["recordVersion"]
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop configuration_item_summary : AWSConfigOversizedConfigurationItemSummary
-
The configuration item summary of the OversizedConfiguration event.
Expand source code
@property def configuration_item_summary(self) -> AWSConfigOversizedConfigurationItemSummary: """The configuration item summary of the OversizedConfiguration event.""" return AWSConfigOversizedConfigurationItemSummary(self["configurationItemSummary"])
prop message_type : str
-
The message type of the OversizedConfiguration event.
Expand source code
@property def message_type(self) -> str: """The message type of the OversizedConfiguration event.""" return self["messageType"]
prop notification_creation_time : str
-
The notification creation time of the OversizedConfiguration event.
Expand source code
@property def notification_creation_time(self) -> str: """The notification creation time of the OversizedConfiguration event.""" return self["notificationCreationTime"]
prop raw_configuration_item_summary : str
-
The raw configuration item summary of the OversizedConfiguration event.
Expand source code
@property def raw_configuration_item_summary(self) -> str: """The raw configuration item summary of the OversizedConfiguration event.""" return self["configurationItemSummary"]
prop record_version : str
-
The record version of the OversizedConfiguration event.
Expand source code
@property def record_version(self) -> str: """The record version of the OversizedConfiguration event.""" return self["recordVersion"]
Inherited members
class AWSConfigOversizedConfigurationItemSummary (data: dict[str, Any], json_deserializer: Callable | None = None)
-
Provides a single read only access to a wrapper dict
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
Expand source code
class AWSConfigOversizedConfigurationItemSummary(DictWrapper): @property def change_type(self) -> str: """The change type of the OversizedConfiguration event.""" return self["changeType"] @property def configuration_item_version(self) -> str: """The configuration item version of the OversizedConfiguration event.""" return self["configurationItemVersion"] @property def configuration_item_capture_time(self) -> str: """The configuration item capture time of the OversizedConfiguration event.""" return self["configurationItemCaptureTime"] @property def configuration_state_id(self) -> str: """The configuration state id of the OversizedConfiguration event.""" return self["configurationStateId"] @property def accountid(self) -> str: """The accountid of the OversizedConfiguration event.""" return self["awsAccountId"] @property def configuration_item_status(self) -> str: """The configuration item status of the OversizedConfiguration event.""" return self["configurationItemStatus"] @property def resource_type(self) -> str: """The resource type of the OversizedConfiguration event.""" return self["resourceType"] @property def resource_id(self) -> str: """The resource id of the OversizedConfiguration event.""" return self["resourceId"] @property def resource_name(self) -> str: """The resource name of the OversizedConfiguration event.""" return self["resourceName"] @property def resource_arn(self) -> str: """The resource arn of the OversizedConfiguration event.""" return self["ARN"] @property def region(self) -> str: """The region of the OversizedConfiguration event.""" return self["awsRegion"] @property def availability_zone(self) -> str: """The availability zone of the OversizedConfiguration event.""" return self["availabilityZone"] @property def configuration_state_md5_hash(self) -> str: """The state md5 hash of the OversizedConfiguration event.""" return self["configurationStateMd5Hash"] @property def resource_creation_time(self) -> str: """The resource creation time of the OversizedConfiguration event.""" return self["resourceCreationTime"]
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop accountid : str
-
The accountid of the OversizedConfiguration event.
Expand source code
@property def accountid(self) -> str: """The accountid of the OversizedConfiguration event.""" return self["awsAccountId"]
prop availability_zone : str
-
The availability zone of the OversizedConfiguration event.
Expand source code
@property def availability_zone(self) -> str: """The availability zone of the OversizedConfiguration event.""" return self["availabilityZone"]
prop change_type : str
-
The change type of the OversizedConfiguration event.
Expand source code
@property def change_type(self) -> str: """The change type of the OversizedConfiguration event.""" return self["changeType"]
prop configuration_item_capture_time : str
-
The configuration item capture time of the OversizedConfiguration event.
Expand source code
@property def configuration_item_capture_time(self) -> str: """The configuration item capture time of the OversizedConfiguration event.""" return self["configurationItemCaptureTime"]
prop configuration_item_status : str
-
The configuration item status of the OversizedConfiguration event.
Expand source code
@property def configuration_item_status(self) -> str: """The configuration item status of the OversizedConfiguration event.""" return self["configurationItemStatus"]
prop configuration_item_version : str
-
The configuration item version of the OversizedConfiguration event.
Expand source code
@property def configuration_item_version(self) -> str: """The configuration item version of the OversizedConfiguration event.""" return self["configurationItemVersion"]
prop configuration_state_id : str
-
The configuration state id of the OversizedConfiguration event.
Expand source code
@property def configuration_state_id(self) -> str: """The configuration state id of the OversizedConfiguration event.""" return self["configurationStateId"]
prop configuration_state_md5_hash : str
-
The state md5 hash of the OversizedConfiguration event.
Expand source code
@property def configuration_state_md5_hash(self) -> str: """The state md5 hash of the OversizedConfiguration event.""" return self["configurationStateMd5Hash"]
prop region : str
-
The region of the OversizedConfiguration event.
Expand source code
@property def region(self) -> str: """The region of the OversizedConfiguration event.""" return self["awsRegion"]
prop resource_arn : str
-
The resource arn of the OversizedConfiguration event.
Expand source code
@property def resource_arn(self) -> str: """The resource arn of the OversizedConfiguration event.""" return self["ARN"]
prop resource_creation_time : str
-
The resource creation time of the OversizedConfiguration event.
Expand source code
@property def resource_creation_time(self) -> str: """The resource creation time of the OversizedConfiguration event.""" return self["resourceCreationTime"]
prop resource_id : str
-
The resource id of the OversizedConfiguration event.
Expand source code
@property def resource_id(self) -> str: """The resource id of the OversizedConfiguration event.""" return self["resourceId"]
prop resource_name : str
-
The resource name of the OversizedConfiguration event.
Expand source code
@property def resource_name(self) -> str: """The resource name of the OversizedConfiguration event.""" return self["resourceName"]
prop resource_type : str
-
The resource type of the OversizedConfiguration event.
Expand source code
@property def resource_type(self) -> str: """The resource type of the OversizedConfiguration event.""" return self["resourceType"]
Inherited members
class AWSConfigRuleEvent (data: dict[str, Any])
-
Events for AWS Config Rules Documentation:
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
Expand source code
class AWSConfigRuleEvent(DictWrapper): """Events for AWS Config Rules Documentation: -------------- - https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_develop-rules_lambda-functions.html """ def __init__(self, data: dict[str, Any]): super().__init__(data) self._invoking_event: Any | None = None self._rule_parameters: Any | None = None @property def version(self) -> str: """The version of the event.""" return self["version"] @property def invoking_event( self, ) -> AWSConfigConfigurationChanged | AWSConfigScheduledNotification | AWSConfigOversizedConfiguration: """The invoking payload of the event.""" if self._invoking_event is None: self._invoking_event = self._json_deserializer(self["invokingEvent"]) return get_invoke_event(self._invoking_event) @property def raw_invoking_event(self) -> str: """The raw invoking payload of the event.""" return self["invokingEvent"] @property def rule_parameters(self) -> dict: """The parameters of the event.""" if self._rule_parameters is None: self._rule_parameters = self._json_deserializer(self["ruleParameters"]) return self._rule_parameters @property def result_token(self) -> str: """The result token of the event.""" return self["resultToken"] @property def event_left_scope(self) -> bool: """The left scope of the event.""" return self["eventLeftScope"] @property def execution_role_arn(self) -> str: """The execution role arn of the event.""" return self["executionRoleArn"] @property def config_rule_arn(self) -> str: """The arn of the rule of the event.""" return self["configRuleArn"] @property def config_rule_name(self) -> str: """The name of the rule of the event.""" return self["configRuleName"] @property def config_rule_id(self) -> str: """The id of the rule of the event.""" return self["configRuleId"] @property def accountid(self) -> str: """The accountid of the event.""" return self["accountId"] @property def evalution_mode(self) -> str | None: """The evalution mode of the event.""" return self.get("evaluationMode")
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop accountid : str
-
The accountid of the event.
Expand source code
@property def accountid(self) -> str: """The accountid of the event.""" return self["accountId"]
prop config_rule_arn : str
-
The arn of the rule of the event.
Expand source code
@property def config_rule_arn(self) -> str: """The arn of the rule of the event.""" return self["configRuleArn"]
prop config_rule_id : str
-
The id of the rule of the event.
Expand source code
@property def config_rule_id(self) -> str: """The id of the rule of the event.""" return self["configRuleId"]
prop config_rule_name : str
-
The name of the rule of the event.
Expand source code
@property def config_rule_name(self) -> str: """The name of the rule of the event.""" return self["configRuleName"]
prop evalution_mode : str | None
-
The evalution mode of the event.
Expand source code
@property def evalution_mode(self) -> str | None: """The evalution mode of the event.""" return self.get("evaluationMode")
prop event_left_scope : bool
-
The left scope of the event.
Expand source code
@property def event_left_scope(self) -> bool: """The left scope of the event.""" return self["eventLeftScope"]
prop execution_role_arn : str
-
The execution role arn of the event.
Expand source code
@property def execution_role_arn(self) -> str: """The execution role arn of the event.""" return self["executionRoleArn"]
prop invoking_event : AWSConfigConfigurationChanged | AWSConfigScheduledNotification | AWSConfigOversizedConfiguration
-
The invoking payload of the event.
Expand source code
@property def invoking_event( self, ) -> AWSConfigConfigurationChanged | AWSConfigScheduledNotification | AWSConfigOversizedConfiguration: """The invoking payload of the event.""" if self._invoking_event is None: self._invoking_event = self._json_deserializer(self["invokingEvent"]) return get_invoke_event(self._invoking_event)
prop raw_invoking_event : str
-
The raw invoking payload of the event.
Expand source code
@property def raw_invoking_event(self) -> str: """The raw invoking payload of the event.""" return self["invokingEvent"]
prop result_token : str
-
The result token of the event.
Expand source code
@property def result_token(self) -> str: """The result token of the event.""" return self["resultToken"]
prop rule_parameters : dict
-
The parameters of the event.
Expand source code
@property def rule_parameters(self) -> dict: """The parameters of the event.""" if self._rule_parameters is None: self._rule_parameters = self._json_deserializer(self["ruleParameters"]) return self._rule_parameters
prop version : str
-
The version of the event.
Expand source code
@property def version(self) -> str: """The version of the event.""" return self["version"]
Inherited members
class AWSConfigScheduledNotification (data: dict[str, Any], json_deserializer: Callable | None = None)
-
Provides a single read only access to a wrapper dict
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
Expand source code
class AWSConfigScheduledNotification(DictWrapper): @property def accountid(self) -> str: """The accountid of the ScheduledNotification event.""" return self["awsAccountId"] @property def notification_creation_time(self) -> str: """The notification creation time of the ScheduledNotification event.""" return self["notificationCreationTime"] @property def record_version(self) -> str: """The record version of the ScheduledNotification event.""" return self["recordVersion"] @property def message_type(self) -> str: """The message type of the ScheduledNotification event.""" return self["messageType"]
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop accountid : str
-
The accountid of the ScheduledNotification event.
Expand source code
@property def accountid(self) -> str: """The accountid of the ScheduledNotification event.""" return self["awsAccountId"]
prop message_type : str
-
The message type of the ScheduledNotification event.
Expand source code
@property def message_type(self) -> str: """The message type of the ScheduledNotification event.""" return self["messageType"]
prop notification_creation_time : str
-
The notification creation time of the ScheduledNotification event.
Expand source code
@property def notification_creation_time(self) -> str: """The notification creation time of the ScheduledNotification event.""" return self["notificationCreationTime"]
prop record_version : str
-
The record version of the ScheduledNotification event.
Expand source code
@property def record_version(self) -> str: """The record version of the ScheduledNotification event.""" return self["recordVersion"]
Inherited members