Show / Hide Table of Contents

Class CfnEmailIdentity.DkimAttributesProperty

Used to enable or disable DKIM authentication for an email identity.

Inheritance
object
CfnEmailIdentity.DkimAttributesProperty
Implements
CfnEmailIdentity.IDkimAttributesProperty
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 CfnEmailIdentity.DkimAttributesProperty : CfnEmailIdentity.IDkimAttributesProperty
Syntax (vb)
Public Class CfnEmailIdentity.DkimAttributesProperty Implements CfnEmailIdentity.IDkimAttributesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-emailidentity-dkimattributes.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 dkimAttributesProperty = new DkimAttributesProperty {
                 SigningEnabled = false
             };

Synopsis

Constructors

DkimAttributesProperty()

Used to enable or disable DKIM authentication for an email identity.

Properties

SigningEnabled

Sets the DKIM signing configuration for the identity.

Constructors

DkimAttributesProperty()

Used to enable or disable DKIM authentication for an email identity.

public DkimAttributesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-emailidentity-dkimattributes.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 dkimAttributesProperty = new DkimAttributesProperty {
                 SigningEnabled = false
             };

Properties

SigningEnabled

Sets the DKIM signing configuration for the identity.

public object? SigningEnabled { get; set; }
Property Value

object

Remarks

When you set this value true , then the messages that are sent from the identity are signed using DKIM. If you set this value to false , your messages are sent without DKIM signing.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-emailidentity-dkimattributes.html#cfn-ses-emailidentity-dkimattributes-signingenabled

Implements

CfnEmailIdentity.IDkimAttributesProperty
Back to top Generated by DocFX