Interface ByoDkimOptions
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 ByoDkimOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:48.830Z")
@Stability(Stable)
public interface ByoDkimOptions
extends software.amazon.jsii.JsiiSerializable
Options for BYO DKIM.
 
Example:
 IPublicHostedZone myHostedZone;
 EmailIdentity.Builder.create(this, "Identity")
         .identity(Identity.publicHostedZone(myHostedZone))
         .dkimIdentity(DkimIdentity.byoDkim(ByoDkimOptions.builder()
                 .privateKey(SecretValue.secretsManager("dkim-private-key"))
                 .publicKey("...base64-encoded-public-key...")
                 .selector("selector")
                 .build()))
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forByoDkimOptionsstatic final classAn implementation forByoDkimOptions - 
Method Summary
Modifier and TypeMethodDescriptionstatic ByoDkimOptions.Builderbuilder()The private key that's used to generate a DKIM signature.default StringThe public key.A string that's used to identify a public key in the DNS configuration for a domain.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getPrivateKey
The private key that's used to generate a DKIM signature. - 
getSelector
A string that's used to identify a public key in the DNS configuration for a domain. - 
getPublicKey
The public key.If specified, a TXT record with the public key is created.
Default: - the validation TXT record with the public key is not created
 - 
builder
- Returns:
 - a 
ByoDkimOptions.BuilderofByoDkimOptions 
 
 -