Interface ProcessorFeatures
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- ProcessorFeatures.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:49.253Z")
@Stability(Stable)
public interface ProcessorFeatures
extends software.amazon.jsii.JsiiSerializable
The processor features.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.rds.*;
 ProcessorFeatures processorFeatures = ProcessorFeatures.builder()
         .coreCount(123)
         .threadsPerCore(123)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forProcessorFeaturesstatic final classAn implementation forProcessorFeatures
- 
Method SummaryModifier and TypeMethodDescriptionstatic ProcessorFeatures.Builderbuilder()default NumberThe number of CPU core.default NumberThe number of threads per core.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getCoreCountThe number of CPU core.Default: - the default number of CPU cores for the chosen instance class. 
- 
getThreadsPerCoreThe number of threads per core.Default: - the default number of threads per core for the chosen instance class. 
- 
builder- Returns:
- a ProcessorFeatures.BuilderofProcessorFeatures
 
 
-