interface ProcessorFeatures
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.ProcessorFeatures |
Java | software.amazon.awscdk.services.rds.ProcessorFeatures |
Python | aws_cdk.aws_rds.ProcessorFeatures |
TypeScript (source) | @aws-cdk/aws-rds » ProcessorFeatures |
The processor features.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as rds from '@aws-cdk/aws-rds';
const processorFeatures: rds.ProcessorFeatures = {
coreCount: 123,
threadsPerCore: 123,
};
Properties
Name | Type | Description |
---|---|---|
core | number | The number of CPU core. |
threads | number | The number of threads per core. |
coreCount?
Type:
number
(optional, default: the default number of CPU cores for the chosen instance class.)
The number of CPU core.
threadsPerCore?
Type:
number
(optional, default: the default number of threads per core for the chosen instance class.)
The number of threads per core.