aws-cdk-lib.aws_ses.CfnEmailIdentityProps

interface CfnEmailIdentityProps

LanguageType name
.NETAmazon.CDK.AWS.SES.CfnEmailIdentityProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnEmailIdentityProps
Javasoftware.amazon.awscdk.services.ses.CfnEmailIdentityProps
Pythonaws_cdk.aws_ses.CfnEmailIdentityProps
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
emailIdentitystringThe email address or domain to verify.
configurationSetAttributes?IResolvable | ConfigurationSetAttributesPropertyUsed to associate a configuration set with an email identity.
dkimAttributes?IResolvable | DkimAttributesPropertyAn object that contains information about the DKIM attributes for the identity.
dkimSigningAttributes?IResolvable | DkimSigningAttributesPropertyIf 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?IResolvable | FeedbackAttributesPropertyUsed to enable or disable feedback forwarding for an identity.
mailFromAttributes?IResolvable | MailFromAttributesPropertyUsed 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 | ConfigurationSetAttributesProperty (optional)

Used to associate a configuration set with an email identity.


dkimAttributes?

Type: IResolvable | DkimAttributesProperty (optional)

An object that contains information about the DKIM attributes for the identity.


dkimSigningAttributes?

Type: IResolvable | DkimSigningAttributesProperty (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 | FeedbackAttributesProperty (optional)

Used to enable or disable feedback forwarding for an identity.


mailFromAttributes?

Type: IResolvable | MailFromAttributesProperty (optional)

Used to enable or disable the custom Mail-From domain configuration for an email identity.