ProcessorFeatures

class aws_cdk.aws_rds.ProcessorFeatures(*, core_count=None, threads_per_core=None)

Bases: object

The processor features.

Parameters:
  • core_count (Union[int, float, None]) – The number of CPU core. Default: - the default number of CPU cores for the chosen instance class.

  • threads_per_core (Union[int, float, None]) – The number of threads per core. Default: - the default number of threads per core for the chosen instance class.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_rds as rds

processor_features = rds.ProcessorFeatures(
    core_count=123,
    threads_per_core=123
)

Attributes

core_count

The number of CPU core.

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

threads_per_core

The number of threads per core.

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