Interface CfnEC2Fleet.PerformanceFactorReferenceRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEC2Fleet.PerformanceFactorReferenceRequestProperty.Jsii$Proxy
Enclosing class:
CfnEC2Fleet

@Stability(Stable) public static interface CfnEC2Fleet.PerformanceFactorReferenceRequestProperty extends software.amazon.jsii.JsiiSerializable
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.

Currently, only one instance family can be specified in the list.

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.*;
 PerformanceFactorReferenceRequestProperty performanceFactorReferenceRequestProperty = PerformanceFactorReferenceRequestProperty.builder()
         .instanceFamily("instanceFamily")
         .build();
 

See Also: