/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the results of the GetSnapshotLimits operation.See
* Also:
AWS
* API Reference
A SnapshotLimits object that contains the manual snapshot limits for * the specified directory.
*/ inline const SnapshotLimits& GetSnapshotLimits() const{ return m_snapshotLimits; } /** *A SnapshotLimits object that contains the manual snapshot limits for * the specified directory.
*/ inline void SetSnapshotLimits(const SnapshotLimits& value) { m_snapshotLimits = value; } /** *A SnapshotLimits object that contains the manual snapshot limits for * the specified directory.
*/ inline void SetSnapshotLimits(SnapshotLimits&& value) { m_snapshotLimits = std::move(value); } /** *A SnapshotLimits object that contains the manual snapshot limits for * the specified directory.
*/ inline GetSnapshotLimitsResult& WithSnapshotLimits(const SnapshotLimits& value) { SetSnapshotLimits(value); return *this;} /** *A SnapshotLimits object that contains the manual snapshot limits for * the specified directory.
*/ inline GetSnapshotLimitsResult& WithSnapshotLimits(SnapshotLimits&& value) { SetSnapshotLimits(std::move(value)); return *this;} private: SnapshotLimits m_snapshotLimits; }; } // namespace Model } // namespace DirectoryService } // namespace Aws