Show / Hide Table of Contents

Class DkimRecord

A DKIM record.

Inheritance
object
DkimRecord
Implements
IDkimRecord
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 DkimRecord : IDkimRecord
Syntax (vb)
Public Class DkimRecord Implements IDkimRecord
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 dkimRecord = new DkimRecord {
                Name = "name",
                Value = "value"
            };

Synopsis

Constructors

DkimRecord()

A DKIM record.

Properties

Name

The name of the record.

Value

The value of the record.

Constructors

DkimRecord()

A DKIM record.

public DkimRecord()
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 dkimRecord = new DkimRecord {
                Name = "name",
                Value = "value"
            };

Properties

Name

The name of the record.

public string Name { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Value

The value of the record.

public string Value { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDkimRecord
Back to top Generated by DocFX