Class ProcessorFeatures
The processor features.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ProcessorFeatures : IProcessorFeatures
Syntax (vb)
Public Class ProcessorFeatures Implements IProcessorFeatures
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var processorFeatures = new ProcessorFeatures {
CoreCount = 123,
ThreadsPerCore = 123
};
Synopsis
Constructors
| ProcessorFeatures() | The processor features. |
Properties
| CoreCount | The number of CPU core. |
| ThreadsPerCore | The number of threads per core. |
Constructors
ProcessorFeatures()
The processor features.
public ProcessorFeatures()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var processorFeatures = new ProcessorFeatures {
CoreCount = 123,
ThreadsPerCore = 123
};
Properties
CoreCount
The number of CPU core.
public double? CoreCount { get; set; }
Property Value
Remarks
Default: - the default number of CPU cores for the chosen instance class.
ThreadsPerCore
The number of threads per core.
public double? ThreadsPerCore { get; set; }
Property Value
Remarks
Default: - the default number of threads per core for the chosen instance class.