Interface CfnLaunchTemplatePropsMixin.CpuProperty

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

@Stability(Stable) public static interface CfnLaunchTemplatePropsMixin.CpuProperty extends software.amazon.jsii.JsiiSerializable
Specifies the CPU performance to consider when 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.cfnpropertymixins.services.ec2.*;
 CpuProperty cpuProperty = CpuProperty.builder()
         .references(List.of(ReferenceProperty.builder()
                 .instanceFamily("instanceFamily")
                 .build()))
         .build();
 

See Also: