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-mobile/include/aws/mobile/model/DescribeProjectResult.h

64 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/mobile/Mobile_EXPORTS.h>
#include <aws/mobile/model/ProjectDetails.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Mobile
{
namespace Model
{
/**
* <p> Result structure used for requests of project details. </p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeProjectResult">AWS
* API Reference</a></p>
*/
class AWS_MOBILE_API DescribeProjectResult
{
public:
DescribeProjectResult();
DescribeProjectResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeProjectResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
inline const ProjectDetails& GetDetails() const{ return m_details; }
inline void SetDetails(const ProjectDetails& value) { m_details = value; }
inline void SetDetails(ProjectDetails&& value) { m_details = std::move(value); }
inline DescribeProjectResult& WithDetails(const ProjectDetails& value) { SetDetails(value); return *this;}
inline DescribeProjectResult& WithDetails(ProjectDetails&& value) { SetDetails(std::move(value)); return *this;}
private:
ProjectDetails m_details;
};
} // namespace Model
} // namespace Mobile
} // namespace Aws