Interface CfnContactList.ITopicProperty
An interest group, theme, or label within a list.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITopicProperty
Syntax (vb)
Public Interface ITopicProperty
Remarks
Lists can have multiple topics.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var topicProperty = new TopicProperty {
DefaultSubscriptionStatus = "defaultSubscriptionStatus",
DisplayName = "displayName",
TopicName = "topicName",
// the properties below are optional
Description = "description"
};
Synopsis
Properties
DefaultSubscriptionStatus | The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic. |
Description | A description of what the topic is about, which the contact will see. |
DisplayName | The name of the topic the contact will see. |
TopicName | The name of the topic. |
Properties
DefaultSubscriptionStatus
The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
string DefaultSubscriptionStatus { get; }
Property Value
System.String
Remarks
Description
A description of what the topic is about, which the contact will see.
virtual string Description { get; }
Property Value
System.String
Remarks
DisplayName
The name of the topic the contact will see.
string DisplayName { get; }
Property Value
System.String
Remarks
TopicName
The name of the topic.
string TopicName { get; }
Property Value
System.String