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

.NET
Go
Java
Python
TypeScript