Show / Hide Table of Contents

Class CfnMailManagerAddonSubscriptionProps

Properties for defining a CfnMailManagerAddonSubscription.

Inheritance
object
CfnMailManagerAddonSubscriptionProps
Implements
ICfnMailManagerAddonSubscriptionProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerAddonSubscriptionProps : ICfnMailManagerAddonSubscriptionProps
Syntax (vb)
Public Class CfnMailManagerAddonSubscriptionProps Implements ICfnMailManagerAddonSubscriptionProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.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 cfnMailManagerAddonSubscriptionProps = new CfnMailManagerAddonSubscriptionProps {
                 AddonName = "addonName",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnMailManagerAddonSubscriptionProps()

Properties for defining a CfnMailManagerAddonSubscription.

Properties

AddonName

The name of the Add On to subscribe to.

Tags

The tags used to organize, track, or control access for the resource.

Constructors

CfnMailManagerAddonSubscriptionProps()

Properties for defining a CfnMailManagerAddonSubscription.

public CfnMailManagerAddonSubscriptionProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.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 cfnMailManagerAddonSubscriptionProps = new CfnMailManagerAddonSubscriptionProps {
                 AddonName = "addonName",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AddonName

The name of the Add On to subscribe to.

public string AddonName { get; set; }
Property Value

string

Remarks

You can only have one subscription for each Add On name.

Valid Values: TRENDMICRO_VSAPI | SPAMHAUS_DBL | ABUSIX_MAIL_INTELLIGENCE

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

Tags

The tags used to organize, track, or control access for the resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

For example, { "tags": {"key1":"value1", "key2":"value2"} }.

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

Implements

ICfnMailManagerAddonSubscriptionProps
Back to top Generated by DocFX