interface CfnEmailIdentityProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CfnEmailIdentityProps |
Java | software.amazon.awscdk.services.ses.CfnEmailIdentityProps |
Python | aws_cdk.aws_ses.CfnEmailIdentityProps |
TypeScript | @aws-cdk/aws-ses » CfnEmailIdentityProps |
Properties for defining a CfnEmailIdentity
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ses from '@aws-cdk/aws-ses';
const cfnEmailIdentityProps: ses.CfnEmailIdentityProps = {
emailIdentity: 'emailIdentity',
// the properties below are optional
configurationSetAttributes: {
configurationSetName: 'configurationSetName',
},
dkimAttributes: {
signingEnabled: false,
},
dkimSigningAttributes: {
domainSigningPrivateKey: 'domainSigningPrivateKey',
domainSigningSelector: 'domainSigningSelector',
nextSigningKeyLength: 'nextSigningKeyLength',
},
feedbackAttributes: {
emailForwardingEnabled: false,
},
mailFromAttributes: {
behaviorOnMxFailure: 'behaviorOnMxFailure',
mailFromDomain: 'mailFromDomain',
},
};
Properties
Name | Type | Description |
---|---|---|
email | string | The email address or domain to verify. |
configuration | IResolvable | Configuration | Used to associate a configuration set with an email identity. |
dkim | IResolvable | Dkim | An object that contains information about the DKIM attributes for the identity. |
dkim | IResolvable | Dkim | If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM . |
feedback | IResolvable | Feedback | Used to enable or disable feedback forwarding for an identity. |
mail | IResolvable | Mail | Used to enable or disable the custom Mail-From domain configuration for an email identity. |
emailIdentity
Type:
string
The email address or domain to verify.
configurationSetAttributes?
Type:
IResolvable
|
Configuration
(optional)
Used to associate a configuration set with an email identity.
dkimAttributes?
Type:
IResolvable
|
Dkim
(optional)
An object that contains information about the DKIM attributes for the identity.
dkimSigningAttributes?
Type:
IResolvable
|
Dkim
(optional)
If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for Easy DKIM .
feedbackAttributes?
Type:
IResolvable
|
Feedback
(optional)
Used to enable or disable feedback forwarding for an identity.
mailFromAttributes?
Type:
IResolvable
|
Mail
(optional)
Used to enable or disable the custom Mail-From domain configuration for an email identity.