Show / Hide Table of Contents

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.

string? ContactListName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-contactlistname

Description

A description of what the contact list is about.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-description

Tags

The tags associated with a contact list.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-tags

Topics

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

object? Topics { get; }
Property Value

object

Remarks

A contact list can have multiple topics.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html#cfn-ses-contactlist-topics

Back to top Generated by DocFX