CfnNotificationMixinProps

class aws_cdk.mixins_preview.aws_connect.mixins.CfnNotificationMixinProps(*, content=None, expires_at=None, instance_arn=None, priority=None, recipients=None, tags=None)

Bases: object

Properties for CfnNotificationPropsMixin.

Parameters:
  • content (Union[IResolvable, NotificationContentProperty, Dict[str, Any], None]) – The content of a notification.

  • expires_at (Optional[str]) – The time a notification will expire.

  • instance_arn (Optional[str]) – The identifier of the Amazon Connect instance.

  • 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.mixins_preview.aws_connect import mixins as connect_mixins

cfn_notification_mixin_props = connect_mixins.CfnNotificationMixinProps(
    content=connect_mixins.CfnNotificationPropsMixin.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"
    ),
    expires_at="expiresAt",
    instance_arn="instanceArn",
    priority="priority",
    recipients=["recipients"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

content

The content of a notification.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html#cfn-connect-notification-content

expires_at

The time a notification will expire.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html#cfn-connect-notification-expiresat

instance_arn

The identifier of the Amazon Connect instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html#cfn-connect-notification-instancearn

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)

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html#cfn-connect-notification-priority

recipients

The recipients of the notification.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html#cfn-connect-notification-recipients

tags

One or more tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-notification.html#cfn-connect-notification-tags