ManagedNotificationAdditionalChannelAssociationReference
- class aws_cdk.aws_notifications.ManagedNotificationAdditionalChannelAssociationReference(*, channel_arn, managed_notification_configuration_arn)
Bases:
object
A reference to a ManagedNotificationAdditionalChannelAssociation resource.
- Parameters:
channel_arn (
str
) – The ChannelArn of the ManagedNotificationAdditionalChannelAssociation resource.managed_notification_configuration_arn (
str
) – The ManagedNotificationConfigurationArn of the ManagedNotificationAdditionalChannelAssociation 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_additional_channel_association_reference = notifications.ManagedNotificationAdditionalChannelAssociationReference( channel_arn="channelArn", managed_notification_configuration_arn="managedNotificationConfigurationArn" )
Attributes
- channel_arn
The ChannelArn of the ManagedNotificationAdditionalChannelAssociation resource.
- managed_notification_configuration_arn
The ManagedNotificationConfigurationArn of the ManagedNotificationAdditionalChannelAssociation resource.