aws-cdk-lib.aws_pinpointemail.CfnIdentityProps

interface CfnIdentityProps

LanguageType name
.NETAmazon.CDK.AWS.PinpointEmail.CfnIdentityProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspinpointemail#CfnIdentityProps
Javasoftware.amazon.awscdk.services.pinpointemail.CfnIdentityProps
Pythonaws_cdk.aws_pinpointemail.CfnIdentityProps
TypeScript aws-cdk-lib » aws_pinpointemail » CfnIdentityProps

Properties for defining a CfnIdentity.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpointemail as pinpointemail } from 'aws-cdk-lib';
const cfnIdentityProps: pinpointemail.CfnIdentityProps = {
  name: 'name',

  // the properties below are optional
  dkimSigningEnabled: false,
  feedbackForwardingEnabled: false,
  mailFromAttributes: {
    behaviorOnMxFailure: 'behaviorOnMxFailure',
    mailFromDomain: 'mailFromDomain',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe address or domain of the identity, such as sender@example.com or example.co.uk .
dkimSigningEnabled?boolean | IResolvableFor domain identities, this attribute is used to enable or disable DomainKeys Identified Mail (DKIM) signing for the domain.
feedbackForwardingEnabled?boolean | IResolvableUsed 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.
tags?TagsProperty[]An object that defines the tags (keys and values) that you want to associate with the email identity.

name

Type: string

The address or domain of the identity, such as sender@example.com or example.co.uk .


dkimSigningEnabled?

Type: boolean | IResolvable (optional)

For domain identities, this attribute is used to enable or disable DomainKeys Identified Mail (DKIM) signing for the domain.

If the value is true , then the messages that you send from the domain are signed using both the DKIM keys for your domain, as well as the keys for the amazonses.com domain. If the value is false , then the messages that you send are only signed using the DKIM keys for the amazonses.com domain.


feedbackForwardingEnabled?

Type: boolean | IResolvable (optional)

Used to enable or disable feedback forwarding for an identity.

This setting determines what happens when an identity is used to send an email that results in a bounce or complaint event.

When you enable feedback forwarding, Amazon Pinpoint sends you email notifications when bounce or complaint events occur. Amazon Pinpoint sends this notification to the address that you specified in the Return-Path header of the original email.

When you disable feedback forwarding, Amazon Pinpoint sends notifications through other mechanisms, such as by notifying an Amazon SNS topic. You're required to have a method of tracking bounces and complaints. If you haven't set up another mechanism for receiving bounce or complaint notifications, Amazon Pinpoint sends an email notification when these events occur (even if this setting is disabled).


mailFromAttributes?

Type: IResolvable | MailFromAttributesProperty (optional)

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


tags?

Type: TagsProperty[] (optional)

An object that defines the tags (keys and values) that you want to associate with the email identity.