@aws-sdk/client-ssm 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/SSMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +881 -5
- package/dist-cjs/models/models_1.js +789 -5
- package/dist-cjs/models/models_2.js +29 -1
- package/dist-cjs/protocols/Aws_json1_1.js +1611 -5044
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSMServiceException.js +12 -0
- package/dist-es/models/models_0.js +813 -1
- package/dist-es/models/models_1.js +727 -1
- package/dist-es/models/models_2.js +27 -1
- package/dist-es/protocols/Aws_json1_1.js +3189 -5341
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +443 -197
- package/dist-types/models/models_1.d.ts +391 -197
- package/dist-types/models/models_2.d.ts +16 -8
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SSMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +317 -197
- package/dist-types/ts3.4/models/models_1.d.ts +282 -188
- package/dist-types/ts3.4/models/models_2.d.ts +12 -8
- package/package.json +26 -26
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Information includes the Amazon Web Services account ID where the current document is shared and the
|
|
4
5
|
* version shared with that account.</p>
|
|
@@ -171,50 +172,74 @@ export declare namespace AddTagsToResourceResult {
|
|
|
171
172
|
/**
|
|
172
173
|
* <p>An error occurred on the server side.</p>
|
|
173
174
|
*/
|
|
174
|
-
export
|
|
175
|
-
name: "InternalServerError";
|
|
176
|
-
$fault: "server";
|
|
175
|
+
export declare class InternalServerError extends __BaseException {
|
|
176
|
+
readonly name: "InternalServerError";
|
|
177
|
+
readonly $fault: "server";
|
|
177
178
|
Message?: string;
|
|
179
|
+
/**
|
|
180
|
+
* @internal
|
|
181
|
+
*/
|
|
182
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
178
183
|
}
|
|
179
184
|
/**
|
|
180
185
|
* <p>The resource ID isn't valid. Verify that you entered the correct ID and try again.</p>
|
|
181
186
|
*/
|
|
182
|
-
export
|
|
183
|
-
name: "InvalidResourceId";
|
|
184
|
-
$fault: "client";
|
|
187
|
+
export declare class InvalidResourceId extends __BaseException {
|
|
188
|
+
readonly name: "InvalidResourceId";
|
|
189
|
+
readonly $fault: "client";
|
|
190
|
+
/**
|
|
191
|
+
* @internal
|
|
192
|
+
*/
|
|
193
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceId, __BaseException>);
|
|
185
194
|
}
|
|
186
195
|
/**
|
|
187
196
|
* <p>The resource type isn't valid. For example, if you are attempting to tag an EC2 instance,
|
|
188
197
|
* the instance must be a registered managed node.</p>
|
|
189
198
|
*/
|
|
190
|
-
export
|
|
191
|
-
name: "InvalidResourceType";
|
|
192
|
-
$fault: "client";
|
|
199
|
+
export declare class InvalidResourceType extends __BaseException {
|
|
200
|
+
readonly name: "InvalidResourceType";
|
|
201
|
+
readonly $fault: "client";
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceType, __BaseException>);
|
|
193
206
|
}
|
|
194
207
|
/**
|
|
195
208
|
* <p>The <code>Targets</code> parameter includes too many tags. Remove one or more tags and try
|
|
196
209
|
* the command again.</p>
|
|
197
210
|
*/
|
|
198
|
-
export
|
|
199
|
-
name: "TooManyTagsError";
|
|
200
|
-
$fault: "client";
|
|
211
|
+
export declare class TooManyTagsError extends __BaseException {
|
|
212
|
+
readonly name: "TooManyTagsError";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
/**
|
|
215
|
+
* @internal
|
|
216
|
+
*/
|
|
217
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsError, __BaseException>);
|
|
201
218
|
}
|
|
202
219
|
/**
|
|
203
220
|
* <p>There are concurrent updates for a resource that supports one update at a time.</p>
|
|
204
221
|
*/
|
|
205
|
-
export
|
|
206
|
-
name: "TooManyUpdates";
|
|
207
|
-
$fault: "client";
|
|
222
|
+
export declare class TooManyUpdates extends __BaseException {
|
|
223
|
+
readonly name: "TooManyUpdates";
|
|
224
|
+
readonly $fault: "client";
|
|
208
225
|
Message?: string;
|
|
226
|
+
/**
|
|
227
|
+
* @internal
|
|
228
|
+
*/
|
|
229
|
+
constructor(opts: __ExceptionOptionType<TooManyUpdates, __BaseException>);
|
|
209
230
|
}
|
|
210
231
|
/**
|
|
211
232
|
* <p>Error returned if an attempt is made to register a patch group with a patch baseline that is
|
|
212
233
|
* already registered with a different patch baseline.</p>
|
|
213
234
|
*/
|
|
214
|
-
export
|
|
215
|
-
name: "AlreadyExistsException";
|
|
216
|
-
$fault: "client";
|
|
235
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
236
|
+
readonly name: "AlreadyExistsException";
|
|
237
|
+
readonly $fault: "client";
|
|
217
238
|
Message?: string;
|
|
239
|
+
/**
|
|
240
|
+
* @internal
|
|
241
|
+
*/
|
|
242
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
218
243
|
}
|
|
219
244
|
export interface AssociateOpsItemRelatedItemRequest {
|
|
220
245
|
/**
|
|
@@ -263,41 +288,57 @@ export declare namespace AssociateOpsItemRelatedItemResponse {
|
|
|
263
288
|
* <p>A specified parameter argument isn't valid. Verify the available arguments and try
|
|
264
289
|
* again.</p>
|
|
265
290
|
*/
|
|
266
|
-
export
|
|
267
|
-
name: "OpsItemInvalidParameterException";
|
|
268
|
-
$fault: "client";
|
|
291
|
+
export declare class OpsItemInvalidParameterException extends __BaseException {
|
|
292
|
+
readonly name: "OpsItemInvalidParameterException";
|
|
293
|
+
readonly $fault: "client";
|
|
269
294
|
ParameterNames?: string[];
|
|
270
295
|
Message?: string;
|
|
296
|
+
/**
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
constructor(opts: __ExceptionOptionType<OpsItemInvalidParameterException, __BaseException>);
|
|
271
300
|
}
|
|
272
301
|
/**
|
|
273
302
|
* <p>The request caused OpsItems to exceed one or more quotas. For information about OpsItem
|
|
274
303
|
* quotas, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-learn-more.html#OpsCenter-learn-more-limits">What are the resource limits for OpsCenter?</a>.</p>
|
|
275
304
|
*/
|
|
276
|
-
export
|
|
277
|
-
name: "OpsItemLimitExceededException";
|
|
278
|
-
$fault: "client";
|
|
305
|
+
export declare class OpsItemLimitExceededException extends __BaseException {
|
|
306
|
+
readonly name: "OpsItemLimitExceededException";
|
|
307
|
+
readonly $fault: "client";
|
|
279
308
|
ResourceTypes?: string[];
|
|
280
309
|
Limit?: number;
|
|
281
310
|
LimitType?: string;
|
|
282
311
|
Message?: string;
|
|
312
|
+
/**
|
|
313
|
+
* @internal
|
|
314
|
+
*/
|
|
315
|
+
constructor(opts: __ExceptionOptionType<OpsItemLimitExceededException, __BaseException>);
|
|
283
316
|
}
|
|
284
317
|
/**
|
|
285
318
|
* <p>The specified OpsItem ID doesn't exist. Verify the ID and try again.</p>
|
|
286
319
|
*/
|
|
287
|
-
export
|
|
288
|
-
name: "OpsItemNotFoundException";
|
|
289
|
-
$fault: "client";
|
|
320
|
+
export declare class OpsItemNotFoundException extends __BaseException {
|
|
321
|
+
readonly name: "OpsItemNotFoundException";
|
|
322
|
+
readonly $fault: "client";
|
|
290
323
|
Message?: string;
|
|
324
|
+
/**
|
|
325
|
+
* @internal
|
|
326
|
+
*/
|
|
327
|
+
constructor(opts: __ExceptionOptionType<OpsItemNotFoundException, __BaseException>);
|
|
291
328
|
}
|
|
292
329
|
/**
|
|
293
330
|
* <p>The Amazon Resource Name (ARN) is already associated with the OpsItem.</p>
|
|
294
331
|
*/
|
|
295
|
-
export
|
|
296
|
-
name: "OpsItemRelatedItemAlreadyExistsException";
|
|
297
|
-
$fault: "client";
|
|
332
|
+
export declare class OpsItemRelatedItemAlreadyExistsException extends __BaseException {
|
|
333
|
+
readonly name: "OpsItemRelatedItemAlreadyExistsException";
|
|
334
|
+
readonly $fault: "client";
|
|
298
335
|
Message?: string;
|
|
299
336
|
ResourceUri?: string;
|
|
300
337
|
OpsItemId?: string;
|
|
338
|
+
/**
|
|
339
|
+
* @internal
|
|
340
|
+
*/
|
|
341
|
+
constructor(opts: __ExceptionOptionType<OpsItemRelatedItemAlreadyExistsException, __BaseException>);
|
|
301
342
|
}
|
|
302
343
|
/**
|
|
303
344
|
* <p></p>
|
|
@@ -334,16 +375,24 @@ export declare namespace CancelCommandResult {
|
|
|
334
375
|
/**
|
|
335
376
|
* <p>You can't specify a managed node ID in more than one association.</p>
|
|
336
377
|
*/
|
|
337
|
-
export
|
|
338
|
-
name: "DuplicateInstanceId";
|
|
339
|
-
$fault: "client";
|
|
378
|
+
export declare class DuplicateInstanceId extends __BaseException {
|
|
379
|
+
readonly name: "DuplicateInstanceId";
|
|
380
|
+
readonly $fault: "client";
|
|
381
|
+
/**
|
|
382
|
+
* @internal
|
|
383
|
+
*/
|
|
384
|
+
constructor(opts: __ExceptionOptionType<DuplicateInstanceId, __BaseException>);
|
|
340
385
|
}
|
|
341
386
|
/**
|
|
342
387
|
* <p>The specified command ID isn't valid. Verify the ID and try again.</p>
|
|
343
388
|
*/
|
|
344
|
-
export
|
|
345
|
-
name: "InvalidCommandId";
|
|
346
|
-
$fault: "client";
|
|
389
|
+
export declare class InvalidCommandId extends __BaseException {
|
|
390
|
+
readonly name: "InvalidCommandId";
|
|
391
|
+
readonly $fault: "client";
|
|
392
|
+
/**
|
|
393
|
+
* @internal
|
|
394
|
+
*/
|
|
395
|
+
constructor(opts: __ExceptionOptionType<InvalidCommandId, __BaseException>);
|
|
347
396
|
}
|
|
348
397
|
/**
|
|
349
398
|
* <p>The following problems can cause this exception:</p>
|
|
@@ -365,10 +414,14 @@ export interface InvalidCommandId extends __SmithyException, $MetadataBearer {
|
|
|
365
414
|
* </li>
|
|
366
415
|
* </ul>
|
|
367
416
|
*/
|
|
368
|
-
export
|
|
369
|
-
name: "InvalidInstanceId";
|
|
370
|
-
$fault: "client";
|
|
417
|
+
export declare class InvalidInstanceId extends __BaseException {
|
|
418
|
+
readonly name: "InvalidInstanceId";
|
|
419
|
+
readonly $fault: "client";
|
|
371
420
|
Message?: string;
|
|
421
|
+
/**
|
|
422
|
+
* @internal
|
|
423
|
+
*/
|
|
424
|
+
constructor(opts: __ExceptionOptionType<InvalidInstanceId, __BaseException>);
|
|
372
425
|
}
|
|
373
426
|
export interface CancelMaintenanceWindowExecutionRequest {
|
|
374
427
|
/**
|
|
@@ -400,10 +453,14 @@ export declare namespace CancelMaintenanceWindowExecutionResult {
|
|
|
400
453
|
* <p>For information about resource quotas in Amazon Web Services Systems Manager, see <a href="https://docs.aws.amazon.com/general/latest/gr/ssm.html#limits_ssm">Systems Manager service quotas</a> in the
|
|
401
454
|
* <i>Amazon Web Services General Reference</i>.</p>
|
|
402
455
|
*/
|
|
403
|
-
export
|
|
404
|
-
name: "DoesNotExistException";
|
|
405
|
-
$fault: "client";
|
|
456
|
+
export declare class DoesNotExistException extends __BaseException {
|
|
457
|
+
readonly name: "DoesNotExistException";
|
|
458
|
+
readonly $fault: "client";
|
|
406
459
|
Message?: string;
|
|
460
|
+
/**
|
|
461
|
+
* @internal
|
|
462
|
+
*/
|
|
463
|
+
constructor(opts: __ExceptionOptionType<DoesNotExistException, __BaseException>);
|
|
407
464
|
}
|
|
408
465
|
/**
|
|
409
466
|
* <p>Reserved for internal use.</p>
|
|
@@ -521,24 +578,36 @@ export declare namespace CreateActivationResult {
|
|
|
521
578
|
* <p>You must specify values for all required parameters in the Amazon Web Services Systems Manager document (SSM
|
|
522
579
|
* document). You can only supply values to parameters defined in the SSM document.</p>
|
|
523
580
|
*/
|
|
524
|
-
export
|
|
525
|
-
name: "InvalidParameters";
|
|
526
|
-
$fault: "client";
|
|
581
|
+
export declare class InvalidParameters extends __BaseException {
|
|
582
|
+
readonly name: "InvalidParameters";
|
|
583
|
+
readonly $fault: "client";
|
|
527
584
|
Message?: string;
|
|
585
|
+
/**
|
|
586
|
+
* @internal
|
|
587
|
+
*/
|
|
588
|
+
constructor(opts: __ExceptionOptionType<InvalidParameters, __BaseException>);
|
|
528
589
|
}
|
|
529
590
|
/**
|
|
530
591
|
* <p>The specified association already exists.</p>
|
|
531
592
|
*/
|
|
532
|
-
export
|
|
533
|
-
name: "AssociationAlreadyExists";
|
|
534
|
-
$fault: "client";
|
|
593
|
+
export declare class AssociationAlreadyExists extends __BaseException {
|
|
594
|
+
readonly name: "AssociationAlreadyExists";
|
|
595
|
+
readonly $fault: "client";
|
|
596
|
+
/**
|
|
597
|
+
* @internal
|
|
598
|
+
*/
|
|
599
|
+
constructor(opts: __ExceptionOptionType<AssociationAlreadyExists, __BaseException>);
|
|
535
600
|
}
|
|
536
601
|
/**
|
|
537
602
|
* <p>You can have at most 2,000 active associations.</p>
|
|
538
603
|
*/
|
|
539
|
-
export
|
|
540
|
-
name: "AssociationLimitExceeded";
|
|
541
|
-
$fault: "client";
|
|
604
|
+
export declare class AssociationLimitExceeded extends __BaseException {
|
|
605
|
+
readonly name: "AssociationLimitExceeded";
|
|
606
|
+
readonly $fault: "client";
|
|
607
|
+
/**
|
|
608
|
+
* @internal
|
|
609
|
+
*/
|
|
610
|
+
constructor(opts: __ExceptionOptionType<AssociationLimitExceeded, __BaseException>);
|
|
542
611
|
}
|
|
543
612
|
export declare enum AssociationComplianceSeverity {
|
|
544
613
|
Critical = "CRITICAL",
|
|
@@ -1109,55 +1178,79 @@ export declare namespace CreateAssociationResult {
|
|
|
1109
1178
|
/**
|
|
1110
1179
|
* <p>The specified SSM document doesn't exist.</p>
|
|
1111
1180
|
*/
|
|
1112
|
-
export
|
|
1113
|
-
name: "InvalidDocument";
|
|
1114
|
-
$fault: "client";
|
|
1181
|
+
export declare class InvalidDocument extends __BaseException {
|
|
1182
|
+
readonly name: "InvalidDocument";
|
|
1183
|
+
readonly $fault: "client";
|
|
1115
1184
|
/**
|
|
1116
1185
|
* <p>The SSM document doesn't exist or the document isn't available to the user. This exception
|
|
1117
1186
|
* can be issued by various API operations. </p>
|
|
1118
1187
|
*/
|
|
1119
1188
|
Message?: string;
|
|
1189
|
+
/**
|
|
1190
|
+
* @internal
|
|
1191
|
+
*/
|
|
1192
|
+
constructor(opts: __ExceptionOptionType<InvalidDocument, __BaseException>);
|
|
1120
1193
|
}
|
|
1121
1194
|
/**
|
|
1122
1195
|
* <p>The document version isn't valid or doesn't exist.</p>
|
|
1123
1196
|
*/
|
|
1124
|
-
export
|
|
1125
|
-
name: "InvalidDocumentVersion";
|
|
1126
|
-
$fault: "client";
|
|
1197
|
+
export declare class InvalidDocumentVersion extends __BaseException {
|
|
1198
|
+
readonly name: "InvalidDocumentVersion";
|
|
1199
|
+
readonly $fault: "client";
|
|
1127
1200
|
Message?: string;
|
|
1201
|
+
/**
|
|
1202
|
+
* @internal
|
|
1203
|
+
*/
|
|
1204
|
+
constructor(opts: __ExceptionOptionType<InvalidDocumentVersion, __BaseException>);
|
|
1128
1205
|
}
|
|
1129
1206
|
/**
|
|
1130
1207
|
* <p>The output location isn't valid or doesn't exist.</p>
|
|
1131
1208
|
*/
|
|
1132
|
-
export
|
|
1133
|
-
name: "InvalidOutputLocation";
|
|
1134
|
-
$fault: "client";
|
|
1209
|
+
export declare class InvalidOutputLocation extends __BaseException {
|
|
1210
|
+
readonly name: "InvalidOutputLocation";
|
|
1211
|
+
readonly $fault: "client";
|
|
1212
|
+
/**
|
|
1213
|
+
* @internal
|
|
1214
|
+
*/
|
|
1215
|
+
constructor(opts: __ExceptionOptionType<InvalidOutputLocation, __BaseException>);
|
|
1135
1216
|
}
|
|
1136
1217
|
/**
|
|
1137
1218
|
* <p>The schedule is invalid. Verify your cron or rate expression and try again.</p>
|
|
1138
1219
|
*/
|
|
1139
|
-
export
|
|
1140
|
-
name: "InvalidSchedule";
|
|
1141
|
-
$fault: "client";
|
|
1220
|
+
export declare class InvalidSchedule extends __BaseException {
|
|
1221
|
+
readonly name: "InvalidSchedule";
|
|
1222
|
+
readonly $fault: "client";
|
|
1142
1223
|
Message?: string;
|
|
1224
|
+
/**
|
|
1225
|
+
* @internal
|
|
1226
|
+
*/
|
|
1227
|
+
constructor(opts: __ExceptionOptionType<InvalidSchedule, __BaseException>);
|
|
1143
1228
|
}
|
|
1144
1229
|
/**
|
|
1145
1230
|
* <p>The target isn't valid or doesn't exist. It might not be configured for Systems Manager or you might
|
|
1146
1231
|
* not have permission to perform the operation.</p>
|
|
1147
1232
|
*/
|
|
1148
|
-
export
|
|
1149
|
-
name: "InvalidTarget";
|
|
1150
|
-
$fault: "client";
|
|
1233
|
+
export declare class InvalidTarget extends __BaseException {
|
|
1234
|
+
readonly name: "InvalidTarget";
|
|
1235
|
+
readonly $fault: "client";
|
|
1151
1236
|
Message?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* @internal
|
|
1239
|
+
*/
|
|
1240
|
+
constructor(opts: __ExceptionOptionType<InvalidTarget, __BaseException>);
|
|
1152
1241
|
}
|
|
1153
1242
|
/**
|
|
1154
1243
|
* <p>The document doesn't support the platform type of the given managed node ID(s). For example,
|
|
1155
1244
|
* you sent an document for a Windows managed node to a Linux node.</p>
|
|
1156
1245
|
*/
|
|
1157
|
-
export
|
|
1158
|
-
name: "UnsupportedPlatformType";
|
|
1159
|
-
$fault: "client";
|
|
1246
|
+
export declare class UnsupportedPlatformType extends __BaseException {
|
|
1247
|
+
readonly name: "UnsupportedPlatformType";
|
|
1248
|
+
readonly $fault: "client";
|
|
1160
1249
|
Message?: string;
|
|
1250
|
+
/**
|
|
1251
|
+
* @internal
|
|
1252
|
+
*/
|
|
1253
|
+
constructor(opts: __ExceptionOptionType<UnsupportedPlatformType, __BaseException>);
|
|
1161
1254
|
}
|
|
1162
1255
|
/**
|
|
1163
1256
|
* <p>Describes the association of a Amazon Web Services Systems Manager document (SSM document) and a managed node.</p>
|
|
@@ -1828,45 +1921,65 @@ export declare namespace CreateDocumentResult {
|
|
|
1828
1921
|
/**
|
|
1829
1922
|
* <p>The specified document already exists.</p>
|
|
1830
1923
|
*/
|
|
1831
|
-
export
|
|
1832
|
-
name: "DocumentAlreadyExists";
|
|
1833
|
-
$fault: "client";
|
|
1924
|
+
export declare class DocumentAlreadyExists extends __BaseException {
|
|
1925
|
+
readonly name: "DocumentAlreadyExists";
|
|
1926
|
+
readonly $fault: "client";
|
|
1834
1927
|
Message?: string;
|
|
1928
|
+
/**
|
|
1929
|
+
* @internal
|
|
1930
|
+
*/
|
|
1931
|
+
constructor(opts: __ExceptionOptionType<DocumentAlreadyExists, __BaseException>);
|
|
1835
1932
|
}
|
|
1836
1933
|
/**
|
|
1837
1934
|
* <p>You can have at most 500 active SSM documents.</p>
|
|
1838
1935
|
*/
|
|
1839
|
-
export
|
|
1840
|
-
name: "DocumentLimitExceeded";
|
|
1841
|
-
$fault: "client";
|
|
1936
|
+
export declare class DocumentLimitExceeded extends __BaseException {
|
|
1937
|
+
readonly name: "DocumentLimitExceeded";
|
|
1938
|
+
readonly $fault: "client";
|
|
1842
1939
|
Message?: string;
|
|
1940
|
+
/**
|
|
1941
|
+
* @internal
|
|
1942
|
+
*/
|
|
1943
|
+
constructor(opts: __ExceptionOptionType<DocumentLimitExceeded, __BaseException>);
|
|
1843
1944
|
}
|
|
1844
1945
|
/**
|
|
1845
1946
|
* <p>The content for the document isn't valid.</p>
|
|
1846
1947
|
*/
|
|
1847
|
-
export
|
|
1848
|
-
name: "InvalidDocumentContent";
|
|
1849
|
-
$fault: "client";
|
|
1948
|
+
export declare class InvalidDocumentContent extends __BaseException {
|
|
1949
|
+
readonly name: "InvalidDocumentContent";
|
|
1950
|
+
readonly $fault: "client";
|
|
1850
1951
|
/**
|
|
1851
1952
|
* <p>A description of the validation error.</p>
|
|
1852
1953
|
*/
|
|
1853
1954
|
Message?: string;
|
|
1955
|
+
/**
|
|
1956
|
+
* @internal
|
|
1957
|
+
*/
|
|
1958
|
+
constructor(opts: __ExceptionOptionType<InvalidDocumentContent, __BaseException>);
|
|
1854
1959
|
}
|
|
1855
1960
|
/**
|
|
1856
1961
|
* <p>The version of the document schema isn't supported.</p>
|
|
1857
1962
|
*/
|
|
1858
|
-
export
|
|
1859
|
-
name: "InvalidDocumentSchemaVersion";
|
|
1860
|
-
$fault: "client";
|
|
1963
|
+
export declare class InvalidDocumentSchemaVersion extends __BaseException {
|
|
1964
|
+
readonly name: "InvalidDocumentSchemaVersion";
|
|
1965
|
+
readonly $fault: "client";
|
|
1861
1966
|
Message?: string;
|
|
1967
|
+
/**
|
|
1968
|
+
* @internal
|
|
1969
|
+
*/
|
|
1970
|
+
constructor(opts: __ExceptionOptionType<InvalidDocumentSchemaVersion, __BaseException>);
|
|
1862
1971
|
}
|
|
1863
1972
|
/**
|
|
1864
1973
|
* <p>The size limit of a document is 64 KB.</p>
|
|
1865
1974
|
*/
|
|
1866
|
-
export
|
|
1867
|
-
name: "MaxDocumentSizeExceeded";
|
|
1868
|
-
$fault: "client";
|
|
1975
|
+
export declare class MaxDocumentSizeExceeded extends __BaseException {
|
|
1976
|
+
readonly name: "MaxDocumentSizeExceeded";
|
|
1977
|
+
readonly $fault: "client";
|
|
1869
1978
|
Message?: string;
|
|
1979
|
+
/**
|
|
1980
|
+
* @internal
|
|
1981
|
+
*/
|
|
1982
|
+
constructor(opts: __ExceptionOptionType<MaxDocumentSizeExceeded, __BaseException>);
|
|
1870
1983
|
}
|
|
1871
1984
|
export interface CreateMaintenanceWindowRequest {
|
|
1872
1985
|
/**
|
|
@@ -1985,10 +2098,14 @@ export declare namespace CreateMaintenanceWindowResult {
|
|
|
1985
2098
|
* <p>Error returned when an idempotent operation is retried and the parameters don't match the
|
|
1986
2099
|
* original call to the API with the same idempotency token. </p>
|
|
1987
2100
|
*/
|
|
1988
|
-
export
|
|
1989
|
-
name: "IdempotentParameterMismatch";
|
|
1990
|
-
$fault: "client";
|
|
2101
|
+
export declare class IdempotentParameterMismatch extends __BaseException {
|
|
2102
|
+
readonly name: "IdempotentParameterMismatch";
|
|
2103
|
+
readonly $fault: "client";
|
|
1991
2104
|
Message?: string;
|
|
2105
|
+
/**
|
|
2106
|
+
* @internal
|
|
2107
|
+
*/
|
|
2108
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatch, __BaseException>);
|
|
1992
2109
|
}
|
|
1993
2110
|
/**
|
|
1994
2111
|
* <p>Error returned when the caller has exceeded the default resource quotas. For example, too
|
|
@@ -1996,10 +2113,14 @@ export interface IdempotentParameterMismatch extends __SmithyException, $Metadat
|
|
|
1996
2113
|
* <p>For information about resource quotas in Systems Manager, see <a href="https://docs.aws.amazon.com/general/latest/gr/ssm.html#limits_ssm">Systems Manager service quotas</a> in the
|
|
1997
2114
|
* <i>Amazon Web Services General Reference</i>.</p>
|
|
1998
2115
|
*/
|
|
1999
|
-
export
|
|
2000
|
-
name: "ResourceLimitExceededException";
|
|
2001
|
-
$fault: "client";
|
|
2116
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
2117
|
+
readonly name: "ResourceLimitExceededException";
|
|
2118
|
+
readonly $fault: "client";
|
|
2002
2119
|
Message?: string;
|
|
2120
|
+
/**
|
|
2121
|
+
* @internal
|
|
2122
|
+
*/
|
|
2123
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
2003
2124
|
}
|
|
2004
2125
|
/**
|
|
2005
2126
|
* <p>A notification about the OpsItem.</p>
|
|
@@ -2183,11 +2304,15 @@ export declare namespace CreateOpsItemResponse {
|
|
|
2183
2304
|
/**
|
|
2184
2305
|
* <p>The OpsItem already exists.</p>
|
|
2185
2306
|
*/
|
|
2186
|
-
export
|
|
2187
|
-
name: "OpsItemAlreadyExistsException";
|
|
2188
|
-
$fault: "client";
|
|
2307
|
+
export declare class OpsItemAlreadyExistsException extends __BaseException {
|
|
2308
|
+
readonly name: "OpsItemAlreadyExistsException";
|
|
2309
|
+
readonly $fault: "client";
|
|
2189
2310
|
Message?: string;
|
|
2190
2311
|
OpsItemId?: string;
|
|
2312
|
+
/**
|
|
2313
|
+
* @internal
|
|
2314
|
+
*/
|
|
2315
|
+
constructor(opts: __ExceptionOptionType<OpsItemAlreadyExistsException, __BaseException>);
|
|
2191
2316
|
}
|
|
2192
2317
|
/**
|
|
2193
2318
|
* <p>Metadata to assign to an Application Manager application.</p>
|
|
@@ -2257,36 +2382,48 @@ export declare namespace CreateOpsMetadataResult {
|
|
|
2257
2382
|
/**
|
|
2258
2383
|
* <p>An OpsMetadata object already exists for the selected resource.</p>
|
|
2259
2384
|
*/
|
|
2260
|
-
export
|
|
2261
|
-
name: "OpsMetadataAlreadyExistsException";
|
|
2262
|
-
$fault: "client";
|
|
2263
|
-
|
|
2385
|
+
export declare class OpsMetadataAlreadyExistsException extends __BaseException {
|
|
2386
|
+
readonly name: "OpsMetadataAlreadyExistsException";
|
|
2387
|
+
readonly $fault: "client";
|
|
2388
|
+
/**
|
|
2389
|
+
* @internal
|
|
2390
|
+
*/
|
|
2391
|
+
constructor(opts: __ExceptionOptionType<OpsMetadataAlreadyExistsException, __BaseException>);
|
|
2264
2392
|
}
|
|
2265
2393
|
/**
|
|
2266
2394
|
* <p>One of the arguments passed is invalid. </p>
|
|
2267
2395
|
*/
|
|
2268
|
-
export
|
|
2269
|
-
name: "OpsMetadataInvalidArgumentException";
|
|
2270
|
-
$fault: "client";
|
|
2271
|
-
|
|
2396
|
+
export declare class OpsMetadataInvalidArgumentException extends __BaseException {
|
|
2397
|
+
readonly name: "OpsMetadataInvalidArgumentException";
|
|
2398
|
+
readonly $fault: "client";
|
|
2399
|
+
/**
|
|
2400
|
+
* @internal
|
|
2401
|
+
*/
|
|
2402
|
+
constructor(opts: __ExceptionOptionType<OpsMetadataInvalidArgumentException, __BaseException>);
|
|
2272
2403
|
}
|
|
2273
2404
|
/**
|
|
2274
2405
|
* <p>Your account reached the maximum number of OpsMetadata objects allowed by Application Manager. The
|
|
2275
2406
|
* maximum is 200 OpsMetadata objects. Delete one or more OpsMetadata object and try again.</p>
|
|
2276
2407
|
*/
|
|
2277
|
-
export
|
|
2278
|
-
name: "OpsMetadataLimitExceededException";
|
|
2279
|
-
$fault: "client";
|
|
2280
|
-
|
|
2408
|
+
export declare class OpsMetadataLimitExceededException extends __BaseException {
|
|
2409
|
+
readonly name: "OpsMetadataLimitExceededException";
|
|
2410
|
+
readonly $fault: "client";
|
|
2411
|
+
/**
|
|
2412
|
+
* @internal
|
|
2413
|
+
*/
|
|
2414
|
+
constructor(opts: __ExceptionOptionType<OpsMetadataLimitExceededException, __BaseException>);
|
|
2281
2415
|
}
|
|
2282
2416
|
/**
|
|
2283
2417
|
* <p>The system is processing too many concurrent updates. Wait a few moments and try
|
|
2284
2418
|
* again.</p>
|
|
2285
2419
|
*/
|
|
2286
|
-
export
|
|
2287
|
-
name: "OpsMetadataTooManyUpdatesException";
|
|
2288
|
-
$fault: "client";
|
|
2289
|
-
|
|
2420
|
+
export declare class OpsMetadataTooManyUpdatesException extends __BaseException {
|
|
2421
|
+
readonly name: "OpsMetadataTooManyUpdatesException";
|
|
2422
|
+
readonly $fault: "client";
|
|
2423
|
+
/**
|
|
2424
|
+
* @internal
|
|
2425
|
+
*/
|
|
2426
|
+
constructor(opts: __ExceptionOptionType<OpsMetadataTooManyUpdatesException, __BaseException>);
|
|
2290
2427
|
}
|
|
2291
2428
|
export declare enum PatchComplianceLevel {
|
|
2292
2429
|
Critical = "CRITICAL",
|
|
@@ -2780,26 +2917,38 @@ export declare namespace CreateResourceDataSyncResult {
|
|
|
2780
2917
|
/**
|
|
2781
2918
|
* <p>A sync configuration with the same name already exists.</p>
|
|
2782
2919
|
*/
|
|
2783
|
-
export
|
|
2784
|
-
name: "ResourceDataSyncAlreadyExistsException";
|
|
2785
|
-
$fault: "client";
|
|
2920
|
+
export declare class ResourceDataSyncAlreadyExistsException extends __BaseException {
|
|
2921
|
+
readonly name: "ResourceDataSyncAlreadyExistsException";
|
|
2922
|
+
readonly $fault: "client";
|
|
2786
2923
|
SyncName?: string;
|
|
2924
|
+
/**
|
|
2925
|
+
* @internal
|
|
2926
|
+
*/
|
|
2927
|
+
constructor(opts: __ExceptionOptionType<ResourceDataSyncAlreadyExistsException, __BaseException>);
|
|
2787
2928
|
}
|
|
2788
2929
|
/**
|
|
2789
2930
|
* <p>You have exceeded the allowed maximum sync configurations.</p>
|
|
2790
2931
|
*/
|
|
2791
|
-
export
|
|
2792
|
-
name: "ResourceDataSyncCountExceededException";
|
|
2793
|
-
$fault: "client";
|
|
2932
|
+
export declare class ResourceDataSyncCountExceededException extends __BaseException {
|
|
2933
|
+
readonly name: "ResourceDataSyncCountExceededException";
|
|
2934
|
+
readonly $fault: "client";
|
|
2794
2935
|
Message?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* @internal
|
|
2938
|
+
*/
|
|
2939
|
+
constructor(opts: __ExceptionOptionType<ResourceDataSyncCountExceededException, __BaseException>);
|
|
2795
2940
|
}
|
|
2796
2941
|
/**
|
|
2797
2942
|
* <p>The specified sync configuration is invalid.</p>
|
|
2798
2943
|
*/
|
|
2799
|
-
export
|
|
2800
|
-
name: "ResourceDataSyncInvalidConfigurationException";
|
|
2801
|
-
$fault: "client";
|
|
2944
|
+
export declare class ResourceDataSyncInvalidConfigurationException extends __BaseException {
|
|
2945
|
+
readonly name: "ResourceDataSyncInvalidConfigurationException";
|
|
2946
|
+
readonly $fault: "client";
|
|
2802
2947
|
Message?: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* @internal
|
|
2950
|
+
*/
|
|
2951
|
+
constructor(opts: __ExceptionOptionType<ResourceDataSyncInvalidConfigurationException, __BaseException>);
|
|
2803
2952
|
}
|
|
2804
2953
|
export interface DeleteActivationRequest {
|
|
2805
2954
|
/**
|
|
@@ -2825,27 +2974,39 @@ export declare namespace DeleteActivationResult {
|
|
|
2825
2974
|
* <p>The activation isn't valid. The activation might have been deleted, or the ActivationId and
|
|
2826
2975
|
* the ActivationCode don't match.</p>
|
|
2827
2976
|
*/
|
|
2828
|
-
export
|
|
2829
|
-
name: "InvalidActivation";
|
|
2830
|
-
$fault: "client";
|
|
2977
|
+
export declare class InvalidActivation extends __BaseException {
|
|
2978
|
+
readonly name: "InvalidActivation";
|
|
2979
|
+
readonly $fault: "client";
|
|
2831
2980
|
Message?: string;
|
|
2981
|
+
/**
|
|
2982
|
+
* @internal
|
|
2983
|
+
*/
|
|
2984
|
+
constructor(opts: __ExceptionOptionType<InvalidActivation, __BaseException>);
|
|
2832
2985
|
}
|
|
2833
2986
|
/**
|
|
2834
2987
|
* <p>The activation ID isn't valid. Verify the you entered the correct ActivationId or
|
|
2835
2988
|
* ActivationCode and try again.</p>
|
|
2836
2989
|
*/
|
|
2837
|
-
export
|
|
2838
|
-
name: "InvalidActivationId";
|
|
2839
|
-
$fault: "client";
|
|
2990
|
+
export declare class InvalidActivationId extends __BaseException {
|
|
2991
|
+
readonly name: "InvalidActivationId";
|
|
2992
|
+
readonly $fault: "client";
|
|
2840
2993
|
Message?: string;
|
|
2994
|
+
/**
|
|
2995
|
+
* @internal
|
|
2996
|
+
*/
|
|
2997
|
+
constructor(opts: __ExceptionOptionType<InvalidActivationId, __BaseException>);
|
|
2841
2998
|
}
|
|
2842
2999
|
/**
|
|
2843
3000
|
* <p>The specified association doesn't exist.</p>
|
|
2844
3001
|
*/
|
|
2845
|
-
export
|
|
2846
|
-
name: "AssociationDoesNotExist";
|
|
2847
|
-
$fault: "client";
|
|
3002
|
+
export declare class AssociationDoesNotExist extends __BaseException {
|
|
3003
|
+
readonly name: "AssociationDoesNotExist";
|
|
3004
|
+
readonly $fault: "client";
|
|
2848
3005
|
Message?: string;
|
|
3006
|
+
/**
|
|
3007
|
+
* @internal
|
|
3008
|
+
*/
|
|
3009
|
+
constructor(opts: __ExceptionOptionType<AssociationDoesNotExist, __BaseException>);
|
|
2849
3010
|
}
|
|
2850
3011
|
export interface DeleteAssociationRequest {
|
|
2851
3012
|
/**
|
|
@@ -2889,9 +3050,13 @@ export declare namespace DeleteAssociationResult {
|
|
|
2889
3050
|
/**
|
|
2890
3051
|
* <p>You must disassociate a document from all managed nodes before you can delete it.</p>
|
|
2891
3052
|
*/
|
|
2892
|
-
export
|
|
2893
|
-
name: "AssociatedInstances";
|
|
2894
|
-
$fault: "client";
|
|
3053
|
+
export declare class AssociatedInstances extends __BaseException {
|
|
3054
|
+
readonly name: "AssociatedInstances";
|
|
3055
|
+
readonly $fault: "client";
|
|
3056
|
+
/**
|
|
3057
|
+
* @internal
|
|
3058
|
+
*/
|
|
3059
|
+
constructor(opts: __ExceptionOptionType<AssociatedInstances, __BaseException>);
|
|
2895
3060
|
}
|
|
2896
3061
|
export interface DeleteDocumentRequest {
|
|
2897
3062
|
/**
|
|
@@ -2934,10 +3099,14 @@ export declare namespace DeleteDocumentResult {
|
|
|
2934
3099
|
* <p>You attempted to delete a document while it is still shared. You must stop sharing the
|
|
2935
3100
|
* document before you can delete it.</p>
|
|
2936
3101
|
*/
|
|
2937
|
-
export
|
|
2938
|
-
name: "InvalidDocumentOperation";
|
|
2939
|
-
$fault: "client";
|
|
3102
|
+
export declare class InvalidDocumentOperation extends __BaseException {
|
|
3103
|
+
readonly name: "InvalidDocumentOperation";
|
|
3104
|
+
readonly $fault: "client";
|
|
2940
3105
|
Message?: string;
|
|
3106
|
+
/**
|
|
3107
|
+
* @internal
|
|
3108
|
+
*/
|
|
3109
|
+
constructor(opts: __ExceptionOptionType<InvalidDocumentOperation, __BaseException>);
|
|
2941
3110
|
}
|
|
2942
3111
|
export declare enum InventorySchemaDeleteOption {
|
|
2943
3112
|
DELETE_SCHEMA = "DeleteSchema",
|
|
@@ -3051,34 +3220,50 @@ export declare namespace DeleteInventoryResult {
|
|
|
3051
3220
|
* <p>One or more of the parameters specified for the delete operation isn't valid. Verify all
|
|
3052
3221
|
* parameters and try again.</p>
|
|
3053
3222
|
*/
|
|
3054
|
-
export
|
|
3055
|
-
name: "InvalidDeleteInventoryParametersException";
|
|
3056
|
-
$fault: "client";
|
|
3223
|
+
export declare class InvalidDeleteInventoryParametersException extends __BaseException {
|
|
3224
|
+
readonly name: "InvalidDeleteInventoryParametersException";
|
|
3225
|
+
readonly $fault: "client";
|
|
3057
3226
|
Message?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* @internal
|
|
3229
|
+
*/
|
|
3230
|
+
constructor(opts: __ExceptionOptionType<InvalidDeleteInventoryParametersException, __BaseException>);
|
|
3058
3231
|
}
|
|
3059
3232
|
/**
|
|
3060
3233
|
* <p>The request isn't valid.</p>
|
|
3061
3234
|
*/
|
|
3062
|
-
export
|
|
3063
|
-
name: "InvalidInventoryRequestException";
|
|
3064
|
-
$fault: "client";
|
|
3235
|
+
export declare class InvalidInventoryRequestException extends __BaseException {
|
|
3236
|
+
readonly name: "InvalidInventoryRequestException";
|
|
3237
|
+
readonly $fault: "client";
|
|
3065
3238
|
Message?: string;
|
|
3239
|
+
/**
|
|
3240
|
+
* @internal
|
|
3241
|
+
*/
|
|
3242
|
+
constructor(opts: __ExceptionOptionType<InvalidInventoryRequestException, __BaseException>);
|
|
3066
3243
|
}
|
|
3067
3244
|
/**
|
|
3068
3245
|
* <p>The delete inventory option specified isn't valid. Verify the option and try again.</p>
|
|
3069
3246
|
*/
|
|
3070
|
-
export
|
|
3071
|
-
name: "InvalidOptionException";
|
|
3072
|
-
$fault: "client";
|
|
3247
|
+
export declare class InvalidOptionException extends __BaseException {
|
|
3248
|
+
readonly name: "InvalidOptionException";
|
|
3249
|
+
readonly $fault: "client";
|
|
3073
3250
|
Message?: string;
|
|
3251
|
+
/**
|
|
3252
|
+
* @internal
|
|
3253
|
+
*/
|
|
3254
|
+
constructor(opts: __ExceptionOptionType<InvalidOptionException, __BaseException>);
|
|
3074
3255
|
}
|
|
3075
3256
|
/**
|
|
3076
3257
|
* <p>The parameter type name isn't valid.</p>
|
|
3077
3258
|
*/
|
|
3078
|
-
export
|
|
3079
|
-
name: "InvalidTypeNameException";
|
|
3080
|
-
$fault: "client";
|
|
3259
|
+
export declare class InvalidTypeNameException extends __BaseException {
|
|
3260
|
+
readonly name: "InvalidTypeNameException";
|
|
3261
|
+
readonly $fault: "client";
|
|
3081
3262
|
Message?: string;
|
|
3263
|
+
/**
|
|
3264
|
+
* @internal
|
|
3265
|
+
*/
|
|
3266
|
+
constructor(opts: __ExceptionOptionType<InvalidTypeNameException, __BaseException>);
|
|
3082
3267
|
}
|
|
3083
3268
|
export interface DeleteMaintenanceWindowRequest {
|
|
3084
3269
|
/**
|
|
@@ -3127,10 +3312,13 @@ export declare namespace DeleteOpsMetadataResult {
|
|
|
3127
3312
|
/**
|
|
3128
3313
|
* <p>The OpsMetadata object doesn't exist. </p>
|
|
3129
3314
|
*/
|
|
3130
|
-
export
|
|
3131
|
-
name: "OpsMetadataNotFoundException";
|
|
3132
|
-
$fault: "client";
|
|
3133
|
-
|
|
3315
|
+
export declare class OpsMetadataNotFoundException extends __BaseException {
|
|
3316
|
+
readonly name: "OpsMetadataNotFoundException";
|
|
3317
|
+
readonly $fault: "client";
|
|
3318
|
+
/**
|
|
3319
|
+
* @internal
|
|
3320
|
+
*/
|
|
3321
|
+
constructor(opts: __ExceptionOptionType<OpsMetadataNotFoundException, __BaseException>);
|
|
3134
3322
|
}
|
|
3135
3323
|
export interface DeleteParameterRequest {
|
|
3136
3324
|
/**
|
|
@@ -3155,10 +3343,13 @@ export declare namespace DeleteParameterResult {
|
|
|
3155
3343
|
/**
|
|
3156
3344
|
* <p>The parameter couldn't be found. Verify the name and try again.</p>
|
|
3157
3345
|
*/
|
|
3158
|
-
export
|
|
3159
|
-
name: "ParameterNotFound";
|
|
3160
|
-
$fault: "client";
|
|
3161
|
-
|
|
3346
|
+
export declare class ParameterNotFound extends __BaseException {
|
|
3347
|
+
readonly name: "ParameterNotFound";
|
|
3348
|
+
readonly $fault: "client";
|
|
3349
|
+
/**
|
|
3350
|
+
* @internal
|
|
3351
|
+
*/
|
|
3352
|
+
constructor(opts: __ExceptionOptionType<ParameterNotFound, __BaseException>);
|
|
3162
3353
|
}
|
|
3163
3354
|
export interface DeleteParametersRequest {
|
|
3164
3355
|
/**
|
|
@@ -3217,10 +3408,14 @@ export declare namespace DeletePatchBaselineResult {
|
|
|
3217
3408
|
* <p>Error returned if an attempt is made to delete a patch baseline that is registered for a
|
|
3218
3409
|
* patch group.</p>
|
|
3219
3410
|
*/
|
|
3220
|
-
export
|
|
3221
|
-
name: "ResourceInUseException";
|
|
3222
|
-
$fault: "client";
|
|
3411
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
3412
|
+
readonly name: "ResourceInUseException";
|
|
3413
|
+
readonly $fault: "client";
|
|
3223
3414
|
Message?: string;
|
|
3415
|
+
/**
|
|
3416
|
+
* @internal
|
|
3417
|
+
*/
|
|
3418
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
3224
3419
|
}
|
|
3225
3420
|
export interface DeleteResourceDataSyncRequest {
|
|
3226
3421
|
/**
|
|
@@ -3249,12 +3444,16 @@ export declare namespace DeleteResourceDataSyncResult {
|
|
|
3249
3444
|
/**
|
|
3250
3445
|
* <p>The specified sync name wasn't found.</p>
|
|
3251
3446
|
*/
|
|
3252
|
-
export
|
|
3253
|
-
name: "ResourceDataSyncNotFoundException";
|
|
3254
|
-
$fault: "client";
|
|
3447
|
+
export declare class ResourceDataSyncNotFoundException extends __BaseException {
|
|
3448
|
+
readonly name: "ResourceDataSyncNotFoundException";
|
|
3449
|
+
readonly $fault: "client";
|
|
3255
3450
|
SyncName?: string;
|
|
3256
3451
|
SyncType?: string;
|
|
3257
3452
|
Message?: string;
|
|
3453
|
+
/**
|
|
3454
|
+
* @internal
|
|
3455
|
+
*/
|
|
3456
|
+
constructor(opts: __ExceptionOptionType<ResourceDataSyncNotFoundException, __BaseException>);
|
|
3258
3457
|
}
|
|
3259
3458
|
export interface DeregisterManagedInstanceRequest {
|
|
3260
3459
|
/**
|
|
@@ -3351,10 +3550,14 @@ export declare namespace DeregisterTargetFromMaintenanceWindowResult {
|
|
|
3351
3550
|
* <p>You specified the <code>Safe</code> option for the DeregisterTargetFromMaintenanceWindow
|
|
3352
3551
|
* operation, but the target is still referenced in a task.</p>
|
|
3353
3552
|
*/
|
|
3354
|
-
export
|
|
3355
|
-
name: "TargetInUseException";
|
|
3356
|
-
$fault: "client";
|
|
3553
|
+
export declare class TargetInUseException extends __BaseException {
|
|
3554
|
+
readonly name: "TargetInUseException";
|
|
3555
|
+
readonly $fault: "client";
|
|
3357
3556
|
Message?: string;
|
|
3557
|
+
/**
|
|
3558
|
+
* @internal
|
|
3559
|
+
*/
|
|
3560
|
+
constructor(opts: __ExceptionOptionType<TargetInUseException, __BaseException>);
|
|
3358
3561
|
}
|
|
3359
3562
|
export interface DeregisterTaskFromMaintenanceWindowRequest {
|
|
3360
3563
|
/**
|
|
@@ -3453,18 +3656,26 @@ export declare namespace DescribeActivationsResult {
|
|
|
3453
3656
|
/**
|
|
3454
3657
|
* <p>The filter name isn't valid. Verify the you entered the correct name and try again.</p>
|
|
3455
3658
|
*/
|
|
3456
|
-
export
|
|
3457
|
-
name: "InvalidFilter";
|
|
3458
|
-
$fault: "client";
|
|
3659
|
+
export declare class InvalidFilter extends __BaseException {
|
|
3660
|
+
readonly name: "InvalidFilter";
|
|
3661
|
+
readonly $fault: "client";
|
|
3459
3662
|
Message?: string;
|
|
3663
|
+
/**
|
|
3664
|
+
* @internal
|
|
3665
|
+
*/
|
|
3666
|
+
constructor(opts: __ExceptionOptionType<InvalidFilter, __BaseException>);
|
|
3460
3667
|
}
|
|
3461
3668
|
/**
|
|
3462
3669
|
* <p>The specified token isn't valid.</p>
|
|
3463
3670
|
*/
|
|
3464
|
-
export
|
|
3465
|
-
name: "InvalidNextToken";
|
|
3466
|
-
$fault: "client";
|
|
3671
|
+
export declare class InvalidNextToken extends __BaseException {
|
|
3672
|
+
readonly name: "InvalidNextToken";
|
|
3673
|
+
readonly $fault: "client";
|
|
3467
3674
|
Message?: string;
|
|
3675
|
+
/**
|
|
3676
|
+
* @internal
|
|
3677
|
+
*/
|
|
3678
|
+
constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
|
|
3468
3679
|
}
|
|
3469
3680
|
export interface DescribeAssociationRequest {
|
|
3470
3681
|
/**
|
|
@@ -3510,10 +3721,14 @@ export declare namespace DescribeAssociationResult {
|
|
|
3510
3721
|
* an association according to the association ID. Or, use the <code>$LATEST</code> parameter to
|
|
3511
3722
|
* view the latest version of the association.</p>
|
|
3512
3723
|
*/
|
|
3513
|
-
export
|
|
3514
|
-
name: "InvalidAssociationVersion";
|
|
3515
|
-
$fault: "client";
|
|
3724
|
+
export declare class InvalidAssociationVersion extends __BaseException {
|
|
3725
|
+
readonly name: "InvalidAssociationVersion";
|
|
3726
|
+
readonly $fault: "client";
|
|
3516
3727
|
Message?: string;
|
|
3728
|
+
/**
|
|
3729
|
+
* @internal
|
|
3730
|
+
*/
|
|
3731
|
+
constructor(opts: __ExceptionOptionType<InvalidAssociationVersion, __BaseException>);
|
|
3517
3732
|
}
|
|
3518
3733
|
export declare enum AssociationExecutionFilterKey {
|
|
3519
3734
|
CreatedTime = "CreatedTime",
|
|
@@ -3639,10 +3854,14 @@ export declare namespace DescribeAssociationExecutionsResult {
|
|
|
3639
3854
|
/**
|
|
3640
3855
|
* <p>The specified execution ID doesn't exist. Verify the ID number and try again.</p>
|
|
3641
3856
|
*/
|
|
3642
|
-
export
|
|
3643
|
-
name: "AssociationExecutionDoesNotExist";
|
|
3644
|
-
$fault: "client";
|
|
3857
|
+
export declare class AssociationExecutionDoesNotExist extends __BaseException {
|
|
3858
|
+
readonly name: "AssociationExecutionDoesNotExist";
|
|
3859
|
+
readonly $fault: "client";
|
|
3645
3860
|
Message?: string;
|
|
3861
|
+
/**
|
|
3862
|
+
* @internal
|
|
3863
|
+
*/
|
|
3864
|
+
constructor(opts: __ExceptionOptionType<AssociationExecutionDoesNotExist, __BaseException>);
|
|
3646
3865
|
}
|
|
3647
3866
|
export declare enum AssociationExecutionTargetsFilterKey {
|
|
3648
3867
|
ResourceId = "ResourceId",
|
|
@@ -4106,26 +4325,38 @@ export declare namespace DescribeAutomationExecutionsResult {
|
|
|
4106
4325
|
/**
|
|
4107
4326
|
* <p>The specified key isn't valid.</p>
|
|
4108
4327
|
*/
|
|
4109
|
-
export
|
|
4110
|
-
name: "InvalidFilterKey";
|
|
4111
|
-
$fault: "client";
|
|
4328
|
+
export declare class InvalidFilterKey extends __BaseException {
|
|
4329
|
+
readonly name: "InvalidFilterKey";
|
|
4330
|
+
readonly $fault: "client";
|
|
4331
|
+
/**
|
|
4332
|
+
* @internal
|
|
4333
|
+
*/
|
|
4334
|
+
constructor(opts: __ExceptionOptionType<InvalidFilterKey, __BaseException>);
|
|
4112
4335
|
}
|
|
4113
4336
|
/**
|
|
4114
4337
|
* <p>The filter value isn't valid. Verify the value and try again.</p>
|
|
4115
4338
|
*/
|
|
4116
|
-
export
|
|
4117
|
-
name: "InvalidFilterValue";
|
|
4118
|
-
$fault: "client";
|
|
4339
|
+
export declare class InvalidFilterValue extends __BaseException {
|
|
4340
|
+
readonly name: "InvalidFilterValue";
|
|
4341
|
+
readonly $fault: "client";
|
|
4119
4342
|
Message?: string;
|
|
4343
|
+
/**
|
|
4344
|
+
* @internal
|
|
4345
|
+
*/
|
|
4346
|
+
constructor(opts: __ExceptionOptionType<InvalidFilterValue, __BaseException>);
|
|
4120
4347
|
}
|
|
4121
4348
|
/**
|
|
4122
4349
|
* <p>There is no automation execution information for the requested automation execution
|
|
4123
4350
|
* ID.</p>
|
|
4124
4351
|
*/
|
|
4125
|
-
export
|
|
4126
|
-
name: "AutomationExecutionNotFoundException";
|
|
4127
|
-
$fault: "client";
|
|
4352
|
+
export declare class AutomationExecutionNotFoundException extends __BaseException {
|
|
4353
|
+
readonly name: "AutomationExecutionNotFoundException";
|
|
4354
|
+
readonly $fault: "client";
|
|
4128
4355
|
Message?: string;
|
|
4356
|
+
/**
|
|
4357
|
+
* @internal
|
|
4358
|
+
*/
|
|
4359
|
+
constructor(opts: __ExceptionOptionType<AutomationExecutionNotFoundException, __BaseException>);
|
|
4129
4360
|
}
|
|
4130
4361
|
export declare enum StepExecutionFilterKey {
|
|
4131
4362
|
ACTION = "Action",
|
|
@@ -4824,10 +5055,14 @@ export declare namespace DescribeDocumentPermissionResponse {
|
|
|
4824
5055
|
* <p>The permission type isn't supported. <i>Share</i> is the only supported
|
|
4825
5056
|
* permission type.</p>
|
|
4826
5057
|
*/
|
|
4827
|
-
export
|
|
4828
|
-
name: "InvalidPermissionType";
|
|
4829
|
-
$fault: "client";
|
|
5058
|
+
export declare class InvalidPermissionType extends __BaseException {
|
|
5059
|
+
readonly name: "InvalidPermissionType";
|
|
5060
|
+
readonly $fault: "client";
|
|
4830
5061
|
Message?: string;
|
|
5062
|
+
/**
|
|
5063
|
+
* @internal
|
|
5064
|
+
*/
|
|
5065
|
+
constructor(opts: __ExceptionOptionType<InvalidPermissionType, __BaseException>);
|
|
4831
5066
|
}
|
|
4832
5067
|
export interface DescribeEffectiveInstanceAssociationsRequest {
|
|
4833
5068
|
/**
|
|
@@ -4993,10 +5228,14 @@ export declare namespace DescribeEffectivePatchesForPatchBaselineResult {
|
|
|
4993
5228
|
* <p>The operating systems you specified isn't supported, or the operation isn't supported for
|
|
4994
5229
|
* the operating system.</p>
|
|
4995
5230
|
*/
|
|
4996
|
-
export
|
|
4997
|
-
name: "UnsupportedOperatingSystem";
|
|
4998
|
-
$fault: "client";
|
|
5231
|
+
export declare class UnsupportedOperatingSystem extends __BaseException {
|
|
5232
|
+
readonly name: "UnsupportedOperatingSystem";
|
|
5233
|
+
readonly $fault: "client";
|
|
4999
5234
|
Message?: string;
|
|
5235
|
+
/**
|
|
5236
|
+
* @internal
|
|
5237
|
+
*/
|
|
5238
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperatingSystem, __BaseException>);
|
|
5000
5239
|
}
|
|
5001
5240
|
export interface DescribeInstanceAssociationsStatusRequest {
|
|
5002
5241
|
/**
|
|
@@ -5394,10 +5633,13 @@ export declare namespace DescribeInstanceInformationResult {
|
|
|
5394
5633
|
/**
|
|
5395
5634
|
* <p>The specified filter value isn't valid.</p>
|
|
5396
5635
|
*/
|
|
5397
|
-
export
|
|
5398
|
-
name: "InvalidInstanceInformationFilterValue";
|
|
5399
|
-
$fault: "client";
|
|
5400
|
-
|
|
5636
|
+
export declare class InvalidInstanceInformationFilterValue extends __BaseException {
|
|
5637
|
+
readonly name: "InvalidInstanceInformationFilterValue";
|
|
5638
|
+
readonly $fault: "client";
|
|
5639
|
+
/**
|
|
5640
|
+
* @internal
|
|
5641
|
+
*/
|
|
5642
|
+
constructor(opts: __ExceptionOptionType<InvalidInstanceInformationFilterValue, __BaseException>);
|
|
5401
5643
|
}
|
|
5402
5644
|
export interface DescribeInstancePatchesRequest {
|
|
5403
5645
|
/**
|
|
@@ -5999,10 +6241,14 @@ export declare namespace DescribeInventoryDeletionsResult {
|
|
|
5999
6241
|
* <p>The ID specified for the delete operation doesn't exist or isn't valid. Verify the ID and
|
|
6000
6242
|
* try again.</p>
|
|
6001
6243
|
*/
|
|
6002
|
-
export
|
|
6003
|
-
name: "InvalidDeletionIdException";
|
|
6004
|
-
$fault: "client";
|
|
6244
|
+
export declare class InvalidDeletionIdException extends __BaseException {
|
|
6245
|
+
readonly name: "InvalidDeletionIdException";
|
|
6246
|
+
readonly $fault: "client";
|
|
6005
6247
|
Message?: string;
|
|
6248
|
+
/**
|
|
6249
|
+
* @internal
|
|
6250
|
+
*/
|
|
6251
|
+
constructor(opts: __ExceptionOptionType<InvalidDeletionIdException, __BaseException>);
|
|
6006
6252
|
}
|
|
6007
6253
|
/**
|
|
6008
6254
|
* <p>Filter used in the request. Supported filter keys depend on the API operation that includes
|