interface CfnManagedNotificationAdditionalChannelAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Notifications.Mixins.CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotifications/mixins#CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.notifications.mixins.CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_notifications.mixins.CfnManagedNotificationAdditionalChannelAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_notifications » mixins » CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Properties for CfnManagedNotificationAdditionalChannelAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as notifications_mixins } from '@aws-cdk/mixins-preview/aws-notifications';
const cfnManagedNotificationAdditionalChannelAssociationMixinProps: notifications_mixins.CfnManagedNotificationAdditionalChannelAssociationMixinProps = {
channelArn: 'channelArn',
managedNotificationConfigurationArn: 'managedNotificationConfigurationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The ARN of the Channel . |
| managed | string | The ARN of the ManagedNotificationAdditionalChannelAssociation associated with the Channel . |
channelArn?
Type:
string
(optional)
The ARN of the Channel .
managedNotificationConfigurationArn?
Type:
string
(optional)
The ARN of the ManagedNotificationAdditionalChannelAssociation associated with the Channel .

.NET
Go
Java
Python
TypeScript