Interface CfnEmailIdentityPropsMixin.DkimSigningAttributesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEmailIdentityPropsMixin.DkimSigningAttributesProperty.Jsii$Proxy
Enclosing class:
CfnEmailIdentityPropsMixin

@Stability(Stable) public static interface CfnEmailIdentityPropsMixin.DkimSigningAttributesProperty extends software.amazon.jsii.JsiiSerializable
Used to configure or change the DKIM authentication settings for an email domain identity.

You can use this operation to do any of the following:

  • Update the signing attributes for an identity that uses Bring Your Own DKIM (BYODKIM).
  • Update the key length that should be used for Easy DKIM.
  • Change from using no DKIM authentication to using Easy DKIM.
  • Change from using no DKIM authentication to using BYODKIM.
  • Change from using Easy DKIM to using BYODKIM.
  • Change from using BYODKIM to using Easy DKIM.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
 DkimSigningAttributesProperty dkimSigningAttributesProperty = DkimSigningAttributesProperty.builder()
         .domainSigningPrivateKey("domainSigningPrivateKey")
         .domainSigningSelector("domainSigningSelector")
         .nextSigningKeyLength("nextSigningKeyLength")
         .build();
 

See Also: