aws-cdk-lib.aws_ses.CfnContactList.TopicProperty

interface TopicProperty

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnContactList.TopicProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnContactList_TopicProperty
Javasoftware.amazon.awscdk.services.ses.CfnContactList.TopicProperty
Pythonaws_cdk.aws_ses.CfnContactList.TopicProperty
TypeScript aws-cdk-lib » aws_ses » CfnContactList » 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 { aws_ses as ses } from 'aws-cdk-lib';
const topicProperty: ses.CfnContactList.TopicProperty = {
  defaultSubscriptionStatus: 'defaultSubscriptionStatus',
  displayName: 'displayName',
  topicName: 'topicName',

  // the properties below are optional
  description: 'description',
};

Properties

NameTypeDescription
defaultSubscriptionStatusstringThe default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
displayNamestringThe name of the topic the contact will see.
topicNamestringThe name of the topic.
description?stringA description of what the topic is about, which the contact will see.

defaultSubscriptionStatus

Type: string

The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.


displayName

Type: string

The name of the topic the contact will see.


topicName

Type: string

The name of the topic.


description?

Type: string (optional)

A description of what the topic is about, which the contact will see.