@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.183Z") @Stability(value=Stable) public class CfnContactList extends CfnResource implements IInspectable
A list that contains contacts that have subscribed to a particular topic or 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.*;
CfnContactList cfnContactList = CfnContactList.Builder.create(this, "MyCfnContactList")
.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 | Class and Description |
|---|---|
static class |
CfnContactList.Builder
A fluent builder for
CfnContactList. |
static interface |
CfnContactList.TopicProperty
An interest group, theme, or label within a list.
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnContactList(software.constructs.Construct scope,
String id)
Create a new `AWS::SES::ContactList`.
|
|
CfnContactList(software.constructs.Construct scope,
String id,
CfnContactListProps props)
Create a new `AWS::SES::ContactList`.
|
protected |
CfnContactList(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnContactList(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,Object> |
getCfnProperties() |
String |
getContactListName()
The name of the contact list.
|
String |
getDescription()
A description of what the contact list is about.
|
TagManager |
getTags()
The tags associated with a contact list.
|
Object |
getTopics()
An interest group, theme, or label within a list.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setContactListName(String value)
The name of the contact list.
|
void |
setDescription(String value)
A description of what the contact list is about.
|
void |
setTopics(IResolvable value)
An interest group, theme, or label within a list.
|
void |
setTopics(List<Object> value)
An interest group, theme, or label within a list.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnContactList(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnContactList(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnContactList(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@Nullable
CfnContactListProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties.@Stability(value=Stable)
public CfnContactList(@NotNull
software.constructs.Construct scope,
@NotNull
String id)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @Nullable public String getContactListName()
@Stability(value=Stable)
public void setContactListName(@Nullable
String value)
@Stability(value=Stable) @Nullable public String getDescription()
@Stability(value=Stable)
public void setDescription(@Nullable
String value)
@Stability(value=Stable) @Nullable public Object getTopics()
A contact list can have multiple topics.
@Stability(value=Stable)
public void setTopics(@Nullable
IResolvable value)
A contact list can have multiple topics.
Copyright © 2022. All rights reserved.