ChannelAssociationReference
- class aws_cdk.aws_notifications.ChannelAssociationReference(*, channel_association_arn, notification_configuration_arn)
Bases:
object
A reference to a ChannelAssociation resource.
- Parameters:
channel_association_arn (
str
) – The Arn of the ChannelAssociation resource.notification_configuration_arn (
str
) – The NotificationConfigurationArn of the ChannelAssociation 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 channel_association_reference = notifications.ChannelAssociationReference( channel_association_arn="channelAssociationArn", notification_configuration_arn="notificationConfigurationArn" )
Attributes
- channel_association_arn
The Arn of the ChannelAssociation resource.
- notification_configuration_arn
The NotificationConfigurationArn of the ChannelAssociation resource.