interface CfnNotificationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnNotificationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnNotificationProps |
Java | software.amazon.awscdk.services.connect.CfnNotificationProps |
Python | aws_cdk.aws_connect.CfnNotificationProps |
TypeScript | aws-cdk-lib » aws_connect » CfnNotificationProps |
Properties for defining a CfnNotification.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnNotificationProps: connect.CfnNotificationProps = {
content: {
deDe: 'deDe',
enUs: 'enUs',
esEs: 'esEs',
frFr: 'frFr',
idId: 'idId',
itIt: 'itIt',
jaJp: 'jaJp',
koKr: 'koKr',
ptBr: 'ptBr',
zhCn: 'zhCn',
zhTw: 'zhTw',
},
instanceArn: 'instanceArn',
// the properties below are optional
expiresAt: 'expiresAt',
priority: 'priority',
recipients: ['recipients'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content | IResolvable | Notification | The content of a notification. |
| instance | string | The identifier of the Amazon Connect instance. |
| expires | string | The time a notification will expire. |
| priority? | string | The priority of notification. |
| recipients? | string[] | The recipients of the notification. |
| tags? | Cfn[] | One or more tags. |
content
Type:
IResolvable | Notification
The content of a notification.
instanceArn
Type:
string
The identifier of the Amazon Connect instance.
expiresAt?
Type:
string
(optional)
The time a notification will expire.
priority?
Type:
string
(optional)
The priority of notification.
In the Amazon Connect console, when you create a notification, you are prompted to assign one of the following priorities: High (HIGH) or LOW (LOW)
recipients?
Type:
string[]
(optional)
The recipients of the notification.
tags?
Type:
Cfn[]
(optional)
One or more tags.

.NET
Go
Java
Python
TypeScript