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: