TSESV2DkimSigningAttributes
Class in AWS.SESV2
DkimSigningAttributes configuration class.
Ancestors
Properties
DomainSigningAttributesOrigin
property DomainSigningAttributesOrigin: string
DomainSigningPrivateKey
property DomainSigningPrivateKey: string
DomainSigningSelector
property DomainSigningSelector: string
NextSigningKeyLength
property NextSigningKeyLength: string
Methods
BringYourOwnDKIM
class function BringYourOwnDKIM(const ADomainSigningPrivateKey, ADomainSigningSelector: string): TSESV2DkimSigningAttributes; static;
Factory method for creating DkimSigningAttributes configured with "Bring Your Own DKIM" attributes.
Parameters
| Name | Description |
|---|---|
ADomainSigningPrivateKey | Specifies a private key that's used to generate a DKIM signature when using "Bring Your Own DKIM". The private key must use 1024 or 2048 RSA encryption and be Base64 encoded. Minimum length 1, maximum length 20480. |
ADomainSigningSelector | Specifies the location of a public key in the DNS configuration for a domain when using "Bring Your Own DKIM". Minimum length 1, maximum length 63. |
Returns
A TSESV2DkimSigningAttributes instance configured with "Bring Your Own DKIM" attributes.
EasyDKIM
class function EasyDKIM(const ANextSigningKeyLength: string): TSESV2DkimSigningAttributes; static;
Factory method for creating DkimSigningAttributes configured with "Easy DKIM" attributes.
Parameters
| Name | Description |
|---|---|
ANextSigningKeyLength | Specifies the key length of the future DKIM key pair to be generated when using "Easy DKIM". This can be changed at most once per day. Valid values:|. |
Returns
A TSESV2DkimSigningAttributes instance configured with "Easy DKIM" attributes.
ReplicateFromRegion
class function ReplicateFromRegion(const ADomainSigningAttributesOrigin: string): TSESV2DkimSigningAttributes; static;
Factory method for creating DkimSigningAttributes configured to replicate DKIM settings from a parent identity in another region.
Parameters
| Name | Description |
|---|---|
ADomainSigningAttributesOrigin | The AWS region containing the parent identity whose DKIM configuration should be replicated using Deterministic Easy-DKIM (DEED). Valid values include region-specific origins like,, etc. |
Returns
A TSESV2DkimSigningAttributes instance configured for cross-region DKIM replication.