interface CfnManagedNotificationAdditionalChannelAssociationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_notifications.CfnManagedNotificationAdditionalChannelAssociationProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotifications#CfnManagedNotificationAdditionalChannelAssociationProps | 
|  Java | software.amazon.awscdk.services.notifications.CfnManagedNotificationAdditionalChannelAssociationProps | 
|  Python | aws_cdk.aws_notifications.CfnManagedNotificationAdditionalChannelAssociationProps | 
|  TypeScript | aws-cdk-lib»aws_notifications»CfnManagedNotificationAdditionalChannelAssociationProps | 
Properties for defining a CfnManagedNotificationAdditionalChannelAssociation.
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 cfnManagedNotificationAdditionalChannelAssociationProps: notifications.CfnManagedNotificationAdditionalChannelAssociationProps = {
  channelArn: 'channelArn',
  managedNotificationConfigurationArn: 'managedNotificationConfigurationArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| channel | string | The ARN of the Channel. | 
| managed | string | The ARN of the ManagedNotificationAdditionalChannelAssociationassociated with theChannel. | 
channelArn
Type:
string
The ARN of the Channel .
managedNotificationConfigurationArn
Type:
string
The ARN of the ManagedNotificationAdditionalChannelAssociation associated with the Channel .
