Interface CfnContactListProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContactListProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:09.978Z") @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: