CfnContactListProps
- class aws_cdk.aws_ses.CfnContactListProps(*, contact_list_name=None, description=None, tags=None, topics=None)
Bases:
objectProperties 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[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with a contact list.topics (
Union[IResolvable,Sequence[Union[IResolvable,TopicProperty,Dict[str,Any]]],None]) – An interest group, theme, or label within a list. A contact list can have multiple topics.
- See:
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. from aws_cdk import 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.
- tags
The tags associated with a contact list.
- topics
An interest group, theme, or label within a list.
A contact list can have multiple topics.