interface CfnNotificationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnNotificationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnNotificationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnNotificationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnNotificationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnNotificationMixinProps: connect.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