/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to return the email sending status for your Amazon SES
* account in the current AWS Region.See Also:
AWS
* API Reference
Describes whether email sending is enabled or disabled for your Amazon SES * account in the current AWS Region.
*/ inline bool GetEnabled() const{ return m_enabled; } /** *Describes whether email sending is enabled or disabled for your Amazon SES * account in the current AWS Region.
*/ inline void SetEnabled(bool value) { m_enabled = value; } /** *Describes whether email sending is enabled or disabled for your Amazon SES * account in the current AWS Region.
*/ inline GetAccountSendingEnabledResult& WithEnabled(bool value) { SetEnabled(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 GetAccountSendingEnabledResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetAccountSendingEnabledResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: bool m_enabled; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace SES } // namespace Aws