/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the status of Amazon SES Easy DKIM signing for an identity. For
* domain identities, this response also contains the DKIM tokens that are required
* for Easy DKIM signing, and whether Amazon SES successfully verified that these
* tokens were published.See Also:
AWS
* API Reference
The DKIM attributes for an email address or a domain.
*/ inline const Aws::MapThe DKIM attributes for an email address or a domain.
*/ inline void SetDkimAttributes(const Aws::MapThe DKIM attributes for an email address or a domain.
*/ inline void SetDkimAttributes(Aws::MapThe DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& WithDkimAttributes(const Aws::MapThe DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& WithDkimAttributes(Aws::MapThe DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& AddDkimAttributes(const Aws::String& key, const IdentityDkimAttributes& value) { m_dkimAttributes.emplace(key, value); return *this; } /** *The DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& AddDkimAttributes(Aws::String&& key, const IdentityDkimAttributes& value) { m_dkimAttributes.emplace(std::move(key), value); return *this; } /** *The DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& AddDkimAttributes(const Aws::String& key, IdentityDkimAttributes&& value) { m_dkimAttributes.emplace(key, std::move(value)); return *this; } /** *The DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& AddDkimAttributes(Aws::String&& key, IdentityDkimAttributes&& value) { m_dkimAttributes.emplace(std::move(key), std::move(value)); return *this; } /** *The DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& AddDkimAttributes(const char* key, IdentityDkimAttributes&& value) { m_dkimAttributes.emplace(key, std::move(value)); return *this; } /** *The DKIM attributes for an email address or a domain.
*/ inline GetIdentityDkimAttributesResult& AddDkimAttributes(const char* key, const IdentityDkimAttributes& value) { m_dkimAttributes.emplace(key, 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 GetIdentityDkimAttributesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetIdentityDkimAttributesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Map