Show / Hide Table of Contents

Class VdmAttributesProps

Properties for the Virtual Deliverability Manager (VDM) attributes.

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

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 vdmAttributesProps = new VdmAttributesProps {
                EngagementMetrics = false,
                OptimizedSharedDelivery = false
            };

Synopsis

Constructors

VdmAttributesProps()

Properties for the Virtual Deliverability Manager (VDM) attributes.

Properties

EngagementMetrics

Whether engagement metrics are enabled for your account.

OptimizedSharedDelivery

Whether optimized shared delivery is enabled for your account.

Constructors

VdmAttributesProps()

Properties for the Virtual Deliverability Manager (VDM) attributes.

public VdmAttributesProps()
Remarks

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 vdmAttributesProps = new VdmAttributesProps {
                EngagementMetrics = false,
                OptimizedSharedDelivery = false
            };

Properties

EngagementMetrics

Whether engagement metrics are enabled for your account.

public bool? EngagementMetrics { get; set; }
Property Value

bool?

Remarks

Default: true

OptimizedSharedDelivery

Whether optimized shared delivery is enabled for your account.

public bool? OptimizedSharedDelivery { get; set; }
Property Value

bool?

Remarks

Default: true

Implements

IVdmAttributesProps
Back to top Generated by DocFX