/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The minimum and maximum amount of memory, in MiB.See Also:
* AWS
* API Reference
The minimum amount of memory, in MiB. To specify no minimum limit, specify
* 0
.
The minimum amount of memory, in MiB. To specify no minimum limit, specify
* 0
.
The minimum amount of memory, in MiB. To specify no minimum limit, specify
* 0
.
The minimum amount of memory, in MiB. To specify no minimum limit, specify
* 0
.
The maximum amount of memory, in MiB. To specify no maximum limit, omit this * parameter.
*/ inline int GetMax() const{ return m_max; } /** *The maximum amount of memory, in MiB. To specify no maximum limit, omit this * parameter.
*/ inline bool MaxHasBeenSet() const { return m_maxHasBeenSet; } /** *The maximum amount of memory, in MiB. To specify no maximum limit, omit this * parameter.
*/ inline void SetMax(int value) { m_maxHasBeenSet = true; m_max = value; } /** *The maximum amount of memory, in MiB. To specify no maximum limit, omit this * parameter.
*/ inline MemoryMiBRequest& WithMax(int value) { SetMax(value); return *this;} private: int m_min; bool m_minHasBeenSet = false; int m_max; bool m_maxHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws