Show / Hide Table of Contents

Class ProcessorFeatures

The processor features.

Inheritance
System.Object
ProcessorFeatures
Implements
IProcessorFeatures
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class ProcessorFeatures : Object, IProcessorFeatures
Syntax (vb)
Public Class ProcessorFeatures
    Inherits Object
    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()

Properties

CoreCount

The number of CPU core.

ThreadsPerCore

The number of threads per core.

Constructors

ProcessorFeatures()

public ProcessorFeatures()

Properties

CoreCount

The number of CPU core.

public Nullable<double> CoreCount { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - the default number of CPU cores for the chosen instance class.

ThreadsPerCore

The number of threads per core.

public Nullable<double> ThreadsPerCore { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: - the default number of threads per core for the chosen instance class.

Implements

IProcessorFeatures
Back to top Generated by DocFX