/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DirectoryService { namespace Model { /** *

Contains the results of the GetSnapshotLimits operation.

See * Also:

AWS * API Reference

*/ class AWS_DIRECTORYSERVICE_API GetSnapshotLimitsResult { public: GetSnapshotLimitsResult(); GetSnapshotLimitsResult(const Aws::AmazonWebServiceResult& result); GetSnapshotLimitsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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