@aws-sdk/client-auto-scaling 3.934.0 → 3.936.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.
- package/dist-cjs/index.js +188 -187
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +187 -0
- package/dist-es/models/errors.js +135 -0
- package/dist-es/models/models_0.js +1 -322
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +427 -0
- package/dist-types/models/errors.d.ts +147 -0
- package/dist-types/models/models_0.d.ts +1 -574
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +242 -0
- package/dist-types/ts3.4/models/errors.d.ts +81 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -323
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AutoScalingServiceException as __BaseException } from "./AutoScalingServiceException";
|
|
1
|
+
import { AcceleratorManufacturer, AcceleratorName, AcceleratorType, BareMetal, BurstablePerformance, CapacityDistributionStrategy, CapacityReservationPreference, CpuManufacturer, ImpairedZoneHealthCheckBehavior, InstanceGeneration, InstanceMetadataEndpointState, InstanceMetadataHttpTokensState, InstanceRefreshStatus, LifecycleState, LocalStorage, LocalStorageType, MetricStatistic, MetricType, PredefinedLoadMetricType, PredefinedMetricPairType, PredefinedScalingMetricType, PredictiveScalingMaxCapacityBreachBehavior, PredictiveScalingMode, RefreshStrategy, RetryStrategy, ScaleInProtectedInstances, ScalingActivityStatusCode, StandbyInstances, WarmPoolState, WarmPoolStatus } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Specifies the minimum and maximum for the <code>AcceleratorCount</code> object when
|
|
5
4
|
* you specify <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html">InstanceRequirements</a> for an Auto Scaling group.</p>
|
|
@@ -17,37 +16,6 @@ export interface AcceleratorCountRequest {
|
|
|
17
16
|
*/
|
|
18
17
|
Max?: number | undefined;
|
|
19
18
|
}
|
|
20
|
-
/**
|
|
21
|
-
* @public
|
|
22
|
-
* @enum
|
|
23
|
-
*/
|
|
24
|
-
export declare const AcceleratorManufacturer: {
|
|
25
|
-
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
26
|
-
readonly AMD: "amd";
|
|
27
|
-
readonly NVIDIA: "nvidia";
|
|
28
|
-
readonly XILINX: "xilinx";
|
|
29
|
-
};
|
|
30
|
-
/**
|
|
31
|
-
* @public
|
|
32
|
-
*/
|
|
33
|
-
export type AcceleratorManufacturer = (typeof AcceleratorManufacturer)[keyof typeof AcceleratorManufacturer];
|
|
34
|
-
/**
|
|
35
|
-
* @public
|
|
36
|
-
* @enum
|
|
37
|
-
*/
|
|
38
|
-
export declare const AcceleratorName: {
|
|
39
|
-
readonly A100: "a100";
|
|
40
|
-
readonly K80: "k80";
|
|
41
|
-
readonly M60: "m60";
|
|
42
|
-
readonly RADEON_PRO_V520: "radeon-pro-v520";
|
|
43
|
-
readonly T4: "t4";
|
|
44
|
-
readonly V100: "v100";
|
|
45
|
-
readonly VU9P: "vu9p";
|
|
46
|
-
};
|
|
47
|
-
/**
|
|
48
|
-
* @public
|
|
49
|
-
*/
|
|
50
|
-
export type AcceleratorName = (typeof AcceleratorName)[keyof typeof AcceleratorName];
|
|
51
19
|
/**
|
|
52
20
|
* <p>Specifies the minimum and maximum for the <code>AcceleratorTotalMemoryMiB</code>
|
|
53
21
|
* object when you specify <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html">InstanceRequirements</a> for an Auto Scaling group.</p>
|
|
@@ -65,55 +33,6 @@ export interface AcceleratorTotalMemoryMiBRequest {
|
|
|
65
33
|
*/
|
|
66
34
|
Max?: number | undefined;
|
|
67
35
|
}
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
* @enum
|
|
71
|
-
*/
|
|
72
|
-
export declare const AcceleratorType: {
|
|
73
|
-
readonly FPGA: "fpga";
|
|
74
|
-
readonly GPU: "gpu";
|
|
75
|
-
readonly INFERENCE: "inference";
|
|
76
|
-
};
|
|
77
|
-
/**
|
|
78
|
-
* @public
|
|
79
|
-
*/
|
|
80
|
-
export type AcceleratorType = (typeof AcceleratorType)[keyof typeof AcceleratorType];
|
|
81
|
-
/**
|
|
82
|
-
* <p>The request failed because an active instance refresh or rollback for the specified
|
|
83
|
-
* Auto Scaling group was not found.</p>
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
export declare class ActiveInstanceRefreshNotFoundFault extends __BaseException {
|
|
87
|
-
readonly name: "ActiveInstanceRefreshNotFoundFault";
|
|
88
|
-
readonly $fault: "client";
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
constructor(opts: __ExceptionOptionType<ActiveInstanceRefreshNotFoundFault, __BaseException>);
|
|
93
|
-
}
|
|
94
|
-
/**
|
|
95
|
-
* @public
|
|
96
|
-
* @enum
|
|
97
|
-
*/
|
|
98
|
-
export declare const ScalingActivityStatusCode: {
|
|
99
|
-
readonly Cancelled: "Cancelled";
|
|
100
|
-
readonly Failed: "Failed";
|
|
101
|
-
readonly InProgress: "InProgress";
|
|
102
|
-
readonly MidLifecycleAction: "MidLifecycleAction";
|
|
103
|
-
readonly PendingSpotBidPlacement: "PendingSpotBidPlacement";
|
|
104
|
-
readonly PreInService: "PreInService";
|
|
105
|
-
readonly Successful: "Successful";
|
|
106
|
-
readonly WaitingForConnectionDraining: "WaitingForConnectionDraining";
|
|
107
|
-
readonly WaitingForELBConnectionDraining: "WaitingForELBConnectionDraining";
|
|
108
|
-
readonly WaitingForInstanceId: "WaitingForInstanceId";
|
|
109
|
-
readonly WaitingForInstanceWarmup: "WaitingForInstanceWarmup";
|
|
110
|
-
readonly WaitingForSpotInstanceId: "WaitingForSpotInstanceId";
|
|
111
|
-
readonly WaitingForSpotInstanceRequestId: "WaitingForSpotInstanceRequestId";
|
|
112
|
-
};
|
|
113
|
-
/**
|
|
114
|
-
* @public
|
|
115
|
-
*/
|
|
116
|
-
export type ScalingActivityStatusCode = (typeof ScalingActivityStatusCode)[keyof typeof ScalingActivityStatusCode];
|
|
117
36
|
/**
|
|
118
37
|
* <p>Describes scaling activity, which is a long-running process that represents a change
|
|
119
38
|
* to your Auto Scaling group, such as changing its size or replacing an instance.</p>
|
|
@@ -251,18 +170,6 @@ export interface AlarmSpecification {
|
|
|
251
170
|
*/
|
|
252
171
|
Alarms?: string[] | undefined;
|
|
253
172
|
}
|
|
254
|
-
/**
|
|
255
|
-
* <p>You already have an Auto Scaling group or launch configuration with this name.</p>
|
|
256
|
-
* @public
|
|
257
|
-
*/
|
|
258
|
-
export declare class AlreadyExistsFault extends __BaseException {
|
|
259
|
-
readonly name: "AlreadyExistsFault";
|
|
260
|
-
readonly $fault: "client";
|
|
261
|
-
/**
|
|
262
|
-
* @internal
|
|
263
|
-
*/
|
|
264
|
-
constructor(opts: __ExceptionOptionType<AlreadyExistsFault, __BaseException>);
|
|
265
|
-
}
|
|
266
173
|
/**
|
|
267
174
|
* @public
|
|
268
175
|
*/
|
|
@@ -278,31 +185,6 @@ export interface AttachInstancesQuery {
|
|
|
278
185
|
*/
|
|
279
186
|
AutoScalingGroupName: string | undefined;
|
|
280
187
|
}
|
|
281
|
-
/**
|
|
282
|
-
* <p>You already have a pending update to an Amazon EC2 Auto Scaling resource (for example, an Auto Scaling group,
|
|
283
|
-
* instance, or load balancer).</p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
export declare class ResourceContentionFault extends __BaseException {
|
|
287
|
-
readonly name: "ResourceContentionFault";
|
|
288
|
-
readonly $fault: "server";
|
|
289
|
-
/**
|
|
290
|
-
* @internal
|
|
291
|
-
*/
|
|
292
|
-
constructor(opts: __ExceptionOptionType<ResourceContentionFault, __BaseException>);
|
|
293
|
-
}
|
|
294
|
-
/**
|
|
295
|
-
* <p>The service-linked role is not yet ready for use.</p>
|
|
296
|
-
* @public
|
|
297
|
-
*/
|
|
298
|
-
export declare class ServiceLinkedRoleFailure extends __BaseException {
|
|
299
|
-
readonly name: "ServiceLinkedRoleFailure";
|
|
300
|
-
readonly $fault: "server";
|
|
301
|
-
/**
|
|
302
|
-
* @internal
|
|
303
|
-
*/
|
|
304
|
-
constructor(opts: __ExceptionOptionType<ServiceLinkedRoleFailure, __BaseException>);
|
|
305
|
-
}
|
|
306
188
|
/**
|
|
307
189
|
* @public
|
|
308
190
|
*/
|
|
@@ -570,21 +452,6 @@ export interface BatchPutScheduledUpdateGroupActionType {
|
|
|
570
452
|
*/
|
|
571
453
|
ScheduledUpdateGroupActions: ScheduledUpdateGroupActionRequest[] | undefined;
|
|
572
454
|
}
|
|
573
|
-
/**
|
|
574
|
-
* <p>You have already reached a limit for your Amazon EC2 Auto Scaling
|
|
575
|
-
* resources (for example, Auto Scaling groups, launch configurations, or lifecycle hooks). For
|
|
576
|
-
* more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAccountLimits.html">DescribeAccountLimits</a> in the <i>Amazon EC2 Auto Scaling API
|
|
577
|
-
* Reference</i>.</p>
|
|
578
|
-
* @public
|
|
579
|
-
*/
|
|
580
|
-
export declare class LimitExceededFault extends __BaseException {
|
|
581
|
-
readonly name: "LimitExceededFault";
|
|
582
|
-
readonly $fault: "client";
|
|
583
|
-
/**
|
|
584
|
-
* @internal
|
|
585
|
-
*/
|
|
586
|
-
constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
|
|
587
|
-
}
|
|
588
455
|
/**
|
|
589
456
|
* @public
|
|
590
457
|
*/
|
|
@@ -652,18 +519,6 @@ export interface CompleteLifecycleActionType {
|
|
|
652
519
|
*/
|
|
653
520
|
InstanceId?: string | undefined;
|
|
654
521
|
}
|
|
655
|
-
/**
|
|
656
|
-
* @public
|
|
657
|
-
* @enum
|
|
658
|
-
*/
|
|
659
|
-
export declare const CapacityDistributionStrategy: {
|
|
660
|
-
readonly BALANCED_BEST_EFFORT: "balanced-best-effort";
|
|
661
|
-
readonly BALANCED_ONLY: "balanced-only";
|
|
662
|
-
};
|
|
663
|
-
/**
|
|
664
|
-
* @public
|
|
665
|
-
*/
|
|
666
|
-
export type CapacityDistributionStrategy = (typeof CapacityDistributionStrategy)[keyof typeof CapacityDistributionStrategy];
|
|
667
522
|
/**
|
|
668
523
|
* <p>
|
|
669
524
|
* Describes an Availability Zone distribution.
|
|
@@ -688,18 +543,6 @@ export interface AvailabilityZoneDistribution {
|
|
|
688
543
|
*/
|
|
689
544
|
CapacityDistributionStrategy?: CapacityDistributionStrategy | undefined;
|
|
690
545
|
}
|
|
691
|
-
/**
|
|
692
|
-
* @public
|
|
693
|
-
* @enum
|
|
694
|
-
*/
|
|
695
|
-
export declare const ImpairedZoneHealthCheckBehavior: {
|
|
696
|
-
readonly IgnoreUnhealthy: "IgnoreUnhealthy";
|
|
697
|
-
readonly ReplaceUnhealthy: "ReplaceUnhealthy";
|
|
698
|
-
};
|
|
699
|
-
/**
|
|
700
|
-
* @public
|
|
701
|
-
*/
|
|
702
|
-
export type ImpairedZoneHealthCheckBehavior = (typeof ImpairedZoneHealthCheckBehavior)[keyof typeof ImpairedZoneHealthCheckBehavior];
|
|
703
546
|
/**
|
|
704
547
|
* <p>
|
|
705
548
|
* Describes an Availability Zone impairment policy.
|
|
@@ -725,20 +568,6 @@ export interface AvailabilityZoneImpairmentPolicy {
|
|
|
725
568
|
*/
|
|
726
569
|
ImpairedZoneHealthCheckBehavior?: ImpairedZoneHealthCheckBehavior | undefined;
|
|
727
570
|
}
|
|
728
|
-
/**
|
|
729
|
-
* @public
|
|
730
|
-
* @enum
|
|
731
|
-
*/
|
|
732
|
-
export declare const CapacityReservationPreference: {
|
|
733
|
-
readonly CapacityReservationsFirst: "capacity-reservations-first";
|
|
734
|
-
readonly CapacityReservationsOnly: "capacity-reservations-only";
|
|
735
|
-
readonly Default: "default";
|
|
736
|
-
readonly None: "none";
|
|
737
|
-
};
|
|
738
|
-
/**
|
|
739
|
-
* @public
|
|
740
|
-
*/
|
|
741
|
-
export type CapacityReservationPreference = (typeof CapacityReservationPreference)[keyof typeof CapacityReservationPreference];
|
|
742
571
|
/**
|
|
743
572
|
* <p>
|
|
744
573
|
* The target for the Capacity Reservation. Specify Capacity Reservations IDs or Capacity Reservation resource group ARNs.
|
|
@@ -1053,19 +882,6 @@ export interface InstancesDistribution {
|
|
|
1053
882
|
*/
|
|
1054
883
|
SpotMaxPrice?: string | undefined;
|
|
1055
884
|
}
|
|
1056
|
-
/**
|
|
1057
|
-
* @public
|
|
1058
|
-
* @enum
|
|
1059
|
-
*/
|
|
1060
|
-
export declare const BareMetal: {
|
|
1061
|
-
readonly EXCLUDED: "excluded";
|
|
1062
|
-
readonly INCLUDED: "included";
|
|
1063
|
-
readonly REQUIRED: "required";
|
|
1064
|
-
};
|
|
1065
|
-
/**
|
|
1066
|
-
* @public
|
|
1067
|
-
*/
|
|
1068
|
-
export type BareMetal = (typeof BareMetal)[keyof typeof BareMetal];
|
|
1069
885
|
/**
|
|
1070
886
|
* <p>Specifies the minimum and maximum for the <code>BaselineEbsBandwidthMbps</code> object
|
|
1071
887
|
* when you specify <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html">InstanceRequirements</a> for an Auto Scaling group.</p>
|
|
@@ -1189,70 +1005,6 @@ export interface BaselinePerformanceFactorsRequest {
|
|
|
1189
1005
|
*/
|
|
1190
1006
|
Cpu?: CpuPerformanceFactorRequest | undefined;
|
|
1191
1007
|
}
|
|
1192
|
-
/**
|
|
1193
|
-
* @public
|
|
1194
|
-
* @enum
|
|
1195
|
-
*/
|
|
1196
|
-
export declare const BurstablePerformance: {
|
|
1197
|
-
readonly EXCLUDED: "excluded";
|
|
1198
|
-
readonly INCLUDED: "included";
|
|
1199
|
-
readonly REQUIRED: "required";
|
|
1200
|
-
};
|
|
1201
|
-
/**
|
|
1202
|
-
* @public
|
|
1203
|
-
*/
|
|
1204
|
-
export type BurstablePerformance = (typeof BurstablePerformance)[keyof typeof BurstablePerformance];
|
|
1205
|
-
/**
|
|
1206
|
-
* @public
|
|
1207
|
-
* @enum
|
|
1208
|
-
*/
|
|
1209
|
-
export declare const CpuManufacturer: {
|
|
1210
|
-
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
1211
|
-
readonly AMD: "amd";
|
|
1212
|
-
readonly APPLE: "apple";
|
|
1213
|
-
readonly INTEL: "intel";
|
|
1214
|
-
};
|
|
1215
|
-
/**
|
|
1216
|
-
* @public
|
|
1217
|
-
*/
|
|
1218
|
-
export type CpuManufacturer = (typeof CpuManufacturer)[keyof typeof CpuManufacturer];
|
|
1219
|
-
/**
|
|
1220
|
-
* @public
|
|
1221
|
-
* @enum
|
|
1222
|
-
*/
|
|
1223
|
-
export declare const InstanceGeneration: {
|
|
1224
|
-
readonly CURRENT: "current";
|
|
1225
|
-
readonly PREVIOUS: "previous";
|
|
1226
|
-
};
|
|
1227
|
-
/**
|
|
1228
|
-
* @public
|
|
1229
|
-
*/
|
|
1230
|
-
export type InstanceGeneration = (typeof InstanceGeneration)[keyof typeof InstanceGeneration];
|
|
1231
|
-
/**
|
|
1232
|
-
* @public
|
|
1233
|
-
* @enum
|
|
1234
|
-
*/
|
|
1235
|
-
export declare const LocalStorage: {
|
|
1236
|
-
readonly EXCLUDED: "excluded";
|
|
1237
|
-
readonly INCLUDED: "included";
|
|
1238
|
-
readonly REQUIRED: "required";
|
|
1239
|
-
};
|
|
1240
|
-
/**
|
|
1241
|
-
* @public
|
|
1242
|
-
*/
|
|
1243
|
-
export type LocalStorage = (typeof LocalStorage)[keyof typeof LocalStorage];
|
|
1244
|
-
/**
|
|
1245
|
-
* @public
|
|
1246
|
-
* @enum
|
|
1247
|
-
*/
|
|
1248
|
-
export declare const LocalStorageType: {
|
|
1249
|
-
readonly HDD: "hdd";
|
|
1250
|
-
readonly SSD: "ssd";
|
|
1251
|
-
};
|
|
1252
|
-
/**
|
|
1253
|
-
* @public
|
|
1254
|
-
*/
|
|
1255
|
-
export type LocalStorageType = (typeof LocalStorageType)[keyof typeof LocalStorageType];
|
|
1256
1008
|
/**
|
|
1257
1009
|
* <p>Specifies the minimum and maximum for the <code>MemoryGiBPerVCpu</code> object when
|
|
1258
1010
|
* you specify <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html">InstanceRequirements</a> for an Auto Scaling group.</p>
|
|
@@ -2353,30 +2105,6 @@ export interface InstanceMonitoring {
|
|
|
2353
2105
|
*/
|
|
2354
2106
|
Enabled?: boolean | undefined;
|
|
2355
2107
|
}
|
|
2356
|
-
/**
|
|
2357
|
-
* @public
|
|
2358
|
-
* @enum
|
|
2359
|
-
*/
|
|
2360
|
-
export declare const InstanceMetadataEndpointState: {
|
|
2361
|
-
readonly Disabled: "disabled";
|
|
2362
|
-
readonly Enabled: "enabled";
|
|
2363
|
-
};
|
|
2364
|
-
/**
|
|
2365
|
-
* @public
|
|
2366
|
-
*/
|
|
2367
|
-
export type InstanceMetadataEndpointState = (typeof InstanceMetadataEndpointState)[keyof typeof InstanceMetadataEndpointState];
|
|
2368
|
-
/**
|
|
2369
|
-
* @public
|
|
2370
|
-
* @enum
|
|
2371
|
-
*/
|
|
2372
|
-
export declare const InstanceMetadataHttpTokensState: {
|
|
2373
|
-
readonly Optional: "optional";
|
|
2374
|
-
readonly Required: "required";
|
|
2375
|
-
};
|
|
2376
|
-
/**
|
|
2377
|
-
* @public
|
|
2378
|
-
*/
|
|
2379
|
-
export type InstanceMetadataHttpTokensState = (typeof InstanceMetadataHttpTokensState)[keyof typeof InstanceMetadataHttpTokensState];
|
|
2380
2108
|
/**
|
|
2381
2109
|
* <p>The metadata options for the instances. For more information, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-launch-config.html#launch-configurations-imds">Configure the instance metadata options</a> in the
|
|
2382
2110
|
* <i>Amazon EC2 Auto Scaling User Guide</i>.</p>
|
|
@@ -2611,18 +2339,6 @@ export interface CreateOrUpdateTagsType {
|
|
|
2611
2339
|
*/
|
|
2612
2340
|
Tags: Tag[] | undefined;
|
|
2613
2341
|
}
|
|
2614
|
-
/**
|
|
2615
|
-
* <p>The operation can't be performed because the resource is in use.</p>
|
|
2616
|
-
* @public
|
|
2617
|
-
*/
|
|
2618
|
-
export declare class ResourceInUseFault extends __BaseException {
|
|
2619
|
-
readonly name: "ResourceInUseFault";
|
|
2620
|
-
readonly $fault: "client";
|
|
2621
|
-
/**
|
|
2622
|
-
* @internal
|
|
2623
|
-
*/
|
|
2624
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseFault, __BaseException>);
|
|
2625
|
-
}
|
|
2626
2342
|
/**
|
|
2627
2343
|
* @public
|
|
2628
2344
|
*/
|
|
@@ -2640,19 +2356,6 @@ export interface DeleteAutoScalingGroupType {
|
|
|
2640
2356
|
*/
|
|
2641
2357
|
ForceDelete?: boolean | undefined;
|
|
2642
2358
|
}
|
|
2643
|
-
/**
|
|
2644
|
-
* <p>The operation can't be performed because there are scaling activities in
|
|
2645
|
-
* progress.</p>
|
|
2646
|
-
* @public
|
|
2647
|
-
*/
|
|
2648
|
-
export declare class ScalingActivityInProgressFault extends __BaseException {
|
|
2649
|
-
readonly name: "ScalingActivityInProgressFault";
|
|
2650
|
-
readonly $fault: "client";
|
|
2651
|
-
/**
|
|
2652
|
-
* @internal
|
|
2653
|
-
*/
|
|
2654
|
-
constructor(opts: __ExceptionOptionType<ScalingActivityInProgressFault, __BaseException>);
|
|
2655
|
-
}
|
|
2656
2359
|
/**
|
|
2657
2360
|
* @public
|
|
2658
2361
|
*/
|
|
@@ -3036,39 +2739,6 @@ export interface EnabledMetric {
|
|
|
3036
2739
|
*/
|
|
3037
2740
|
Granularity?: string | undefined;
|
|
3038
2741
|
}
|
|
3039
|
-
/**
|
|
3040
|
-
* @public
|
|
3041
|
-
* @enum
|
|
3042
|
-
*/
|
|
3043
|
-
export declare const LifecycleState: {
|
|
3044
|
-
readonly DETACHED: "Detached";
|
|
3045
|
-
readonly DETACHING: "Detaching";
|
|
3046
|
-
readonly ENTERING_STANDBY: "EnteringStandby";
|
|
3047
|
-
readonly IN_SERVICE: "InService";
|
|
3048
|
-
readonly PENDING: "Pending";
|
|
3049
|
-
readonly PENDING_PROCEED: "Pending:Proceed";
|
|
3050
|
-
readonly PENDING_WAIT: "Pending:Wait";
|
|
3051
|
-
readonly QUARANTINED: "Quarantined";
|
|
3052
|
-
readonly STANDBY: "Standby";
|
|
3053
|
-
readonly TERMINATED: "Terminated";
|
|
3054
|
-
readonly TERMINATING: "Terminating";
|
|
3055
|
-
readonly TERMINATING_PROCEED: "Terminating:Proceed";
|
|
3056
|
-
readonly TERMINATING_WAIT: "Terminating:Wait";
|
|
3057
|
-
readonly WARMED_HIBERNATED: "Warmed:Hibernated";
|
|
3058
|
-
readonly WARMED_PENDING: "Warmed:Pending";
|
|
3059
|
-
readonly WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed";
|
|
3060
|
-
readonly WARMED_PENDING_WAIT: "Warmed:Pending:Wait";
|
|
3061
|
-
readonly WARMED_RUNNING: "Warmed:Running";
|
|
3062
|
-
readonly WARMED_STOPPED: "Warmed:Stopped";
|
|
3063
|
-
readonly WARMED_TERMINATED: "Warmed:Terminated";
|
|
3064
|
-
readonly WARMED_TERMINATING: "Warmed:Terminating";
|
|
3065
|
-
readonly WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed";
|
|
3066
|
-
readonly WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait";
|
|
3067
|
-
};
|
|
3068
|
-
/**
|
|
3069
|
-
* @public
|
|
3070
|
-
*/
|
|
3071
|
-
export type LifecycleState = (typeof LifecycleState)[keyof typeof LifecycleState];
|
|
3072
2742
|
/**
|
|
3073
2743
|
* <p>Describes an EC2 instance.</p>
|
|
3074
2744
|
* @public
|
|
@@ -3192,30 +2862,6 @@ export interface InstanceReusePolicy {
|
|
|
3192
2862
|
*/
|
|
3193
2863
|
ReuseOnScaleIn?: boolean | undefined;
|
|
3194
2864
|
}
|
|
3195
|
-
/**
|
|
3196
|
-
* @public
|
|
3197
|
-
* @enum
|
|
3198
|
-
*/
|
|
3199
|
-
export declare const WarmPoolState: {
|
|
3200
|
-
readonly Hibernated: "Hibernated";
|
|
3201
|
-
readonly Running: "Running";
|
|
3202
|
-
readonly Stopped: "Stopped";
|
|
3203
|
-
};
|
|
3204
|
-
/**
|
|
3205
|
-
* @public
|
|
3206
|
-
*/
|
|
3207
|
-
export type WarmPoolState = (typeof WarmPoolState)[keyof typeof WarmPoolState];
|
|
3208
|
-
/**
|
|
3209
|
-
* @public
|
|
3210
|
-
* @enum
|
|
3211
|
-
*/
|
|
3212
|
-
export declare const WarmPoolStatus: {
|
|
3213
|
-
readonly PendingDelete: "PendingDelete";
|
|
3214
|
-
};
|
|
3215
|
-
/**
|
|
3216
|
-
* @public
|
|
3217
|
-
*/
|
|
3218
|
-
export type WarmPoolStatus = (typeof WarmPoolStatus)[keyof typeof WarmPoolStatus];
|
|
3219
2865
|
/**
|
|
3220
2866
|
* <p>Describes a warm pool configuration. </p>
|
|
3221
2867
|
* @public
|
|
@@ -3475,18 +3121,6 @@ export interface AutoScalingGroupsType {
|
|
|
3475
3121
|
*/
|
|
3476
3122
|
NextToken?: string | undefined;
|
|
3477
3123
|
}
|
|
3478
|
-
/**
|
|
3479
|
-
* <p>The <code>NextToken</code> value is not valid.</p>
|
|
3480
|
-
* @public
|
|
3481
|
-
*/
|
|
3482
|
-
export declare class InvalidNextToken extends __BaseException {
|
|
3483
|
-
readonly name: "InvalidNextToken";
|
|
3484
|
-
readonly $fault: "client";
|
|
3485
|
-
/**
|
|
3486
|
-
* @internal
|
|
3487
|
-
*/
|
|
3488
|
-
constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
|
|
3489
|
-
}
|
|
3490
3124
|
/**
|
|
3491
3125
|
* <p>Describes an EC2 instance associated with an Auto Scaling group.</p>
|
|
3492
3126
|
* @public
|
|
@@ -3639,32 +3273,6 @@ export interface DesiredConfiguration {
|
|
|
3639
3273
|
*/
|
|
3640
3274
|
MixedInstancesPolicy?: MixedInstancesPolicy | undefined;
|
|
3641
3275
|
}
|
|
3642
|
-
/**
|
|
3643
|
-
* @public
|
|
3644
|
-
* @enum
|
|
3645
|
-
*/
|
|
3646
|
-
export declare const ScaleInProtectedInstances: {
|
|
3647
|
-
readonly Ignore: "Ignore";
|
|
3648
|
-
readonly Refresh: "Refresh";
|
|
3649
|
-
readonly Wait: "Wait";
|
|
3650
|
-
};
|
|
3651
|
-
/**
|
|
3652
|
-
* @public
|
|
3653
|
-
*/
|
|
3654
|
-
export type ScaleInProtectedInstances = (typeof ScaleInProtectedInstances)[keyof typeof ScaleInProtectedInstances];
|
|
3655
|
-
/**
|
|
3656
|
-
* @public
|
|
3657
|
-
* @enum
|
|
3658
|
-
*/
|
|
3659
|
-
export declare const StandbyInstances: {
|
|
3660
|
-
readonly Ignore: "Ignore";
|
|
3661
|
-
readonly Terminate: "Terminate";
|
|
3662
|
-
readonly Wait: "Wait";
|
|
3663
|
-
};
|
|
3664
|
-
/**
|
|
3665
|
-
* @public
|
|
3666
|
-
*/
|
|
3667
|
-
export type StandbyInstances = (typeof StandbyInstances)[keyof typeof StandbyInstances];
|
|
3668
3276
|
/**
|
|
3669
3277
|
* <p>Describes the preferences for an instance refresh.</p>
|
|
3670
3278
|
* @public
|
|
@@ -3915,26 +3523,6 @@ export interface RollbackDetails {
|
|
|
3915
3523
|
*/
|
|
3916
3524
|
ProgressDetailsOnRollback?: InstanceRefreshProgressDetails | undefined;
|
|
3917
3525
|
}
|
|
3918
|
-
/**
|
|
3919
|
-
* @public
|
|
3920
|
-
* @enum
|
|
3921
|
-
*/
|
|
3922
|
-
export declare const InstanceRefreshStatus: {
|
|
3923
|
-
readonly Baking: "Baking";
|
|
3924
|
-
readonly Cancelled: "Cancelled";
|
|
3925
|
-
readonly Cancelling: "Cancelling";
|
|
3926
|
-
readonly Failed: "Failed";
|
|
3927
|
-
readonly InProgress: "InProgress";
|
|
3928
|
-
readonly Pending: "Pending";
|
|
3929
|
-
readonly RollbackFailed: "RollbackFailed";
|
|
3930
|
-
readonly RollbackInProgress: "RollbackInProgress";
|
|
3931
|
-
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
3932
|
-
readonly Successful: "Successful";
|
|
3933
|
-
};
|
|
3934
|
-
/**
|
|
3935
|
-
* @public
|
|
3936
|
-
*/
|
|
3937
|
-
export type InstanceRefreshStatus = (typeof InstanceRefreshStatus)[keyof typeof InstanceRefreshStatus];
|
|
3938
3526
|
/**
|
|
3939
3527
|
* <p>Describes an instance refresh for an Auto Scaling group. </p>
|
|
3940
3528
|
* @public
|
|
@@ -4830,18 +4418,6 @@ export interface DescribePoliciesType {
|
|
|
4830
4418
|
*/
|
|
4831
4419
|
MaxRecords?: number | undefined;
|
|
4832
4420
|
}
|
|
4833
|
-
/**
|
|
4834
|
-
* @public
|
|
4835
|
-
* @enum
|
|
4836
|
-
*/
|
|
4837
|
-
export declare const PredictiveScalingMaxCapacityBreachBehavior: {
|
|
4838
|
-
readonly HonorMaxCapacity: "HonorMaxCapacity";
|
|
4839
|
-
readonly IncreaseMaxCapacity: "IncreaseMaxCapacity";
|
|
4840
|
-
};
|
|
4841
|
-
/**
|
|
4842
|
-
* @public
|
|
4843
|
-
*/
|
|
4844
|
-
export type PredictiveScalingMaxCapacityBreachBehavior = (typeof PredictiveScalingMaxCapacityBreachBehavior)[keyof typeof PredictiveScalingMaxCapacityBreachBehavior];
|
|
4845
4421
|
/**
|
|
4846
4422
|
* <p>Describes the dimension of a metric.</p>
|
|
4847
4423
|
* @public
|
|
@@ -5011,20 +4587,6 @@ export interface PredictiveScalingCustomizedScalingMetric {
|
|
|
5011
4587
|
*/
|
|
5012
4588
|
MetricDataQueries: MetricDataQuery[] | undefined;
|
|
5013
4589
|
}
|
|
5014
|
-
/**
|
|
5015
|
-
* @public
|
|
5016
|
-
* @enum
|
|
5017
|
-
*/
|
|
5018
|
-
export declare const PredefinedLoadMetricType: {
|
|
5019
|
-
readonly ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount";
|
|
5020
|
-
readonly ASGTotalCPUUtilization: "ASGTotalCPUUtilization";
|
|
5021
|
-
readonly ASGTotalNetworkIn: "ASGTotalNetworkIn";
|
|
5022
|
-
readonly ASGTotalNetworkOut: "ASGTotalNetworkOut";
|
|
5023
|
-
};
|
|
5024
|
-
/**
|
|
5025
|
-
* @public
|
|
5026
|
-
*/
|
|
5027
|
-
export type PredefinedLoadMetricType = (typeof PredefinedLoadMetricType)[keyof typeof PredefinedLoadMetricType];
|
|
5028
4590
|
/**
|
|
5029
4591
|
* <p>Describes a load metric for a predictive scaling policy.</p>
|
|
5030
4592
|
* <p>When returned in the output of <code>DescribePolicies</code>, it indicates that a
|
|
@@ -5064,20 +4626,6 @@ export interface PredictiveScalingPredefinedLoadMetric {
|
|
|
5064
4626
|
*/
|
|
5065
4627
|
ResourceLabel?: string | undefined;
|
|
5066
4628
|
}
|
|
5067
|
-
/**
|
|
5068
|
-
* @public
|
|
5069
|
-
* @enum
|
|
5070
|
-
*/
|
|
5071
|
-
export declare const PredefinedMetricPairType: {
|
|
5072
|
-
readonly ALBRequestCount: "ALBRequestCount";
|
|
5073
|
-
readonly ASGCPUUtilization: "ASGCPUUtilization";
|
|
5074
|
-
readonly ASGNetworkIn: "ASGNetworkIn";
|
|
5075
|
-
readonly ASGNetworkOut: "ASGNetworkOut";
|
|
5076
|
-
};
|
|
5077
|
-
/**
|
|
5078
|
-
* @public
|
|
5079
|
-
*/
|
|
5080
|
-
export type PredefinedMetricPairType = (typeof PredefinedMetricPairType)[keyof typeof PredefinedMetricPairType];
|
|
5081
4629
|
/**
|
|
5082
4630
|
* <p>Represents a metric pair for a predictive scaling policy. </p>
|
|
5083
4631
|
* @public
|
|
@@ -5117,20 +4665,6 @@ export interface PredictiveScalingPredefinedMetricPair {
|
|
|
5117
4665
|
*/
|
|
5118
4666
|
ResourceLabel?: string | undefined;
|
|
5119
4667
|
}
|
|
5120
|
-
/**
|
|
5121
|
-
* @public
|
|
5122
|
-
* @enum
|
|
5123
|
-
*/
|
|
5124
|
-
export declare const PredefinedScalingMetricType: {
|
|
5125
|
-
readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
|
|
5126
|
-
readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
|
|
5127
|
-
readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
|
|
5128
|
-
readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
|
|
5129
|
-
};
|
|
5130
|
-
/**
|
|
5131
|
-
* @public
|
|
5132
|
-
*/
|
|
5133
|
-
export type PredefinedScalingMetricType = (typeof PredefinedScalingMetricType)[keyof typeof PredefinedScalingMetricType];
|
|
5134
4668
|
/**
|
|
5135
4669
|
* <p>Describes a scaling metric for a predictive scaling policy.</p>
|
|
5136
4670
|
* <p>When returned in the output of <code>DescribePolicies</code>, it indicates that a
|
|
@@ -5262,18 +4796,6 @@ export interface PredictiveScalingMetricSpecification {
|
|
|
5262
4796
|
*/
|
|
5263
4797
|
CustomizedCapacityMetricSpecification?: PredictiveScalingCustomizedCapacityMetric | undefined;
|
|
5264
4798
|
}
|
|
5265
|
-
/**
|
|
5266
|
-
* @public
|
|
5267
|
-
* @enum
|
|
5268
|
-
*/
|
|
5269
|
-
export declare const PredictiveScalingMode: {
|
|
5270
|
-
readonly ForecastAndScale: "ForecastAndScale";
|
|
5271
|
-
readonly ForecastOnly: "ForecastOnly";
|
|
5272
|
-
};
|
|
5273
|
-
/**
|
|
5274
|
-
* @public
|
|
5275
|
-
*/
|
|
5276
|
-
export type PredictiveScalingMode = (typeof PredictiveScalingMode)[keyof typeof PredictiveScalingMode];
|
|
5277
4799
|
/**
|
|
5278
4800
|
* <p>Represents a predictive scaling policy configuration to use with Amazon EC2 Auto Scaling.</p>
|
|
5279
4801
|
* @public
|
|
@@ -5515,21 +5037,6 @@ export interface TargetTrackingMetricDataQuery {
|
|
|
5515
5037
|
*/
|
|
5516
5038
|
ReturnData?: boolean | undefined;
|
|
5517
5039
|
}
|
|
5518
|
-
/**
|
|
5519
|
-
* @public
|
|
5520
|
-
* @enum
|
|
5521
|
-
*/
|
|
5522
|
-
export declare const MetricStatistic: {
|
|
5523
|
-
readonly Average: "Average";
|
|
5524
|
-
readonly Maximum: "Maximum";
|
|
5525
|
-
readonly Minimum: "Minimum";
|
|
5526
|
-
readonly SampleCount: "SampleCount";
|
|
5527
|
-
readonly Sum: "Sum";
|
|
5528
|
-
};
|
|
5529
|
-
/**
|
|
5530
|
-
* @public
|
|
5531
|
-
*/
|
|
5532
|
-
export type MetricStatistic = (typeof MetricStatistic)[keyof typeof MetricStatistic];
|
|
5533
5040
|
/**
|
|
5534
5041
|
* <p>Represents a CloudWatch metric of your choosing for a target tracking scaling policy to use
|
|
5535
5042
|
* with Amazon EC2 Auto Scaling.</p>
|
|
@@ -5605,20 +5112,6 @@ export interface CustomizedMetricSpecification {
|
|
|
5605
5112
|
*/
|
|
5606
5113
|
Metrics?: TargetTrackingMetricDataQuery[] | undefined;
|
|
5607
5114
|
}
|
|
5608
|
-
/**
|
|
5609
|
-
* @public
|
|
5610
|
-
* @enum
|
|
5611
|
-
*/
|
|
5612
|
-
export declare const MetricType: {
|
|
5613
|
-
readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
|
|
5614
|
-
readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
|
|
5615
|
-
readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
|
|
5616
|
-
readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
|
|
5617
|
-
};
|
|
5618
|
-
/**
|
|
5619
|
-
* @public
|
|
5620
|
-
*/
|
|
5621
|
-
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
5622
5115
|
/**
|
|
5623
5116
|
* <p>Represents a predefined metric for a target tracking scaling policy to use with
|
|
5624
5117
|
* Amazon EC2 Auto Scaling.</p>
|
|
@@ -6860,33 +6353,6 @@ export interface GetPredictiveScalingForecastType {
|
|
|
6860
6353
|
*/
|
|
6861
6354
|
EndTime: Date | undefined;
|
|
6862
6355
|
}
|
|
6863
|
-
/**
|
|
6864
|
-
* <p>
|
|
6865
|
-
* Indicates that the parameters in the current request do not match the parameters from a previous request with the same client token within the idempotency window.
|
|
6866
|
-
* </p>
|
|
6867
|
-
* @public
|
|
6868
|
-
*/
|
|
6869
|
-
export declare class IdempotentParameterMismatchError extends __BaseException {
|
|
6870
|
-
readonly name: "IdempotentParameterMismatchError";
|
|
6871
|
-
readonly $fault: "client";
|
|
6872
|
-
Message?: string | undefined;
|
|
6873
|
-
/**
|
|
6874
|
-
* @internal
|
|
6875
|
-
*/
|
|
6876
|
-
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchError, __BaseException>);
|
|
6877
|
-
}
|
|
6878
|
-
/**
|
|
6879
|
-
* @public
|
|
6880
|
-
* @enum
|
|
6881
|
-
*/
|
|
6882
|
-
export declare const RetryStrategy: {
|
|
6883
|
-
readonly NONE: "none";
|
|
6884
|
-
readonly RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration";
|
|
6885
|
-
};
|
|
6886
|
-
/**
|
|
6887
|
-
* @public
|
|
6888
|
-
*/
|
|
6889
|
-
export type RetryStrategy = (typeof RetryStrategy)[keyof typeof RetryStrategy];
|
|
6890
6356
|
/**
|
|
6891
6357
|
* @public
|
|
6892
6358
|
*/
|
|
@@ -7611,21 +7077,6 @@ export interface ScalingProcessQuery {
|
|
|
7611
7077
|
*/
|
|
7612
7078
|
ScalingProcesses?: string[] | undefined;
|
|
7613
7079
|
}
|
|
7614
|
-
/**
|
|
7615
|
-
* <p>The request failed because a desired configuration was not found or an incompatible
|
|
7616
|
-
* launch template (uses a Systems Manager parameter instead of an AMI ID) or launch
|
|
7617
|
-
* template version (<code>$Latest</code> or <code>$Default</code>) is present on the Auto Scaling
|
|
7618
|
-
* group.</p>
|
|
7619
|
-
* @public
|
|
7620
|
-
*/
|
|
7621
|
-
export declare class IrreversibleInstanceRefreshFault extends __BaseException {
|
|
7622
|
-
readonly name: "IrreversibleInstanceRefreshFault";
|
|
7623
|
-
readonly $fault: "client";
|
|
7624
|
-
/**
|
|
7625
|
-
* @internal
|
|
7626
|
-
*/
|
|
7627
|
-
constructor(opts: __ExceptionOptionType<IrreversibleInstanceRefreshFault, __BaseException>);
|
|
7628
|
-
}
|
|
7629
7080
|
/**
|
|
7630
7081
|
* @public
|
|
7631
7082
|
*/
|
|
@@ -7723,19 +7174,6 @@ export interface SetInstanceProtectionQuery {
|
|
|
7723
7174
|
*/
|
|
7724
7175
|
ProtectedFromScaleIn: boolean | undefined;
|
|
7725
7176
|
}
|
|
7726
|
-
/**
|
|
7727
|
-
* <p>The request failed because an active instance refresh already exists for the specified
|
|
7728
|
-
* Auto Scaling group.</p>
|
|
7729
|
-
* @public
|
|
7730
|
-
*/
|
|
7731
|
-
export declare class InstanceRefreshInProgressFault extends __BaseException {
|
|
7732
|
-
readonly name: "InstanceRefreshInProgressFault";
|
|
7733
|
-
readonly $fault: "client";
|
|
7734
|
-
/**
|
|
7735
|
-
* @internal
|
|
7736
|
-
*/
|
|
7737
|
-
constructor(opts: __ExceptionOptionType<InstanceRefreshInProgressFault, __BaseException>);
|
|
7738
|
-
}
|
|
7739
7177
|
/**
|
|
7740
7178
|
* @public
|
|
7741
7179
|
*/
|
|
@@ -7746,17 +7184,6 @@ export interface StartInstanceRefreshAnswer {
|
|
|
7746
7184
|
*/
|
|
7747
7185
|
InstanceRefreshId?: string | undefined;
|
|
7748
7186
|
}
|
|
7749
|
-
/**
|
|
7750
|
-
* @public
|
|
7751
|
-
* @enum
|
|
7752
|
-
*/
|
|
7753
|
-
export declare const RefreshStrategy: {
|
|
7754
|
-
readonly Rolling: "Rolling";
|
|
7755
|
-
};
|
|
7756
|
-
/**
|
|
7757
|
-
* @public
|
|
7758
|
-
*/
|
|
7759
|
-
export type RefreshStrategy = (typeof RefreshStrategy)[keyof typeof RefreshStrategy];
|
|
7760
7187
|
/**
|
|
7761
7188
|
* @public
|
|
7762
7189
|
*/
|