Interface CfnContactListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.370Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContactListProps
static final class
An implementation forCfnContactListProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnContactListProps.Builder
builder()
default String
The name of the contact list.default String
A description of what the contact list is about.getTags()
The tags associated with a contact list.default Object
An 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. -
getDescription
A description of what the contact list is about. -
getTags
The tags associated with a contact list. -
getTopics
An interest group, theme, or label within a list.A contact list can have multiple topics.
-
builder
- Returns:
- a
CfnContactListProps.Builder
ofCfnContactListProps
-