Show / Hide Table of Contents

Interface CfnRulePropsMixin.INotificationRecipientTypeProperty

The type of notification recipient.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnRulePropsMixin.INotificationRecipientTypeProperty
Syntax (vb)
Public Interface CfnRulePropsMixin.INotificationRecipientTypeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-notificationrecipienttype.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 notificationRecipientTypeProperty = new NotificationRecipientTypeProperty {
                 UserArns = new [] { "userArns" },
                 UserTags = new Dictionary<string, string> {
                     { "userTagsKey", "userTags" }
                 }
             };

Synopsis

Properties

UserArns

The Amazon Resource Name (ARN) of the user account.

UserTags

The tags used to organize, track, or control access for this resource.

Properties

UserArns

The Amazon Resource Name (ARN) of the user account.

string[]? UserArns { get; }
Property Value

string[]

Remarks

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

UserTags

The tags used to organize, track, or control access for this resource.

object? UserTags { get; }
Property Value

object

Remarks

For example, { "tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.

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

Type union: either Dictionary<string, string> or IResolvable

Back to top Generated by DocFX