Show / Hide Table of Contents

Interface IProcessorFeatures

The processor features.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IProcessorFeatures
Syntax (vb)
Public Interface 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

Properties

CoreCount

The number of CPU core.

ThreadsPerCore

The number of threads per core.

Properties

CoreCount

The number of CPU core.

double? CoreCount { get; }
Property Value

double?

Remarks

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

ThreadsPerCore

The number of threads per core.

double? ThreadsPerCore { get; }
Property Value

double?

Remarks

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

Back to top Generated by DocFX