Class CfnRulePropsMixin.SendNotificationActionProperty
Information about the send notification action.
Implements
Inherited Members
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
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 |
Constructors
SendNotificationActionProperty()
Information about the send notification action.
public SendNotificationActionProperty()
Remarks
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
Remarks
Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .
ContentType
Content type format.
public string? ContentType { get; set; }
Property Value
Remarks
DeliveryMethod
Notification delivery method.
public string? DeliveryMethod { get; set; }
Property Value
Remarks
Recipient
Notification recipient.
public object? Recipient { get; set; }
Property Value
Remarks
Subject
The subject of the email if the delivery method is EMAIL .
public string? Subject { get; set; }
Property Value
Remarks
Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .