interface DkimAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnEmailIdentity.DkimAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnEmailIdentity_DkimAttributesProperty |
Java | software.amazon.awscdk.services.ses.CfnEmailIdentity.DkimAttributesProperty |
Python | aws_cdk.aws_ses.CfnEmailIdentity.DkimAttributesProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnEmailIdentity » DkimAttributesProperty |
Used to enable or disable DKIM authentication for an email 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 dkimAttributesProperty: ses.CfnEmailIdentity.DkimAttributesProperty = {
signingEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| signing | boolean | IResolvable | Sets the DKIM signing configuration for the identity. |
signingEnabled?
Type:
boolean | IResolvable
(optional)
Sets the DKIM signing configuration for the identity.
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.

.NET
Go
Java
Python
TypeScript