Interface CfnContactListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:47.295Z")
@Stability(Stable)
public interface CfnContactListProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnContactList.
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.ses.*;
CfnContactListProps cfnContactListProps = CfnContactListProps.builder()
.contactListName("contactListName")
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.topics(List.of(TopicProperty.builder()
.defaultSubscriptionStatus("defaultSubscriptionStatus")
.displayName("displayName")
.topicName("topicName")
// the properties below are optional
.description("description")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnContactListPropsstatic final classAn implementation forCfnContactListProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnContactListProps.Builderbuilder()default StringThe name of the contact list.default StringA description of what the contact list is about.getTags()The tags associated with a contact list.default ObjectAn interest group, theme, or label within a list.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: '<'eitherIResolvableorCfnContactList.TopicProperty>- See Also:
-
builder
- Returns:
- a
CfnContactListProps.BuilderofCfnContactListProps
-