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

Returns true if the Lightsail VPC is peered; otherwise, * false.

*/ inline bool GetIsPeered() const{ return m_isPeered; } /** *

Returns true if the Lightsail VPC is peered; otherwise, * false.

*/ inline void SetIsPeered(bool value) { m_isPeered = value; } /** *

Returns true if the Lightsail VPC is peered; otherwise, * false.

*/ inline IsVpcPeeredResult& WithIsPeered(bool value) { SetIsPeered(value); return *this;} private: bool m_isPeered; }; } // namespace Model } // namespace Lightsail } // namespace Aws