interface BaselinePerformanceFactorsRequestProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.BaselinePerformanceFactorsRequestProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#CfnAutoScalingGroup_BaselinePerformanceFactorsRequestProperty |
![]() | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.BaselinePerformanceFactorsRequestProperty |
![]() | aws_cdk.aws_autoscaling.CfnAutoScalingGroup.BaselinePerformanceFactorsRequestProperty |
![]() | aws-cdk-lib » aws_autoscaling » CfnAutoScalingGroup » BaselinePerformanceFactorsRequestProperty |
The baseline performance to consider, using an instance family as a baseline reference.
The instance family establishes the lowest acceptable level of performance. Auto Scaling uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying c6i
uses the CPU performance of the c6i
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 { aws_autoscaling as autoscaling } from 'aws-cdk-lib';
const baselinePerformanceFactorsRequestProperty: autoscaling.CfnAutoScalingGroup.BaselinePerformanceFactorsRequestProperty = {
cpu: {
references: [{
instanceFamily: 'instanceFamily',
}],
},
};
Properties
Name | Type | Description |
---|---|---|
cpu? | IResolvable | Cpu | The CPU performance to consider, using an instance family as the baseline reference. |
cpu?
Type:
IResolvable
|
Cpu
(optional)
The CPU performance to consider, using an instance family as the baseline reference.