CfnNotificationProps
- class aws_cdk.aws_connect.CfnNotificationProps(*, content, instance_arn, expires_at=None, priority=None, recipients=None, tags=None)
Bases:
objectProperties for defining a
CfnNotification.- Parameters:
content (
Union[IResolvable,NotificationContentProperty,Dict[str,Any]]) – The content of a notification.instance_arn (
str) – The identifier of the Amazon Connect instance.expires_at (
Optional[str]) – The time a notification will expire.priority (
Optional[str]) – 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 (
Optional[Sequence[str]]) – The recipients of the notification.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – One or more tags.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect cfn_notification_props = connect.CfnNotificationProps( content=connect.CfnNotification.NotificationContentProperty( de_de="deDe", en_us="enUs", es_es="esEs", fr_fr="frFr", id_id="idId", it_it="itIt", ja_jp="jaJp", ko_kr="koKr", pt_br="ptBr", zh_cn="zhCn", zh_tw="zhTw" ), instance_arn="instanceArn", # the properties below are optional expires_at="expiresAt", priority="priority", recipients=["recipients"], tags=[CfnTag( key="key", value="value" )] )
Attributes
- content
The content of a notification.
- expires_at
The time a notification will expire.
- instance_arn
The identifier of the Amazon Connect instance.
- priority
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
The recipients of the notification.