Class: Aws::SES::Types::UpdateCustomVerificationEmailTemplateRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass UpdateCustomVerificationEmailTemplateRequest data as a hash:

{
  template_name: "TemplateName", # required
  from_email_address: "FromAddress",
  template_subject: "Subject",
  template_content: "TemplateContent",
  success_redirection_url: "SuccessRedirectionURL",
  failure_redirection_url: "FailureRedirectionURL",
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#failure_redirection_urlString

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

Returns:

  • (String)


5492
5493
5494
5495
5496
5497
5498
5499
5500
# File 'lib/aws-sdk-ses/types.rb', line 5492

class UpdateCustomVerificationEmailTemplateRequest < Struct.new(
  :template_name,
  :from_email_address,
  :template_subject,
  :template_content,
  :success_redirection_url,
  :failure_redirection_url)
  include Aws::Structure
end

#from_email_addressString

The email address that the custom verification email is sent from.

Returns:

  • (String)


5492
5493
5494
5495
5496
5497
5498
5499
5500
# File 'lib/aws-sdk-ses/types.rb', line 5492

class UpdateCustomVerificationEmailTemplateRequest < Struct.new(
  :template_name,
  :from_email_address,
  :template_subject,
  :template_content,
  :success_redirection_url,
  :failure_redirection_url)
  include Aws::Structure
end

#success_redirection_urlString

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

Returns:

  • (String)


5492
5493
5494
5495
5496
5497
5498
5499
5500
# File 'lib/aws-sdk-ses/types.rb', line 5492

class UpdateCustomVerificationEmailTemplateRequest < Struct.new(
  :template_name,
  :from_email_address,
  :template_subject,
  :template_content,
  :success_redirection_url,
  :failure_redirection_url)
  include Aws::Structure
end

#template_contentString

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*.

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html#custom-verification-emails-faq

Returns:

  • (String)


5492
5493
5494
5495
5496
5497
5498
5499
5500
# File 'lib/aws-sdk-ses/types.rb', line 5492

class UpdateCustomVerificationEmailTemplateRequest < Struct.new(
  :template_name,
  :from_email_address,
  :template_subject,
  :template_content,
  :success_redirection_url,
  :failure_redirection_url)
  include Aws::Structure
end

#template_nameString

The name of the custom verification email template that you want to update.

Returns:

  • (String)


5492
5493
5494
5495
5496
5497
5498
5499
5500
# File 'lib/aws-sdk-ses/types.rb', line 5492

class UpdateCustomVerificationEmailTemplateRequest < Struct.new(
  :template_name,
  :from_email_address,
  :template_subject,
  :template_content,
  :success_redirection_url,
  :failure_redirection_url)
  include Aws::Structure
end

#template_subjectString

The subject line of the custom verification email.

Returns:

  • (String)


5492
5493
5494
5495
5496
5497
5498
5499
5500
# File 'lib/aws-sdk-ses/types.rb', line 5492

class UpdateCustomVerificationEmailTemplateRequest < Struct.new(
  :template_name,
  :from_email_address,
  :template_subject,
  :template_content,
  :success_redirection_url,
  :failure_redirection_url)
  include Aws::Structure
end