Interface EmailIdentityProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmailIdentityProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.805Z")
@Stability(Stable)
public interface EmailIdentityProps
extends software.amazon.jsii.JsiiSerializable
Properties for an email identity.
Example:
import software.amazon.awscdk.services.iam.*; User user; EmailIdentity identity = EmailIdentity.Builder.create(this, "Identity") .identity(Identity.domain("cdk.dev")) .build(); identity.grantSendEmail(user);
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEmailIdentityProps
static final class
An implementation forEmailIdentityProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic EmailIdentityProps.Builder
builder()
default IConfigurationSet
The configuration set to associate with the email identity.default DkimIdentity
The type of DKIM identity to use.default Boolean
Whether the messages that are sent from the identity are signed using DKIM.default Boolean
Whether to receive email notifications when bounce or complaint events occur.The email address or domain to verify.default MailFromBehaviorOnMxFailure
The action to take if the required MX record for the MAIL FROM domain isn't found when you send an email.default String
The custom MAIL FROM domain that you want the verified identity to use.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentity
The email address or domain to verify. -
getConfigurationSet
The configuration set to associate with the email identity.Default: - do not use a specific configuration set
-
getDkimIdentity
The type of DKIM identity to use.Default: - Easy DKIM with a key length of 2048-bit
-
getDkimSigning
Whether the messages that are sent from the identity are signed using DKIM.Default: true
-
getFeedbackForwarding
Whether to receive email notifications when bounce or complaint events occur.These notifications are sent to the address that you specified in the
Return-Path
header of the original email.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 (for example, by setting up an event destination), you receive an email notification when these events occur (even if this setting is disabled).
Default: true
-
getMailFromBehaviorOnMxFailure
The action to take if the required MX record for the MAIL FROM domain isn't found when you send an email.Default: MailFromBehaviorOnMxFailure.USE_DEFAULT_VALUE
-
getMailFromDomain
The custom MAIL FROM domain that you want the verified identity to use.The MAIL FROM domain must meet the following criteria:
- It has to be a subdomain of the verified identity
- It can't be used to receive email
- It can't be used in a "From" address if the MAIL FROM domain is a destination for feedback forwarding emails
Default: - use amazonses.com
-
builder
- Returns:
- a
EmailIdentityProps.Builder
ofEmailIdentityProps
-