Show / Hide Table of Contents

Class CfnRulePropsMixin.SendNotificationActionProperty

Information about the send notification action.

Inheritance
object
CfnRulePropsMixin.SendNotificationActionProperty
Implements
CfnRulePropsMixin.ISendNotificationActionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnRulePropsMixin.SendNotificationActionProperty : CfnRulePropsMixin.ISendNotificationActionProperty
Syntax (vb)
Public Class CfnRulePropsMixin.SendNotificationActionProperty Implements CfnRulePropsMixin.ISendNotificationActionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.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.Mixins.Preview.AWS.Connect.Mixins;

             var sendNotificationActionProperty = new SendNotificationActionProperty {
                 Content = "content",
                 ContentType = "contentType",
                 DeliveryMethod = "deliveryMethod",
                 Recipient = new NotificationRecipientTypeProperty {
                     UserArns = new [] { "userArns" },
                     UserTags = new Dictionary<string, string> {
                         { "userTagsKey", "userTags" }
                     }
                 },
                 Subject = "subject"
             };

Synopsis

Constructors

SendNotificationActionProperty()

Information about the send notification action.

Properties

Content

Notification content.

ContentType

Content type format.

DeliveryMethod

Notification delivery method.

Recipient

Notification recipient.

Subject

The subject of the email if the delivery method is EMAIL .

Constructors

SendNotificationActionProperty()

Information about the send notification action.

public SendNotificationActionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.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.Mixins.Preview.AWS.Connect.Mixins;

             var sendNotificationActionProperty = new SendNotificationActionProperty {
                 Content = "content",
                 ContentType = "contentType",
                 DeliveryMethod = "deliveryMethod",
                 Recipient = new NotificationRecipientTypeProperty {
                     UserArns = new [] { "userArns" },
                     UserTags = new Dictionary<string, string> {
                         { "userTagsKey", "userTags" }
                     }
                 },
                 Subject = "subject"
             };

Properties

Content

Notification content.

public string? Content { get; set; }
Property Value

string

Remarks

Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html#cfn-connect-rule-sendnotificationaction-content

ContentType

Content type format.

public string? ContentType { get; set; }
Property Value

string

Remarks

Allowed value : PLAIN_TEXT

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html#cfn-connect-rule-sendnotificationaction-contenttype

DeliveryMethod

Notification delivery method.

public string? DeliveryMethod { get; set; }
Property Value

string

Remarks

Allowed value : EMAIL

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html#cfn-connect-rule-sendnotificationaction-deliverymethod

Recipient

Notification recipient.

public object? Recipient { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html#cfn-connect-rule-sendnotificationaction-recipient

Type union: either IResolvable or CfnRulePropsMixin.INotificationRecipientTypeProperty

Subject

The subject of the email if the delivery method is EMAIL .

public string? Subject { get; set; }
Property Value

string

Remarks

Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html#cfn-connect-rule-sendnotificationaction-subject

Implements

CfnRulePropsMixin.ISendNotificationActionProperty
Back to top Generated by DocFX