/**
* 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetSnapshotLimitsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSnapshotLimitsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSnapshotLimitsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: SnapshotLimits m_snapshotLimits; Aws::String m_requestId; }; } // namespace Model } // namespace DirectoryService } // namespace Aws