Interface CfnNotificationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNotificationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.596Z")
@Stability(Stable)
public interface CfnNotificationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnNotificationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
CfnNotificationMixinProps cfnNotificationMixinProps = CfnNotificationMixinProps.builder()
.content(NotificationContentProperty.builder()
.deDe("deDe")
.enUs("enUs")
.esEs("esEs")
.frFr("frFr")
.idId("idId")
.itIt("itIt")
.jaJp("jaJp")
.koKr("koKr")
.ptBr("ptBr")
.zhCn("zhCn")
.zhTw("zhTw")
.build())
.expiresAt("expiresAt")
.instanceArn("instanceArn")
.priority("priority")
.recipients(List.of("recipients"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNotificationMixinPropsstatic final classAn implementation forCfnNotificationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe content of a notification.default StringThe time a notification will expire.default StringThe identifier of the Amazon Connect instance.default StringThe priority of notification.The recipients of the notification.getTags()One or more tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
The content of a notification.Returns union: either
IResolvableorCfnNotificationPropsMixin.NotificationContentProperty- See Also:
-
getExpiresAt
The time a notification will expire.- See Also:
-
getInstanceArn
The identifier of the Amazon Connect instance.- See Also:
-
getPriority
The priority of notification.In the Amazon Connect console, when you create a notification, you are prompted to assign one of the following priorities: High (HIGH) or LOW (LOW)
- See Also:
-
getRecipients
The recipients of the notification.- See Also:
-
getTags
One or more tags.- See Also:
-
builder
- Returns:
- a
CfnNotificationMixinProps.BuilderofCfnNotificationMixinProps
-