Interface DkimIdentityConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DkimIdentityConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-02-06T22:16:03.036Z") @Stability(Stable) public interface DkimIdentityConfig extends software.amazon.jsii.JsiiSerializable
Configuration for DKIM identity.

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.*;
 DkimIdentityConfig dkimIdentityConfig = DkimIdentityConfig.builder()
         .domainSigningPrivateKey("domainSigningPrivateKey")
         .domainSigningSelector("domainSigningSelector")
         .nextSigningKeyLength(EasyDkimSigningKeyLength.RSA_1024_BIT)
         .build();
 
  • Method Details

    • getDomainSigningPrivateKey

      @Stability(Stable) @Nullable default String getDomainSigningPrivateKey()
      A private key that's used to generate a DKIM signature.

      Default: - use Easy DKIM

    • getDomainSigningSelector

      @Stability(Stable) @Nullable default String getDomainSigningSelector()
      A string that's used to identify a public key in the DNS configuration for a domain.

      Default: - use Easy DKIM

    • getNextSigningKeyLength

      @Stability(Stable) @Nullable default EasyDkimSigningKeyLength getNextSigningKeyLength()
      The key length of the future DKIM key pair to be generated.

      This can be changed at most once per day.

      Default: EasyDkimSigningKeyLength.RSA_2048_BIT

    • builder

      @Stability(Stable) static DkimIdentityConfig.Builder builder()
      Returns:
      a DkimIdentityConfig.Builder of DkimIdentityConfig