Interface CfnContactList.TopicProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactList.TopicProperty.Jsii$Proxy
- Enclosing class:
CfnContactList
@Stability(Stable)
public static interface CfnContactList.TopicProperty
extends software.amazon.jsii.JsiiSerializable
An interest group, theme, or label within a list.
Lists can have multiple topics.
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.*; TopicProperty topicProperty = TopicProperty.builder() .defaultSubscriptionStatus("defaultSubscriptionStatus") .displayName("displayName") .topicName("topicName") // the properties below are optional .description("description") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContactList.TopicProperty
static final class
An implementation forCfnContactList.TopicProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.default String
A description of what the topic is about, which the contact will see.The name of the topic the contact will see.The name of the topic.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultSubscriptionStatus
The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic. -
getDisplayName
The name of the topic the contact will see. -
getTopicName
The name of the topic. -
getDescription
A description of what the topic is about, which the contact will see. -
builder
-