AWSSESUpdateCustomVerificationEmailTemplateRequest

Objective-C

@interface AWSSESUpdateCustomVerificationEmailTemplateRequest

Swift

class AWSSESUpdateCustomVerificationEmailTemplateRequest

Represents a request to update an existing custom verification email template.

Required parameters: [TemplateName]

  • The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable failureRedirectionURL;

    Swift

    var failureRedirectionURL: String? { get set }
  • The email address that the custom verification email is sent from.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable fromEmailAddress;

    Swift

    var fromEmailAddress: String? { get set }
  • The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable successRedirectionURL;

    Swift

    var successRedirectionURL: String? { get set }
  • The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations. For more information, see Custom Verification Email Frequently Asked Questions in the Amazon SES Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateContent;

    Swift

    var templateContent: String? { get set }
  • The name of the custom verification email template to update.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateName;

    Swift

    var templateName: String? { get set }
  • The subject line of the custom verification email.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateSubject;

    Swift

    var templateSubject: String? { get set }