Class: Aws::SES::Types::VerifyEmailAddressRequest

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

{
  email_address: "Address", # required
}

Represents a request to begin email address verification with Amazon SES. For information about email address verification, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html

Instance Attribute Summary collapse

Instance Attribute Details

#email_addressString

The email address to be verified.

Returns:

  • (String)


5739
5740
5741
5742
# File 'lib/aws-sdk-ses/types.rb', line 5739

class VerifyEmailAddressRequest < Struct.new(
  :email_address)
  include Aws::Structure
end