CfnMailManagerAddressListProps

class aws_cdk.aws_ses.CfnMailManagerAddressListProps(*, address_list_name=None, tags=None)

Bases: object

Properties for defining a CfnMailManagerAddressList.

Parameters:
  • address_list_name (Optional[str]) – A user-friendly name for the address list.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags used to organize, track, or control access for the resource. For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.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_mail_manager_address_list_props = ses.CfnMailManagerAddressListProps(
    address_list_name="addressListName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

address_list_name

A user-friendly name for the address list.

See:

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

tags

The tags used to organize, track, or control access for the resource.

For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.

See:

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