74 lines
1.8 KiB
C++
74 lines
1.8 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/BundleDetails.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 contains the details of the bundle. </p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/mobile-2017-07-01/DescribeBundleResult">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_MOBILE_API DescribeBundleResult
|
|
{
|
|
public:
|
|
DescribeBundleResult();
|
|
DescribeBundleResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeBundleResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p> The details of the bundle. </p>
|
|
*/
|
|
inline const BundleDetails& GetDetails() const{ return m_details; }
|
|
|
|
/**
|
|
* <p> The details of the bundle. </p>
|
|
*/
|
|
inline void SetDetails(const BundleDetails& value) { m_details = value; }
|
|
|
|
/**
|
|
* <p> The details of the bundle. </p>
|
|
*/
|
|
inline void SetDetails(BundleDetails&& value) { m_details = std::move(value); }
|
|
|
|
/**
|
|
* <p> The details of the bundle. </p>
|
|
*/
|
|
inline DescribeBundleResult& WithDetails(const BundleDetails& value) { SetDetails(value); return *this;}
|
|
|
|
/**
|
|
* <p> The details of the bundle. </p>
|
|
*/
|
|
inline DescribeBundleResult& WithDetails(BundleDetails&& value) { SetDetails(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
BundleDetails m_details;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Mobile
|
|
} // namespace Aws
|