/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes the memory for the instance type.

See Also:

AWS API * Reference

*/ class MemoryInfo { public: AWS_EC2_API MemoryInfo(); AWS_EC2_API MemoryInfo(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API MemoryInfo& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

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