interface CfnNotificationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnNotificationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnNotificationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnNotificationMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnNotificationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnNotificationMixinProps |
Properties for CfnNotificationPropsMixin.
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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnNotificationMixinProps: connect_mixins.CfnNotificationMixinProps = {
content: {
deDe: 'deDe',
enUs: 'enUs',
esEs: 'esEs',
frFr: 'frFr',
idId: 'idId',
itIt: 'itIt',
jaJp: 'jaJp',
koKr: 'koKr',
ptBr: 'ptBr',
zhCn: 'zhCn',
zhTw: 'zhTw',
},
expiresAt: 'expiresAt',
instanceArn: 'instanceArn',
priority: 'priority',
recipients: ['recipients'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | IResolvable | Notification | The content of a notification. |
| expires | string | The time a notification will expire. |
| instance | string | The identifier of the Amazon Connect instance. |
| priority? | string | The priority of notification. |
| recipients? | string[] | The recipients of the notification. |
| tags? | Cfn[] | One or more tags. |
content?
Type:
IResolvable | Notification
(optional)
The content of a notification.
expiresAt?
Type:
string
(optional)
The time a notification will expire.
instanceArn?
Type:
string
(optional)
The identifier of the Amazon Connect instance.
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