/** * 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 Json { class JsonValue; } // namespace Json } // namespace Utils namespace AppStream { namespace Model { class AWS_APPSTREAM_API UpdateFleetResult { public: UpdateFleetResult(); UpdateFleetResult(const Aws::AmazonWebServiceResult& result); UpdateFleetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the fleet.

*/ inline const Fleet& GetFleet() const{ return m_fleet; } /** *

Information about the fleet.

*/ inline void SetFleet(const Fleet& value) { m_fleet = value; } /** *

Information about the fleet.

*/ inline void SetFleet(Fleet&& value) { m_fleet = std::move(value); } /** *

Information about the fleet.

*/ inline UpdateFleetResult& WithFleet(const Fleet& value) { SetFleet(value); return *this;} /** *

Information about the fleet.

*/ inline UpdateFleetResult& WithFleet(Fleet&& value) { SetFleet(std::move(value)); return *this;} private: Fleet m_fleet; }; } // namespace Model } // namespace AppStream } // namespace Aws