/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace SNS { namespace Model { class GetSMSSandboxAccountStatusResult { public: AWS_SNS_API GetSMSSandboxAccountStatusResult(); AWS_SNS_API GetSMSSandboxAccountStatusResult(const Aws::AmazonWebServiceResult& result); AWS_SNS_API GetSMSSandboxAccountStatusResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Indicates whether the calling Amazon Web Services account is in the SMS * sandbox.

*/ inline bool GetIsInSandbox() const{ return m_isInSandbox; } /** *

Indicates whether the calling Amazon Web Services account is in the SMS * sandbox.

*/ inline void SetIsInSandbox(bool value) { m_isInSandbox = value; } /** *

Indicates whether the calling Amazon Web Services account is in the SMS * sandbox.

*/ inline GetSMSSandboxAccountStatusResult& WithIsInSandbox(bool value) { SetIsInSandbox(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 GetSMSSandboxAccountStatusResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetSMSSandboxAccountStatusResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: bool m_isInSandbox; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace SNS } // namespace Aws