/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to enable or disable the email sending capabilities for
* your entire Amazon SES account.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 bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *Describes whether email sending is enabled or disabled for your Amazon SES * account in the current AWS Region.
*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *Describes whether email sending is enabled or disabled for your Amazon SES * account in the current AWS Region.
*/ inline UpdateAccountSendingEnabledRequest& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws