1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/ses/verify_domain_identity.rb
2013-07-01 12:18:42 -07:00

30 lines
906 B
Ruby

module Fog
module AWS
class SES
class Real
require 'fog/aws/parsers/ses/verify_domain_identity'
# Verifies a domain. This action returns a verification authorization
# token which must be added as a DNS TXT record to the domain.
#
# ==== Parameters
# * domain<~String> - The domain to be verified
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'ResponseMetadata'<~Hash>:
# * 'VerificationToken'<~String> - Verification token
# * 'RequestId'<~String> - Id of request
def verify_domain(domain)
request({
'Action' => 'VerifyDomainIdentity',
'Domain' => domain,
:parser => Fog::Parsers::AWS::SES::VerifyDomainIdentity.new
})
end
end
end
end
end