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

The options for how a device's CPU is configured.

See Also:

* AWS * API Reference

*/ class CpuOptions { public: AWS_SNOWDEVICEMANAGEMENT_API CpuOptions(); AWS_SNOWDEVICEMANAGEMENT_API CpuOptions(Aws::Utils::Json::JsonView jsonValue); AWS_SNOWDEVICEMANAGEMENT_API CpuOptions& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SNOWDEVICEMANAGEMENT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The number of cores that the CPU can use.

*/ inline int GetCoreCount() const{ return m_coreCount; } /** *

The number of cores that the CPU can use.

*/ inline bool CoreCountHasBeenSet() const { return m_coreCountHasBeenSet; } /** *

The number of cores that the CPU can use.

*/ inline void SetCoreCount(int value) { m_coreCountHasBeenSet = true; m_coreCount = value; } /** *

The number of cores that the CPU can use.

*/ inline CpuOptions& WithCoreCount(int value) { SetCoreCount(value); return *this;} /** *

The number of threads per core in the CPU.

*/ inline int GetThreadsPerCore() const{ return m_threadsPerCore; } /** *

The number of threads per core in the CPU.

*/ inline bool ThreadsPerCoreHasBeenSet() const { return m_threadsPerCoreHasBeenSet; } /** *

The number of threads per core in the CPU.

*/ inline void SetThreadsPerCore(int value) { m_threadsPerCoreHasBeenSet = true; m_threadsPerCore = value; } /** *

The number of threads per core in the CPU.

*/ inline CpuOptions& WithThreadsPerCore(int value) { SetThreadsPerCore(value); return *this;} private: int m_coreCount; bool m_coreCountHasBeenSet = false; int m_threadsPerCore; bool m_threadsPerCoreHasBeenSet = false; }; } // namespace Model } // namespace SnowDeviceManagement } // namespace Aws