interface CfnManagedNotificationAdditionalChannelAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Notifications.CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnotifications#CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.notifications.CfnManagedNotificationAdditionalChannelAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_notifications.CfnManagedNotificationAdditionalChannelAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_notifications » 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 { aws_notifications as notifications } from '@aws-cdk/cfn-property-mixins';
const cfnManagedNotificationAdditionalChannelAssociationMixinProps: notifications.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