Interface CfnLaunchTemplate.CpuOptionsProperty

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

@Stability(Stable) public static interface CfnLaunchTemplate.CpuOptionsProperty extends software.amazon.jsii.JsiiSerializable
Specifies the CPU options for an instance.

For more information, see Optimize CPU options in the Amazon Elastic Compute Cloud User Guide .

CpuOptions is a property of AWS::EC2::LaunchTemplate LaunchTemplateData .

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.*;
 CpuOptionsProperty cpuOptionsProperty = CpuOptionsProperty.builder()
         .amdSevSnp("amdSevSnp")
         .coreCount(123)
         .threadsPerCore(123)
         .build();
 

See Also: