Show / Hide Table of Contents

Class ProcessorFeatures

The processor features.

Inheritance
object
ProcessorFeatures
Implements
IProcessorFeatures
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

double?

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

double?

Remarks

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

Implements

IProcessorFeatures
Back to top Generated by DocFX