79 lines
2.3 KiB
C++
79 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ds/DirectoryService_EXPORTS.h>
|
|
#include <aws/ds/model/SnapshotLimits.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DirectoryService
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Contains the results of the <a>GetSnapshotLimits</a> operation.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/GetSnapshotLimitsResult">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DIRECTORYSERVICE_API GetSnapshotLimitsResult
|
|
{
|
|
public:
|
|
GetSnapshotLimitsResult();
|
|
GetSnapshotLimitsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetSnapshotLimitsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>A <a>SnapshotLimits</a> object that contains the manual snapshot limits for
|
|
* the specified directory.</p>
|
|
*/
|
|
inline const SnapshotLimits& GetSnapshotLimits() const{ return m_snapshotLimits; }
|
|
|
|
/**
|
|
* <p>A <a>SnapshotLimits</a> object that contains the manual snapshot limits for
|
|
* the specified directory.</p>
|
|
*/
|
|
inline void SetSnapshotLimits(const SnapshotLimits& value) { m_snapshotLimits = value; }
|
|
|
|
/**
|
|
* <p>A <a>SnapshotLimits</a> object that contains the manual snapshot limits for
|
|
* the specified directory.</p>
|
|
*/
|
|
inline void SetSnapshotLimits(SnapshotLimits&& value) { m_snapshotLimits = std::move(value); }
|
|
|
|
/**
|
|
* <p>A <a>SnapshotLimits</a> object that contains the manual snapshot limits for
|
|
* the specified directory.</p>
|
|
*/
|
|
inline GetSnapshotLimitsResult& WithSnapshotLimits(const SnapshotLimits& value) { SetSnapshotLimits(value); return *this;}
|
|
|
|
/**
|
|
* <p>A <a>SnapshotLimits</a> object that contains the manual snapshot limits for
|
|
* the specified directory.</p>
|
|
*/
|
|
inline GetSnapshotLimitsResult& WithSnapshotLimits(SnapshotLimits&& value) { SetSnapshotLimits(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
SnapshotLimits m_snapshotLimits;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DirectoryService
|
|
} // namespace Aws
|