/** * 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 EC2 { namespace Model { class AWS_EC2_API DisableImageDeprecationResponse { public: DisableImageDeprecationResponse(); DisableImageDeprecationResponse(const Aws::AmazonWebServiceResult& result); DisableImageDeprecationResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

Returns true if the request succeeds; otherwise, it returns an * error.

*/ inline bool GetReturn() const{ return m_return; } /** *

Returns true if the request succeeds; otherwise, it returns an * error.

*/ inline void SetReturn(bool value) { m_return = value; } /** *

Returns true if the request succeeds; otherwise, it returns an * error.

*/ inline DisableImageDeprecationResponse& WithReturn(bool value) { SetReturn(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 DisableImageDeprecationResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DisableImageDeprecationResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: bool m_return; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws