/** * 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 FPGA accelerator for the instance * type.

See Also:

AWS * API Reference

*/ class FpgaDeviceMemoryInfo { public: AWS_EC2_API FpgaDeviceMemoryInfo(); AWS_EC2_API FpgaDeviceMemoryInfo(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API FpgaDeviceMemoryInfo& 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 available to the FPGA accelerator, in MiB.

*/ inline int GetSizeInMiB() const{ return m_sizeInMiB; } /** *

The size of the memory available to the FPGA accelerator, in MiB.

*/ inline bool SizeInMiBHasBeenSet() const { return m_sizeInMiBHasBeenSet; } /** *

The size of the memory available to the FPGA accelerator, in MiB.

*/ inline void SetSizeInMiB(int value) { m_sizeInMiBHasBeenSet = true; m_sizeInMiB = value; } /** *

The size of the memory available to the FPGA accelerator, in MiB.

*/ inline FpgaDeviceMemoryInfo& WithSizeInMiB(int value) { SetSizeInMiB(value); return *this;} private: int m_sizeInMiB; bool m_sizeInMiBHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws