interface ChannelAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_notifications.ChannelAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotifications#ChannelAssociationReference |
Java | software.amazon.awscdk.services.notifications.ChannelAssociationReference |
Python | aws_cdk.aws_notifications.ChannelAssociationReference |
TypeScript | aws-cdk-lib » aws_notifications » ChannelAssociationReference |
A reference to a ChannelAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_notifications as notifications } from 'aws-cdk-lib';
const channelAssociationReference: notifications.ChannelAssociationReference = {
channelAssociationArn: 'channelAssociationArn',
notificationConfigurationArn: 'notificationConfigurationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The Arn of the ChannelAssociation resource. |
| notification | string | The NotificationConfigurationArn of the ChannelAssociation resource. |
channelAssociationArn
Type:
string
The Arn of the ChannelAssociation resource.
notificationConfigurationArn
Type:
string
The NotificationConfigurationArn of the ChannelAssociation resource.

.NET
Go
Java
Python
TypeScript