@aws-sdk/client-cloudcontrol 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudControlServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +296 -1
- package/dist-cjs/protocols/Aws_json1_0.js +195 -751
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudControlServiceException.js +12 -0
- package/dist-es/models/models_0.js +275 -1
- package/dist-es/protocols/Aws_json1_0.js +350 -735
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudControlServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +149 -64
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudControlServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +107 -64
- package/package.json +26 -26
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from CloudControl service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class CloudControlServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The resource with the name requested already exists.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AlreadyExistsException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
7
|
+
readonly name: "AlreadyExistsException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
export interface CancelResourceRequestInput {
|
|
11
16
|
/**
|
|
@@ -157,36 +162,52 @@ export declare namespace CancelResourceRequestOutput {
|
|
|
157
162
|
/**
|
|
158
163
|
* <p>The resource is currently being modified by another operation.</p>
|
|
159
164
|
*/
|
|
160
|
-
export
|
|
161
|
-
name: "ConcurrentModificationException";
|
|
162
|
-
$fault: "server";
|
|
165
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
166
|
+
readonly name: "ConcurrentModificationException";
|
|
167
|
+
readonly $fault: "server";
|
|
163
168
|
Message?: string;
|
|
169
|
+
/**
|
|
170
|
+
* @internal
|
|
171
|
+
*/
|
|
172
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
164
173
|
}
|
|
165
174
|
/**
|
|
166
175
|
* <p>A resource operation with the specified request token cannot be found.</p>
|
|
167
176
|
*/
|
|
168
|
-
export
|
|
169
|
-
name: "RequestTokenNotFoundException";
|
|
170
|
-
$fault: "client";
|
|
177
|
+
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
178
|
+
readonly name: "RequestTokenNotFoundException";
|
|
179
|
+
readonly $fault: "client";
|
|
171
180
|
Message?: string;
|
|
181
|
+
/**
|
|
182
|
+
* @internal
|
|
183
|
+
*/
|
|
184
|
+
constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
|
|
172
185
|
}
|
|
173
186
|
/**
|
|
174
187
|
* <p>The specified client token has already been used in another resource request.</p>
|
|
175
188
|
* <p>It is best practice for client tokens to be unique for each resource operation request.
|
|
176
189
|
* However, client token expire after 36 hours.</p>
|
|
177
190
|
*/
|
|
178
|
-
export
|
|
179
|
-
name: "ClientTokenConflictException";
|
|
180
|
-
$fault: "client";
|
|
191
|
+
export declare class ClientTokenConflictException extends __BaseException {
|
|
192
|
+
readonly name: "ClientTokenConflictException";
|
|
193
|
+
readonly $fault: "client";
|
|
181
194
|
Message?: string;
|
|
195
|
+
/**
|
|
196
|
+
* @internal
|
|
197
|
+
*/
|
|
198
|
+
constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
|
|
182
199
|
}
|
|
183
200
|
/**
|
|
184
201
|
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
185
202
|
*/
|
|
186
|
-
export
|
|
187
|
-
name: "ConcurrentOperationException";
|
|
188
|
-
$fault: "client";
|
|
203
|
+
export declare class ConcurrentOperationException extends __BaseException {
|
|
204
|
+
readonly name: "ConcurrentOperationException";
|
|
205
|
+
readonly $fault: "client";
|
|
189
206
|
Message?: string;
|
|
207
|
+
/**
|
|
208
|
+
* @internal
|
|
209
|
+
*/
|
|
210
|
+
constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
|
|
190
211
|
}
|
|
191
212
|
export interface CreateResourceInput {
|
|
192
213
|
/**
|
|
@@ -261,143 +282,207 @@ export declare namespace CreateResourceOutput {
|
|
|
261
282
|
* <p>The resource handler has returned that the downstream service generated an error that does
|
|
262
283
|
* not map to any other handler error code.</p>
|
|
263
284
|
*/
|
|
264
|
-
export
|
|
265
|
-
name: "GeneralServiceException";
|
|
266
|
-
$fault: "client";
|
|
285
|
+
export declare class GeneralServiceException extends __BaseException {
|
|
286
|
+
readonly name: "GeneralServiceException";
|
|
287
|
+
readonly $fault: "client";
|
|
267
288
|
Message?: string;
|
|
289
|
+
/**
|
|
290
|
+
* @internal
|
|
291
|
+
*/
|
|
292
|
+
constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
|
|
268
293
|
}
|
|
269
294
|
/**
|
|
270
295
|
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
271
296
|
* include timeouts.</p>
|
|
272
297
|
*/
|
|
273
|
-
export
|
|
274
|
-
name: "HandlerFailureException";
|
|
275
|
-
$fault: "server";
|
|
298
|
+
export declare class HandlerFailureException extends __BaseException {
|
|
299
|
+
readonly name: "HandlerFailureException";
|
|
300
|
+
readonly $fault: "server";
|
|
276
301
|
Message?: string;
|
|
302
|
+
/**
|
|
303
|
+
* @internal
|
|
304
|
+
*/
|
|
305
|
+
constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
|
|
277
306
|
}
|
|
278
307
|
/**
|
|
279
308
|
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
280
309
|
* handler.</p>
|
|
281
310
|
*/
|
|
282
|
-
export
|
|
283
|
-
name: "HandlerInternalFailureException";
|
|
284
|
-
$fault: "server";
|
|
311
|
+
export declare class HandlerInternalFailureException extends __BaseException {
|
|
312
|
+
readonly name: "HandlerInternalFailureException";
|
|
313
|
+
readonly $fault: "server";
|
|
285
314
|
Message?: string;
|
|
315
|
+
/**
|
|
316
|
+
* @internal
|
|
317
|
+
*/
|
|
318
|
+
constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
|
|
286
319
|
}
|
|
287
320
|
/**
|
|
288
321
|
* <p>The resource handler has returned that the credentials provided by the user are
|
|
289
322
|
* invalid.</p>
|
|
290
323
|
*/
|
|
291
|
-
export
|
|
292
|
-
name: "InvalidCredentialsException";
|
|
293
|
-
$fault: "client";
|
|
324
|
+
export declare class InvalidCredentialsException extends __BaseException {
|
|
325
|
+
readonly name: "InvalidCredentialsException";
|
|
326
|
+
readonly $fault: "client";
|
|
294
327
|
Message?: string;
|
|
328
|
+
/**
|
|
329
|
+
* @internal
|
|
330
|
+
*/
|
|
331
|
+
constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
|
|
295
332
|
}
|
|
296
333
|
/**
|
|
297
334
|
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
298
335
|
* exception.</p>
|
|
299
336
|
*/
|
|
300
|
-
export
|
|
301
|
-
name: "InvalidRequestException";
|
|
302
|
-
$fault: "client";
|
|
337
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
338
|
+
readonly name: "InvalidRequestException";
|
|
339
|
+
readonly $fault: "client";
|
|
303
340
|
Message?: string;
|
|
341
|
+
/**
|
|
342
|
+
* @internal
|
|
343
|
+
*/
|
|
344
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
304
345
|
}
|
|
305
346
|
/**
|
|
306
347
|
* <p>The resource handler has returned that the request could not be completed due to
|
|
307
348
|
* networking issues, such as a failure to receive a response from the server.</p>
|
|
308
349
|
*/
|
|
309
|
-
export
|
|
310
|
-
name: "NetworkFailureException";
|
|
311
|
-
$fault: "server";
|
|
350
|
+
export declare class NetworkFailureException extends __BaseException {
|
|
351
|
+
readonly name: "NetworkFailureException";
|
|
352
|
+
readonly $fault: "server";
|
|
312
353
|
Message?: string;
|
|
354
|
+
/**
|
|
355
|
+
* @internal
|
|
356
|
+
*/
|
|
357
|
+
constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
|
|
313
358
|
}
|
|
314
359
|
/**
|
|
315
360
|
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
316
361
|
* its ready-state checks.</p>
|
|
317
362
|
*/
|
|
318
|
-
export
|
|
319
|
-
name: "NotStabilizedException";
|
|
320
|
-
$fault: "client";
|
|
363
|
+
export declare class NotStabilizedException extends __BaseException {
|
|
364
|
+
readonly name: "NotStabilizedException";
|
|
365
|
+
readonly $fault: "client";
|
|
321
366
|
Message?: string;
|
|
367
|
+
/**
|
|
368
|
+
* @internal
|
|
369
|
+
*/
|
|
370
|
+
constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
|
|
322
371
|
}
|
|
323
372
|
/**
|
|
324
373
|
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
325
374
|
* therefore cannot be updated.</p>
|
|
326
375
|
*/
|
|
327
|
-
export
|
|
328
|
-
name: "NotUpdatableException";
|
|
329
|
-
$fault: "client";
|
|
376
|
+
export declare class NotUpdatableException extends __BaseException {
|
|
377
|
+
readonly name: "NotUpdatableException";
|
|
378
|
+
readonly $fault: "client";
|
|
330
379
|
Message?: string;
|
|
380
|
+
/**
|
|
381
|
+
* @internal
|
|
382
|
+
*/
|
|
383
|
+
constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
|
|
331
384
|
}
|
|
332
385
|
/**
|
|
333
386
|
* <p>Cloud Control API has not received a valid response from the resource handler, due to a
|
|
334
387
|
* configuration error. This includes issues such as the resource handler returning an invalid
|
|
335
388
|
* response, or timing out.</p>
|
|
336
389
|
*/
|
|
337
|
-
export
|
|
338
|
-
name: "PrivateTypeException";
|
|
339
|
-
$fault: "client";
|
|
390
|
+
export declare class PrivateTypeException extends __BaseException {
|
|
391
|
+
readonly name: "PrivateTypeException";
|
|
392
|
+
readonly $fault: "client";
|
|
340
393
|
Message?: string;
|
|
394
|
+
/**
|
|
395
|
+
* @internal
|
|
396
|
+
*/
|
|
397
|
+
constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
|
|
341
398
|
}
|
|
342
399
|
/**
|
|
343
400
|
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
344
401
|
* currently undergoing an operation and cannot be acted upon until that operation is
|
|
345
402
|
* finished.</p>
|
|
346
403
|
*/
|
|
347
|
-
export
|
|
348
|
-
name: "ResourceConflictException";
|
|
349
|
-
$fault: "client";
|
|
404
|
+
export declare class ResourceConflictException extends __BaseException {
|
|
405
|
+
readonly name: "ResourceConflictException";
|
|
406
|
+
readonly $fault: "client";
|
|
350
407
|
Message?: string;
|
|
408
|
+
/**
|
|
409
|
+
* @internal
|
|
410
|
+
*/
|
|
411
|
+
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
351
412
|
}
|
|
352
413
|
/**
|
|
353
414
|
* <p>A resource with the specified identifier cannot be found.</p>
|
|
354
415
|
*/
|
|
355
|
-
export
|
|
356
|
-
name: "ResourceNotFoundException";
|
|
357
|
-
$fault: "client";
|
|
416
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
417
|
+
readonly name: "ResourceNotFoundException";
|
|
418
|
+
readonly $fault: "client";
|
|
358
419
|
Message?: string;
|
|
420
|
+
/**
|
|
421
|
+
* @internal
|
|
422
|
+
*/
|
|
423
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
359
424
|
}
|
|
360
425
|
/**
|
|
361
426
|
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
362
427
|
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
363
428
|
*/
|
|
364
|
-
export
|
|
365
|
-
name: "ServiceInternalErrorException";
|
|
366
|
-
$fault: "server";
|
|
429
|
+
export declare class ServiceInternalErrorException extends __BaseException {
|
|
430
|
+
readonly name: "ServiceInternalErrorException";
|
|
431
|
+
readonly $fault: "server";
|
|
367
432
|
Message?: string;
|
|
433
|
+
/**
|
|
434
|
+
* @internal
|
|
435
|
+
*/
|
|
436
|
+
constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
|
|
368
437
|
}
|
|
369
438
|
/**
|
|
370
439
|
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
371
440
|
* service side.</p>
|
|
372
441
|
*/
|
|
373
|
-
export
|
|
374
|
-
name: "ServiceLimitExceededException";
|
|
375
|
-
$fault: "client";
|
|
442
|
+
export declare class ServiceLimitExceededException extends __BaseException {
|
|
443
|
+
readonly name: "ServiceLimitExceededException";
|
|
444
|
+
readonly $fault: "client";
|
|
376
445
|
Message?: string;
|
|
446
|
+
/**
|
|
447
|
+
* @internal
|
|
448
|
+
*/
|
|
449
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
377
450
|
}
|
|
378
451
|
/**
|
|
379
452
|
* <p>The request was denied due to request throttling.</p>
|
|
380
453
|
*/
|
|
381
|
-
export
|
|
382
|
-
name: "ThrottlingException";
|
|
383
|
-
$fault: "client";
|
|
454
|
+
export declare class ThrottlingException extends __BaseException {
|
|
455
|
+
readonly name: "ThrottlingException";
|
|
456
|
+
readonly $fault: "client";
|
|
384
457
|
Message?: string;
|
|
458
|
+
/**
|
|
459
|
+
* @internal
|
|
460
|
+
*/
|
|
461
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
385
462
|
}
|
|
386
463
|
/**
|
|
387
464
|
* <p>The specified extension does not exist in the CloudFormation registry.</p>
|
|
388
465
|
*/
|
|
389
|
-
export
|
|
390
|
-
name: "TypeNotFoundException";
|
|
391
|
-
$fault: "client";
|
|
466
|
+
export declare class TypeNotFoundException extends __BaseException {
|
|
467
|
+
readonly name: "TypeNotFoundException";
|
|
468
|
+
readonly $fault: "client";
|
|
392
469
|
Message?: string;
|
|
470
|
+
/**
|
|
471
|
+
* @internal
|
|
472
|
+
*/
|
|
473
|
+
constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
|
|
393
474
|
}
|
|
394
475
|
/**
|
|
395
476
|
* <p>The specified resource does not support this resource operation.</p>
|
|
396
477
|
*/
|
|
397
|
-
export
|
|
398
|
-
name: "UnsupportedActionException";
|
|
399
|
-
$fault: "client";
|
|
478
|
+
export declare class UnsupportedActionException extends __BaseException {
|
|
479
|
+
readonly name: "UnsupportedActionException";
|
|
480
|
+
readonly $fault: "client";
|
|
400
481
|
Message?: string;
|
|
482
|
+
/**
|
|
483
|
+
* @internal
|
|
484
|
+
*/
|
|
485
|
+
constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
|
|
401
486
|
}
|
|
402
487
|
export interface DeleteResourceInput {
|
|
403
488
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class CloudControlServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AlreadyExistsException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
5
|
+
readonly name: "AlreadyExistsException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export interface CancelResourceRequestInput {
|
|
9
12
|
|
|
@@ -79,28 +82,36 @@ export declare namespace CancelResourceRequestOutput {
|
|
|
79
82
|
const filterSensitiveLog: (obj: CancelResourceRequestOutput) => any;
|
|
80
83
|
}
|
|
81
84
|
|
|
82
|
-
export
|
|
83
|
-
name: "ConcurrentModificationException";
|
|
84
|
-
$fault: "server";
|
|
85
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
86
|
+
readonly name: "ConcurrentModificationException";
|
|
87
|
+
readonly $fault: "server";
|
|
85
88
|
Message?: string;
|
|
89
|
+
|
|
90
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
86
91
|
}
|
|
87
92
|
|
|
88
|
-
export
|
|
89
|
-
name: "RequestTokenNotFoundException";
|
|
90
|
-
$fault: "client";
|
|
93
|
+
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
94
|
+
readonly name: "RequestTokenNotFoundException";
|
|
95
|
+
readonly $fault: "client";
|
|
91
96
|
Message?: string;
|
|
97
|
+
|
|
98
|
+
constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
|
|
92
99
|
}
|
|
93
100
|
|
|
94
|
-
export
|
|
95
|
-
name: "ClientTokenConflictException";
|
|
96
|
-
$fault: "client";
|
|
101
|
+
export declare class ClientTokenConflictException extends __BaseException {
|
|
102
|
+
readonly name: "ClientTokenConflictException";
|
|
103
|
+
readonly $fault: "client";
|
|
97
104
|
Message?: string;
|
|
105
|
+
|
|
106
|
+
constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
|
|
98
107
|
}
|
|
99
108
|
|
|
100
|
-
export
|
|
101
|
-
name: "ConcurrentOperationException";
|
|
102
|
-
$fault: "client";
|
|
109
|
+
export declare class ConcurrentOperationException extends __BaseException {
|
|
110
|
+
readonly name: "ConcurrentOperationException";
|
|
111
|
+
readonly $fault: "client";
|
|
103
112
|
Message?: string;
|
|
113
|
+
|
|
114
|
+
constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
|
|
104
115
|
}
|
|
105
116
|
export interface CreateResourceInput {
|
|
106
117
|
|
|
@@ -127,100 +138,132 @@ export declare namespace CreateResourceOutput {
|
|
|
127
138
|
const filterSensitiveLog: (obj: CreateResourceOutput) => any;
|
|
128
139
|
}
|
|
129
140
|
|
|
130
|
-
export
|
|
131
|
-
name: "GeneralServiceException";
|
|
132
|
-
$fault: "client";
|
|
141
|
+
export declare class GeneralServiceException extends __BaseException {
|
|
142
|
+
readonly name: "GeneralServiceException";
|
|
143
|
+
readonly $fault: "client";
|
|
133
144
|
Message?: string;
|
|
145
|
+
|
|
146
|
+
constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
|
|
134
147
|
}
|
|
135
148
|
|
|
136
|
-
export
|
|
137
|
-
name: "HandlerFailureException";
|
|
138
|
-
$fault: "server";
|
|
149
|
+
export declare class HandlerFailureException extends __BaseException {
|
|
150
|
+
readonly name: "HandlerFailureException";
|
|
151
|
+
readonly $fault: "server";
|
|
139
152
|
Message?: string;
|
|
153
|
+
|
|
154
|
+
constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
|
|
140
155
|
}
|
|
141
156
|
|
|
142
|
-
export
|
|
143
|
-
name: "HandlerInternalFailureException";
|
|
144
|
-
$fault: "server";
|
|
157
|
+
export declare class HandlerInternalFailureException extends __BaseException {
|
|
158
|
+
readonly name: "HandlerInternalFailureException";
|
|
159
|
+
readonly $fault: "server";
|
|
145
160
|
Message?: string;
|
|
161
|
+
|
|
162
|
+
constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
|
|
146
163
|
}
|
|
147
164
|
|
|
148
|
-
export
|
|
149
|
-
name: "InvalidCredentialsException";
|
|
150
|
-
$fault: "client";
|
|
165
|
+
export declare class InvalidCredentialsException extends __BaseException {
|
|
166
|
+
readonly name: "InvalidCredentialsException";
|
|
167
|
+
readonly $fault: "client";
|
|
151
168
|
Message?: string;
|
|
169
|
+
|
|
170
|
+
constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
|
|
152
171
|
}
|
|
153
172
|
|
|
154
|
-
export
|
|
155
|
-
name: "InvalidRequestException";
|
|
156
|
-
$fault: "client";
|
|
173
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
174
|
+
readonly name: "InvalidRequestException";
|
|
175
|
+
readonly $fault: "client";
|
|
157
176
|
Message?: string;
|
|
177
|
+
|
|
178
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
158
179
|
}
|
|
159
180
|
|
|
160
|
-
export
|
|
161
|
-
name: "NetworkFailureException";
|
|
162
|
-
$fault: "server";
|
|
181
|
+
export declare class NetworkFailureException extends __BaseException {
|
|
182
|
+
readonly name: "NetworkFailureException";
|
|
183
|
+
readonly $fault: "server";
|
|
163
184
|
Message?: string;
|
|
185
|
+
|
|
186
|
+
constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
|
|
164
187
|
}
|
|
165
188
|
|
|
166
|
-
export
|
|
167
|
-
name: "NotStabilizedException";
|
|
168
|
-
$fault: "client";
|
|
189
|
+
export declare class NotStabilizedException extends __BaseException {
|
|
190
|
+
readonly name: "NotStabilizedException";
|
|
191
|
+
readonly $fault: "client";
|
|
169
192
|
Message?: string;
|
|
193
|
+
|
|
194
|
+
constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
|
|
170
195
|
}
|
|
171
196
|
|
|
172
|
-
export
|
|
173
|
-
name: "NotUpdatableException";
|
|
174
|
-
$fault: "client";
|
|
197
|
+
export declare class NotUpdatableException extends __BaseException {
|
|
198
|
+
readonly name: "NotUpdatableException";
|
|
199
|
+
readonly $fault: "client";
|
|
175
200
|
Message?: string;
|
|
201
|
+
|
|
202
|
+
constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
|
|
176
203
|
}
|
|
177
204
|
|
|
178
|
-
export
|
|
179
|
-
name: "PrivateTypeException";
|
|
180
|
-
$fault: "client";
|
|
205
|
+
export declare class PrivateTypeException extends __BaseException {
|
|
206
|
+
readonly name: "PrivateTypeException";
|
|
207
|
+
readonly $fault: "client";
|
|
181
208
|
Message?: string;
|
|
209
|
+
|
|
210
|
+
constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
|
|
182
211
|
}
|
|
183
212
|
|
|
184
|
-
export
|
|
185
|
-
name: "ResourceConflictException";
|
|
186
|
-
$fault: "client";
|
|
213
|
+
export declare class ResourceConflictException extends __BaseException {
|
|
214
|
+
readonly name: "ResourceConflictException";
|
|
215
|
+
readonly $fault: "client";
|
|
187
216
|
Message?: string;
|
|
217
|
+
|
|
218
|
+
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
188
219
|
}
|
|
189
220
|
|
|
190
|
-
export
|
|
191
|
-
name: "ResourceNotFoundException";
|
|
192
|
-
$fault: "client";
|
|
221
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
222
|
+
readonly name: "ResourceNotFoundException";
|
|
223
|
+
readonly $fault: "client";
|
|
193
224
|
Message?: string;
|
|
225
|
+
|
|
226
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
194
227
|
}
|
|
195
228
|
|
|
196
|
-
export
|
|
197
|
-
name: "ServiceInternalErrorException";
|
|
198
|
-
$fault: "server";
|
|
229
|
+
export declare class ServiceInternalErrorException extends __BaseException {
|
|
230
|
+
readonly name: "ServiceInternalErrorException";
|
|
231
|
+
readonly $fault: "server";
|
|
199
232
|
Message?: string;
|
|
233
|
+
|
|
234
|
+
constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
|
|
200
235
|
}
|
|
201
236
|
|
|
202
|
-
export
|
|
203
|
-
name: "ServiceLimitExceededException";
|
|
204
|
-
$fault: "client";
|
|
237
|
+
export declare class ServiceLimitExceededException extends __BaseException {
|
|
238
|
+
readonly name: "ServiceLimitExceededException";
|
|
239
|
+
readonly $fault: "client";
|
|
205
240
|
Message?: string;
|
|
241
|
+
|
|
242
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
206
243
|
}
|
|
207
244
|
|
|
208
|
-
export
|
|
209
|
-
name: "ThrottlingException";
|
|
210
|
-
$fault: "client";
|
|
245
|
+
export declare class ThrottlingException extends __BaseException {
|
|
246
|
+
readonly name: "ThrottlingException";
|
|
247
|
+
readonly $fault: "client";
|
|
211
248
|
Message?: string;
|
|
249
|
+
|
|
250
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
212
251
|
}
|
|
213
252
|
|
|
214
|
-
export
|
|
215
|
-
name: "TypeNotFoundException";
|
|
216
|
-
$fault: "client";
|
|
253
|
+
export declare class TypeNotFoundException extends __BaseException {
|
|
254
|
+
readonly name: "TypeNotFoundException";
|
|
255
|
+
readonly $fault: "client";
|
|
217
256
|
Message?: string;
|
|
257
|
+
|
|
258
|
+
constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
|
|
218
259
|
}
|
|
219
260
|
|
|
220
|
-
export
|
|
221
|
-
name: "UnsupportedActionException";
|
|
222
|
-
$fault: "client";
|
|
261
|
+
export declare class UnsupportedActionException extends __BaseException {
|
|
262
|
+
readonly name: "UnsupportedActionException";
|
|
263
|
+
readonly $fault: "client";
|
|
223
264
|
Message?: string;
|
|
265
|
+
|
|
266
|
+
constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
|
|
224
267
|
}
|
|
225
268
|
export interface DeleteResourceInput {
|
|
226
269
|
|