Interface CfnContactListMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactListMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.517Z")
@Stability(Stable)
public interface CfnContactListMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnContactListPropsMixin.
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.ses.*;
CfnContactListMixinProps cfnContactListMixinProps = CfnContactListMixinProps.builder()
.contactListName("contactListName")
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.topics(List.of(TopicProperty.builder()
.defaultSubscriptionStatus("defaultSubscriptionStatus")
.description("description")
.displayName("displayName")
.topicName("topicName")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnContactListMixinPropsstatic final classAn implementation forCfnContactListMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContactListName
The name of the contact list.- See Also:
-
getDescription
A description of what the contact list is about.- See Also:
-
getTags
The tags associated with a contact list.- See Also:
-
getTopics
An interest group, theme, or label within a list.A contact list can have multiple topics.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnContactListPropsMixin.TopicProperty>- See Also:
-
builder
- Returns:
- a
CfnContactListMixinProps.BuilderofCfnContactListMixinProps
-