/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace SES { namespace Model { /** *

Returns CNAME records that you must publish to the DNS server of your domain * to set up Easy DKIM with Amazon SES.

See Also:

AWS * API Reference

*/ class VerifyDomainDkimResult { public: AWS_SES_API VerifyDomainDkimResult(); AWS_SES_API VerifyDomainDkimResult(const Aws::AmazonWebServiceResult& result); AWS_SES_API VerifyDomainDkimResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline const Aws::Vector& GetDkimTokens() const{ return m_dkimTokens; } /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline void SetDkimTokens(const Aws::Vector& value) { m_dkimTokens = value; } /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline void SetDkimTokens(Aws::Vector&& value) { m_dkimTokens = std::move(value); } /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline VerifyDomainDkimResult& WithDkimTokens(const Aws::Vector& value) { SetDkimTokens(value); return *this;} /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline VerifyDomainDkimResult& WithDkimTokens(Aws::Vector&& value) { SetDkimTokens(std::move(value)); return *this;} /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline VerifyDomainDkimResult& AddDkimTokens(const Aws::String& value) { m_dkimTokens.push_back(value); return *this; } /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline VerifyDomainDkimResult& AddDkimTokens(Aws::String&& value) { m_dkimTokens.push_back(std::move(value)); return *this; } /** *

A set of character strings that represent the domain's identity. If the * identity is an email address, the tokens represent the domain of that * address.

Using these tokens, you need to create DNS CNAME records that * point to DKIM public keys that are hosted by Amazon SES. Amazon Web Services * eventually detects that you've updated your DNS records. This detection process * might take up to 72 hours. After successful detection, Amazon SES is able to * DKIM-sign email originating from that domain. (This only applies to domain * identities, not email address identities.)

For more information about * creating DNS records using DKIM tokens, see the Amazon * SES Developer Guide.

*/ inline VerifyDomainDkimResult& AddDkimTokens(const char* value) { m_dkimTokens.push_back(value); return *this; } inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline VerifyDomainDkimResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline VerifyDomainDkimResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_dkimTokens; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace SES } // namespace Aws