interface TopicProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnContactListPropsMixin.TopicProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnContactListPropsMixin_TopicProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnContactListPropsMixin.TopicProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnContactListPropsMixin.TopicProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnContactListPropsMixin » TopicProperty |
An interest group, theme, or label within a list.
Lists can have multiple topics.
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 topicProperty: ses_mixins.CfnContactListPropsMixin.TopicProperty = {
defaultSubscriptionStatus: 'defaultSubscriptionStatus',
description: 'description',
displayName: 'displayName',
topicName: 'topicName',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic. |
| description? | string | A description of what the topic is about, which the contact will see. |
| display | string | The name of the topic the contact will see. |
| topic | string | The name of the topic. |
defaultSubscriptionStatus?
Type:
string
(optional)
The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
description?
Type:
string
(optional)
A description of what the topic is about, which the contact will see.
displayName?
Type:
string
(optional)
The name of the topic the contact will see.
topicName?
Type:
string
(optional)
The name of the topic.

.NET
Go
Java
Python
TypeScript