interface SendNotificationActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRulePropsMixin.SendNotificationActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRulePropsMixin_SendNotificationActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRulePropsMixin.SendNotificationActionProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRulePropsMixin.SendNotificationActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnRulePropsMixin » SendNotificationActionProperty |
Information about the send notification action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const sendNotificationActionProperty: connect_mixins.CfnRulePropsMixin.SendNotificationActionProperty = {
content: 'content',
contentType: 'contentType',
deliveryMethod: 'deliveryMethod',
recipient: {
userArns: ['userArns'],
userTags: {
userTagsKey: 'userTags',
},
},
subject: 'subject',
};
Properties
| Name | Type | Description |
|---|---|---|
| content? | string | Notification content. |
| content | string | Content type format. |
| delivery | string | Notification delivery method. |
| recipient? | IResolvable | Notification | Notification recipient. |
| subject? | string | The subject of the email if the delivery method is EMAIL . |
content?
Type:
string
(optional)
Notification content.
Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .
contentType?
Type:
string
(optional)
Content type format.
Allowed value : PLAIN_TEXT
deliveryMethod?
Type:
string
(optional)
Notification delivery method.
Allowed value : EMAIL
recipient?
Type:
IResolvable | Notification
(optional)
Notification recipient.
subject?
Type:
string
(optional)
The subject of the email if the delivery method is EMAIL .
Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .

.NET
Go
Java
Python
TypeScript