interface DkimAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnEmailIdentityPropsMixin.DkimAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnEmailIdentityPropsMixin_DkimAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnEmailIdentityPropsMixin.DkimAttributesProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnEmailIdentityPropsMixin.DkimAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnEmailIdentityPropsMixin » 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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const dkimAttributesProperty: ses_mixins.CfnEmailIdentityPropsMixin.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