Interface CfnAutoScalingGroup.VCpuCountRequestProperty

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

@Stability(Stable) public static interface CfnAutoScalingGroup.VCpuCountRequestProperty extends software.amazon.jsii.JsiiSerializable
VCpuCountRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum number of vCPUs for an instance type.

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.autoscaling.*;
 VCpuCountRequestProperty vCpuCountRequestProperty = VCpuCountRequestProperty.builder()
         .max(123)
         .min(123)
         .build();
 

See Also: