public static interface CfnEmailIdentity.DkimSigningAttributesProperty
You can use this operation to do any of the following:
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.*; DkimSigningAttributesProperty dkimSigningAttributesProperty = DkimSigningAttributesProperty.builder() .domainSigningPrivateKey("domainSigningPrivateKey") .domainSigningSelector("domainSigningSelector") .nextSigningKeyLength("nextSigningKeyLength") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEmailIdentity.DkimSigningAttributesProperty.Builder
A builder for
CfnEmailIdentity.DkimSigningAttributesProperty |
static class |
CfnEmailIdentity.DkimSigningAttributesProperty.Jsii$Proxy
An implementation for
CfnEmailIdentity.DkimSigningAttributesProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEmailIdentity.DkimSigningAttributesProperty.Builder |
builder() |
default java.lang.String |
getDomainSigningPrivateKey()
[Bring Your Own DKIM] A private key that's used to generate a DKIM signature.
|
default java.lang.String |
getDomainSigningSelector()
[Bring Your Own DKIM] A string that's used to identify a public key in the DNS configuration for a domain.
|
default java.lang.String |
getNextSigningKeyLength()
[Easy DKIM] The key length of the future DKIM key pair to be generated.
|
default java.lang.String getDomainSigningPrivateKey()
The private key must use 1024 or 2048-bit RSA encryption, and must be encoded using base64 encoding.
Rather than embedding sensitive information directly in your CFN templates, we recommend you use dynamic parameters in the stack template to reference sensitive information that is stored and managed outside of CFN, such as in the AWS Systems Manager Parameter Store or AWS Secrets Manager.
For more information, see the Do not embed credentials in your templates best practice.
default java.lang.String getDomainSigningSelector()
default java.lang.String getNextSigningKeyLength()
This can be changed at most once per day.
Valid Values: RSA_1024_BIT | RSA_2048_BIT
static CfnEmailIdentity.DkimSigningAttributesProperty.Builder builder()