interface CfnMailManagerAddonSubscriptionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerAddonSubscriptionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerAddonSubscriptionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerAddonSubscriptionMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerAddonSubscriptionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerAddonSubscriptionMixinProps |
Properties for CfnMailManagerAddonSubscriptionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnMailManagerAddonSubscriptionMixinProps: ses_mixins.CfnMailManagerAddonSubscriptionMixinProps = {
addonName: 'addonName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| addon | string | The name of the Add On to subscribe to. |
| tags? | Cfn[] | The tags used to organize, track, or control access for the resource. |
addonName?
Type:
string
(optional)
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 | VADE_ADVANCED_EMAIL_SECURITY
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for the resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript