Interface CfnEC2Fleet.CpuPerformanceFactorRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEC2Fleet.CpuPerformanceFactorRequestProperty.Jsii$Proxy
- Enclosing class:
CfnEC2Fleet
@Stability(Stable)
public static interface CfnEC2Fleet.CpuPerformanceFactorRequestProperty
extends software.amazon.jsii.JsiiSerializable
The CPU performance to consider, using an instance family as the baseline reference.
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.ec2.*; CpuPerformanceFactorRequestProperty cpuPerformanceFactorRequestProperty = CpuPerformanceFactorRequestProperty.builder() .references(List.of(PerformanceFactorReferenceRequestProperty.builder() .instanceFamily("instanceFamily") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEC2Fleet.CpuPerformanceFactorRequestProperty
static final class
An implementation forCfnEC2Fleet.CpuPerformanceFactorRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReferences
Specify an instance family to use as the baseline reference for CPU performance.All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
Currently, only one instance family can be specified in the list.
- See Also:
-
builder
-