interface NotificationRecipientTypeProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Connect.CfnRule.NotificationRecipientTypeProperty | 
|  Java | software.amazon.awscdk.services.connect.CfnRule.NotificationRecipientTypeProperty | 
|  Python | aws_cdk.aws_connect.CfnRule.NotificationRecipientTypeProperty | 
|  TypeScript | @aws-cdk/aws-connect»CfnRule»NotificationRecipientTypeProperty | 
The type of notification recipient.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as connect from '@aws-cdk/aws-connect';
const notificationRecipientTypeProperty: connect.CfnRule.NotificationRecipientTypeProperty = {
  userArns: ['userArns'],
  userTags: {
    userTagsKey: 'userTags',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| user | string[] | The Amazon Resource Name (ARN) of the user account. | 
| user | IResolvable | { [string]: string } | The tags used to organize, track, or control access for this resource. | 
userArns?
Type:
string[]
(optional)
The Amazon Resource Name (ARN) of the user account.
userTags?
Type:
IResolvable | { [string]: string }
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.
