interface AcceleratorCountRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AutoScaling.CfnAutoScalingGroupPropsMixin.AcceleratorCountRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsautoscaling#CfnAutoScalingGroupPropsMixin_AcceleratorCountRequestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.autoscaling.CfnAutoScalingGroupPropsMixin.AcceleratorCountRequestProperty |
Python | aws_cdk.cfn_property_mixins.aws_autoscaling.CfnAutoScalingGroupPropsMixin.AcceleratorCountRequestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_autoscaling » CfnAutoScalingGroupPropsMixin » 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/cfn-property-mixins';
const acceleratorCountRequestProperty: autoscaling.CfnAutoScalingGroupPropsMixin.AcceleratorCountRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum value. |
| min? | number | The minimum value. |
max?
Type:
number
(optional)
The maximum value.
min?
Type:
number
(optional)
The minimum value.

.NET
Go
Java
Python
TypeScript