/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the processor features of a DB instance class. To specify the
* number of CPU cores, use the You can set the processor features of the DB instance class
* for a DB instance when you call one of the following actions:
*
* You can view the
* valid processor values for a particular instance class by calling the
* In
* addition, you can use the following actions for DB instance class processor
* information:
* If you
* call You
* are accessing an Oracle DB instance. Your Oracle DB instance
* class supports configuring the number of CPU cores and threads per core. The current number CPU cores and threads is set to a non-default
* value. For more information, see Configuring
* the Processor of the DB Instance Class in the Amazon RDS User Guide.
* coreCount
feature name for the
* Name
parameter. To specify the number of threads per core, use the
* threadsPerCore
feature name for the Name
* parameter.
CreateDBInstance
ModifyDBInstance
* RestoreDBInstanceFromDBSnapshot
RestoreDBInstanceFromS3
RestoreDBInstanceToPointInTime
DescribeOrderableDBInstanceOptions
action and specifying the
* instance class for the DBInstanceClass
parameter.
DescribeDBInstances
DescribeDBSnapshots
DescribeValidDBInstanceModifications
DescribeDBInstances
, ProcessorFeature
returns
* non-null values only if the following conditions are met:
See Also:
AWS
* API Reference
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The name of the processor feature. Valid names are coreCount
and
* threadsPerCore
.
The value of a processor feature name.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The value of a processor feature name.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The value of a processor feature name.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The value of a processor feature name.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The value of a processor feature name.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The value of a processor feature name.
*/ inline ProcessorFeature& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The value of a processor feature name.
*/ inline ProcessorFeature& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The value of a processor feature name.
*/ inline ProcessorFeature& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws