interface NotificationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.NotificationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#NotificationReference |
Java | software.amazon.awscdk.interfaces.connect.NotificationReference |
Python | aws_cdk.interfaces.aws_connect.NotificationReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » NotificationReference |
A reference to a Notification resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_connect } from 'aws-cdk-lib/interfaces';
const notificationReference: interfaces_connect.NotificationReference = {
notificationArn: 'notificationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| notification | string | The Arn of the Notification resource. |
notificationArn
Type:
string
The Arn of the Notification resource.

.NET
Go
Java
Python
TypeScript