aws-cdk-lib.aws_ses.CfnEmailIdentity.DkimAttributesProperty

interface DkimAttributesProperty

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnEmailIdentity.DkimAttributesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnEmailIdentity_DkimAttributesProperty
Javasoftware.amazon.awscdk.services.ses.CfnEmailIdentity.DkimAttributesProperty
Pythonaws_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

NameTypeDescription
signingEnabled?boolean | IResolvableSets 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.