93 lines
2.3 KiB
C++
93 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ec2/EC2_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>The CPU options for the instance.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CpuOptions">AWS API
|
|
* Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API CpuOptions
|
|
{
|
|
public:
|
|
CpuOptions();
|
|
CpuOptions(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
CpuOptions& 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;
|
|
|
|
|
|
/**
|
|
* <p>The number of CPU cores for the instance.</p>
|
|
*/
|
|
inline int GetCoreCount() const{ return m_coreCount; }
|
|
|
|
/**
|
|
* <p>The number of CPU cores for the instance.</p>
|
|
*/
|
|
inline bool CoreCountHasBeenSet() const { return m_coreCountHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The number of CPU cores for the instance.</p>
|
|
*/
|
|
inline void SetCoreCount(int value) { m_coreCountHasBeenSet = true; m_coreCount = value; }
|
|
|
|
/**
|
|
* <p>The number of CPU cores for the instance.</p>
|
|
*/
|
|
inline CpuOptions& WithCoreCount(int value) { SetCoreCount(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The number of threads per CPU core.</p>
|
|
*/
|
|
inline int GetThreadsPerCore() const{ return m_threadsPerCore; }
|
|
|
|
/**
|
|
* <p>The number of threads per CPU core.</p>
|
|
*/
|
|
inline bool ThreadsPerCoreHasBeenSet() const { return m_threadsPerCoreHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The number of threads per CPU core.</p>
|
|
*/
|
|
inline void SetThreadsPerCore(int value) { m_threadsPerCoreHasBeenSet = true; m_threadsPerCore = value; }
|
|
|
|
/**
|
|
* <p>The number of threads per CPU core.</p>
|
|
*/
|
|
inline CpuOptions& 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
|