/** * 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 { /** *

The CPU options for the instance. Both the core count and threads per core * must be specified in the request.

See Also:

AWS * API Reference

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

The number of CPU cores for the instance.

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

The number of CPU cores for the instance.

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

The number of CPU cores for the instance.

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

The number of CPU cores for the instance.

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

The number of threads per CPU core. To disable multithreading for the * instance, specify a value of 1. Otherwise, specify the default * value of 2.

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

The number of threads per CPU core. To disable multithreading for the * instance, specify a value of 1. Otherwise, specify the default * value of 2.

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

The number of threads per CPU core. To disable multithreading for the * instance, specify a value of 1. Otherwise, specify the default * value of 2.

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

The number of threads per CPU core. To disable multithreading for the * instance, specify a value of 1. Otherwise, specify the default * value of 2.

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