interface DkimAttributesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CfnEmailIdentity.DkimAttributesProperty |
Java | software.amazon.awscdk.services.ses.CfnEmailIdentity.DkimAttributesProperty |
Python | aws_cdk.aws_ses.CfnEmailIdentity.DkimAttributesProperty |
TypeScript | @aws-cdk/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 * as ses from '@aws-cdk/aws-ses';
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.