Interface CfnRule.NotificationRecipientTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.NotificationRecipientTypeProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.NotificationRecipientTypeProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*;
NotificationRecipientTypeProperty notificationRecipientTypeProperty = NotificationRecipientTypeProperty.builder()
.userArns(List.of("userArns"))
.userTags(Map.of(
"userTagsKey", "userTags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.NotificationRecipientTypePropertystatic final classAn implementation forCfnRule.NotificationRecipientTypeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUserArns
The Amazon Resource Name (ARN) of the user account.- See Also:
-
getUserTags
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.
- See Also:
-
builder
-