Class: Aws::SES::Types::VerifyDomainIdentityRequest

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

{
  domain: "Domain", # required
}

Represents a request to begin Amazon SES domain verification and to generate the TXT records that you must publish to the DNS server of your domain to complete the verification. For information about domain verification, see the [Amazon SES Developer Guide].

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

Instance Attribute Summary collapse

Instance Attribute Details

#domainString

The domain to be verified.

Returns:

  • (String)


5690
5691
5692
5693
# File 'lib/aws-sdk-ses/types.rb', line 5690

class VerifyDomainIdentityRequest < Struct.new(
  :domain)
  include Aws::Structure
end