interface ManagedNotificationAdditionalChannelAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Notifications.ManagedNotificationAdditionalChannelAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnotifications#ManagedNotificationAdditionalChannelAssociationReference |
Java | software.amazon.awscdk.interfaces.notifications.ManagedNotificationAdditionalChannelAssociationReference |
Python | aws_cdk.interfaces.aws_notifications.ManagedNotificationAdditionalChannelAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_notifications » ManagedNotificationAdditionalChannelAssociationReference |
A reference to a ManagedNotificationAdditionalChannelAssociation 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 managedNotificationAdditionalChannelAssociationReference: interfaces_aws_notifications.ManagedNotificationAdditionalChannelAssociationReference = {
channelArn: 'channelArn',
managedNotificationConfigurationArn: 'managedNotificationConfigurationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The ChannelArn of the ManagedNotificationAdditionalChannelAssociation resource. |
| managed | string | The ManagedNotificationConfigurationArn of the ManagedNotificationAdditionalChannelAssociation resource. |
channelArn
Type:
string
The ChannelArn of the ManagedNotificationAdditionalChannelAssociation resource.
managedNotificationConfigurationArn
Type:
string
The ManagedNotificationConfigurationArn of the ManagedNotificationAdditionalChannelAssociation resource.

.NET
Go
Java
Python
TypeScript