Show / Hide Table of Contents

Class CfnUserPool.EmailConfigurationProperty

The email configuration of your user pool.

Inheritance
object
CfnUserPool.EmailConfigurationProperty
Implements
CfnUserPool.IEmailConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserPool.EmailConfigurationProperty : CfnUserPool.IEmailConfigurationProperty
Syntax (vb)
Public Class CfnUserPool.EmailConfigurationProperty Implements CfnUserPool.IEmailConfigurationProperty
Remarks

The email configuration type sets your preferred sending method, AWS Region, and sender for messages from your user pool.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Cognito;

             var emailConfigurationProperty = new EmailConfigurationProperty {
                 ConfigurationSet = "configurationSet",
                 EmailSendingAccount = "emailSendingAccount",
                 From = "from",
                 ReplyToEmailAddress = "replyToEmailAddress",
                 SourceArn = "sourceArn"
             };

Synopsis

Constructors

EmailConfigurationProperty()

The email configuration of your user pool.

Properties

ConfigurationSet

The set of configuration rules that can be applied to emails sent using Amazon Simple Email Service.

EmailSendingAccount

Specifies whether Amazon Cognito uses its built-in functionality to send your users email messages, or uses your Amazon Simple Email Service email configuration.

From

Either the sender’s email address or the sender’s name with their email address.

ReplyToEmailAddress

The destination to which the receiver of the email should reply.

SourceArn

The ARN of a verified email address or an address from a verified domain in Amazon SES.

Constructors

EmailConfigurationProperty()

The email configuration of your user pool.

public EmailConfigurationProperty()
Remarks

The email configuration type sets your preferred sending method, AWS Region, and sender for messages from your user pool.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Cognito;

             var emailConfigurationProperty = new EmailConfigurationProperty {
                 ConfigurationSet = "configurationSet",
                 EmailSendingAccount = "emailSendingAccount",
                 From = "from",
                 ReplyToEmailAddress = "replyToEmailAddress",
                 SourceArn = "sourceArn"
             };

Properties

ConfigurationSet

The set of configuration rules that can be applied to emails sent using Amazon Simple Email Service.

public string? ConfigurationSet { get; set; }
Property Value

string

Remarks

A configuration set is applied to an email by including a reference to the configuration set in the headers of the email. Once applied, all of the rules in that configuration set are applied to the email. Configuration sets can be used to apply the following types of rules to emails:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-configurationset

    EmailSendingAccount

    Specifies whether Amazon Cognito uses its built-in functionality to send your users email messages, or uses your Amazon Simple Email Service email configuration.

    public string? EmailSendingAccount { get; set; }
    Property Value

    string

    Remarks

    Specify one of the following values:

      To look up the email delivery limit for the default option, see Limits in the Amazon Cognito Developer Guide .

      The default FROM address is no-reply@verificationemail.com . To customize the FROM address, provide the Amazon Resource Name (ARN) of an Amazon SES verified email address for the SourceArn parameter.

        If you use this option, provide the ARN of an Amazon SES verified email address for the SourceArn parameter.

        Before Amazon Cognito can email your users, it requires additional permissions to call Amazon SES on your behalf. When you update your user pool with this option, Amazon Cognito creates a service-linked role , which is a type of role in your AWS account . This role contains the permissions that allow you to access Amazon SES and send email messages from your email address. For more information about the service-linked role that Amazon Cognito creates, see Using Service-Linked Roles for Amazon Cognito in the Amazon Cognito Developer Guide .

        See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-emailsendingaccount

        From

        Either the sender’s email address or the sender’s name with their email address.

        public string? From { get; set; }
        Property Value

        string

        Remarks

        For example, testuser@example.com or Test User <testuser@example.com&gt; . This address appears before the body of the email.

        See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-from

        ReplyToEmailAddress

        The destination to which the receiver of the email should reply.

        public string? ReplyToEmailAddress { get; set; }
        Property Value

        string

        Remarks

        See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress

        SourceArn

        The ARN of a verified email address or an address from a verified domain in Amazon SES.

        public string? SourceArn { get; set; }
        Property Value

        string

        Remarks

        You can set a SourceArn email from a verified domain only with an API request. You can set a verified email address, but not an address in a verified domain, in the Amazon Cognito console. Amazon Cognito uses the email address that you provide in one of the following ways, depending on the value that you specify for the EmailSendingAccount parameter:

          The Region value of the SourceArn parameter must indicate a supported AWS Region of your user pool. Typically, the Region in the SourceArn and the user pool Region are the same. For more information, see Amazon SES email configuration regions in the Amazon Cognito Developer Guide .

          See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn

          Implements

          CfnUserPool.IEmailConfigurationProperty
          Back to top Generated by DocFX