MailManagerAddressListReference

class aws_cdk.interfaces.aws_ses.MailManagerAddressListReference(*, address_list_arn, address_list_id)

Bases: object

A reference to a MailManagerAddressList resource.

Parameters:
  • address_list_arn (str) – The ARN of the MailManagerAddressList resource.

  • address_list_id (str) – The AddressListId of the MailManagerAddressList resource.

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.interfaces import aws_ses as interfaces_aws_ses

mail_manager_address_list_reference = interfaces_aws_ses.MailManagerAddressListReference(
    address_list_arn="addressListArn",
    address_list_id="addressListId"
)

Attributes

address_list_arn

The ARN of the MailManagerAddressList resource.

address_list_id

The AddressListId of the MailManagerAddressList resource.