interface NotificationRecipientTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRulePropsMixin.NotificationRecipientTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRulePropsMixin_NotificationRecipientTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRulePropsMixin.NotificationRecipientTypeProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRulePropsMixin.NotificationRecipientTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnRulePropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const notificationRecipientTypeProperty: connect_mixins.CfnRulePropsMixin.NotificationRecipientTypeProperty = {
userArns: ['userArns'],
userTags: {
userTagsKey: 'userTags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| user | string[] | The Amazon Resource Name (ARN) of the user account. |
| user | { [string]: string } | IResolvable | 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:
{ [string]: string } | IResolvable
(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.

.NET
Go
Java
Python
TypeScript