You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-compute-optimizer): This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types.
* <p>Describes the configuration of an Auto Scaling group.</p>
118
+
* <p>Describes the configuration of an EC2 Auto Scaling group.</p>
91
119
* @public
92
120
*/
93
121
exportinterfaceAutoScalingGroupConfiguration{
94
122
/**
95
-
* <p>The desired capacity, or number of instances, for the Auto Scaling group.</p>
123
+
* <p>The desired capacity, or number of instances, for the EC2 Auto Scaling group.</p>
96
124
* @public
97
125
*/
98
126
desiredCapacity?: number|undefined;
99
127
100
128
/**
101
-
* <p>The minimum size, or minimum number of instances, for the Auto Scaling
129
+
* <p>The minimum size, or minimum number of instances, for the EC2 Auto Scaling
102
130
* group.</p>
103
131
* @public
104
132
*/
105
133
minSize?: number|undefined;
106
134
107
135
/**
108
-
* <p>The maximum size, or maximum number of instances, for the Auto Scaling
136
+
* <p>The maximum size, or maximum number of instances, for the EC2 Auto Scaling
109
137
* group.</p>
110
138
* @public
111
139
*/
112
140
maxSize?: number|undefined;
113
141
114
142
/**
115
-
* <p>The instance type for the Auto Scaling group.</p>
143
+
* <p>The instance type for the EC2 Auto Scaling group.</p>
116
144
* @public
117
145
*/
118
146
instanceType?: string|undefined;
147
+
148
+
/**
149
+
* <p>
150
+
* Describes the allocation strategy that the EC2 Auto Scaling group uses. This field is only available for EC2 Auto Scaling groups with mixed instance types.
* Describes the projected percentage reduction in instance hours after adopting the recommended configuration. This field is only available for EC2 Auto Scaling groups with scaling policies.
0 commit comments