interface CfnManagedNotificationAccountContactAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Notifications.Mixins.CfnManagedNotificationAccountContactAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotifications/mixins#CfnManagedNotificationAccountContactAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.notifications.mixins.CfnManagedNotificationAccountContactAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_notifications.mixins.CfnManagedNotificationAccountContactAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_notifications » mixins » CfnManagedNotificationAccountContactAssociationMixinProps |
Properties for CfnManagedNotificationAccountContactAssociationPropsMixin.
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 cfnManagedNotificationAccountContactAssociationMixinProps: notifications_mixins.CfnManagedNotificationAccountContactAssociationMixinProps = {
contactIdentifier: 'contactIdentifier',
managedNotificationConfigurationArn: 'managedNotificationConfigurationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The unique identifier of the notification contact associated with the AWS account. |
| managed | string | The ARN of the ManagedNotificationConfiguration to be associated with the Channel . |
contactIdentifier?
Type:
string
(optional)
The unique identifier of the notification contact associated with the AWS account.
For more information about the contact types associated with an account, see the Account Management Reference Guide .
managedNotificationConfigurationArn?
Type:
string
(optional)
The ARN of the ManagedNotificationConfiguration to be associated with the Channel .

.NET
Go
Java
Python
TypeScript