Class DkimRecord
A DKIM record.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
Value
The value of the record.
public string Value { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated