/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about a provisional configuration.See Also:
AWS
* API Reference
Maximum time for the provisional configuration, in minutes.
*/ inline int GetMaxTimeToLiveInMinutes() const{ return m_maxTimeToLiveInMinutes; } /** *Maximum time for the provisional configuration, in minutes.
*/ inline bool MaxTimeToLiveInMinutesHasBeenSet() const { return m_maxTimeToLiveInMinutesHasBeenSet; } /** *Maximum time for the provisional configuration, in minutes.
*/ inline void SetMaxTimeToLiveInMinutes(int value) { m_maxTimeToLiveInMinutesHasBeenSet = true; m_maxTimeToLiveInMinutes = value; } /** *Maximum time for the provisional configuration, in minutes.
*/ inline ProvisionalConfiguration& WithMaxTimeToLiveInMinutes(int value) { SetMaxTimeToLiveInMinutes(value); return *this;} private: int m_maxTimeToLiveInMinutes; bool m_maxTimeToLiveInMinutesHasBeenSet = false; }; } // namespace Model } // namespace LicenseManager } // namespace Aws