Class: Aws::SES::Types::SendCustomVerificationEmailRequest

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 SendCustomVerificationEmailRequest data as a hash:

{
  email_address: "Address", # required
  template_name: "TemplateName", # required
  configuration_set_name: "ConfigurationSetName",
}

Represents a request to send a custom verification email to a specified recipient.

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

Name of a configuration set to use when sending the verification email.

Returns:

  • (String)


4096
4097
4098
4099
4100
4101
# File 'lib/aws-sdk-ses/types.rb', line 4096

class SendCustomVerificationEmailRequest < Struct.new(
  :email_address,
  :template_name,
  :configuration_set_name)
  include Aws::Structure
end

#email_addressString

The email address to verify.

Returns:

  • (String)


4096
4097
4098
4099
4100
4101
# File 'lib/aws-sdk-ses/types.rb', line 4096

class SendCustomVerificationEmailRequest < Struct.new(
  :email_address,
  :template_name,
  :configuration_set_name)
  include Aws::Structure
end

#template_nameString

The name of the custom verification email template to use when sending the verification email.

Returns:

  • (String)


4096
4097
4098
4099
4100
4101
# File 'lib/aws-sdk-ses/types.rb', line 4096

class SendCustomVerificationEmailRequest < Struct.new(
  :email_address,
  :template_name,
  :configuration_set_name)
  include Aws::Structure
end