interface CfnContactListProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CfnContactListProps |
Java | software.amazon.awscdk.services.ses.CfnContactListProps |
Python | aws_cdk.aws_ses.CfnContactListProps |
TypeScript | @aws-cdk/aws-ses » CfnContactListProps |
Properties for defining a CfnContactList
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ses from '@aws-cdk/aws-ses';
const cfnContactListProps: ses.CfnContactListProps = {
contactListName: 'contactListName',
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
topics: [{
defaultSubscriptionStatus: 'defaultSubscriptionStatus',
displayName: 'displayName',
topicName: 'topicName',
// the properties below are optional
description: 'description',
}],
};
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.