Show / Hide Table of Contents

Class VdmAttributesProps

Properties for the Virtual Deliverability Manager (VDM) attributes.

Inheritance
System.Object
VdmAttributesProps
Implements
IVdmAttributesProps
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VdmAttributesProps : Object, IVdmAttributesProps
Syntax (vb)
Public Class VdmAttributesProps
    Inherits Object
    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

EngagementMetrics

Whether engagement metrics are enabled for your account.

OptimizedSharedDelivery

Whether optimized shared delivery is enabled for your account.

Constructors

VdmAttributesProps()

public VdmAttributesProps()

Properties

EngagementMetrics

Whether engagement metrics are enabled for your account.

public Nullable<bool> EngagementMetrics { get; set; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: true

OptimizedSharedDelivery

Whether optimized shared delivery is enabled for your account.

public Nullable<bool> OptimizedSharedDelivery { get; set; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: true

Implements

IVdmAttributesProps
Back to top Generated by DocFX