Class: Aws::SES::Types::VerifyEmailAddressRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::VerifyEmailAddressRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
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/dg/creating-identities.html#verify-email-addresses-procedure
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_address ⇒ String
The email address to be verified.
Instance Attribute Details
#email_address ⇒ String
The email address to be verified.
5339 5340 5341 5342 5343 |
# File 'lib/aws-sdk-ses/types.rb', line 5339 class VerifyEmailAddressRequest < Struct.new( :email_address) SENSITIVE = [] include Aws::Structure end |