interface DkimIdentityConfig
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.SES.DkimIdentityConfig | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#DkimIdentityConfig | 
  Java | software.amazon.awscdk.services.ses.DkimIdentityConfig | 
  Python | aws_cdk.aws_ses.DkimIdentityConfig | 
  TypeScript (source) | aws-cdk-lib » aws_ses » DkimIdentityConfig | 
Obtainable from
Dkim.bind()
Configuration for DKIM identity.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const dkimIdentityConfig: ses.DkimIdentityConfig = {
  domainSigningPrivateKey: 'domainSigningPrivateKey',
  domainSigningSelector: 'domainSigningSelector',
  nextSigningKeyLength: ses.EasyDkimSigningKeyLength.RSA_1024_BIT,
};
Properties
| Name | Type | Description | 
|---|---|---|
| domain | string | A private key that's used to generate a DKIM signature. | 
| domain | string | A string that's used to identify a public key in the DNS configuration for a domain. | 
| next | Easy | The key length of the future DKIM key pair to be generated. | 
domainSigningPrivateKey?
Type:
string
(optional, default: use Easy DKIM)
A private key that's used to generate a DKIM signature.
domainSigningSelector?
Type:
string
(optional, default: use Easy DKIM)
A string that's used to identify a public key in the DNS configuration for a domain.
nextSigningKeyLength?
Type:
Easy
(optional, default: EasyDkimSigningKeyLength.RSA_2048_BIT)
The key length of the future DKIM key pair to be generated.
This can be changed at most once per day.

 .NET
 Go
 Java
 Python
 TypeScript (