CfnMailManagerAddonInstanceProps
- class aws_cdk.aws_ses.CfnMailManagerAddonInstanceProps(*, addon_subscription_id, tags=None)
Bases:
object
Properties for defining a
CfnMailManagerAddonInstance
.- Parameters:
addon_subscription_id (
str
) – The subscription ID for the instance.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_instance_props = ses.CfnMailManagerAddonInstanceProps( addon_subscription_id="addonSubscriptionId", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- addon_subscription_id
The subscription ID for the instance.
- tags
The tags used to organize, track, or control access for the resource.
For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.