CfnContactListMixinProps

class aws_cdk.mixins_preview.aws_ses.mixins.CfnContactListMixinProps(*, contact_list_name=None, description=None, tags=None, topics=None)

Bases: object

Properties for CfnContactListPropsMixin.

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.mixins_preview.aws_ses import mixins as ses_mixins

cfn_contact_list_mixin_props = ses_mixins.CfnContactListMixinProps(
    contact_list_name="contactListName",
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    topics=[ses_mixins.CfnContactListPropsMixin.TopicProperty(
        default_subscription_status="defaultSubscriptionStatus",
        description="description",
        display_name="displayName",
        topic_name="topicName"
    )]
)

Attributes

contact_list_name

The name of the contact list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-contactlistname

description

A description of what the contact list is about.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-description

tags

The tags associated with a contact list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-tags

topics

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#cfn-ses-contactlist-topics