Interface ICfnContactListProps
Properties for defining a CfnContactList
.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnContactListProps
Syntax (vb)
Public Interface ICfnContactListProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html
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 cfnContactListProps = new CfnContactListProps {
ContactListName = "contactListName",
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
Topics = new [] { new TopicProperty {
DefaultSubscriptionStatus = "defaultSubscriptionStatus",
DisplayName = "displayName",
TopicName = "topicName",
// the properties below are optional
Description = "description"
} }
};
Synopsis
Properties
ContactListName | The name of the contact list. |
Description | A description of what the contact list is about. |
Tags | The tags associated with a contact list. |
Topics | An interest group, theme, or label within a list. |
Properties
ContactListName
The name of the contact list.
virtual string ContactListName { get; }
Property Value
System.String
Remarks
Description
A description of what the contact list is about.
virtual string Description { get; }
Property Value
System.String
Remarks
Tags
The tags associated with a contact list.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]
Remarks
Topics
An interest group, theme, or label within a list.
virtual object Topics { get; }
Property Value
System.Object
Remarks
A contact list can have multiple topics.