interface ChannelAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Notifications.ChannelAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnotifications#ChannelAssociationReference |
Java | software.amazon.awscdk.interfaces.notifications.ChannelAssociationReference |
Python | aws_cdk.interfaces.aws_notifications.ChannelAssociationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_notifications } from 'aws-cdk-lib/interfaces';
const channelAssociationReference: interfaces_aws_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