Show / Hide Table of Contents

Class CfnMailManagerAddonInstanceProps

Properties for defining a CfnMailManagerAddonInstance.

Inheritance
object
CfnMailManagerAddonInstanceProps
Implements
ICfnMailManagerAddonInstanceProps
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 CfnMailManagerAddonInstanceProps : ICfnMailManagerAddonInstanceProps
Syntax (vb)
Public Class CfnMailManagerAddonInstanceProps Implements ICfnMailManagerAddonInstanceProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddoninstance.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 cfnMailManagerAddonInstanceProps = new CfnMailManagerAddonInstanceProps {
                 AddonSubscriptionId = "addonSubscriptionId",

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

Synopsis

Constructors

CfnMailManagerAddonInstanceProps()

Properties for defining a CfnMailManagerAddonInstance.

Properties

AddonSubscriptionId

The subscription ID for the instance.

Tags

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

Constructors

CfnMailManagerAddonInstanceProps()

Properties for defining a CfnMailManagerAddonInstance.

public CfnMailManagerAddonInstanceProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddoninstance.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 cfnMailManagerAddonInstanceProps = new CfnMailManagerAddonInstanceProps {
                 AddonSubscriptionId = "addonSubscriptionId",

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

Properties

AddonSubscriptionId

The subscription ID for the instance.

public string AddonSubscriptionId { get; set; }
Property Value

string

Remarks

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

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-mailmanageraddoninstance.html#cfn-ses-mailmanageraddoninstance-tags

Implements

ICfnMailManagerAddonInstanceProps
Back to top Generated by DocFX