Interface CfnContactListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:27.373Z")
@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
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.- 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.
- See Also:
-
builder
- Returns:
- a
CfnContactListProps.Builder
ofCfnContactListProps
-