interface CfnEmailIdentityProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SES.CfnEmailIdentityProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnEmailIdentityProps |
![]() | software.amazon.awscdk.services.ses.CfnEmailIdentityProps |
![]() | aws_cdk.aws_ses.CfnEmailIdentityProps |
![]() | aws-cdk-lib » aws_ses » CfnEmailIdentityProps |
Properties for defining a CfnEmailIdentity
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-emailidentity.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
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 .
You can only specify this object if the email identity is a domain, as opposed to an address.
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.