Show / Hide Table of Contents

Interface ICfnNotificationProps

Properties for defining a CfnNotification.

Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnNotificationProps
Syntax (vb)
Public Interface ICfnNotificationProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Connect;

             var cfnNotificationProps = new CfnNotificationProps {
                 Content = new NotificationContentProperty {
                     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 = new [] { "recipients" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Content

The content of a notification.

ExpiresAt

The time a notification will expire.

InstanceArn

The identifier of the Amazon Connect instance.

Priority

The priority of notification.

Recipients

The recipients of the notification.

Tags

One or more tags.

Properties

Content

The content of a notification.

object Content { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnNotification.INotificationContentProperty

ExpiresAt

The time a notification will expire.

string? ExpiresAt { get; }
Property Value

string

Remarks

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

InstanceArn

The identifier of the Amazon Connect instance.

string InstanceArn { get; }
Property Value

string

Remarks

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

Priority

The priority of notification.

string? Priority { get; }
Property Value

string

Remarks

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.

string[]? Recipients { get; }
Property Value

string[]

Remarks

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

Tags

One or more tags.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX