@aws-sdk/client-auto-scaling 3.933.0 → 3.935.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.
@@ -98,7 +98,9 @@ export declare var FailedScheduledUpdateGroupActionRequest: StaticStructureSchem
98
98
  export declare var Filter: StaticStructureSchema;
99
99
  export declare var GetPredictiveScalingForecastAnswer: StaticStructureSchema;
100
100
  export declare var GetPredictiveScalingForecastType: StaticStructureSchema;
101
+ export declare var IdempotentParameterMismatchError: StaticErrorSchema;
101
102
  export declare var Instance: StaticStructureSchema;
103
+ export declare var InstanceCollection: StaticStructureSchema;
102
104
  export declare var InstanceMaintenancePolicy: StaticStructureSchema;
103
105
  export declare var InstanceMetadataOptions: StaticStructureSchema;
104
106
  export declare var InstanceMonitoring: StaticStructureSchema;
@@ -116,6 +118,9 @@ export declare var LaunchConfiguration: StaticStructureSchema;
116
118
  export declare var LaunchConfigurationNamesType: StaticStructureSchema;
117
119
  export declare var LaunchConfigurationNameType: StaticStructureSchema;
118
120
  export declare var LaunchConfigurationsType: StaticStructureSchema;
121
+ export declare var LaunchInstancesError: StaticStructureSchema;
122
+ export declare var LaunchInstancesRequest: StaticStructureSchema;
123
+ export declare var LaunchInstancesResult: StaticStructureSchema;
119
124
  export declare var LaunchTemplate: StaticStructureSchema;
120
125
  export declare var LaunchTemplateOverrides: StaticStructureSchema;
121
126
  export declare var LaunchTemplateSpecification: StaticStructureSchema;
@@ -209,7 +214,9 @@ export declare var AutoScalingGroupNames: number;
209
214
  export declare var AutoScalingGroups: StaticListSchema;
210
215
  export declare var AutoScalingInstances: StaticListSchema;
211
216
  export declare var AutoScalingNotificationTypes: number;
217
+ export declare var AvailabilityZoneIdsLimit1: number;
212
218
  export declare var AvailabilityZones: number;
219
+ export declare var AvailabilityZonesLimit1: number;
213
220
  export declare var BlockDeviceMappings: StaticListSchema;
214
221
  export declare var CapacityReservationIds: number;
215
222
  export declare var CapacityReservationResourceGroupArns: number;
@@ -220,6 +227,7 @@ export declare var EnabledMetrics: StaticListSchema;
220
227
  export declare var ExcludedInstanceTypes: number;
221
228
  export declare var FailedScheduledUpdateGroupActionRequests: StaticListSchema;
222
229
  export declare var Filters: StaticListSchema;
230
+ export declare var InstanceCollections: StaticListSchema;
223
231
  export declare var InstanceGenerations: number;
224
232
  export declare var InstanceIds: number;
225
233
  export declare var InstanceRefreshes: StaticListSchema;
@@ -227,6 +235,7 @@ export declare var InstanceRefreshIds: number;
227
235
  export declare var Instances: StaticListSchema;
228
236
  export declare var LaunchConfigurationNames: number;
229
237
  export declare var LaunchConfigurations: StaticListSchema;
238
+ export declare var LaunchInstancesErrors: StaticListSchema;
230
239
  export declare var LifecycleHookNames: number;
231
240
  export declare var LifecycleHooks: StaticListSchema;
232
241
  export declare var LifecycleHookSpecifications: StaticListSchema;
@@ -256,6 +265,7 @@ export declare var ScheduledUpdateGroupActionRequests: StaticListSchema;
256
265
  export declare var ScheduledUpdateGroupActions: StaticListSchema;
257
266
  export declare var SecurityGroups: number;
258
267
  export declare var StepAdjustments: StaticListSchema;
268
+ export declare var SubnetIdsLimit1: number;
259
269
  export declare var SuspendedProcesses: StaticListSchema;
260
270
  export declare var TagDescriptionList: StaticListSchema;
261
271
  export declare var Tags: StaticListSchema;
@@ -315,6 +325,7 @@ export declare var EnterStandby: StaticOperationSchema;
315
325
  export declare var ExecutePolicy: StaticOperationSchema;
316
326
  export declare var ExitStandby: StaticOperationSchema;
317
327
  export declare var GetPredictiveScalingForecast: StaticOperationSchema;
