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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forProcessorFeatures
static final class
An implementation forProcessorFeatures
-
Method Summary
Modifier and TypeMethodDescriptionstatic ProcessorFeatures.Builder
builder()
default Number
The number of CPU core.default Number
The 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.Builder
ofProcessorFeatures
-