This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appstream/include/aws/appstream/model/UpdateFleetResult.h

68 lines
1.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appstream/AppStream_EXPORTS.h>
#include <aws/appstream/model/Fleet.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
UpdateFleetResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Information about the fleet.</p>
*/
inline const Fleet& GetFleet() const{ return m_fleet; }
/**
* <p>Information about the fleet.</p>
*/
inline void SetFleet(const Fleet& value) { m_fleet = value; }
/**
* <p>Information about the fleet.</p>
*/
inline void SetFleet(Fleet&& value) { m_fleet = std::move(value); }
/**
* <p>Information about the fleet.</p>
*/
inline UpdateFleetResult& WithFleet(const Fleet& value) { SetFleet(value); return *this;}
/**
* <p>Information about the fleet.</p>
*/
inline UpdateFleetResult& WithFleet(Fleet&& value) { SetFleet(std::move(value)); return *this;}
private:
Fleet m_fleet;
};
} // namespace Model
} // namespace AppStream
} // namespace Aws