328
+ export declare var LaunchInstances: StaticOperationSchema;
318
329
  export declare var PutLifecycleHook: StaticOperationSchema;
319
330
  export declare var PutNotificationConfiguration: StaticOperationSchema;
320
331
  export declare var PutScalingPolicy: StaticOperationSchema;
@@ -200,6 +200,10 @@ import {
200
200
  GetPredictiveScalingForecastCommandInput,
201
201
  GetPredictiveScalingForecastCommandOutput,
202
202
  } from "./commands/GetPredictiveScalingForecastCommand";
203
+ import {
204
+ LaunchInstancesCommandInput,
205
+ LaunchInstancesCommandOutput,
206
+ } from "./commands/LaunchInstancesCommand";
203
207
  import {
204
208
  PutLifecycleHookCommandInput,
205
209
  PutLifecycleHookCommandOutput,
@@ -944,6 +948,19 @@ export interface AutoScaling {
944
948
  options: __HttpHandlerOptions,
945
949
  cb: (err: any, data?: GetPredictiveScalingForecastCommandOutput) => void
946
950
  ): void;
951
+ launchInstances(
952
+ args: LaunchInstancesCommandInput,
953
+ options?: __HttpHandlerOptions
954
+ ): Promise<LaunchInstancesCommandOutput>;
955
+ launchInstances(
956
+ args: LaunchInstancesCommandInput,
957
+ cb: (err: any, data?: LaunchInstancesCommandOutput) => void
958
+ ): void;
959
+ launchInstances(
960
+ args: LaunchInstancesCommandInput,
961
+ options: __HttpHandlerOptions,
962
+ cb: (err: any, data?: LaunchInstancesCommandOutput) => void
963
+ ): void;
947
964
  putLifecycleHook(
948
965
  args: PutLifecycleHookCommandInput,
949
966
  options?: __HttpHandlerOptions
@@ -248,6 +248,10 @@ import {
248
248
  GetPredictiveScalingForecastCommandInput,
249
249
  GetPredictiveScalingForecastCommandOutput,
250
250
  } from "./commands/GetPredictiveScalingForecastCommand";
251
+ import {
252
+ LaunchInstancesCommandInput,
253
+ LaunchInstancesCommandOutput,
254
+ } from "./commands/LaunchInstancesCommand";
251
255
  import {
252
256
  PutLifecycleHookCommandInput,
253
257
  PutLifecycleHookCommandOutput,
@@ -366,6 +370,7 @@ export type ServiceInputTypes =
366
370
  | ExecutePolicyCommandInput
367
371
  | ExitStandbyCommandInput
368
372
  | GetPredictiveScalingForecastCommandInput
373
+ | LaunchInstancesCommandInput
369
374
  | PutLifecycleHookCommandInput
370
375
  | PutNotificationConfigurationCommandInput
371
376
  | PutScalingPolicyCommandInput
@@ -432,6 +437,7 @@ export type ServiceOutputTypes =
432
437
  | ExecutePolicyCommandOutput
433
438
  | ExitStandbyCommandOutput
434
439
  | GetPredictiveScalingForecastCommandOutput
440
+ | LaunchInstancesCommandOutput
435
441
  | PutLifecycleHookCommandOutput
436
442
  | PutNotificationConfigurationCommandOutput
437
443
  | PutScalingPolicyCommandOutput
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AutoScalingClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../AutoScalingClient";
8
+ import {
9
+ LaunchInstancesRequest,
10
+ LaunchInstancesResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface LaunchInstancesCommandInput extends LaunchInstancesRequest {}
15
+ export interface LaunchInstancesCommandOutput
16
+ extends LaunchInstancesResult,
17
+ __MetadataBearer {}
18
+ declare const LaunchInstancesCommand_base: {
19
+ new (
20
+ input: LaunchInstancesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ LaunchInstancesCommandInput,
23
+ LaunchInstancesCommandOutput,
24
+ AutoScalingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: LaunchInstancesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ LaunchInstancesCommandInput,
32
+ LaunchInstancesCommandOutput,
33
+ AutoScalingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class LaunchInstancesCommand extends LaunchInstancesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: LaunchInstancesRequest;
43
+ output: LaunchInstancesResult;
44
+ };
45
+ sdk: {
46
+ input: LaunchInstancesCommandInput;
47
+ output: LaunchInstancesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -48,6 +48,7 @@ export * from "./EnterStandbyCommand";
48
48
  export * from "./ExecutePolicyCommand";
49
49
  export * from "./ExitStandbyCommand";
50
50
  export * from "./GetPredictiveScalingForecastCommand";
51
+ export * from "./LaunchInstancesCommand";
51
52
  export * from "./PutLifecycleHookCommand";
52
53
  export * from "./PutNotificationConfigurationCommand";
53
54
  export * from "./PutScalingPolicyCommand";
@@ -6,5 +6,7 @@ export { AutoScalingExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
- export * from "./models";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
10
12
  export { AutoScalingServiceException } from "./models/AutoScalingServiceException";
@@ -0,0 +1,242 @@
1
+ export declare const AcceleratorManufacturer: {
2
+ readonly AMAZON_WEB_SERVICES: "amazon-web-services";
3
+ readonly AMD: "amd";
4
+ readonly NVIDIA: "nvidia";
5
+ readonly XILINX: "xilinx";
6
+ };
7
+ export type AcceleratorManufacturer =
8
+ (typeof AcceleratorManufacturer)[keyof typeof AcceleratorManufacturer];
9
+ export declare const AcceleratorName: {
10
+ readonly A100: "a100";
11
+ readonly K80: "k80";
12
+ readonly M60: "m60";
13
+ readonly RADEON_PRO_V520: "radeon-pro-v520";
14
+ readonly T4: "t4";
15
+ readonly V100: "v100";
16
+ readonly VU9P: "vu9p";
17
+ };
18
+ export type AcceleratorName =
19
+ (typeof AcceleratorName)[keyof typeof AcceleratorName];
20
+ export declare const AcceleratorType: {
21
+ readonly FPGA: "fpga";
22
+ readonly GPU: "gpu";
23
+ readonly INFERENCE: "inference";
24
+ };
25
+ export type AcceleratorType =
26
+ (typeof AcceleratorType)[keyof typeof AcceleratorType];
27
+ export declare const ScalingActivityStatusCode: {
28
+ readonly Cancelled: "Cancelled";
29
+ readonly Failed: "Failed";
30
+ readonly InProgress: "InProgress";
31
+ readonly MidLifecycleAction: "MidLifecycleAction";
32
+ readonly PendingSpotBidPlacement: "PendingSpotBidPlacement";
33
+ readonly PreInService: "PreInService";
34
+ readonly Successful: "Successful";
35
+ readonly WaitingForConnectionDraining: "WaitingForConnectionDraining";
36
+ readonly WaitingForELBConnectionDraining: "WaitingForELBConnectionDraining";
37
+ readonly WaitingForInstanceId: "WaitingForInstanceId";
38
+ readonly WaitingForInstanceWarmup: "WaitingForInstanceWarmup";
39
+ readonly WaitingForSpotInstanceId: "WaitingForSpotInstanceId";
40
+ readonly WaitingForSpotInstanceRequestId: "WaitingForSpotInstanceRequestId";
41
+ };
42
+ export type ScalingActivityStatusCode =
43
+ (typeof ScalingActivityStatusCode)[keyof typeof ScalingActivityStatusCode];
44
+ export declare const CapacityDistributionStrategy: {
45
+ readonly BALANCED_BEST_EFFORT: "balanced-best-effort";
46
+ readonly BALANCED_ONLY: "balanced-only";
47
+ };
48
+ export type CapacityDistributionStrategy =
49
+ (typeof CapacityDistributionStrategy)[keyof typeof CapacityDistributionStrategy];
50
+ export declare const ImpairedZoneHealthCheckBehavior: {
51
+ readonly IgnoreUnhealthy: "IgnoreUnhealthy";
52
+ readonly ReplaceUnhealthy: "ReplaceUnhealthy";
53
+ };
54
+ export type ImpairedZoneHealthCheckBehavior =
55
+ (typeof ImpairedZoneHealthCheckBehavior)[keyof typeof ImpairedZoneHealthCheckBehavior];
56
+ export declare const CapacityReservationPreference: {
57
+ readonly CapacityReservationsFirst: "capacity-reservations-first";
58
+ readonly CapacityReservationsOnly: "capacity-reservations-only";
59
+ readonly Default: "default";
60
+ readonly None: "none";
61
+ };
62
+ export type CapacityReservationPreference =
63
+ (typeof CapacityReservationPreference)[keyof typeof CapacityReservationPreference];
64
+ export declare const BareMetal: {
65
+ readonly EXCLUDED: "excluded";
66
+ readonly INCLUDED: "included";
67
+ readonly REQUIRED: "required";
68
+ };
69
+ export type BareMetal = (typeof BareMetal)[keyof typeof BareMetal];
70
+ export declare const BurstablePerformance: {
71
+ readonly EXCLUDED: "excluded";
72
+ readonly INCLUDED: "included";
73
+ readonly REQUIRED: "required";
74
+ };
75
+ export type BurstablePerformance =
76
+ (typeof BurstablePerformance)[keyof typeof BurstablePerformance];
77
+ export declare const CpuManufacturer: {
78
+ readonly AMAZON_WEB_SERVICES: "amazon-web-services";
79
+ readonly AMD: "amd";
80
+ readonly APPLE: "apple";
81
+ readonly INTEL: "intel";
82
+ };
83
+ export type CpuManufacturer =
84
+ (typeof CpuManufacturer)[keyof typeof CpuManufacturer];
85
+ export declare const InstanceGeneration: {
86
+ readonly CURRENT: "current";
87
+ readonly PREVIOUS: "previous";
88
+ };
89
+ export type InstanceGeneration =
90
+ (typeof InstanceGeneration)[keyof typeof InstanceGeneration];
91
+ export declare const LocalStorage: {
92
+ readonly EXCLUDED: "excluded";
93
+ readonly INCLUDED: "included";
94
+ readonly REQUIRED: "required";
95
+ };
96
+ export type LocalStorage = (typeof LocalStorage)[keyof typeof LocalStorage];
97
+ export declare const LocalStorageType: {
98
+ readonly HDD: "hdd";
99
+ readonly SSD: "ssd";
100
+ };
101
+ export type LocalStorageType =
102
+ (typeof LocalStorageType)[keyof typeof LocalStorageType];
103
+ export declare const InstanceMetadataEndpointState: {
104
+ readonly Disabled: "disabled";
105
+ readonly Enabled: "enabled";
106
+ };
107
+ export type InstanceMetadataEndpointState =
108
+ (typeof InstanceMetadataEndpointState)[keyof typeof InstanceMetadataEndpointState];
109
+ export declare const InstanceMetadataHttpTokensState: {
110
+ readonly Optional: "optional";
111
+ readonly Required: "required";
112
+ };
113
+ export type InstanceMetadataHttpTokensState =
114
+ (typeof InstanceMetadataHttpTokensState)[keyof typeof InstanceMetadataHttpTokensState];
115
+ export declare const LifecycleState: {
116
+ readonly DETACHED: "Detached";
117
+ readonly DETACHING: "Detaching";
118
+ readonly ENTERING_STANDBY: "EnteringStandby";
119
+ readonly IN_SERVICE: "InService";
120
+ readonly PENDING: "Pending";
121
+ readonly PENDING_PROCEED: "Pending:Proceed";
122
+ readonly PENDING_WAIT: "Pending:Wait";
123
+ readonly QUARANTINED: "Quarantined";
124
+ readonly STANDBY: "Standby";
125
+ readonly TERMINATED: "Terminated";
126
+ readonly TERMINATING: "Terminating";
127
+ readonly TERMINATING_PROCEED: "Terminating:Proceed";
128
+ readonly TERMINATING_WAIT: "Terminating:Wait";
129
+ readonly WARMED_HIBERNATED: "Warmed:Hibernated";
130
+ readonly WARMED_PENDING: "Warmed:Pending";
131
+ readonly WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed";
132
+ readonly WARMED_PENDING_WAIT: "Warmed:Pending:Wait";
133
+ readonly WARMED_RUNNING: "Warmed:Running";
134
+ readonly WARMED_STOPPED: "Warmed:Stopped";
135
+ readonly WARMED_TERMINATED: "Warmed:Terminated";
136
+ readonly WARMED_TERMINATING: "Warmed:Terminating";
137
+ readonly WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed";
138
+ readonly WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait";
139
+ };
140
+ export type LifecycleState =
141
+ (typeof LifecycleState)[keyof typeof LifecycleState];
142
+ export declare const WarmPoolState: {
143
+ readonly Hibernated: "Hibernated";
144
+ readonly Running: "Running";
145
+ readonly Stopped: "Stopped";
146
+ };
147
+ export type WarmPoolState = (typeof WarmPoolState)[keyof typeof WarmPoolState];
148
+ export declare const WarmPoolStatus: {
149
+ readonly PendingDelete: "PendingDelete";
150
+ };
151
+ export type WarmPoolStatus =
152
+ (typeof WarmPoolStatus)[keyof typeof WarmPoolStatus];
153
+ export declare const ScaleInProtectedInstances: {
154
+ readonly Ignore: "Ignore";
155
+ readonly Refresh: "Refresh";
156
+ readonly Wait: "Wait";
157
+ };
158
+ export type ScaleInProtectedInstances =
159
+ (typeof ScaleInProtectedInstances)[keyof typeof ScaleInProtectedInstances];
160
+ export declare const StandbyInstances: {
161
+ readonly Ignore: "Ignore";
162
+ readonly Terminate: "Terminate";
163
+ readonly Wait: "Wait";
164
+ };
165
+ export type StandbyInstances =
166
+ (typeof StandbyInstances)[keyof typeof StandbyInstances];
167
+ export declare const InstanceRefreshStatus: {
168
+ readonly Baking: "Baking";
169
+ readonly Cancelled: "Cancelled";
170
+ readonly Cancelling: "Cancelling";
171
+ readonly Failed: "Failed";
172
+ readonly InProgress: "InProgress";
173
+ readonly Pending: "Pending";
174
+ readonly RollbackFailed: "RollbackFailed";
175
+ readonly RollbackInProgress: "RollbackInProgress";
176
+ readonly RollbackSuccessful: "RollbackSuccessful";
177
+ readonly Successful: "Successful";
178
+ };
179
+ export type InstanceRefreshStatus =
180
+ (typeof InstanceRefreshStatus)[keyof typeof InstanceRefreshStatus];
181
+ export declare const PredictiveScalingMaxCapacityBreachBehavior: {
182
+ readonly HonorMaxCapacity: "HonorMaxCapacity";
183
+ readonly IncreaseMaxCapacity: "IncreaseMaxCapacity";
184
+ };
185
+ export type PredictiveScalingMaxCapacityBreachBehavior =
186
+ (typeof PredictiveScalingMaxCapacityBreachBehavior)[keyof typeof PredictiveScalingMaxCapacityBreachBehavior];
187
+ export declare const PredefinedLoadMetricType: {
188
+ readonly ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount";
189
+ readonly ASGTotalCPUUtilization: "ASGTotalCPUUtilization";
190
+ readonly ASGTotalNetworkIn: "ASGTotalNetworkIn";
191
+ readonly ASGTotalNetworkOut: "ASGTotalNetworkOut";
192
+ };
193
+ export type PredefinedLoadMetricType =
194
+ (typeof PredefinedLoadMetricType)[keyof typeof PredefinedLoadMetricType];
195
+ export declare const PredefinedMetricPairType: {
196
+ readonly ALBRequestCount: "ALBRequestCount";
197
+ readonly ASGCPUUtilization: "ASGCPUUtilization";
198
+ readonly ASGNetworkIn: "ASGNetworkIn";
199
+ readonly ASGNetworkOut: "ASGNetworkOut";
200
+ };
201
+ export type PredefinedMetricPairType =
202
+ (typeof PredefinedMetricPairType)[keyof typeof PredefinedMetricPairType];
203
+ export declare const PredefinedScalingMetricType: {
204
+ readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
205
+ readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
206
+ readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
207
+ readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
208
+ };
209
+ export type PredefinedScalingMetricType =
210
+ (typeof PredefinedScalingMetricType)[keyof typeof PredefinedScalingMetricType];
211
+ export declare const PredictiveScalingMode: {
212
+ readonly ForecastAndScale: "ForecastAndScale";
213
+ readonly ForecastOnly: "ForecastOnly";
214
+ };
215
+ export type PredictiveScalingMode =
216
+ (typeof PredictiveScalingMode)[keyof typeof PredictiveScalingMode];
217
+ export declare const MetricStatistic: {
218
+ readonly Average: "Average";
219
+ readonly Maximum: "Maximum";
220
+ readonly Minimum: "Minimum";
221
+ readonly SampleCount: "SampleCount";
222
+ readonly Sum: "Sum";
223
+ };
224
+ export type MetricStatistic =
225
+ (typeof MetricStatistic)[keyof typeof MetricStatistic];
226
+ export declare const MetricType: {
227
+ readonly ALBRequestCountPerTarget: "ALBRequestCountPerTarget";
228
+ readonly ASGAverageCPUUtilization: "ASGAverageCPUUtilization";
229
+ readonly ASGAverageNetworkIn: "ASGAverageNetworkIn";
230
+ readonly ASGAverageNetworkOut: "ASGAverageNetworkOut";
231
+ };
232
+ export type MetricType = (typeof MetricType)[keyof typeof MetricType];
233
+ export declare const RetryStrategy: {
234
+ readonly NONE: "none";
235
+ readonly RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration";
236
+ };
237
+ export type RetryStrategy = (typeof RetryStrategy)[keyof typeof RetryStrategy];
238
+ export declare const RefreshStrategy: {
239
+ readonly Rolling: "Rolling";
240
+ };
241
+ export type RefreshStrategy =
242
+ (typeof RefreshStrategy)[keyof typeof RefreshStrategy];
@@ -0,0 +1,81 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AutoScalingServiceException as __BaseException } from "./AutoScalingServiceException";
3
+ export declare class ActiveInstanceRefreshNotFoundFault extends __BaseException {
4
+ readonly name: "ActiveInstanceRefreshNotFoundFault";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<
8
+ ActiveInstanceRefreshNotFoundFault,
9
+ __BaseException
10
+ >
11
+ );
12
+ }
13
+ export declare class AlreadyExistsFault extends __BaseException {
14
+ readonly name: "AlreadyExistsFault";
15
+ readonly $fault: "client";
16
+ constructor(opts: __ExceptionOptionType<AlreadyExistsFault, __BaseException>);
17
+ }
18
+ export declare class ResourceContentionFault extends __BaseException {
19
+ readonly name: "ResourceContentionFault";
20
+ readonly $fault: "server";
21
+ constructor(
22
+ opts: __ExceptionOptionType<ResourceContentionFault, __BaseException>
23
+ );
24
+ }
25
+ export declare class ServiceLinkedRoleFailure extends __BaseException {
26
+ readonly name: "ServiceLinkedRoleFailure";
27
+ readonly $fault: "server";
28
+ constructor(
29
+ opts: __ExceptionOptionType<ServiceLinkedRoleFailure, __BaseException>
30
+ );
31
+ }
32
+ export declare class LimitExceededFault extends __BaseException {
33
+ readonly name: "LimitExceededFault";
34
+ readonly $fault: "client";
35
+ constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
36
+ }
37
+ export declare class ResourceInUseFault extends __BaseException {
38
+ readonly name: "ResourceInUseFault";
39
+ readonly $fault: "client";
40
+ constructor(opts: __ExceptionOptionType<ResourceInUseFault, __BaseException>);
41
+ }
42
+ export declare class ScalingActivityInProgressFault extends __BaseException {
43
+ readonly name: "ScalingActivityInProgressFault";
44
+ readonly $fault: "client";
45
+ constructor(
46
+ opts: __ExceptionOptionType<ScalingActivityInProgressFault, __BaseException>
47
+ );
48
+ }
49
+ export declare class InvalidNextToken extends __BaseException {
50
+ readonly name: "InvalidNextToken";
51
+ readonly $fault: "client";
52
+ constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
53
+ }
54
+ export declare class IdempotentParameterMismatchError extends __BaseException {
55
+ readonly name: "IdempotentParameterMismatchError";
56
+ readonly $fault: "client";
57
+ Message?: string | undefined;
58
+ constructor(
59
+ opts: __ExceptionOptionType<
60
+ IdempotentParameterMismatchError,
61
+ __BaseException
62
+ >
63
+ );
64
+ }
65
+ export declare class IrreversibleInstanceRefreshFault extends __BaseException {
66
+ readonly name: "IrreversibleInstanceRefreshFault";
67
+ readonly $fault: "client";
68
+ constructor(
69
+ opts: __ExceptionOptionType<
70
+ IrreversibleInstanceRefreshFault,
71
+ __BaseException
72
+ >
73
+ );
74
+ }
75
+ export declare class InstanceRefreshInProgressFault extends __BaseException {
76
+ readonly name: "InstanceRefreshInProgressFault";
77
+ readonly $fault: "client";
78
+ constructor(
79
+ opts: __ExceptionOptionType<InstanceRefreshInProgressFault, __BaseException>
80
+ );
81
+ }