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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forDkimIdentityConfig
static final class
An implementation forDkimIdentityConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic DkimIdentityConfig.Builder
builder()
default String
A private key that's used to generate a DKIM signature.default String
A string that's used to identify a public key in the DNS configuration for a domain.default EasyDkimSigningKeyLength
The key length of the future DKIM key pair to be generated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainSigningPrivateKey
A private key that's used to generate a DKIM signature.Default: - use Easy DKIM
-
getDomainSigningSelector
A string that's used to identify a public key in the DNS configuration for a domain.Default: - use Easy DKIM
-
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
- Returns:
- a
DkimIdentityConfig.Builder
ofDkimIdentityConfig
-