@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.177Z") @Stability(value=Stable) public interface ByoDkimOptions 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.*;
import software.amazon.awscdk.services.ses.*;
SecretValue secretValue;
ByoDkimOptions byoDkimOptions = ByoDkimOptions.builder()
.privateKey(secretValue)
.selector("selector")
// the properties below are optional
.publicKey("publicKey")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ByoDkimOptions.Builder
A builder for
ByoDkimOptions |
static class |
ByoDkimOptions.Jsii$Proxy
An implementation for
ByoDkimOptions |
| Modifier and Type | Method and Description |
|---|---|
static ByoDkimOptions.Builder |
builder() |
SecretValue |
getPrivateKey()
The private key that's used to generate a DKIM signature.
|
default String |
getPublicKey()
The public key.
|
String |
getSelector()
A string that's used to identify a public key in the DNS configuration for a domain.
|
@Stability(value=Stable) @NotNull SecretValue getPrivateKey()
@Stability(value=Stable) @NotNull String getSelector()
@Stability(value=Stable) @Nullable default String getPublicKey()
If specified, a TXT record with the public key is created.
Default: - the validation TXT record with the public key is not created
@Stability(value=Stable) static ByoDkimOptions.Builder builder()
ByoDkimOptions.Builder of ByoDkimOptionsCopyright © 2022. All rights reserved.