interface CfnContactListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnContactListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnContactListMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnContactListMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnContactListMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnContactListMixinProps |
Properties for CfnContactListPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html
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 cfnContactListMixinProps: ses_mixins.CfnContactListMixinProps = {
contactListName: 'contactListName',
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
topics: [{
defaultSubscriptionStatus: 'defaultSubscriptionStatus',
description: 'description',
displayName: 'displayName',
topicName: 'topicName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The name of the contact list. |
| description? | string | A description of what the contact list is about. |
| tags? | Cfn[] | The tags associated with a contact list. |
| topics? | IResolvable | (IResolvable | Topic)[] | An interest group, theme, or label within a list. |
contactListName?
Type:
string
(optional)
The name of the contact list.
description?
Type:
string
(optional)
A description of what the contact list is about.
tags?
Type:
Cfn[]
(optional)
The tags associated with a contact list.
topics?
Type:
IResolvable | (IResolvable | Topic)[]
(optional)
An interest group, theme, or label within a list.
A contact list can have multiple topics.

.NET
Go
Java
Python
TypeScript