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