/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the minimum and maximum for the MemoryMiB
object when
* you specify InstanceRequirements for an Auto Scaling group.See
* Also:
AWS
* API Reference
The memory minimum in MiB.
*/ inline int GetMin() const{ return m_min; } /** *The memory minimum in MiB.
*/ inline bool MinHasBeenSet() const { return m_minHasBeenSet; } /** *The memory minimum in MiB.
*/ inline void SetMin(int value) { m_minHasBeenSet = true; m_min = value; } /** *The memory minimum in MiB.
*/ inline MemoryMiBRequest& WithMin(int value) { SetMin(value); return *this;} /** *The memory maximum in MiB.
*/ inline int GetMax() const{ return m_max; } /** *The memory maximum in MiB.
*/ inline bool MaxHasBeenSet() const { return m_maxHasBeenSet; } /** *The memory maximum in MiB.
*/ inline void SetMax(int value) { m_maxHasBeenSet = true; m_max = value; } /** *The memory maximum in MiB.
*/ 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 AutoScaling } // namespace Aws