aws-cdk-lib.aws_autoscaling.CfnAutoScalingGroup.AcceleratorCountRequestProperty

interface AcceleratorCountRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.AcceleratorCountRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_AcceleratorCountRequestProperty
Javasoftware.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.AcceleratorCountRequestProperty
Pythonaws_cdk.aws_autoscaling.CfnAutoScalingGroup.AcceleratorCountRequestProperty
TypeScript aws-cdk-lib » aws_autoscaling » CfnAutoScalingGroup » AcceleratorCountRequestProperty

AcceleratorCountRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum number of accelerators 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 { aws_autoscaling as autoscaling } from 'aws-cdk-lib';
const acceleratorCountRequestProperty: autoscaling.CfnAutoScalingGroup.AcceleratorCountRequestProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe maximum value.
min?numberThe minimum value.

max?

Type: number (optional)

The maximum value.


min?

Type: number (optional)

The minimum value.