interface ProcessorFeatures
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.ProcessorFeatures |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#ProcessorFeatures |
Java | software.amazon.awscdk.services.rds.ProcessorFeatures |
Python | aws_cdk.aws_rds.ProcessorFeatures |
TypeScript (source) | aws-cdk-lib » 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 { aws_rds as rds } from 'aws-cdk-lib';
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.