Sha256: 9266f62eaf74fd260048a2e1c4b1dd950290f724d880ad3f12cd9829395d64b8
Contents?: true
Size: 913 Bytes
Versions: 98
Compression:
Stored size: 913 Bytes
Contents
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_identity(domain) request({ 'Action' => 'VerifyDomainIdentity', 'Domain' => domain, :parser => Fog::Parsers::AWS::SES::VerifyDomainIdentity.new }) end end end end end
Version data entries
98 entries across 96 versions & 6 rubygems