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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnContactList.TopicPropertystatic final classAn 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 StringA 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.- See Also:
-
getDisplayName
The name of the topic the contact will see.- See Also:
-
getTopicName
The name of the topic.- See Also:
-
getDescription
A description of what the topic is about, which the contact will see.- See Also:
-
builder
-