Interface CfnEmailIdentity.DkimSigningAttributesProperty

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

@Stability(Stable) public static interface CfnEmailIdentity.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.services.ses.*;
 DkimSigningAttributesProperty dkimSigningAttributesProperty = DkimSigningAttributesProperty.builder()
         .domainSigningPrivateKey("domainSigningPrivateKey")
         .domainSigningSelector("domainSigningSelector")
         .nextSigningKeyLength("nextSigningKeyLength")
         .build();
 

See Also: