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 Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forProcessorFeaturesstatic final classAn implementation forProcessorFeatures -
Method Summary
Modifier 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
-
getCoreCount
The number of CPU core.Default: - the default number of CPU cores for the chosen instance class.
-
getThreadsPerCore
The number of threads per core.Default: - the default number of threads per core for the chosen instance class.
-
builder
- Returns:
- a
ProcessorFeatures.BuilderofProcessorFeatures
-