CfnMailManagerAddonSubscriptionProps
- class aws_cdk.aws_ses.CfnMailManagerAddonSubscriptionProps(*, addon_name, tags=None)
Bases:
object
Properties for defining a
CfnMailManagerAddonSubscription
.- Parameters:
addon_name (
str
) – The name of the Add On to subscribe to. You can only have one subscription for each Add On name. Valid Values:TRENDMICRO_VSAPI | SPAMHAUS_DBL | ABUSIX_MAIL_INTELLIGENCE
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:
- 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_addon_subscription_props = ses.CfnMailManagerAddonSubscriptionProps( addon_name="addonName", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- addon_name
The name of the Add On to subscribe to.
You can only have one subscription for each Add On name.
Valid Values:
TRENDMICRO_VSAPI | SPAMHAUS_DBL | ABUSIX_MAIL_INTELLIGENCE
- tags
The tags used to organize, track, or control access for the resource.
For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.