/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the memory for the instance type.See Also:
AWS API
* Reference
The size of the memory, in MiB.
*/ inline long long GetSizeInMiB() const{ return m_sizeInMiB; } /** *The size of the memory, in MiB.
*/ inline bool SizeInMiBHasBeenSet() const { return m_sizeInMiBHasBeenSet; } /** *The size of the memory, in MiB.
*/ inline void SetSizeInMiB(long long value) { m_sizeInMiBHasBeenSet = true; m_sizeInMiB = value; } /** *The size of the memory, in MiB.
*/ inline MemoryInfo& WithSizeInMiB(long long value) { SetSizeInMiB(value); return *this;} private: long long m_sizeInMiB; bool m_sizeInMiBHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws