@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.184Z") @Stability(value=Stable) public interface CfnContactListProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnContactListProps.Builder
A builder for
CfnContactListProps |
static class |
CfnContactListProps.Jsii$Proxy
An implementation for
CfnContactListProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnContactListProps.Builder |
builder() |
default String |
getContactListName()
The name of the contact list.
|
default String |
getDescription()
A description of what the contact list is about.
|
default List<CfnTag> |
getTags()
The tags associated with a contact list.
|
default Object |
getTopics()
An interest group, theme, or label within a list.
|
@Stability(value=Stable) @Nullable default String getContactListName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default Object getTopics()
A contact list can have multiple topics.
@Stability(value=Stable) static CfnContactListProps.Builder builder()
CfnContactListProps.Builder of CfnContactListPropsCopyright © 2022. All rights reserved.