@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.198Z") @Stability(value=Stable) public interface DkimIdentityConfig extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DkimIdentityConfig.Builder
A builder for
DkimIdentityConfig |
static class |
DkimIdentityConfig.Jsii$Proxy
An implementation for
DkimIdentityConfig |
| Modifier and Type | Method and Description |
|---|---|
static DkimIdentityConfig.Builder |
builder() |
default String |
getDomainSigningPrivateKey()
A private key that's used to generate a DKIM signature.
|
default String |
getDomainSigningSelector()
A string that's used to identify a public key in the DNS configuration for a domain.
|
default EasyDkimSigningKeyLength |
getNextSigningKeyLength()
The key length of the future DKIM key pair to be generated.
|
@Stability(value=Stable) @Nullable default String getDomainSigningPrivateKey()
Default: - use Easy DKIM
@Stability(value=Stable) @Nullable default String getDomainSigningSelector()
Default: - use Easy DKIM
@Stability(value=Stable) @Nullable default EasyDkimSigningKeyLength getNextSigningKeyLength()
This can be changed at most once per day.
Default: EasyDkimSigningKeyLength.RSA_2048_BIT
@Stability(value=Stable) static DkimIdentityConfig.Builder builder()
DkimIdentityConfig.Builder of DkimIdentityConfigCopyright © 2022. All rights reserved.