aws-cdk-lib.aws_ses.CfnContactListProps

interface CfnContactListProps

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnContactListProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnContactListProps
Javasoftware.amazon.awscdk.services.ses.CfnContactListProps
Pythonaws_cdk.aws_ses.CfnContactListProps
TypeScript aws-cdk-lib » 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 { aws_ses as ses } from 'aws-cdk-lib';
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

NameTypeDescription
contactListName?stringThe name of the contact list.
description?stringA description of what the contact list is about.
tags?CfnTag[]The tags associated with a contact list.
topics?IResolvable | IResolvable | TopicProperty[]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: CfnTag[] (optional)

The tags associated with a contact list.


topics?

Type: IResolvable | IResolvable | TopicProperty[] (optional)

An interest group, theme, or label within a list.

A contact list can have multiple topics.