@aws-sdk/client-auto-scaling 3.428.0 → 3.429.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -325,7 +325,7 @@ export interface CreateAutoScalingGroupCommandOutput extends __MetadataBearer {
|
|
|
325
325
|
* const input = {
|
|
326
326
|
* "AutoScalingGroupName": "my-asg",
|
|
327
327
|
* "DesiredCapacity": 4,
|
|
328
|
-
* "
|
|
328
|
+
* "DesiredCapacityType": "units",
|
|
329
329
|
* "MaxSize": 100,
|
|
330
330
|
* "MinSize": 0,
|
|
331
331
|
* "MixedInstancesPolicy": {
|
|
@@ -154,7 +154,7 @@ export interface Activity {
|
|
|
154
154
|
* @public
|
|
155
155
|
* <p>The current status of the activity.</p>
|
|
156
156
|
*/
|
|
157
|
-
StatusCode: ScalingActivityStatusCode |
|
|
157
|
+
StatusCode: ScalingActivityStatusCode | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* @public
|
|
160
160
|
* <p>A friendly, more verbose description of the activity status.</p>
|
|
@@ -1126,7 +1126,7 @@ export interface InstanceRequirements {
|
|
|
1126
1126
|
* </note>
|
|
1127
1127
|
* <p>Default: Any manufacturer</p>
|
|
1128
1128
|
*/
|
|
1129
|
-
CpuManufacturers?:
|
|
1129
|
+
CpuManufacturers?: CpuManufacturer[];
|
|
1130
1130
|
/**
|
|
1131
1131
|
* @public
|
|
1132
1132
|
* <p>The minimum and maximum amount of memory per vCPU for an instance type, in GiB.</p>
|
|
@@ -1167,7 +1167,7 @@ export interface InstanceRequirements {
|
|
|
1167
1167
|
* </ul>
|
|
1168
1168
|
* <p>Default: Any current or previous generation</p>
|
|
1169
1169
|
*/
|
|
1170
|
-
InstanceGenerations?:
|
|
1170
|
+
InstanceGenerations?: InstanceGeneration[];
|
|
1171
1171
|
/**
|
|
1172
1172
|
* @public
|
|
1173
1173
|
* <p>The price protection threshold for Spot Instances. This is the maximum you’ll pay for
|
|
@@ -1207,7 +1207,7 @@ export interface InstanceRequirements {
|
|
|
1207
1207
|
* <p>Default: <code>excluded</code>
|
|
1208
1208
|
* </p>
|
|
1209
1209
|
*/
|
|
1210
|
-
BareMetal?: BareMetal
|
|
1210
|
+
BareMetal?: BareMetal;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* @public
|
|
1213
1213
|
* <p>Indicates whether burstable performance instance types are included, excluded, or
|
|
@@ -1216,7 +1216,7 @@ export interface InstanceRequirements {
|
|
|
1216
1216
|
* <p>Default: <code>excluded</code>
|
|
1217
1217
|
* </p>
|
|
1218
1218
|
*/
|
|
1219
|
-
BurstablePerformance?: BurstablePerformance
|
|
1219
|
+
BurstablePerformance?: BurstablePerformance;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* @public
|
|
1222
1222
|
* <p>Indicates whether instance types must provide On-Demand Instance hibernation
|
|
@@ -1239,7 +1239,7 @@ export interface InstanceRequirements {
|
|
|
1239
1239
|
* <p>Default: <code>included</code>
|
|
1240
1240
|
* </p>
|
|
1241
1241
|
*/
|
|
1242
|
-
LocalStorage?: LocalStorage
|
|
1242
|
+
LocalStorage?: LocalStorage;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* @public
|
|
1245
1245
|
* <p>Indicates the type of local storage that is required.</p>
|
|
@@ -1255,7 +1255,7 @@ export interface InstanceRequirements {
|
|
|
1255
1255
|
* </ul>
|
|
1256
1256
|
* <p>Default: Any local storage type</p>
|
|
1257
1257
|
*/
|
|
1258
|
-
LocalStorageTypes?:
|
|
1258
|
+
LocalStorageTypes?: LocalStorageType[];
|
|
1259
1259
|
/**
|
|
1260
1260
|
* @public
|
|
1261
1261
|
* <p>The minimum and maximum total local storage size for an instance type, in GB.</p>
|
|
@@ -1287,7 +1287,7 @@ export interface InstanceRequirements {
|
|
|
1287
1287
|
* </ul>
|
|
1288
1288
|
* <p>Default: Any accelerator type</p>
|
|
1289
1289
|
*/
|
|
1290
|
-
AcceleratorTypes?:
|
|
1290
|
+
AcceleratorTypes?: AcceleratorType[];
|
|
1291
1291
|
/**
|
|
1292
1292
|
* @public
|
|
1293
1293
|
* <p>The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia
|
|
@@ -1318,7 +1318,7 @@ export interface InstanceRequirements {
|
|
|
1318
1318
|
* </ul>
|
|
1319
1319
|
* <p>Default: Any manufacturer</p>
|
|
1320
1320
|
*/
|
|
1321
|
-
AcceleratorManufacturers?:
|
|
1321
|
+
AcceleratorManufacturers?: AcceleratorManufacturer[];
|
|
1322
1322
|
/**
|
|
1323
1323
|
* @public
|
|
1324
1324
|
* <p>Lists the accelerators that must be on an instance type.</p>
|
|
@@ -1348,7 +1348,7 @@ export interface InstanceRequirements {
|
|
|
1348
1348
|
* </ul>
|
|
1349
1349
|
* <p>Default: Any accelerator</p>
|
|
1350
1350
|
*/
|
|
1351
|
-
AcceleratorNames?:
|
|
1351
|
+
AcceleratorNames?: AcceleratorName[];
|
|
1352
1352
|
/**
|
|
1353
1353
|
* @public
|
|
1354
1354
|
* <p>The minimum and maximum total memory size for the accelerators on an instance type, in
|
|
@@ -2014,7 +2014,7 @@ export interface InstanceMetadataOptions {
|
|
|
2014
2014
|
* always returns the version 2.0 credentials; the version 1.0 credentials are not
|
|
2015
2015
|
* available.</p>
|
|
2016
2016
|
*/
|
|
2017
|
-
HttpTokens?: InstanceMetadataHttpTokensState
|
|
2017
|
+
HttpTokens?: InstanceMetadataHttpTokensState;
|
|
2018
2018
|
/**
|
|
2019
2019
|
* @public
|
|
2020
2020
|
* <p>The desired HTTP PUT response hop limit for instance metadata requests. The larger the
|
|
@@ -2031,7 +2031,7 @@ export interface InstanceMetadataOptions {
|
|
|
2031
2031
|
* your instance metadata. </p>
|
|
2032
2032
|
* </note>
|
|
2033
2033
|
*/
|
|
2034
|
-
HttpEndpoint?: InstanceMetadataEndpointState
|
|
2034
|
+
HttpEndpoint?: InstanceMetadataEndpointState;
|
|
2035
2035
|
}
|
|
2036
2036
|
/**
|
|
2037
2037
|
* @public
|
|
@@ -2708,7 +2708,7 @@ export interface Instance {
|
|
|
2708
2708
|
* not used. For information about lifecycle states, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/AutoScalingGroupLifecycle.html">Instance
|
|
2709
2709
|
* lifecycle</a> in the <i>Amazon EC2 Auto Scaling User Guide</i>. </p>
|
|
2710
2710
|
*/
|
|
2711
|
-
LifecycleState: LifecycleState |
|
|
2711
|
+
LifecycleState: LifecycleState | undefined;
|
|
2712
2712
|
/**
|
|
2713
2713
|
* @public
|
|
2714
2714
|
* <p>The last reported health status of the instance. <code>Healthy</code> means that the
|
|
@@ -2848,12 +2848,12 @@ export interface WarmPoolConfiguration {
|
|
|
2848
2848
|
* @public
|
|
2849
2849
|
* <p>The instance state to transition to after the lifecycle actions are complete.</p>
|
|
2850
2850
|
*/
|
|
2851
|
-
PoolState?: WarmPoolState
|
|
2851
|
+
PoolState?: WarmPoolState;
|
|
2852
2852
|
/**
|
|
2853
2853
|
* @public
|
|
2854
2854
|
* <p>The status of a warm pool that is marked for deletion.</p>
|
|
2855
2855
|
*/
|
|
2856
|
-
Status?: WarmPoolStatus
|
|
2856
|
+
Status?: WarmPoolStatus;
|
|
2857
2857
|
/**
|
|
2858
2858
|
* @public
|
|
2859
2859
|
* <p>The instance reuse policy.</p>
|
|
@@ -3357,7 +3357,7 @@ export interface RefreshPreferences {
|
|
|
3357
3357
|
* </dd>
|
|
3358
3358
|
* </dl>
|
|
3359
3359
|
*/
|
|
3360
|
-
ScaleInProtectedInstances?: ScaleInProtectedInstances
|
|
3360
|
+
ScaleInProtectedInstances?: ScaleInProtectedInstances;
|
|
3361
3361
|
/**
|
|
3362
3362
|
* @public
|
|
3363
3363
|
* <p>Choose the behavior that you want Amazon EC2 Auto Scaling to use if instances in <code>Standby</code>
|
|
@@ -3380,7 +3380,7 @@ export interface RefreshPreferences {
|
|
|
3380
3380
|
* </dd>
|
|
3381
3381
|
* </dl>
|
|
3382
3382
|
*/
|
|
3383
|
-
StandbyInstances?: StandbyInstances
|
|
3383
|
+
StandbyInstances?: StandbyInstances;
|
|
3384
3384
|
/**
|
|
3385
3385
|
* @public
|
|
3386
3386
|
* <p>(Optional) The CloudWatch alarm specification. CloudWatch alarms can be used to identify any
|
|
@@ -3563,7 +3563,7 @@ export interface InstanceRefresh {
|
|
|
3563
3563
|
* </li>
|
|
3564
3564
|
* </ul>
|
|
3565
3565
|
*/
|
|
3566
|
-
Status?: InstanceRefreshStatus
|
|
3566
|
+
Status?: InstanceRefreshStatus;
|
|
3567
3567
|
/**
|
|
3568
3568
|
* @public
|
|
3569
3569
|
* <p>The explanation for the specific status assigned to this operation.</p>
|
|
@@ -4601,7 +4601,7 @@ export interface PredictiveScalingPredefinedLoadMetric {
|
|
|
4601
4601
|
* @public
|
|
4602
4602
|
* <p>The metric type.</p>
|
|
4603
4603
|
*/
|
|
4604
|
-
PredefinedMetricType: PredefinedLoadMetricType |
|
|
4604
|
+
PredefinedMetricType: PredefinedLoadMetricType | undefined;
|
|
4605
4605
|
/**
|
|
4606
4606
|
* @public
|
|
4607
4607
|
* <p>A label that uniquely identifies a specific Application Load Balancer target group from which to determine
|
|
@@ -4654,7 +4654,7 @@ export interface PredictiveScalingPredefinedMetricPair {
|
|
|
4654
4654
|
* metric type is <code>ASGCPUUtilization</code>, the Auto Scaling group's total CPU metric is used
|
|
4655
4655
|
* as the load metric, and the average CPU metric is used for the scaling metric.</p>
|
|
4656
4656
|
*/
|
|
4657
|
-
PredefinedMetricType: PredefinedMetricPairType |
|
|
4657
|
+
PredefinedMetricType: PredefinedMetricPairType | undefined;
|
|
4658
4658
|
/**
|
|
4659
4659
|
* @public
|
|
4660
4660
|
* <p>A label that uniquely identifies a specific Application Load Balancer target group from which to determine
|
|
@@ -4707,7 +4707,7 @@ export interface PredictiveScalingPredefinedScalingMetric {
|
|
|
4707
4707
|
* @public
|
|
4708
4708
|
* <p>The metric type.</p>
|
|
4709
4709
|
*/
|
|
4710
|
-
PredefinedMetricType: PredefinedScalingMetricType |
|
|
4710
|
+
PredefinedMetricType: PredefinedScalingMetricType | undefined;
|
|
4711
4711
|
/**
|
|
4712
4712
|
* @public
|
|
4713
4713
|
* <p>A label that uniquely identifies a specific Application Load Balancer target group from which to determine
|
|
@@ -4857,7 +4857,7 @@ export interface PredictiveScalingConfiguration {
|
|
|
4857
4857
|
* <p>The predictive scaling mode. Defaults to <code>ForecastOnly</code> if not
|
|
4858
4858
|
* specified.</p>
|
|
4859
4859
|
*/
|
|
4860
|
-
Mode?: PredictiveScalingMode
|
|
4860
|
+
Mode?: PredictiveScalingMode;
|
|
4861
4861
|
/**
|
|
4862
4862
|
* @public
|
|
4863
4863
|
* <p>The amount of time, in seconds, by which the instance launch time can be advanced. For
|
|
@@ -4891,7 +4891,7 @@ export interface PredictiveScalingConfiguration {
|
|
|
4891
4891
|
* </li>
|
|
4892
4892
|
* </ul>
|
|
4893
4893
|
*/
|
|
4894
|
-
MaxCapacityBreachBehavior?: PredictiveScalingMaxCapacityBreachBehavior
|
|
4894
|
+
MaxCapacityBreachBehavior?: PredictiveScalingMaxCapacityBreachBehavior;
|
|
4895
4895
|
/**
|
|
4896
4896
|
* @public
|
|
4897
4897
|
* <p>The size of the capacity buffer to use when the forecast capacity is close to or
|
|
@@ -5121,7 +5121,7 @@ export interface CustomizedMetricSpecification {
|
|
|
5121
5121
|
* @public
|
|
5122
5122
|
* <p>The statistic of the metric.</p>
|
|
5123
5123
|
*/
|
|
5124
|
-
Statistic?: MetricStatistic
|
|
5124
|
+
Statistic?: MetricStatistic;
|
|
5125
5125
|
/**
|
|
5126
5126
|
* @public
|
|
5127
5127
|
* <p>The unit of the metric. For a complete list of the units that CloudWatch supports, see the
|
|
@@ -5182,7 +5182,7 @@ export interface PredefinedMetricSpecification {
|
|
|
5182
5182
|
* </li>
|
|
5183
5183
|
* </ul>
|
|
5184
5184
|
*/
|
|
5185
|
-
PredefinedMetricType: MetricType |
|
|
5185
|
+
PredefinedMetricType: MetricType | undefined;
|
|
5186
5186
|
/**
|
|
5187
5187
|
* @public
|
|
5188
5188
|
* <p>A label that uniquely identifies a specific Application Load Balancer target group
|
|
@@ -6814,7 +6814,7 @@ export interface PutWarmPoolType {
|
|
|
6814
6814
|
* <p>Sets the instance state to transition to after the lifecycle actions are complete.
|
|
6815
6815
|
* Default is <code>Stopped</code>.</p>
|
|
6816
6816
|
*/
|
|
6817
|
-
PoolState?: WarmPoolState
|
|
6817
|
+
PoolState?: WarmPoolState;
|
|
6818
6818
|
/**
|
|
6819
6819
|
* @public
|
|
6820
6820
|
* <p>Indicates whether instances in the Auto Scaling group can be returned to the warm pool on
|
|
@@ -7079,7 +7079,7 @@ export interface StartInstanceRefreshType {
|
|
|
7079
7079
|
* <p>The strategy to use for the instance refresh. The only valid value is
|
|
7080
7080
|
* <code>Rolling</code>.</p>
|
|
7081
7081
|
*/
|
|
7082
|
-
Strategy?: RefreshStrategy
|
|
7082
|
+
Strategy?: RefreshStrategy;
|
|
7083
7083
|
/**
|
|
7084
7084
|
* @public
|
|
7085
7085
|
* <p>The desired configuration. For example, the desired configuration can specify a new
|
|
@@ -68,7 +68,7 @@ export interface Activity {
|
|
|
68
68
|
Cause: string | undefined;
|
|
69
69
|
StartTime: Date | undefined;
|
|
70
70
|
EndTime?: Date;
|
|
71
|
-
StatusCode: ScalingActivityStatusCode |
|
|
71
|
+
StatusCode: ScalingActivityStatusCode | undefined;
|
|
72
72
|
StatusMessage?: string;
|
|
73
73
|
Progress?: number;
|
|
74
74
|
Details?: string;
|
|
@@ -273,24 +273,24 @@ export interface VCpuCountRequest {
|
|
|
273
273
|
export interface InstanceRequirements {
|
|
274
274
|
VCpuCount: VCpuCountRequest | undefined;
|
|
275
275
|
MemoryMiB: MemoryMiBRequest | undefined;
|
|
276
|
-
CpuManufacturers?:
|
|
276
|
+
CpuManufacturers?: CpuManufacturer[];
|
|
277
277
|
MemoryGiBPerVCpu?: MemoryGiBPerVCpuRequest;
|
|
278
278
|
ExcludedInstanceTypes?: string[];
|
|
279
|
-
InstanceGenerations?:
|
|
279
|
+
InstanceGenerations?: InstanceGeneration[];
|
|
280
280
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
281
281
|
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
|
282
|
-
BareMetal?: BareMetal
|
|
283
|
-
BurstablePerformance?: BurstablePerformance
|
|
282
|
+
BareMetal?: BareMetal;
|
|
283
|
+
BurstablePerformance?: BurstablePerformance;
|
|
284
284
|
RequireHibernateSupport?: boolean;
|
|
285
285
|
NetworkInterfaceCount?: NetworkInterfaceCountRequest;
|
|
286
|
-
LocalStorage?: LocalStorage
|
|
287
|
-
LocalStorageTypes?:
|
|
286
|
+
LocalStorage?: LocalStorage;
|
|
287
|
+
LocalStorageTypes?: LocalStorageType[];
|
|
288
288
|
TotalLocalStorageGB?: TotalLocalStorageGBRequest;
|
|
289
289
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
290
|
-
AcceleratorTypes?:
|
|
290
|
+
AcceleratorTypes?: AcceleratorType[];
|
|
291
291
|
AcceleratorCount?: AcceleratorCountRequest;
|
|
292
|
-
AcceleratorManufacturers?:
|
|
293
|
-
AcceleratorNames?:
|
|
292
|
+
AcceleratorManufacturers?: AcceleratorManufacturer[];
|
|
293
|
+
AcceleratorNames?: AcceleratorName[];
|
|
294
294
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
295
295
|
NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest;
|
|
296
296
|
AllowedInstanceTypes?: string[];
|
|
@@ -376,9 +376,9 @@ export declare const InstanceMetadataHttpTokensState: {
|
|
|
376
376
|
export type InstanceMetadataHttpTokensState =
|
|
377
377
|
(typeof InstanceMetadataHttpTokensState)[keyof typeof InstanceMetadataHttpTokensState];
|
|
378
378
|
export interface InstanceMetadataOptions {
|
|
379
|
-
HttpTokens?: InstanceMetadataHttpTokensState
|
|
379
|
+
HttpTokens?: InstanceMetadataHttpTokensState;
|
|
380
380
|
HttpPutResponseHopLimit?: number;
|
|
381
|
-
HttpEndpoint?: InstanceMetadataEndpointState
|
|
381
|
+
HttpEndpoint?: InstanceMetadataEndpointState;
|
|
382
382
|
}
|
|
383
383
|
export interface CreateLaunchConfigurationType {
|
|
384
384
|
LaunchConfigurationName: string | undefined;
|
|
@@ -502,7 +502,7 @@ export interface Instance {
|
|
|
502
502
|
InstanceId: string | undefined;
|
|
503
503
|
InstanceType?: string;
|
|
504
504
|
AvailabilityZone: string | undefined;
|
|
505
|
-
LifecycleState: LifecycleState |
|
|
505
|
+
LifecycleState: LifecycleState | undefined;
|
|
506
506
|
HealthStatus: string | undefined;
|
|
507
507
|
LaunchConfigurationName?: string;
|
|
508
508
|
LaunchTemplate?: LaunchTemplateSpecification;
|
|
@@ -537,8 +537,8 @@ export type WarmPoolStatus =
|
|
|
537
537
|
export interface WarmPoolConfiguration {
|
|
538
538
|
MaxGroupPreparedCapacity?: number;
|
|
539
539
|
MinSize?: number;
|
|
540
|
-
PoolState?: WarmPoolState
|
|
541
|
-
Status?: WarmPoolStatus
|
|
540
|
+
PoolState?: WarmPoolState;
|
|
541
|
+
Status?: WarmPoolStatus;
|
|
542
542
|
InstanceReusePolicy?: InstanceReusePolicy;
|
|
543
543
|
}
|
|
544
544
|
export interface AutoScalingGroup {
|
|
@@ -635,8 +635,8 @@ export interface RefreshPreferences {
|
|
|
635
635
|
CheckpointDelay?: number;
|
|
636
636
|
SkipMatching?: boolean;
|
|
637
637
|
AutoRollback?: boolean;
|
|
638
|
-
ScaleInProtectedInstances?: ScaleInProtectedInstances
|
|
639
|
-
StandbyInstances?: StandbyInstances
|
|
638
|
+
ScaleInProtectedInstances?: ScaleInProtectedInstances;
|
|
639
|
+
StandbyInstances?: StandbyInstances;
|
|
640
640
|
AlarmSpecification?: AlarmSpecification;
|
|
641
641
|
}
|
|
642
642
|
export interface InstanceRefreshLivePoolProgress {
|
|
@@ -674,7 +674,7 @@ export type InstanceRefreshStatus =
|
|
|
674
674
|
export interface InstanceRefresh {
|
|
675
675
|
InstanceRefreshId?: string;
|
|
676
676
|
AutoScalingGroupName?: string;
|
|
677
|
-
Status?: InstanceRefreshStatus
|
|
677
|
+
Status?: InstanceRefreshStatus;
|
|
678
678
|
StatusReason?: string;
|
|
679
679
|
StartTime?: Date;
|
|
680
680
|
EndTime?: Date;
|
|
@@ -849,7 +849,7 @@ export declare const PredefinedLoadMetricType: {
|
|
|
849
849
|
export type PredefinedLoadMetricType =
|
|
850
850
|
(typeof PredefinedLoadMetricType)[keyof typeof PredefinedLoadMetricType];
|
|
851
851
|
export interface PredictiveScalingPredefinedLoadMetric {
|
|
852
|
-
PredefinedMetricType: PredefinedLoadMetricType |
|
|
852
|
+
PredefinedMetricType: PredefinedLoadMetricType | undefined;
|
|
853
853
|
ResourceLabel?: string;
|
|
854
854
|
}
|
|
855
855
|
export declare const PredefinedMetricPairType: {
|
|
@@ -861,7 +861,7 @@ export declare const PredefinedMetricPairType: {
|
|
|
861
861
|
export type PredefinedMetricPairType =
|
|
862
862
|
(typeof PredefinedMetricPairType)[keyof typeof PredefinedMetricPairType];
|
|
863
863
|
export interface PredictiveScalingPredefinedMetricPair {
|
|
864
|
-
PredefinedMetricType: PredefinedMetricPairType |
|
|
864
|
+
PredefinedMetricType: PredefinedMetricPairType | undefined;
|
|
865
865
|
ResourceLabel?: string;
|
|
866
866
|
}
|
|
867
867
|
export declare const PredefinedScalingMetricType: {
|
|
@@ -873,7 +873,7 @@ export declare const PredefinedScalingMetricType: {
|
|
|
873
873
|
export type PredefinedScalingMetricType =
|
|
874
874
|
(typeof PredefinedScalingMetricType)[keyof typeof PredefinedScalingMetricType];
|
|
875
875
|
export interface PredictiveScalingPredefinedScalingMetric {
|
|
876
|
-
PredefinedMetricType: PredefinedScalingMetricType |
|
|
876
|
+
PredefinedMetricType: PredefinedScalingMetricType | undefined;
|
|
877
877
|
ResourceLabel?: string;
|
|
878
878
|
}
|
|
879
879
|
export interface PredictiveScalingMetricSpecification {
|
|
@@ -893,11 +893,9 @@ export type PredictiveScalingMode =
|
|
|
893
893
|
(typeof PredictiveScalingMode)[keyof typeof PredictiveScalingMode];
|
|
894
894
|
export interface PredictiveScalingConfiguration {
|
|
895
895
|
MetricSpecifications: PredictiveScalingMetricSpecification[] | undefined;
|
|
896
|
-
Mode?: PredictiveScalingMode
|
|
896
|
+
Mode?: PredictiveScalingMode;
|
|
897
897
|
SchedulingBufferTime?: number;
|
|
898
|
-
MaxCapacityBreachBehavior?:
|
|
899
|
-
| PredictiveScalingMaxCapacityBreachBehavior
|
|
900
|
-
| string;
|
|
898
|
+
MaxCapacityBreachBehavior?: PredictiveScalingMaxCapacityBreachBehavior;
|
|
901
899
|
MaxCapacityBuffer?: number;
|
|
902
900
|
}
|
|
903
901
|
export interface StepAdjustment {
|
|
@@ -930,7 +928,7 @@ export interface CustomizedMetricSpecification {
|
|
|
930
928
|
MetricName?: string;
|
|
931
929
|
Namespace?: string;
|
|
932
930
|
Dimensions?: MetricDimension[];
|
|
933
|
-
Statistic?: MetricStatistic
|
|
931
|
+
Statistic?: MetricStatistic;
|
|
934
932
|
Unit?: string;
|
|
935
933
|
Metrics?: TargetTrackingMetricDataQuery[];
|
|
936
934
|
}
|
|
@@ -942,7 +940,7 @@ export declare const MetricType: {
|
|
|
942
940
|
};
|
|
943
941
|
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
944
942
|
export interface PredefinedMetricSpecification {
|
|
945
|
-
PredefinedMetricType: MetricType |
|
|
943
|
+
PredefinedMetricType: MetricType | undefined;
|
|
946
944
|
ResourceLabel?: string;
|
|
947
945
|
}
|
|
948
946
|
export interface TargetTrackingConfiguration {
|
|
@@ -1176,7 +1174,7 @@ export interface PutWarmPoolType {
|
|
|
1176
1174
|
AutoScalingGroupName: string | undefined;
|
|
1177
1175
|
MaxGroupPreparedCapacity?: number;
|
|
1178
1176
|
MinSize?: number;
|
|
1179
|
-
PoolState?: WarmPoolState
|
|
1177
|
+
PoolState?: WarmPoolState;
|
|
1180
1178
|
InstanceReusePolicy?: InstanceReusePolicy;
|
|
1181
1179
|
}
|
|
1182
1180
|
export interface RecordLifecycleActionHeartbeatAnswer {}
|
|
@@ -1239,7 +1237,7 @@ export type RefreshStrategy =
|
|
|
1239
1237
|
(typeof RefreshStrategy)[keyof typeof RefreshStrategy];
|
|
1240
1238
|
export interface StartInstanceRefreshType {
|
|
1241
1239
|
AutoScalingGroupName: string | undefined;
|
|
1242
|
-
Strategy?: RefreshStrategy
|
|
1240
|
+
Strategy?: RefreshStrategy;
|
|
1243
1241
|
DesiredConfiguration?: DesiredConfiguration;
|
|
1244
1242
|
Preferences?: RefreshPreferences;
|
|
1245
1243
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auto-scaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|