CfnContactListProps¶
-
class
aws_cdk.aws_ses.
CfnContactListProps
(*, contact_list_name=None, description=None, tags=None, topics=None)¶ Bases:
object
Properties for defining a
CfnContactList
.- Parameters
contact_list_name (
Optional
[str
]) – The name of the contact list.description (
Optional
[str
]) – A description of what the contact list is about.tags (
Optional
[Sequence
[CfnTag
]]) – The tags associated with a contact list.topics (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,TopicProperty
]],None
]) – An interest group, theme, or label within a list. A contact list can have multiple topics.
- Link
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ses as ses cfn_contact_list_props = ses.CfnContactListProps( contact_list_name="contactListName", description="description", tags=[CfnTag( key="key", value="value" )], topics=[ses.CfnContactList.TopicProperty( default_subscription_status="defaultSubscriptionStatus", display_name="displayName", topic_name="topicName", # the properties below are optional description="description" )] )
Attributes
-
contact_list_name
¶ The name of the contact list.
-
description
¶ A description of what the contact list is about.
The tags associated with a contact list.
- Link
- Return type
Optional
[List
[CfnTag
]]
-
topics
¶ An interest group, theme, or label within a list.
A contact list can have multiple topics.
- Link
- Return type
Union
[IResolvable
,List
[Union
[IResolvable
,TopicProperty
]],None
]