ManagedNotificationAccountContactAssociationReference

class aws_cdk.aws_notifications.ManagedNotificationAccountContactAssociationReference(*, contact_identifier, managed_notification_configuration_arn)

Bases: object

A reference to a ManagedNotificationAccountContactAssociation resource.

Parameters:
  • contact_identifier (str) – The ContactIdentifier of the ManagedNotificationAccountContactAssociation resource.

  • managed_notification_configuration_arn (str) – The ManagedNotificationConfigurationArn of the ManagedNotificationAccountContactAssociation resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_notifications as notifications

managed_notification_account_contact_association_reference = notifications.ManagedNotificationAccountContactAssociationReference(
    contact_identifier="contactIdentifier",
    managed_notification_configuration_arn="managedNotificationConfigurationArn"
)

Attributes

contact_identifier

The ContactIdentifier of the ManagedNotificationAccountContactAssociation resource.

managed_notification_configuration_arn

The ManagedNotificationConfigurationArn of the ManagedNotificationAccountContactAssociation resource.