aws-cdk-lib.aws_rds.ProcessorFeatures

interface ProcessorFeatures

LanguageType name
.NETAmazon.CDK.AWS.RDS.ProcessorFeatures
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#ProcessorFeatures
Javasoftware.amazon.awscdk.services.rds.ProcessorFeatures
Pythonaws_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

NameTypeDescription
coreCount?numberThe number of CPU core.
threadsPerCore?numberThe 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.