Class: Aws::SES::Types::VerifyDomainDkimRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::VerifyDomainDkimRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Note:
When making an API call, you may pass VerifyDomainDkimRequest data as a hash:
{
domain: "Domain", # required
}
Represents a request to generate the CNAME records needed to set up Easy DKIM with Amazon SES. For more information about setting up Easy DKIM, see the [Amazon SES Developer Guide].
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain to be verified for Easy DKIM signing.
Instance Attribute Details
#domain ⇒ String
The name of the domain to be verified for Easy DKIM signing.
5633 5634 5635 5636 |
# File 'lib/aws-sdk-ses/types.rb', line 5633 class VerifyDomainDkimRequest < Struct.new( :domain) include Aws::Structure end |