@aws-sdk/client-ssm 3.43.0 → 3.47.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +12 -6
  3. package/dist-cjs/commands/UpdateDocumentMetadataCommand.js +2 -1
  4. package/dist-cjs/endpoints.js +1 -28
  5. package/dist-cjs/models/models_0.js +12 -390
  6. package/dist-cjs/models/models_1.js +11 -354
  7. package/dist-cjs/models/models_2.js +7 -13
  8. package/dist-cjs/protocols/Aws_json1_1.js +2 -0
  9. package/dist-cjs/runtimeConfig.browser.js +7 -2
  10. package/dist-cjs/runtimeConfig.js +9 -3
  11. package/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -1
  12. package/dist-es/endpoints.js +1 -28
  13. package/dist-es/models/models_0.js +7 -258
  14. package/dist-es/models/models_1.js +6 -232
  15. package/dist-es/models/models_2.js +4 -8
  16. package/dist-es/protocols/Aws_json1_1.js +2 -0
  17. package/dist-es/runtimeConfig.browser.js +12 -3
  18. package/dist-es/runtimeConfig.js +13 -6
  19. package/dist-types/SSM.d.ts +87 -81
  20. package/dist-types/SSMClient.d.ts +17 -7
  21. package/dist-types/commands/AddTagsToResourceCommand.d.ts +5 -5
  22. package/dist-types/commands/CreateActivationCommand.d.ts +6 -6
  23. package/dist-types/commands/CreateAssociationBatchCommand.d.ts +6 -6
  24. package/dist-types/commands/CreateAssociationCommand.d.ts +10 -10
  25. package/dist-types/commands/CreateDocumentCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteActivationCommand.d.ts +2 -3
  27. package/dist-types/commands/DeleteAssociationCommand.d.ts +4 -4
  28. package/dist-types/commands/DeleteDocumentCommand.d.ts +2 -2
  29. package/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +2 -2
  30. package/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeActivationsCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeAssociationCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +1 -1
  35. package/dist-types/commands/DescribeInstanceInformationCommand.d.ts +7 -6
  36. package/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +1 -1
  37. package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +2 -2
  39. package/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +1 -1
  40. package/dist-types/commands/GetCommandInvocationCommand.d.ts +2 -2
  41. package/dist-types/commands/GetConnectionStatusCommand.d.ts +1 -1
  42. package/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +2 -2
  43. package/dist-types/commands/GetInventoryCommand.d.ts +1 -1
  44. package/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListCommandInvocationsCommand.d.ts +4 -4
  46. package/dist-types/commands/PutComplianceItemsCommand.d.ts +1 -1
  47. package/dist-types/commands/PutInventoryCommand.d.ts +1 -1
  48. package/dist-types/commands/ResumeSessionCommand.d.ts +1 -1
  49. package/dist-types/commands/SendCommandCommand.d.ts +1 -1
  50. package/dist-types/commands/StartSessionCommand.d.ts +1 -1
  51. package/dist-types/commands/TerminateSessionCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateAssociationStatusCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +2 -1
  54. package/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +2 -2
  55. package/dist-types/models/models_0.d.ts +194 -570
  56. package/dist-types/models/models_1.d.ts +188 -536
  57. package/dist-types/models/models_2.d.ts +21 -25
  58. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  59. package/dist-types/runtimeConfig.d.ts +4 -3
  60. package/dist-types/runtimeConfig.native.d.ts +1 -0
  61. package/dist-types/ts3.4/SSMClient.d.ts +3 -1
  62. package/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +2 -1
  63. package/dist-types/ts3.4/models/models_0.d.ts +10 -257
  64. package/dist-types/ts3.4/models/models_1.d.ts +6 -235
  65. package/dist-types/ts3.4/models/models_2.d.ts +6 -8
  66. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  67. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  68. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  69. package/package.json +39 -46
@@ -22,7 +22,7 @@ export declare namespace AccountSharingInfo {
22
22
  /**
23
23
  * <p>Metadata that you assign to your Amazon Web Services resources. Tags enable you to categorize your
24
24
  * resources in different ways, for example, by purpose, owner, or environment. In Amazon Web Services Systems Manager, you
25
- * can apply tags to Systems Manager documents (SSM documents), managed instances, maintenance windows,
25
+ * can apply tags to Systems Manager documents (SSM documents), managed nodes, maintenance windows,
26
26
  * parameters, patch baselines, OpsItems, and OpsMetadata.</p>
27
27
  */
28
28
  export interface Tag {
@@ -44,7 +44,7 @@ export declare namespace Tag {
44
44
  /**
45
45
  * <p>An activation registers one or more on-premises servers or virtual machines (VMs) with Amazon Web Services
46
46
  * so that you can configure those servers or VMs using Run Command. A server or VM that has been
47
- * registered with Amazon Web Services Systems Manager is called a managed instance.</p>
47
+ * registered with Amazon Web Services Systems Manager is called a managed node.</p>
48
48
  */
49
49
  export interface Activation {
50
50
  /**
@@ -56,24 +56,24 @@ export interface Activation {
56
56
  */
57
57
  Description?: string;
58
58
  /**
59
- * <p>A name for the managed instance when it is created.</p>
59
+ * <p>A name for the managed node when it is created.</p>
60
60
  */
61
61
  DefaultInstanceName?: string;
62
62
  /**
63
63
  * <p>The Identity and Access Management (IAM) role to assign to the managed
64
- * instance.</p>
64
+ * node.</p>
65
65
  */
66
66
  IamRole?: string;
67
67
  /**
68
- * <p>The maximum number of managed instances that can be registered using this activation.</p>
68
+ * <p>The maximum number of managed nodes that can be registered using this activation.</p>
69
69
  */
70
70
  RegistrationLimit?: number;
71
71
  /**
72
- * <p>The number of managed instances already registered with this activation.</p>
72
+ * <p>The number of managed nodes already registered with this activation.</p>
73
73
  */
74
74
  RegistrationsCount?: number;
75
75
  /**
76
- * <p>The date when this activation can no longer be used to register managed instances.</p>
76
+ * <p>The date when this activation can no longer be used to register managed nodes.</p>
77
77
  */
78
78
  ExpirationDate?: Date;
79
79
  /**
@@ -109,7 +109,7 @@ export interface AddTagsToResourceRequest {
109
109
  * <p>Specifies the type of resource you are tagging.</p>
110
110
  * <note>
111
111
  * <p>The <code>ManagedInstance</code> type for this API operation is for on-premises managed
112
- * instances. You must specify the name of the managed instance in the following format:
112
+ * nodes. You must specify the name of the managed node in the following format:
113
113
  * <code>mi-<i>ID_number</i>
114
114
  * </code>. For example,
115
115
  * <code>mi-1a2b3c4d5e6f</code>.</p>
@@ -140,7 +140,7 @@ export interface AddTagsToResourceRequest {
140
140
  * </p>
141
141
  * <note>
142
142
  * <p>The <code>ManagedInstance</code> type for this API operation is only for on-premises
143
- * managed instances. You must specify the name of the managed instance in the following format:
143
+ * managed nodes. You must specify the name of the managed node in the following format:
144
144
  * <code>mi-<i>ID_number</i>
145
145
  * </code>. For example,
146
146
  * <code>mi-1a2b3c4d5e6f</code>.</p>
@@ -177,12 +177,6 @@ export interface InternalServerError extends __SmithyException, $MetadataBearer
177
177
  $fault: "server";
178
178
  Message?: string;
179
179
  }
180
- export declare namespace InternalServerError {
181
- /**
182
- * @internal
183
- */
184
- const filterSensitiveLog: (obj: InternalServerError) => any;
185
- }
186
180
  /**
187
181
  * <p>The resource ID isn't valid. Verify that you entered the correct ID and try again.</p>
188
182
  */
@@ -190,26 +184,14 @@ export interface InvalidResourceId extends __SmithyException, $MetadataBearer {
190
184
  name: "InvalidResourceId";
191
185
  $fault: "client";
192
186
  }
193
- export declare namespace InvalidResourceId {
194
- /**
195
- * @internal
196
- */
197
- const filterSensitiveLog: (obj: InvalidResourceId) => any;
198
- }
199
187
  /**
200
- * <p>The resource type isn't valid. For example, if you are attempting to tag an instance, the
201
- * instance must be a registered, managed instance.</p>
188
+ * <p>The resource type isn't valid. For example, if you are attempting to tag an EC2 instance, the
189
+ * instance must be a registered managed node.</p>
202
190
  */
203
191
  export interface InvalidResourceType extends __SmithyException, $MetadataBearer {
204
192
  name: "InvalidResourceType";
205
193
  $fault: "client";
206
194
  }
207
- export declare namespace InvalidResourceType {
208
- /**
209
- * @internal
210
- */
211
- const filterSensitiveLog: (obj: InvalidResourceType) => any;
212
- }
213
195
  /**
214
196
  * <p>The <code>Targets</code> parameter includes too many tags. Remove one or more tags and try
215
197
  * the command again.</p>
@@ -218,12 +200,6 @@ export interface TooManyTagsError extends __SmithyException, $MetadataBearer {
218
200
  name: "TooManyTagsError";
219
201
  $fault: "client";
220
202
  }
221
- export declare namespace TooManyTagsError {
222
- /**
223
- * @internal
224
- */
225
- const filterSensitiveLog: (obj: TooManyTagsError) => any;
226
- }
227
203
  /**
228
204
  * <p>There are concurrent updates for a resource that supports one update at a time.</p>
229
205
  */
@@ -232,12 +208,6 @@ export interface TooManyUpdates extends __SmithyException, $MetadataBearer {
232
208
  $fault: "client";
233
209
  Message?: string;
234
210
  }
235
- export declare namespace TooManyUpdates {
236
- /**
237
- * @internal
238
- */
239
- const filterSensitiveLog: (obj: TooManyUpdates) => any;
240
- }
241
211
  /**
242
212
  * <p>Error returned if an attempt is made to register a patch group with a patch baseline that is
243
213
  * already registered with a different patch baseline.</p>
@@ -247,12 +217,6 @@ export interface AlreadyExistsException extends __SmithyException, $MetadataBear
247
217
  $fault: "client";
248
218
  Message?: string;
249
219
  }
250
- export declare namespace AlreadyExistsException {
251
- /**
252
- * @internal
253
- */
254
- const filterSensitiveLog: (obj: AlreadyExistsException) => any;
255
- }
256
220
  export interface AssociateOpsItemRelatedItemRequest {
257
221
  /**
258
222
  * <p>The ID of the OpsItem to which you want to associate a resource as a related item.</p>
@@ -306,12 +270,6 @@ export interface OpsItemInvalidParameterException extends __SmithyException, $Me
306
270
  ParameterNames?: string[];
307
271
  Message?: string;
308
272
  }
309
- export declare namespace OpsItemInvalidParameterException {
310
- /**
311
- * @internal
312
- */
313
- const filterSensitiveLog: (obj: OpsItemInvalidParameterException) => any;
314
- }
315
273
  /**
316
274
  * <p>The request caused OpsItems to exceed one or more quotas. For information about OpsItem
317
275
  * 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>
@@ -324,12 +282,6 @@ export interface OpsItemLimitExceededException extends __SmithyException, $Metad
324
282
  LimitType?: string;
325
283
  Message?: string;
326
284
  }
327
- export declare namespace OpsItemLimitExceededException {
328
- /**
329
- * @internal
330
- */
331
- const filterSensitiveLog: (obj: OpsItemLimitExceededException) => any;
332
- }
333
285
  /**
334
286
  * <p>The specified OpsItem ID doesn't exist. Verify the ID and try again.</p>
335
287
  */
@@ -338,12 +290,6 @@ export interface OpsItemNotFoundException extends __SmithyException, $MetadataBe
338
290
  $fault: "client";
339
291
  Message?: string;
340
292
  }
341
- export declare namespace OpsItemNotFoundException {
342
- /**
343
- * @internal
344
- */
345
- const filterSensitiveLog: (obj: OpsItemNotFoundException) => any;
346
- }
347
293
  /**
348
294
  * <p>The Amazon Resource Name (ARN) is already associated with the OpsItem.</p>
349
295
  */
@@ -354,12 +300,6 @@ export interface OpsItemRelatedItemAlreadyExistsException extends __SmithyExcept
354
300
  ResourceUri?: string;
355
301
  OpsItemId?: string;
356
302
  }
357
- export declare namespace OpsItemRelatedItemAlreadyExistsException {
358
- /**
359
- * @internal
360
- */
361
- const filterSensitiveLog: (obj: OpsItemRelatedItemAlreadyExistsException) => any;
362
- }
363
303
  /**
364
304
  * <p></p>
365
305
  */
@@ -369,8 +309,8 @@ export interface CancelCommandRequest {
369
309
  */
370
310
  CommandId: string | undefined;
371
311
  /**
372
- * <p>(Optional) A list of instance IDs on which you want to cancel the command. If not provided,
373
- * the command is canceled on every instance on which it was requested.</p>
312
+ * <p>(Optional) A list of managed node IDs on which you want to cancel the command. If not provided,
313
+ * the command is canceled on every node on which it was requested.</p>
374
314
  */
375
315
  InstanceIds?: string[];
376
316
  }
@@ -393,18 +333,12 @@ export declare namespace CancelCommandResult {
393
333
  const filterSensitiveLog: (obj: CancelCommandResult) => any;
394
334
  }
395
335
  /**
396
- * <p>You can't specify an instance ID in more than one association.</p>
336
+ * <p>You can't specify a managed node ID in more than one association.</p>
397
337
  */
398
338
  export interface DuplicateInstanceId extends __SmithyException, $MetadataBearer {
399
339
  name: "DuplicateInstanceId";
400
340
  $fault: "client";
401
341
  }
402
- export declare namespace DuplicateInstanceId {
403
- /**
404
- * @internal
405
- */
406
- const filterSensitiveLog: (obj: DuplicateInstanceId) => any;
407
- }
408
342
  /**
409
343
  * <p>The specified command ID isn't valid. Verify the ID and try again.</p>
410
344
  */
@@ -412,17 +346,11 @@ export interface InvalidCommandId extends __SmithyException, $MetadataBearer {
412
346
  name: "InvalidCommandId";
413
347
  $fault: "client";
414
348
  }
415
- export declare namespace InvalidCommandId {
416
- /**
417
- * @internal
418
- */
419
- const filterSensitiveLog: (obj: InvalidCommandId) => any;
420
- }
421
349
  /**
422
350
  * <p>The following problems can cause this exception:</p>
423
351
  * <ul>
424
352
  * <li>
425
- * <p>You don't have permission to access the instance.</p>
353
+ * <p>You don't have permission to access the managed node.</p>
426
354
  * </li>
427
355
  * <li>
428
356
  * <p>Amazon Web Services Systems Manager Agent(SSM Agent) isn't running. Verify that SSM Agent is
@@ -432,7 +360,7 @@ export declare namespace InvalidCommandId {
432
360
  * <p>SSM Agent isn't registered with the SSM endpoint. Try reinstalling SSM Agent.</p>
433
361
  * </li>
434
362
  * <li>
435
- * <p>The instance isn't in valid state. Valid states are: <code>Running</code>,
363
+ * <p>The managed node isn't in valid state. Valid states are: <code>Running</code>,
436
364
  * <code>Pending</code>, <code>Stopped</code>, and <code>Stopping</code>. Invalid states are:
437
365
  * <code>Shutting-down</code> and <code>Terminated</code>.</p>
438
366
  * </li>
@@ -443,12 +371,6 @@ export interface InvalidInstanceId extends __SmithyException, $MetadataBearer {
443
371
  $fault: "client";
444
372
  Message?: string;
445
373
  }
446
- export declare namespace InvalidInstanceId {
447
- /**
448
- * @internal
449
- */
450
- const filterSensitiveLog: (obj: InvalidInstanceId) => any;
451
- }
452
374
  export interface CancelMaintenanceWindowExecutionRequest {
453
375
  /**
454
376
  * <p>The ID of the maintenance window execution to stop.</p>
@@ -484,12 +406,6 @@ export interface DoesNotExistException extends __SmithyException, $MetadataBeare
484
406
  $fault: "client";
485
407
  Message?: string;
486
408
  }
487
- export declare namespace DoesNotExistException {
488
- /**
489
- * @internal
490
- */
491
- const filterSensitiveLog: (obj: DoesNotExistException) => any;
492
- }
493
409
  /**
494
410
  * <p>Reserved for internal use.</p>
495
411
  */
@@ -518,8 +434,8 @@ export interface CreateActivationRequest {
518
434
  */
519
435
  Description?: string;
520
436
  /**
521
- * <p>The name of the registered, managed instance as it will appear in the Amazon Web Services Systems Manager console or
522
- * when you use the Amazon Web Services command line tools to list Systems Manager resources.</p>
437
+ * <p>The name of the registered, managed node as it will appear in the Amazon Web Services Systems Manager console or when
438
+ * you use the Amazon Web Services command line tools to list Systems Manager resources.</p>
523
439
  * <important>
524
440
  * <p>Don't enter personally identifiable information in this field.</p>
525
441
  * </important>
@@ -527,14 +443,14 @@ export interface CreateActivationRequest {
527
443
  DefaultInstanceName?: string;
528
444
  /**
529
445
  * <p>The name of the Identity and Access Management (IAM) role that you want to assign to
530
- * the managed instance. This IAM role must provide AssumeRole permissions for the
446
+ * the managed node. This IAM role must provide AssumeRole permissions for the
531
447
  * Amazon Web Services Systems Manager service principal <code>ssm.amazonaws.com</code>. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-service-role.html">Create an
532
448
  * IAM service role for a hybrid environment</a> in the
533
449
  * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
534
450
  */
535
451
  IamRole: string | undefined;
536
452
  /**
537
- * <p>Specify the maximum number of managed instances you want to register. The default value is
453
+ * <p>Specify the maximum number of managed nodes you want to register. The default value is
538
454
  * <code>1</code>.</p>
539
455
  */
540
456
  RegistrationLimit?: number;
@@ -567,10 +483,10 @@ export interface CreateActivationRequest {
567
483
  * automatically applied to the on-premises servers or VMs.</p>
568
484
  * </important>
569
485
  * <p>You can't add tags to or delete tags from an existing activation. You can tag your
570
- * on-premises servers and VMs after they connect to Systems Manager for the first time and are assigned a
571
- * managed instance ID. This means they are listed in the Amazon Web Services Systems Manager console with an ID that is
572
- * prefixed with "mi-". For information about how to add tags to your managed instances, see <a>AddTagsToResource</a>. For information about how to remove tags from your managed
573
- * instances, see <a>RemoveTagsFromResource</a>.</p>
486
+ * on-premises servers, edge devices, and VMs after they connect to Systems Manager for the first time and are assigned a
487
+ * managed node ID. This means they are listed in the Amazon Web Services Systems Manager console with an ID that is
488
+ * prefixed with "mi-". For information about how to add tags to your managed nodes, see <a>AddTagsToResource</a>. For information about how to remove tags from your managed nodes,
489
+ * see <a>RemoveTagsFromResource</a>.</p>
574
490
  */
575
491
  Tags?: Tag[];
576
492
  /**
@@ -611,12 +527,6 @@ export interface InvalidParameters extends __SmithyException, $MetadataBearer {
611
527
  $fault: "client";
612
528
  Message?: string;
613
529
  }
614
- export declare namespace InvalidParameters {
615
- /**
616
- * @internal
617
- */
618
- const filterSensitiveLog: (obj: InvalidParameters) => any;
619
- }
620
530
  /**
621
531
  * <p>The specified association already exists.</p>
622
532
  */
@@ -624,12 +534,6 @@ export interface AssociationAlreadyExists extends __SmithyException, $MetadataBe
624
534
  name: "AssociationAlreadyExists";
625
535
  $fault: "client";
626
536
  }
627
- export declare namespace AssociationAlreadyExists {
628
- /**
629
- * @internal
630
- */
631
- const filterSensitiveLog: (obj: AssociationAlreadyExists) => any;
632
- }
633
537
  /**
634
538
  * <p>You can have at most 2,000 active associations.</p>
635
539
  */
@@ -637,12 +541,6 @@ export interface AssociationLimitExceeded extends __SmithyException, $MetadataBe
637
541
  name: "AssociationLimitExceeded";
638
542
  $fault: "client";
639
543
  }
640
- export declare namespace AssociationLimitExceeded {
641
- /**
642
- * @internal
643
- */
644
- const filterSensitiveLog: (obj: AssociationLimitExceeded) => any;
645
- }
646
544
  export declare enum AssociationComplianceSeverity {
647
545
  Critical = "CRITICAL",
648
546
  High = "HIGH",
@@ -730,7 +628,7 @@ export declare namespace TargetLocation {
730
628
  const filterSensitiveLog: (obj: TargetLocation) => any;
731
629
  }
732
630
  /**
733
- * <p>An array of search criteria that targets instances using a key-value pair that you
631
+ * <p>An array of search criteria that targets managed nodes using a key-value pair that you
734
632
  * specify.</p>
735
633
  * <note>
736
634
  * <p> One or more targets must be specified for maintenance window Run Command-type tasks.
@@ -744,41 +642,35 @@ export declare namespace TargetLocation {
744
642
  * <ul>
745
643
  * <li>
746
644
  * <p>
747
- * <code>Key=InstanceIds,Values=<i>instance-id-1</i>,<i>instance-id-2</i>,<i>instance-id-3</i>
748
- * </code>
645
+ * <code>Key=InstanceIds,Values=<instance-id-1>,<instance-id-2>,<instance-id-3></code>
749
646
  * </p>
750
647
  * </li>
751
648
  * <li>
752
649
  * <p>
753
- * <code>Key=tag:<i>my-tag-key</i>,Values=<i>my-tag-value-1</i>,<i>my-tag-value-2</i>
754
- * </code>
650
+ * <code>Key=tag:<my-tag-key>,Values=<my-tag-value-1>,<my-tag-value-2></code>
755
651
  * </p>
756
652
  * </li>
757
653
  * <li>
758
654
  * <p>
759
- * <code>Key=tag-key,Values=<i>my-tag-key-1</i>,<i>my-tag-key-2</i>
760
- * </code>
655
+ * <code>Key=tag-key,Values=<my-tag-key-1>,<my-tag-key-2></code>
761
656
  * </p>
762
657
  * </li>
763
658
  * <li>
764
659
  * <p>
765
660
  * <b>Run Command and Maintenance window targets only</b>:
766
- * <code>Key=resource-groups:Name,Values=<i>resource-group-name</i>
767
- * </code>
661
+ * <code>Key=resource-groups:Name,Values=<resource-group-name></code>
768
662
  * </p>
769
663
  * </li>
770
664
  * <li>
771
665
  * <p>
772
666
  * <b>Maintenance window targets only</b>:
773
- * <code>Key=resource-groups:ResourceTypeFilters,Values=<i>resource-type-1</i>,<i>resource-type-2</i>
774
- * </code>
667
+ * <code>Key=resource-groups:ResourceTypeFilters,Values=<resource-type-1>,<resource-type-2></code>
775
668
  * </p>
776
669
  * </li>
777
670
  * <li>
778
671
  * <p>
779
672
  * <b>Automation targets only</b>:
780
- * <code>Key=ResourceGroup;Values=<i>resource-group-name</i>
781
- * </code>
673
+ * <code>Key=ResourceGroup;Values=<resource-group-name></code>
782
674
  * </p>
783
675
  * </li>
784
676
  * </ul>
@@ -809,8 +701,7 @@ export declare namespace TargetLocation {
809
701
  * <li>
810
702
  * <p>
811
703
  * <b>Maintenance window targets only</b>:
812
- * <code>Key=resource-groups:ResourceTypeFilters,Values=<i>AWS::EC2::INSTANCE</i>,<i>AWS::EC2::VPC</i>
813
- * </code>
704
+ * <code>Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC</code>
814
705
  * </p>
815
706
  * <p>This example demonstrates how to target only Amazon Elastic Compute Cloud (Amazon EC2)
816
707
  * instances and VPCs in your maintenance window.</p>
@@ -824,19 +715,18 @@ export declare namespace TargetLocation {
824
715
  * <li>
825
716
  * <p>
826
717
  * <b>State Manager association targets only</b>:
827
- * <code>Key=InstanceIds,Values=<i>*</i>
828
- * </code>
718
+ * <code>Key=InstanceIds,Values=*</code>
829
719
  * </p>
830
720
  * <p>This example demonstrates how to target all managed instances in the Amazon Web Services Region where
831
721
  * the association was created.</p>
832
722
  * </li>
833
723
  * </ul>
834
- * <p>For more information about how to send commands that target instances using
724
+ * <p>For more information about how to send commands that target managed nodes using
835
725
  * <code>Key,Value</code> parameters, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-targeting">Targeting multiple instances</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
836
726
  */
837
727
  export interface Target {
838
728
  /**
839
- * <p>User-defined criteria for sending commands that target instances that meet the
729
+ * <p>User-defined criteria for sending commands that target managed nodes that meet the
840
730
  * criteria.</p>
841
731
  */
842
732
  Key?: string;
@@ -858,7 +748,7 @@ export declare namespace Target {
858
748
  export interface CreateAssociationRequest {
859
749
  /**
860
750
  * <p>The name of the SSM Command document or Automation runbook that contains the configuration
861
- * information for the instance.</p>
751
+ * information for the managed node.</p>
862
752
  * <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
863
753
  * shared with you from another account.</p>
864
754
  * <p>For Systems Manager documents (SSM documents) that are shared with you from other Amazon Web Services accounts, you
@@ -882,10 +772,10 @@ export interface CreateAssociationRequest {
882
772
  */
883
773
  DocumentVersion?: string;
884
774
  /**
885
- * <p>The instance ID.</p>
775
+ * <p>The managed node ID.</p>
886
776
  * <note>
887
777
  * <p>
888
- * <code>InstanceId</code> has been deprecated. To specify an instance ID for an association,
778
+ * <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
889
779
  * use the <code>Targets</code> parameter. Requests that include the
890
780
  * parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
891
781
  * 2.0 or later will fail. In addition, if you use the parameter
@@ -903,9 +793,9 @@ export interface CreateAssociationRequest {
903
793
  [key: string]: string[];
904
794
  };
905
795
  /**
906
- * <p>The targets for the association. You can target instances by using tags, Amazon Web Services resource
907
- * groups, all instances in an Amazon Web Services account, or individual instance IDs. You can target all
908
- * instances in an Amazon Web Services account by specifying the <code>InstanceIds</code> key with a value of
796
+ * <p>The targets for the association. You can target managed nodes by using tags, Amazon Web Services resource
797
+ * groups, all managed nodes in an Amazon Web Services account, or individual managed node IDs. You can target all
798
+ * managed nodes in an Amazon Web Services account by specifying the <code>InstanceIds</code> key with a value of
909
799
  * <code>*</code>. For more information about choosing targets for an association, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-state-manager-targets-and-rate-controls.html">Using targets and rate controls with State Manager associations</a> in the
910
800
  * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
911
801
  */
@@ -935,8 +825,8 @@ export interface CreateAssociationRequest {
935
825
  * example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
936
826
  * the system stops sending requests when the fourth error is received. If you specify 0, then the
937
827
  * system stops sending requests after the first error is returned. If you run an association on 50
938
- * instances and set <code>MaxError</code> to 10%, then the system stops sending the request when
939
- * the sixth error is received.</p>
828
+ * managed nodes and set <code>MaxError</code> to 10%, then the system stops sending the request
829
+ * when the sixth error is received.</p>
940
830
  * <p>Executions that are already running an association when <code>MaxErrors</code> is reached
941
831
  * are allowed to complete, but some of these executions may fail as well. If you need to ensure
942
832
  * that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
@@ -947,9 +837,9 @@ export interface CreateAssociationRequest {
947
837
  * <p>The maximum number of targets allowed to run the association at the same time. You can
948
838
  * specify a number, for example 10, or a percentage of the target set, for example 10%. The default
949
839
  * value is 100%, which means all targets run the association at the same time.</p>
950
- * <p>If a new instance starts and attempts to run an association while Systems Manager is running
840
+ * <p>If a new managed node starts and attempts to run an association while Systems Manager is running
951
841
  * <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
952
- * association interval, the new instance will process its association within the limit specified
842
+ * association interval, the new managed node will process its association within the limit specified
953
843
  * for <code>MaxConcurrency</code>.</p>
954
844
  */
955
845
  MaxConcurrency?: string;
@@ -1010,8 +900,8 @@ export interface AssociationOverview {
1010
900
  DetailedStatus?: string;
1011
901
  /**
1012
902
  * <p>Returns the number of targets for the association status. For example, if you created an
1013
- * association with two instances, and one of them was successful, this would return the count of
1014
- * instances by status.</p>
903
+ * association with two managed nodes, and one of them was successful, this would return the count
904
+ * of managed nodes by status.</p>
1015
905
  */
1016
906
  AssociationStatusAggregatedCount?: {
1017
907
  [key: string]: number;
@@ -1064,7 +954,7 @@ export interface AssociationDescription {
1064
954
  */
1065
955
  Name?: string;
1066
956
  /**
1067
- * <p>The instance ID.</p>
957
+ * <p>The managed node ID.</p>
1068
958
  */
1069
959
  InstanceId?: string;
1070
960
  /**
@@ -1108,7 +998,7 @@ export interface AssociationDescription {
1108
998
  */
1109
999
  AssociationId?: string;
1110
1000
  /**
1111
- * <p>The instances targeted by the request. </p>
1001
+ * <p>The managed nodes targeted by the request. </p>
1112
1002
  */
1113
1003
  Targets?: Target[];
1114
1004
  /**
@@ -1137,8 +1027,8 @@ export interface AssociationDescription {
1137
1027
  * example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
1138
1028
  * the system stops sending requests when the fourth error is received. If you specify 0, then the
1139
1029
  * system stops sending requests after the first error is returned. If you run an association on 50
1140
- * instances and set <code>MaxError</code> to 10%, then the system stops sending the request when
1141
- * the sixth error is received.</p>
1030
+ * managed nodes and set <code>MaxError</code> to 10%, then the system stops sending the request
1031
+ * when the sixth error is received.</p>
1142
1032
  * <p>Executions that are already running an association when <code>MaxErrors</code> is reached
1143
1033
  * are allowed to complete, but some of these executions may fail as well. If you need to ensure
1144
1034
  * that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
@@ -1149,9 +1039,9 @@ export interface AssociationDescription {
1149
1039
  * <p>The maximum number of targets allowed to run the association at the same time. You can
1150
1040
  * specify a number, for example 10, or a percentage of the target set, for example 10%. The default
1151
1041
  * value is 100%, which means all targets run the association at the same time.</p>
1152
- * <p>If a new instance starts and attempts to run an association while Systems Manager is running
1042
+ * <p>If a new managed node starts and attempts to run an association while Systems Manager is running
1153
1043
  * <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
1154
- * association interval, the new instance will process its association within the limit specified
1044
+ * association interval, the new managed node will process its association within the limit specified
1155
1045
  * for <code>MaxConcurrency</code>.</p>
1156
1046
  */
1157
1047
  MaxConcurrency?: string;
@@ -1222,12 +1112,6 @@ export interface InvalidDocument extends __SmithyException, $MetadataBearer {
1222
1112
  */
1223
1113
  Message?: string;
1224
1114
  }
1225
- export declare namespace InvalidDocument {
1226
- /**
1227
- * @internal
1228
- */
1229
- const filterSensitiveLog: (obj: InvalidDocument) => any;
1230
- }
1231
1115
  /**
1232
1116
  * <p>The document version isn't valid or doesn't exist.</p>
1233
1117
  */
@@ -1236,12 +1120,6 @@ export interface InvalidDocumentVersion extends __SmithyException, $MetadataBear
1236
1120
  $fault: "client";
1237
1121
  Message?: string;
1238
1122
  }
1239
- export declare namespace InvalidDocumentVersion {
1240
- /**
1241
- * @internal
1242
- */
1243
- const filterSensitiveLog: (obj: InvalidDocumentVersion) => any;
1244
- }
1245
1123
  /**
1246
1124
  * <p>The output location isn't valid or doesn't exist.</p>
1247
1125
  */
@@ -1249,12 +1127,6 @@ export interface InvalidOutputLocation extends __SmithyException, $MetadataBeare
1249
1127
  name: "InvalidOutputLocation";
1250
1128
  $fault: "client";
1251
1129
  }
1252
- export declare namespace InvalidOutputLocation {
1253
- /**
1254
- * @internal
1255
- */
1256
- const filterSensitiveLog: (obj: InvalidOutputLocation) => any;
1257
- }
1258
1130
  /**
1259
1131
  * <p>The schedule is invalid. Verify your cron or rate expression and try again.</p>
1260
1132
  */
@@ -1263,12 +1135,6 @@ export interface InvalidSchedule extends __SmithyException, $MetadataBearer {
1263
1135
  $fault: "client";
1264
1136
  Message?: string;
1265
1137
  }
1266
- export declare namespace InvalidSchedule {
1267
- /**
1268
- * @internal
1269
- */
1270
- const filterSensitiveLog: (obj: InvalidSchedule) => any;
1271
- }
1272
1138
  /**
1273
1139
  * <p>The target isn't valid or doesn't exist. It might not be configured for Systems Manager or you might
1274
1140
  * not have permission to perform the operation.</p>
@@ -1278,33 +1144,21 @@ export interface InvalidTarget extends __SmithyException, $MetadataBearer {
1278
1144
  $fault: "client";
1279
1145
  Message?: string;
1280
1146
  }
1281
- export declare namespace InvalidTarget {
1282
- /**
1283
- * @internal
1284
- */
1285
- const filterSensitiveLog: (obj: InvalidTarget) => any;
1286
- }
1287
1147
  /**
1288
- * <p>The document doesn't support the platform type of the given instance ID(s). For example, you
1289
- * sent an document for a Windows instance to a Linux instance.</p>
1148
+ * <p>The document doesn't support the platform type of the given managed node ID(s). For example, you
1149
+ * sent an document for a Windows managed node to a Linux node.</p>
1290
1150
  */
1291
1151
  export interface UnsupportedPlatformType extends __SmithyException, $MetadataBearer {
1292
1152
  name: "UnsupportedPlatformType";
1293
1153
  $fault: "client";
1294
1154
  Message?: string;
1295
1155
  }
1296
- export declare namespace UnsupportedPlatformType {
1297
- /**
1298
- * @internal
1299
- */
1300
- const filterSensitiveLog: (obj: UnsupportedPlatformType) => any;
1301
- }
1302
1156
  /**
1303
- * <p>Describes the association of a Amazon Web Services Systems Manager document (SSM document) and an instance.</p>
1157
+ * <p>Describes the association of a Amazon Web Services Systems Manager document (SSM document) and a managed node.</p>
1304
1158
  */
1305
1159
  export interface CreateAssociationBatchRequestEntry {
1306
1160
  /**
1307
- * <p>The name of the SSM document that contains the configuration information for the instance.
1161
+ * <p>The name of the SSM document that contains the configuration information for the managed node.
1308
1162
  * You can specify Command or Automation runbooks.</p>
1309
1163
  * <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
1310
1164
  * shared with you from another account.</p>
@@ -1324,10 +1178,10 @@ export interface CreateAssociationBatchRequestEntry {
1324
1178
  */
1325
1179
  Name: string | undefined;
1326
1180
  /**
1327
- * <p>The instance ID.</p>
1181
+ * <p>The managed node ID.</p>
1328
1182
  * <note>
1329
1183
  * <p>
1330
- * <code>InstanceId</code> has been deprecated. To specify an instance ID for an association,
1184
+ * <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
1331
1185
  * use the <code>Targets</code> parameter. Requests that include the
1332
1186
  * parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
1333
1187
  * 2.0 or later will fail. In addition, if you use the parameter
@@ -1355,7 +1209,7 @@ export interface CreateAssociationBatchRequestEntry {
1355
1209
  */
1356
1210
  DocumentVersion?: string;
1357
1211
  /**
1358
- * <p>The instances targeted by the request.</p>
1212
+ * <p>The managed nodes targeted by the request.</p>
1359
1213
  */
1360
1214
  Targets?: Target[];
1361
1215
  /**
@@ -1376,8 +1230,8 @@ export interface CreateAssociationBatchRequestEntry {
1376
1230
  * example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
1377
1231
  * the system stops sending requests when the fourth error is received. If you specify 0, then the
1378
1232
  * system stops sending requests after the first error is returned. If you run an association on 50
1379
- * instances and set <code>MaxError</code> to 10%, then the system stops sending the request when
1380
- * the sixth error is received.</p>
1233
+ * managed nodes and set <code>MaxError</code> to 10%, then the system stops sending the request
1234
+ * when the sixth error is received.</p>
1381
1235
  * <p>Executions that are already running an association when <code>MaxErrors</code> is reached
1382
1236
  * are allowed to complete, but some of these executions may fail as well. If you need to ensure
1383
1237
  * that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
@@ -1388,9 +1242,9 @@ export interface CreateAssociationBatchRequestEntry {
1388
1242
  * <p>The maximum number of targets allowed to run the association at the same time. You can
1389
1243
  * specify a number, for example 10, or a percentage of the target set, for example 10%. The default
1390
1244
  * value is 100%, which means all targets run the association at the same time.</p>
1391
- * <p>If a new instance starts and attempts to run an association while Systems Manager is running
1245
+ * <p>If a new managed node starts and attempts to run an association while Systems Manager is running
1392
1246
  * <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
1393
- * association interval, the new instance will process its association within the limit specified
1247
+ * association interval, the new managed node will process its association within the limit specified
1394
1248
  * for <code>MaxConcurrency</code>.</p>
1395
1249
  */
1396
1250
  MaxConcurrency?: string;
@@ -1765,6 +1619,7 @@ export declare namespace DocumentParameter {
1765
1619
  }
1766
1620
  export declare enum PlatformType {
1767
1621
  LINUX = "Linux",
1622
+ MACOS = "MacOS",
1768
1623
  WINDOWS = "Windows"
1769
1624
  }
1770
1625
  export declare enum ReviewStatus {
@@ -1960,12 +1815,6 @@ export interface DocumentAlreadyExists extends __SmithyException, $MetadataBeare
1960
1815
  $fault: "client";
1961
1816
  Message?: string;
1962
1817
  }
1963
- export declare namespace DocumentAlreadyExists {
1964
- /**
1965
- * @internal
1966
- */
1967
- const filterSensitiveLog: (obj: DocumentAlreadyExists) => any;
1968
- }
1969
1818
  /**
1970
1819
  * <p>You can have at most 500 active SSM documents.</p>
1971
1820
  */
@@ -1974,12 +1823,6 @@ export interface DocumentLimitExceeded extends __SmithyException, $MetadataBeare
1974
1823
  $fault: "client";
1975
1824
  Message?: string;
1976
1825
  }
1977
- export declare namespace DocumentLimitExceeded {
1978
- /**
1979
- * @internal
1980
- */
1981
- const filterSensitiveLog: (obj: DocumentLimitExceeded) => any;
1982
- }
1983
1826
  /**
1984
1827
  * <p>The content for the document isn't valid.</p>
1985
1828
  */
@@ -1991,12 +1834,6 @@ export interface InvalidDocumentContent extends __SmithyException, $MetadataBear
1991
1834
  */
1992
1835
  Message?: string;
1993
1836
  }
1994
- export declare namespace InvalidDocumentContent {
1995
- /**
1996
- * @internal
1997
- */
1998
- const filterSensitiveLog: (obj: InvalidDocumentContent) => any;
1999
- }
2000
1837
  /**
2001
1838
  * <p>The version of the document schema isn't supported.</p>
2002
1839
  */
@@ -2005,12 +1842,6 @@ export interface InvalidDocumentSchemaVersion extends __SmithyException, $Metada
2005
1842
  $fault: "client";
2006
1843
  Message?: string;
2007
1844
  }
2008
- export declare namespace InvalidDocumentSchemaVersion {
2009
- /**
2010
- * @internal
2011
- */
2012
- const filterSensitiveLog: (obj: InvalidDocumentSchemaVersion) => any;
2013
- }
2014
1845
  /**
2015
1846
  * <p>The size limit of a document is 64 KB.</p>
2016
1847
  */
@@ -2019,12 +1850,6 @@ export interface MaxDocumentSizeExceeded extends __SmithyException, $MetadataBea
2019
1850
  $fault: "client";
2020
1851
  Message?: string;
2021
1852
  }
2022
- export declare namespace MaxDocumentSizeExceeded {
2023
- /**
2024
- * @internal
2025
- */
2026
- const filterSensitiveLog: (obj: MaxDocumentSizeExceeded) => any;
2027
- }
2028
1853
  export interface CreateMaintenanceWindowRequest {
2029
1854
  /**
2030
1855
  * <p>The name of the maintenance window.</p>
@@ -2080,9 +1905,9 @@ export interface CreateMaintenanceWindowRequest {
2080
1905
  */
2081
1906
  Cutoff: number | undefined;
2082
1907
  /**
2083
- * <p>Enables a maintenance window task to run on managed instances, even if you haven't
2084
- * registered those instances as targets. If enabled, then you must specify the unregistered
2085
- * instances (by instance ID) when you register a task with the maintenance window.</p>
1908
+ * <p>Enables a maintenance window task to run on managed nodes, even if you haven't registered
1909
+ * those nodes as targets. If enabled, then you must specify the unregistered managed nodes (by
1910
+ * node ID) when you register a task with the maintenance window.</p>
2086
1911
  * <p>If you don't enable this option, then you must specify previously-registered targets when
2087
1912
  * you register a task with the maintenance window.</p>
2088
1913
  */
@@ -2147,12 +1972,6 @@ export interface IdempotentParameterMismatch extends __SmithyException, $Metadat
2147
1972
  $fault: "client";
2148
1973
  Message?: string;
2149
1974
  }
2150
- export declare namespace IdempotentParameterMismatch {
2151
- /**
2152
- * @internal
2153
- */
2154
- const filterSensitiveLog: (obj: IdempotentParameterMismatch) => any;
2155
- }
2156
1975
  /**
2157
1976
  * <p>Error returned when the caller has exceeded the default resource quotas. For example, too
2158
1977
  * many maintenance windows or patch baselines have been created.</p>
@@ -2164,12 +1983,6 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
2164
1983
  $fault: "client";
2165
1984
  Message?: string;
2166
1985
  }
2167
- export declare namespace ResourceLimitExceededException {
2168
- /**
2169
- * @internal
2170
- */
2171
- const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
2172
- }
2173
1986
  /**
2174
1987
  * <p>A notification about the OpsItem.</p>
2175
1988
  */
@@ -2358,12 +2171,6 @@ export interface OpsItemAlreadyExistsException extends __SmithyException, $Metad
2358
2171
  Message?: string;
2359
2172
  OpsItemId?: string;
2360
2173
  }
2361
- export declare namespace OpsItemAlreadyExistsException {
2362
- /**
2363
- * @internal
2364
- */
2365
- const filterSensitiveLog: (obj: OpsItemAlreadyExistsException) => any;
2366
- }
2367
2174
  /**
2368
2175
  * <p>Metadata to assign to an Application Manager application.</p>
2369
2176
  */
@@ -2437,12 +2244,6 @@ export interface OpsMetadataAlreadyExistsException extends __SmithyException, $M
2437
2244
  $fault: "client";
2438
2245
  message?: string;
2439
2246
  }
2440
- export declare namespace OpsMetadataAlreadyExistsException {
2441
- /**
2442
- * @internal
2443
- */
2444
- const filterSensitiveLog: (obj: OpsMetadataAlreadyExistsException) => any;
2445
- }
2446
2247
  /**
2447
2248
  * <p>One of the arguments passed is invalid. </p>
2448
2249
  */
@@ -2451,12 +2252,6 @@ export interface OpsMetadataInvalidArgumentException extends __SmithyException,
2451
2252
  $fault: "client";
2452
2253
  message?: string;
2453
2254
  }
2454
- export declare namespace OpsMetadataInvalidArgumentException {
2455
- /**
2456
- * @internal
2457
- */
2458
- const filterSensitiveLog: (obj: OpsMetadataInvalidArgumentException) => any;
2459
- }
2460
2255
  /**
2461
2256
  * <p>Your account reached the maximum number of OpsMetadata objects allowed by Application Manager. The
2462
2257
  * maximum is 200 OpsMetadata objects. Delete one or more OpsMetadata object and try again.</p>
@@ -2466,12 +2261,6 @@ export interface OpsMetadataLimitExceededException extends __SmithyException, $M
2466
2261
  $fault: "client";
2467
2262
  message?: string;
2468
2263
  }
2469
- export declare namespace OpsMetadataLimitExceededException {
2470
- /**
2471
- * @internal
2472
- */
2473
- const filterSensitiveLog: (obj: OpsMetadataLimitExceededException) => any;
2474
- }
2475
2264
  /**
2476
2265
  * <p>The system is processing too many concurrent updates. Wait a few moments and try
2477
2266
  * again.</p>
@@ -2481,12 +2270,6 @@ export interface OpsMetadataTooManyUpdatesException extends __SmithyException, $
2481
2270
  $fault: "client";
2482
2271
  message?: string;
2483
2272
  }
2484
- export declare namespace OpsMetadataTooManyUpdatesException {
2485
- /**
2486
- * @internal
2487
- */
2488
- const filterSensitiveLog: (obj: OpsMetadataTooManyUpdatesException) => any;
2489
- }
2490
2273
  export declare enum PatchComplianceLevel {
2491
2274
  Critical = "CRITICAL",
2492
2275
  High = "HIGH",
@@ -2593,9 +2376,9 @@ export interface PatchRule {
2593
2376
  */
2594
2377
  ApproveUntilDate?: string;
2595
2378
  /**
2596
- * <p>For instances identified by the approval rule filters, enables a patch baseline to apply
2379
+ * <p>For managed nodes identified by the approval rule filters, enables a patch baseline to apply
2597
2380
  * non-security updates available in the specified repository. The default value is
2598
- * <code>false</code>. Applies to Linux instances only.</p>
2381
+ * <code>false</code>. Applies to Linux managed nodes only.</p>
2599
2382
  */
2600
2383
  EnableNonSecurity?: boolean;
2601
2384
  }
@@ -2638,8 +2421,8 @@ export declare enum PatchAction {
2638
2421
  Block = "BLOCK"
2639
2422
  }
2640
2423
  /**
2641
- * <p>Information about the patches to use to update the instances, including target operating
2642
- * systems and source repository. Applies to Linux instances only.</p>
2424
+ * <p>Information about the patches to use to update the managed nodes, including target operating
2425
+ * systems and source repository. Applies to Linux managed nodes only.</p>
2643
2426
  */
2644
2427
  export interface PatchSource {
2645
2428
  /**
@@ -2712,8 +2495,8 @@ export interface CreatePatchBaselineRequest {
2712
2495
  ApprovedPatchesComplianceLevel?: PatchComplianceLevel | string;
2713
2496
  /**
2714
2497
  * <p>Indicates whether the list of approved patches includes non-security updates that should be
2715
- * applied to the instances. The default value is <code>false</code>. Applies to Linux instances
2716
- * only.</p>
2498
+ * applied to the managed nodes. The default value is <code>false</code>. Applies to Linux managed
2499
+ * nodes only.</p>
2717
2500
  */
2718
2501
  ApprovedPatchesEnableNonSecurity?: boolean;
2719
2502
  /**
@@ -2754,8 +2537,8 @@ export interface CreatePatchBaselineRequest {
2754
2537
  */
2755
2538
  Description?: string;
2756
2539
  /**
2757
- * <p>Information about the patches to use to update the instances, including target operating
2758
- * systems and source repositories. Applies to Linux instances only.</p>
2540
+ * <p>Information about the patches to use to update the managed nodes, including target operating
2541
+ * systems and source repositories. Applies to Linux managed nodes only.</p>
2759
2542
  */
2760
2543
  Sources?: PatchSource[];
2761
2544
  /**
@@ -2984,12 +2767,6 @@ export interface ResourceDataSyncAlreadyExistsException extends __SmithyExceptio
2984
2767
  $fault: "client";
2985
2768
  SyncName?: string;
2986
2769
  }
2987
- export declare namespace ResourceDataSyncAlreadyExistsException {
2988
- /**
2989
- * @internal
2990
- */
2991
- const filterSensitiveLog: (obj: ResourceDataSyncAlreadyExistsException) => any;
2992
- }
2993
2770
  /**
2994
2771
  * <p>You have exceeded the allowed maximum sync configurations.</p>
2995
2772
  */
@@ -2998,12 +2775,6 @@ export interface ResourceDataSyncCountExceededException extends __SmithyExceptio
2998
2775
  $fault: "client";
2999
2776
  Message?: string;
3000
2777
  }
3001
- export declare namespace ResourceDataSyncCountExceededException {
3002
- /**
3003
- * @internal
3004
- */
3005
- const filterSensitiveLog: (obj: ResourceDataSyncCountExceededException) => any;
3006
- }
3007
2778
  /**
3008
2779
  * <p>The specified sync configuration is invalid.</p>
3009
2780
  */
@@ -3012,12 +2783,6 @@ export interface ResourceDataSyncInvalidConfigurationException extends __SmithyE
3012
2783
  $fault: "client";
3013
2784
  Message?: string;
3014
2785
  }
3015
- export declare namespace ResourceDataSyncInvalidConfigurationException {
3016
- /**
3017
- * @internal
3018
- */
3019
- const filterSensitiveLog: (obj: ResourceDataSyncInvalidConfigurationException) => any;
3020
- }
3021
2786
  export interface DeleteActivationRequest {
3022
2787
  /**
3023
2788
  * <p>The ID of the activation that you want to delete.</p>
@@ -3047,12 +2812,6 @@ export interface InvalidActivation extends __SmithyException, $MetadataBearer {
3047
2812
  $fault: "client";
3048
2813
  Message?: string;
3049
2814
  }
3050
- export declare namespace InvalidActivation {
3051
- /**
3052
- * @internal
3053
- */
3054
- const filterSensitiveLog: (obj: InvalidActivation) => any;
3055
- }
3056
2815
  /**
3057
2816
  * <p>The activation ID isn't valid. Verify the you entered the correct ActivationId or
3058
2817
  * ActivationCode and try again.</p>
@@ -3062,12 +2821,6 @@ export interface InvalidActivationId extends __SmithyException, $MetadataBearer
3062
2821
  $fault: "client";
3063
2822
  Message?: string;
3064
2823
  }
3065
- export declare namespace InvalidActivationId {
3066
- /**
3067
- * @internal
3068
- */
3069
- const filterSensitiveLog: (obj: InvalidActivationId) => any;
3070
- }
3071
2824
  /**
3072
2825
  * <p>The specified association doesn't exist.</p>
3073
2826
  */
@@ -3076,22 +2829,16 @@ export interface AssociationDoesNotExist extends __SmithyException, $MetadataBea
3076
2829
  $fault: "client";
3077
2830
  Message?: string;
3078
2831
  }
3079
- export declare namespace AssociationDoesNotExist {
3080
- /**
3081
- * @internal
3082
- */
3083
- const filterSensitiveLog: (obj: AssociationDoesNotExist) => any;
3084
- }
3085
2832
  export interface DeleteAssociationRequest {
3086
2833
  /**
3087
2834
  * <p>The name of the SSM document.</p>
3088
2835
  */
3089
2836
  Name?: string;
3090
2837
  /**
3091
- * <p>The instance ID.</p>
2838
+ * <p>The managed node ID.</p>
3092
2839
  * <note>
3093
2840
  * <p>
3094
- * <code>InstanceId</code> has been deprecated. To specify an instance ID for an association,
2841
+ * <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
3095
2842
  * use the <code>Targets</code> parameter. Requests that include the
3096
2843
  * parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
3097
2844
  * 2.0 or later will fail. In addition, if you use the parameter
@@ -3122,18 +2869,12 @@ export declare namespace DeleteAssociationResult {
3122
2869
  const filterSensitiveLog: (obj: DeleteAssociationResult) => any;
3123
2870
  }
3124
2871
  /**
3125
- * <p>You must disassociate a document from all instances before you can delete it.</p>
2872
+ * <p>You must disassociate a document from all managed nodes before you can delete it.</p>
3126
2873
  */
3127
2874
  export interface AssociatedInstances extends __SmithyException, $MetadataBearer {
3128
2875
  name: "AssociatedInstances";
3129
2876
  $fault: "client";
3130
2877
  }
3131
- export declare namespace AssociatedInstances {
3132
- /**
3133
- * @internal
3134
- */
3135
- const filterSensitiveLog: (obj: AssociatedInstances) => any;
3136
- }
3137
2878
  export interface DeleteDocumentRequest {
3138
2879
  /**
3139
2880
  * <p>The name of the document.</p>
@@ -3180,12 +2921,6 @@ export interface InvalidDocumentOperation extends __SmithyException, $MetadataBe
3180
2921
  $fault: "client";
3181
2922
  Message?: string;
3182
2923
  }
3183
- export declare namespace InvalidDocumentOperation {
3184
- /**
3185
- * @internal
3186
- */
3187
- const filterSensitiveLog: (obj: InvalidDocumentOperation) => any;
3188
- }
3189
2924
  export declare enum InventorySchemaDeleteOption {
3190
2925
  DELETE_SCHEMA = "DeleteSchema",
3191
2926
  DISABLE_SCHEMA = "DisableSchema"
@@ -3303,12 +3038,6 @@ export interface InvalidDeleteInventoryParametersException extends __SmithyExcep
3303
3038
  $fault: "client";
3304
3039
  Message?: string;
3305
3040
  }
3306
- export declare namespace InvalidDeleteInventoryParametersException {
3307
- /**
3308
- * @internal
3309
- */
3310
- const filterSensitiveLog: (obj: InvalidDeleteInventoryParametersException) => any;
3311
- }
3312
3041
  /**
3313
3042
  * <p>The request isn't valid.</p>
3314
3043
  */
@@ -3317,12 +3046,6 @@ export interface InvalidInventoryRequestException extends __SmithyException, $Me
3317
3046
  $fault: "client";
3318
3047
  Message?: string;
3319
3048
  }
3320
- export declare namespace InvalidInventoryRequestException {
3321
- /**
3322
- * @internal
3323
- */
3324
- const filterSensitiveLog: (obj: InvalidInventoryRequestException) => any;
3325
- }
3326
3049
  /**
3327
3050
  * <p>The delete inventory option specified isn't valid. Verify the option and try again.</p>
3328
3051
  */
@@ -3331,12 +3054,6 @@ export interface InvalidOptionException extends __SmithyException, $MetadataBear
3331
3054
  $fault: "client";
3332
3055
  Message?: string;
3333
3056
  }
3334
- export declare namespace InvalidOptionException {
3335
- /**
3336
- * @internal
3337
- */
3338
- const filterSensitiveLog: (obj: InvalidOptionException) => any;
3339
- }
3340
3057
  /**
3341
3058
  * <p>The parameter type name isn't valid.</p>
3342
3059
  */
@@ -3345,12 +3062,6 @@ export interface InvalidTypeNameException extends __SmithyException, $MetadataBe
3345
3062
  $fault: "client";
3346
3063
  Message?: string;
3347
3064
  }
3348
- export declare namespace InvalidTypeNameException {
3349
- /**
3350
- * @internal
3351
- */
3352
- const filterSensitiveLog: (obj: InvalidTypeNameException) => any;
3353
- }
3354
3065
  export interface DeleteMaintenanceWindowRequest {
3355
3066
  /**
3356
3067
  * <p>The ID of the maintenance window to delete.</p>
@@ -3403,12 +3114,6 @@ export interface OpsMetadataNotFoundException extends __SmithyException, $Metada
3403
3114
  $fault: "client";
3404
3115
  message?: string;
3405
3116
  }
3406
- export declare namespace OpsMetadataNotFoundException {
3407
- /**
3408
- * @internal
3409
- */
3410
- const filterSensitiveLog: (obj: OpsMetadataNotFoundException) => any;
3411
- }
3412
3117
  export interface DeleteParameterRequest {
3413
3118
  /**
3414
3119
  * <p>The name of the parameter to delete.</p>
@@ -3437,12 +3142,6 @@ export interface ParameterNotFound extends __SmithyException, $MetadataBearer {
3437
3142
  $fault: "client";
3438
3143
  message?: string;
3439
3144
  }
3440
- export declare namespace ParameterNotFound {
3441
- /**
3442
- * @internal
3443
- */
3444
- const filterSensitiveLog: (obj: ParameterNotFound) => any;
3445
- }
3446
3145
  export interface DeleteParametersRequest {
3447
3146
  /**
3448
3147
  * <p>The names of the parameters to delete. After deleting a parameter, wait for at least 30
@@ -3505,12 +3204,6 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
3505
3204
  $fault: "client";
3506
3205
  Message?: string;
3507
3206
  }
3508
- export declare namespace ResourceInUseException {
3509
- /**
3510
- * @internal
3511
- */
3512
- const filterSensitiveLog: (obj: ResourceInUseException) => any;
3513
- }
3514
3207
  export interface DeleteResourceDataSyncRequest {
3515
3208
  /**
3516
3209
  * <p>The name of the configuration to delete.</p>
@@ -3545,15 +3238,9 @@ export interface ResourceDataSyncNotFoundException extends __SmithyException, $M
3545
3238
  SyncType?: string;
3546
3239
  Message?: string;
3547
3240
  }
3548
- export declare namespace ResourceDataSyncNotFoundException {
3549
- /**
3550
- * @internal
3551
- */
3552
- const filterSensitiveLog: (obj: ResourceDataSyncNotFoundException) => any;
3553
- }
3554
3241
  export interface DeregisterManagedInstanceRequest {
3555
3242
  /**
3556
- * <p>The ID assigned to the managed instance when you registered it using the activation process.
3243
+ * <p>The ID assigned to the managed node when you registered it using the activation process.
3557
3244
  * </p>
3558
3245
  */
3559
3246
  InstanceId: string | undefined;
@@ -3651,12 +3338,6 @@ export interface TargetInUseException extends __SmithyException, $MetadataBearer
3651
3338
  $fault: "client";
3652
3339
  Message?: string;
3653
3340
  }
3654
- export declare namespace TargetInUseException {
3655
- /**
3656
- * @internal
3657
- */
3658
- const filterSensitiveLog: (obj: TargetInUseException) => any;
3659
- }
3660
3341
  export interface DeregisterTaskFromMaintenanceWindowRequest {
3661
3342
  /**
3662
3343
  * <p>The ID of the maintenance window the task should be removed from.</p>
@@ -3759,12 +3440,6 @@ export interface InvalidFilter extends __SmithyException, $MetadataBearer {
3759
3440
  $fault: "client";
3760
3441
  Message?: string;
3761
3442
  }
3762
- export declare namespace InvalidFilter {
3763
- /**
3764
- * @internal
3765
- */
3766
- const filterSensitiveLog: (obj: InvalidFilter) => any;
3767
- }
3768
3443
  /**
3769
3444
  * <p>The specified token isn't valid.</p>
3770
3445
  */
@@ -3773,19 +3448,13 @@ export interface InvalidNextToken extends __SmithyException, $MetadataBearer {
3773
3448
  $fault: "client";
3774
3449
  Message?: string;
3775
3450
  }
3776
- export declare namespace InvalidNextToken {
3777
- /**
3778
- * @internal
3779
- */
3780
- const filterSensitiveLog: (obj: InvalidNextToken) => any;
3781
- }
3782
3451
  export interface DescribeAssociationRequest {
3783
3452
  /**
3784
3453
  * <p>The name of the SSM document.</p>
3785
3454
  */
3786
3455
  Name?: string;
3787
3456
  /**
3788
- * <p>The instance ID.</p>
3457
+ * <p>The managed node ID.</p>
3789
3458
  */
3790
3459
  InstanceId?: string;
3791
3460
  /**
@@ -3795,7 +3464,7 @@ export interface DescribeAssociationRequest {
3795
3464
  /**
3796
3465
  * <p>Specify the association version to retrieve. To view the latest version, either specify
3797
3466
  * <code>$LATEST</code> for this parameter, or omit this parameter. To view a list of all
3798
- * associations for an instance, use <a>ListAssociations</a>. To get a list of versions
3467
+ * associations for a managed node, use <a>ListAssociations</a>. To get a list of versions
3799
3468
  * for a specific association, use <a>ListAssociationVersions</a>. </p>
3800
3469
  */
3801
3470
  AssociationVersion?: string;
@@ -3828,12 +3497,6 @@ export interface InvalidAssociationVersion extends __SmithyException, $MetadataB
3828
3497
  $fault: "client";
3829
3498
  Message?: string;
3830
3499
  }
3831
- export declare namespace InvalidAssociationVersion {
3832
- /**
3833
- * @internal
3834
- */
3835
- const filterSensitiveLog: (obj: InvalidAssociationVersion) => any;
3836
- }
3837
3500
  export declare enum AssociationExecutionFilterKey {
3838
3501
  CreatedTime = "CreatedTime",
3839
3502
  ExecutionId = "ExecutionId",
@@ -3963,12 +3626,6 @@ export interface AssociationExecutionDoesNotExist extends __SmithyException, $Me
3963
3626
  $fault: "client";
3964
3627
  Message?: string;
3965
3628
  }
3966
- export declare namespace AssociationExecutionDoesNotExist {
3967
- /**
3968
- * @internal
3969
- */
3970
- const filterSensitiveLog: (obj: AssociationExecutionDoesNotExist) => any;
3971
- }
3972
3629
  export declare enum AssociationExecutionTargetsFilterKey {
3973
3630
  ResourceId = "ResourceId",
3974
3631
  ResourceType = "ResourceType",
@@ -4061,11 +3718,11 @@ export interface AssociationExecutionTarget {
4061
3718
  */
4062
3719
  ExecutionId?: string;
4063
3720
  /**
4064
- * <p>The resource ID, for example, the instance ID where the association ran.</p>
3721
+ * <p>The resource ID, for example, the managed node ID where the association ran.</p>
4065
3722
  */
4066
3723
  ResourceId?: string;
4067
3724
  /**
4068
- * <p>The resource type, for example, instance.</p>
3725
+ * <p>The resource type, for example, EC2.</p>
4069
3726
  */
4070
3727
  ResourceType?: string;
4071
3728
  /**
@@ -4435,12 +4092,6 @@ export interface InvalidFilterKey extends __SmithyException, $MetadataBearer {
4435
4092
  name: "InvalidFilterKey";
4436
4093
  $fault: "client";
4437
4094
  }
4438
- export declare namespace InvalidFilterKey {
4439
- /**
4440
- * @internal
4441
- */
4442
- const filterSensitiveLog: (obj: InvalidFilterKey) => any;
4443
- }
4444
4095
  /**
4445
4096
  * <p>The filter value isn't valid. Verify the value and try again.</p>
4446
4097
  */
@@ -4449,12 +4100,6 @@ export interface InvalidFilterValue extends __SmithyException, $MetadataBearer {
4449
4100
  $fault: "client";
4450
4101
  Message?: string;
4451
4102
  }
4452
- export declare namespace InvalidFilterValue {
4453
- /**
4454
- * @internal
4455
- */
4456
- const filterSensitiveLog: (obj: InvalidFilterValue) => any;
4457
- }
4458
4103
  /**
4459
4104
  * <p>There is no automation execution information for the requested automation execution
4460
4105
  * ID.</p>
@@ -4464,12 +4109,6 @@ export interface AutomationExecutionNotFoundException extends __SmithyException,
4464
4109
  $fault: "client";
4465
4110
  Message?: string;
4466
4111
  }
4467
- export declare namespace AutomationExecutionNotFoundException {
4468
- /**
4469
- * @internal
4470
- */
4471
- const filterSensitiveLog: (obj: AutomationExecutionNotFoundException) => any;
4472
- }
4473
4112
  export declare enum StepExecutionFilterKey {
4474
4113
  ACTION = "Action",
4475
4114
  START_TIME_AFTER = "StartTimeAfter",
@@ -4736,7 +4375,7 @@ export interface DescribeAvailablePatchesRequest {
4736
4375
  * <p>
4737
4376
  * <b>Windows Server</b>
4738
4377
  * </p>
4739
- * <p>Supported keys for Windows Server instance patches include the following:</p>
4378
+ * <p>Supported keys for Windows Server managed node patches include the following:</p>
4740
4379
  * <ul>
4741
4380
  * <li>
4742
4381
  * <p>
@@ -4812,7 +4451,7 @@ export interface DescribeAvailablePatchesRequest {
4812
4451
  * Key=CVE_ID,Values=CVE-2018-3615</code>
4813
4452
  * </p>
4814
4453
  * </important>
4815
- * <p>Supported keys for Linux instance patches include the following:</p>
4454
+ * <p>Supported keys for Linux managed node patches include the following:</p>
4816
4455
  * <ul>
4817
4456
  * <li>
4818
4457
  * <p>
@@ -4999,45 +4638,45 @@ export interface Patch {
4999
4638
  Language?: string;
5000
4639
  /**
5001
4640
  * <p>The Advisory ID of the patch. For example, <code>RHSA-2020:3779</code>. Applies to
5002
- * Linux-based instances only.</p>
4641
+ * Linux-based managed nodes only.</p>
5003
4642
  */
5004
4643
  AdvisoryIds?: string[];
5005
4644
  /**
5006
4645
  * <p>The Bugzilla ID of the patch. For example, <code>1600646</code>. Applies to Linux-based
5007
- * instances only.</p>
4646
+ * managed nodes only.</p>
5008
4647
  */
5009
4648
  BugzillaIds?: string[];
5010
4649
  /**
5011
4650
  * <p>The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example,
5012
- * <code>CVE-2011-3192</code>. Applies to Linux-based instances only.</p>
4651
+ * <code>CVE-2011-3192</code>. Applies to Linux-based managed nodes only.</p>
5013
4652
  */
5014
4653
  CVEIds?: string[];
5015
4654
  /**
5016
- * <p>The name of the patch. Applies to Linux-based instances only.</p>
4655
+ * <p>The name of the patch. Applies to Linux-based managed nodes only.</p>
5017
4656
  */
5018
4657
  Name?: string;
5019
4658
  /**
5020
4659
  * <p>The epoch of the patch. For example in
5021
4660
  * <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the epoch value is
5022
- * <code>20180914-2</code>. Applies to Linux-based instances only.</p>
4661
+ * <code>20180914-2</code>. Applies to Linux-based managed nodes only.</p>
5023
4662
  */
5024
4663
  Epoch?: number;
5025
4664
  /**
5026
4665
  * <p>The version number of the patch. For example, in
5027
4666
  * <code>example-pkg-1.710.10-2.7.abcd.x86_64</code>, the version number is indicated by
5028
- * <code>-1</code>. Applies to Linux-based instances only.</p>
4667
+ * <code>-1</code>. Applies to Linux-based managed nodes only.</p>
5029
4668
  */
5030
4669
  Version?: string;
5031
4670
  /**
5032
4671
  * <p>The particular release of a patch. For example, in
5033
4672
  * <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the release is <code>2.amaz1</code>.
5034
- * Applies to Linux-based instances only.</p>
4673
+ * Applies to Linux-based managed nodes only.</p>
5035
4674
  */
5036
4675
  Release?: string;
5037
4676
  /**
5038
4677
  * <p>The architecture of the patch. For example, in
5039
4678
  * <code>example-pkg-0.710.10-2.7.abcd.x86_64</code>, the architecture is indicated by
5040
- * <code>x86_64</code>. Applies to Linux-based instances only.</p>
4679
+ * <code>x86_64</code>. Applies to Linux-based managed nodes only.</p>
5041
4680
  */
5042
4681
  Arch?: string;
5043
4682
  /**
@@ -5048,7 +4687,7 @@ export interface Patch {
5048
4687
  /**
5049
4688
  * <p>The source patch repository for the operating system and version, such as
5050
4689
  * <code>trusty-security</code> for Ubuntu Server 14.04 LTE and <code>focal-security</code> for
5051
- * Ubuntu Server 20.04 LTE. Applies to Linux-based instances only.</p>
4690
+ * Ubuntu Server 20.04 LTE. Applies to Linux-based managed nodes only.</p>
5052
4691
  */
5053
4692
  Repository?: string;
5054
4693
  }
@@ -5172,15 +4811,9 @@ export interface InvalidPermissionType extends __SmithyException, $MetadataBeare
5172
4811
  $fault: "client";
5173
4812
  Message?: string;
5174
4813
  }
5175
- export declare namespace InvalidPermissionType {
5176
- /**
5177
- * @internal
5178
- */
5179
- const filterSensitiveLog: (obj: InvalidPermissionType) => any;
5180
- }
5181
4814
  export interface DescribeEffectiveInstanceAssociationsRequest {
5182
4815
  /**
5183
- * <p>The instance ID for which you want to view all associations.</p>
4816
+ * <p>The managed node ID for which you want to view all associations.</p>
5184
4817
  */
5185
4818
  InstanceId: string | undefined;
5186
4819
  /**
@@ -5201,7 +4834,7 @@ export declare namespace DescribeEffectiveInstanceAssociationsRequest {
5201
4834
  const filterSensitiveLog: (obj: DescribeEffectiveInstanceAssociationsRequest) => any;
5202
4835
  }
5203
4836
  /**
5204
- * <p>One or more association documents on the instance. </p>
4837
+ * <p>One or more association documents on the managed node. </p>
5205
4838
  */
5206
4839
  export interface InstanceAssociation {
5207
4840
  /**
@@ -5209,15 +4842,15 @@ export interface InstanceAssociation {
5209
4842
  */
5210
4843
  AssociationId?: string;
5211
4844
  /**
5212
- * <p>The instance ID.</p>
4845
+ * <p>The managed node ID.</p>
5213
4846
  */
5214
4847
  InstanceId?: string;
5215
4848
  /**
5216
- * <p>The content of the association document for the instance(s).</p>
4849
+ * <p>The content of the association document for the managed node(s).</p>
5217
4850
  */
5218
4851
  Content?: string;
5219
4852
  /**
5220
- * <p>Version information for the association on the instance.</p>
4853
+ * <p>Version information for the association on the managed node.</p>
5221
4854
  */
5222
4855
  AssociationVersion?: string;
5223
4856
  }
@@ -5229,7 +4862,7 @@ export declare namespace InstanceAssociation {
5229
4862
  }
5230
4863
  export interface DescribeEffectiveInstanceAssociationsResult {
5231
4864
  /**
5232
- * <p>The associations for the requested instance.</p>
4865
+ * <p>The associations for the requested managed node.</p>
5233
4866
  */
5234
4867
  Associations?: InstanceAssociation[];
5235
4868
  /**
@@ -5347,15 +4980,9 @@ export interface UnsupportedOperatingSystem extends __SmithyException, $Metadata
5347
4980
  $fault: "client";
5348
4981
  Message?: string;
5349
4982
  }
5350
- export declare namespace UnsupportedOperatingSystem {
5351
- /**
5352
- * @internal
5353
- */
5354
- const filterSensitiveLog: (obj: UnsupportedOperatingSystem) => any;
5355
- }
5356
4983
  export interface DescribeInstanceAssociationsStatusRequest {
5357
4984
  /**
5358
- * <p>The instance IDs for which you want association status information.</p>
4985
+ * <p>The managed node IDs for which you want association status information.</p>
5359
4986
  */
5360
4987
  InstanceId: string | undefined;
5361
4988
  /**
@@ -5407,7 +5034,7 @@ export declare namespace InstanceAssociationOutputUrl {
5407
5034
  const filterSensitiveLog: (obj: InstanceAssociationOutputUrl) => any;
5408
5035
  }
5409
5036
  /**
5410
- * <p>Status information about the instance association.</p>
5037
+ * <p>Status information about the association.</p>
5411
5038
  */
5412
5039
  export interface InstanceAssociationStatusInfo {
5413
5040
  /**
@@ -5423,23 +5050,23 @@ export interface InstanceAssociationStatusInfo {
5423
5050
  */
5424
5051
  DocumentVersion?: string;
5425
5052
  /**
5426
- * <p>The version of the association applied to the instance.</p>
5053
+ * <p>The version of the association applied to the managed node.</p>
5427
5054
  */
5428
5055
  AssociationVersion?: string;
5429
5056
  /**
5430
- * <p>The instance ID where the association was created.</p>
5057
+ * <p>The managed node ID where the association was created.</p>
5431
5058
  */
5432
5059
  InstanceId?: string;
5433
5060
  /**
5434
- * <p>The date the instance association ran. </p>
5061
+ * <p>The date the association ran. </p>
5435
5062
  */
5436
5063
  ExecutionDate?: Date;
5437
5064
  /**
5438
- * <p>Status information about the instance association.</p>
5065
+ * <p>Status information about the association.</p>
5439
5066
  */
5440
5067
  Status?: string;
5441
5068
  /**
5442
- * <p>Detailed status information about the instance association.</p>
5069
+ * <p>Detailed status information about the association.</p>
5443
5070
  */
5444
5071
  DetailedStatus?: string;
5445
5072
  /**
@@ -5455,7 +5082,7 @@ export interface InstanceAssociationStatusInfo {
5455
5082
  */
5456
5083
  OutputUrl?: InstanceAssociationOutputUrl;
5457
5084
  /**
5458
- * <p>The name of the association applied to the instance.</p>
5085
+ * <p>The name of the association applied to the managed node.</p>
5459
5086
  */
5460
5087
  AssociationName?: string;
5461
5088
  }
@@ -5483,11 +5110,11 @@ export declare namespace DescribeInstanceAssociationsStatusResult {
5483
5110
  const filterSensitiveLog: (obj: DescribeInstanceAssociationsStatusResult) => any;
5484
5111
  }
5485
5112
  /**
5486
- * <p>The filters to describe or get information about your managed instances.</p>
5113
+ * <p>The filters to describe or get information about your managed nodes.</p>
5487
5114
  */
5488
5115
  export interface InstanceInformationStringFilter {
5489
5116
  /**
5490
- * <p>The filter key name to describe your instances. For example:</p>
5117
+ * <p>The filter key name to describe your managed nodes. For example:</p>
5491
5118
  * <p>"InstanceIds"|"AgentVersion"|"PingStatus"|"PlatformTypes"|"ActivationIds"|"IamRole"|"ResourceType"|"AssociationStatus"|"Tag
5492
5119
  * Key"</p>
5493
5120
  * <important>
@@ -5521,7 +5148,7 @@ export declare enum InstanceInformationFilterKey {
5521
5148
  RESOURCE_TYPE = "ResourceType"
5522
5149
  }
5523
5150
  /**
5524
- * <p>Describes a filter for a specific list of instances. You can filter instances information by
5151
+ * <p>Describes a filter for a specific list of managed nodes. You can filter node information by
5525
5152
  * using tags. You specify tags by using a key-value mapping.</p>
5526
5153
  * <p>Use this operation instead of the <a>DescribeInstanceInformationRequest$InstanceInformationFilterList</a> method. The
5527
5154
  * <code>InstanceInformationFilterList</code> method is a legacy method and doesn't support tags.
@@ -5546,8 +5173,8 @@ export declare namespace InstanceInformationFilter {
5546
5173
  export interface DescribeInstanceInformationRequest {
5547
5174
  /**
5548
5175
  * <p>This is a legacy method. We recommend that you don't use this method. Instead, use the
5549
- * <code>Filters</code> data type. <code>Filters</code> enables you to return instance information
5550
- * by filtering based on tags applied to managed instances.</p>
5176
+ * <code>Filters</code> data type. <code>Filters</code> enables you to return node information
5177
+ * by filtering based on tags applied to managed nodes.</p>
5551
5178
  * <note>
5552
5179
  * <p>Attempting to use <code>InstanceInformationFilterList</code> and <code>Filters</code> leads
5553
5180
  * to an exception error. </p>
@@ -5555,7 +5182,7 @@ export interface DescribeInstanceInformationRequest {
5555
5182
  */
5556
5183
  InstanceInformationFilterList?: InstanceInformationFilter[];
5557
5184
  /**
5558
- * <p>One or more filters. Use a filter to return a more specific list of instances. You can
5185
+ * <p>One or more filters. Use a filter to return a more specific list of managed nodes. You can
5559
5186
  * filter based on tags applied to EC2 instances. Use this <code>Filters</code> data type instead of
5560
5187
  * <code>InstanceInformationFilterList</code>, which is deprecated.</p>
5561
5188
  */
@@ -5586,7 +5213,7 @@ export interface InstanceAggregatedAssociationOverview {
5586
5213
  */
5587
5214
  DetailedStatus?: string;
5588
5215
  /**
5589
- * <p>The number of associations for the instance(s).</p>
5216
+ * <p>The number of associations for the managed node(s).</p>
5590
5217
  */
5591
5218
  InstanceAssociationStatusAggregatedCount?: {
5592
5219
  [key: string]: number;
@@ -5608,12 +5235,17 @@ export declare enum ResourceType {
5608
5235
  EC2_INSTANCE = "EC2Instance",
5609
5236
  MANAGED_INSTANCE = "ManagedInstance"
5610
5237
  }
5238
+ export declare enum SourceType {
5239
+ AWS_EC2_INSTANCE = "AWS::EC2::Instance",
5240
+ AWS_IOT_THING = "AWS::IoT::Thing",
5241
+ AWS_SSM_MANAGEDINSTANCE = "AWS::SSM::ManagedInstance"
5242
+ }
5611
5243
  /**
5612
- * <p>Describes a filter for a specific list of instances. </p>
5244
+ * <p>Describes a filter for a specific list of managed nodes. </p>
5613
5245
  */
5614
5246
  export interface InstanceInformation {
5615
5247
  /**
5616
- * <p>The instance ID. </p>
5248
+ * <p>The managed node ID. </p>
5617
5249
  */
5618
5250
  InstanceId?: string;
5619
5251
  /**
@@ -5628,14 +5260,14 @@ export interface InstanceInformation {
5628
5260
  */
5629
5261
  LastPingDateTime?: Date;
5630
5262
  /**
5631
- * <p>The version of SSM Agent running on your Linux instance. </p>
5263
+ * <p>The version of SSM Agent running on your Linux managed node. </p>
5632
5264
  */
5633
5265
  AgentVersion?: string;
5634
5266
  /**
5635
- * <p>Indicates whether the latest version of SSM Agent is running on your Linux Managed Instance.
5636
- * This field doesn't indicate whether or not the latest version is installed on Windows managed
5637
- * instances, because some older versions of Windows Server use the EC2Config service to process
5638
- * Systems Manager requests.</p>
5267
+ * <p>Indicates whether the latest version of SSM Agent is running on your Linux managed node. This
5268
+ * field doesn't indicate whether or not the latest version is installed on Windows managed nodes,
5269
+ * because some older versions of Windows Server use the EC2Config service to process Systems Manager
5270
+ * requests.</p>
5639
5271
  */
5640
5272
  IsLatestVersion?: boolean;
5641
5273
  /**
@@ -5643,11 +5275,11 @@ export interface InstanceInformation {
5643
5275
  */
5644
5276
  PlatformType?: PlatformType | string;
5645
5277
  /**
5646
- * <p>The name of the operating system platform running on your instance. </p>
5278
+ * <p>The name of the operating system platform running on your managed node. </p>
5647
5279
  */
5648
5280
  PlatformName?: string;
5649
5281
  /**
5650
- * <p>The version of the OS platform running on your instance. </p>
5282
+ * <p>The version of the OS platform running on your managed node. </p>
5651
5283
  */
5652
5284
  PlatformVersion?: string;
5653
5285
  /**
@@ -5657,14 +5289,14 @@ export interface InstanceInformation {
5657
5289
  ActivationId?: string;
5658
5290
  /**
5659
5291
  * <p>The Identity and Access Management (IAM) role assigned to the on-premises Systems Manager
5660
- * managed instance. This call doesn't return the IAM role for Amazon Elastic Compute Cloud
5292
+ * managed node. This call doesn't return the IAM role for Amazon Elastic Compute Cloud
5661
5293
  * (Amazon EC2) instances. To retrieve the IAM role for an EC2 instance, use
5662
5294
  * the Amazon EC2 <code>DescribeInstances</code> operation. For information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html">DescribeInstances</a> in the <i>Amazon EC2 API Reference</i> or <a href="https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html">describe-instances</a> in
5663
5295
  * the <i>Amazon Web Services CLI Command Reference</i>.</p>
5664
5296
  */
5665
5297
  IamRole?: string;
5666
5298
  /**
5667
- * <p>The date the server or VM was registered with Amazon Web Services as a managed instance.</p>
5299
+ * <p>The date the server or VM was registered with Amazon Web Services as a managed node.</p>
5668
5300
  */
5669
5301
  RegistrationDate?: Date;
5670
5302
  /**
@@ -5672,24 +5304,23 @@ export interface InstanceInformation {
5672
5304
  */
5673
5305
  ResourceType?: ResourceType | string;
5674
5306
  /**
5675
- * <p>The name assigned to an on-premises server or virtual machine (VM) when it is activated as a
5676
- * Systems Manager managed instance. The name is specified as the <code>DefaultInstanceName</code> property
5677
- * using the <a>CreateActivation</a> command. It is applied to the managed instance by
5678
- * specifying the Activation Code and Activation ID when you install SSM Agent on the instance, as
5307
+ * <p>The name assigned to an on-premises server, edge device, or virtual machine (VM) when it is
5308
+ * activated as a Systems Manager managed node. The name is specified as the <code>DefaultInstanceName</code>
5309
+ * property using the <a>CreateActivation</a> command. It is applied to the managed node
5310
+ * by specifying the Activation Code and Activation ID when you install SSM Agent on the node, as
5679
5311
  * explained in <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html">Install SSM Agent for a
5680
5312
  * hybrid environment (Linux)</a> and <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-win.html">Install SSM Agent for a
5681
- * hybrid environment (Windows)</a>. To retrieve the Name tag of an EC2 instance, use the Amazon EC2
5682
- * <code>DescribeInstances</code> operation. For information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html">DescribeInstances</a> in the
5683
- * <i>Amazon EC2 API Reference</i> or <a href="https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html">describe-instances</a> in the
5684
- * <i>Amazon Web Services CLI Command Reference</i>.</p>
5313
+ * hybrid environment (Windows)</a>. To retrieve the <code>Name</code> tag of an EC2 instance,
5314
+ * use the Amazon EC2 <code>DescribeInstances</code> operation. For information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html">DescribeInstances</a> in the <i>Amazon EC2 API Reference</i> or <a href="https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html">describe-instances</a> in
5315
+ * the <i>Amazon Web Services CLI Command Reference</i>.</p>
5685
5316
  */
5686
5317
  Name?: string;
5687
5318
  /**
5688
- * <p>The IP address of the managed instance.</p>
5319
+ * <p>The IP address of the managed node.</p>
5689
5320
  */
5690
5321
  IPAddress?: string;
5691
5322
  /**
5692
- * <p>The fully qualified host name of the managed instance.</p>
5323
+ * <p>The fully qualified host name of the managed node.</p>
5693
5324
  */
5694
5325
  ComputerName?: string;
5695
5326
  /**
@@ -5708,6 +5339,16 @@ export interface InstanceInformation {
5708
5339
  * <p>Information about the association.</p>
5709
5340
  */
5710
5341
  AssociationOverview?: InstanceAggregatedAssociationOverview;
5342
+ /**
5343
+ * <p>The ID of the source resource. For IoT Greengrass devices, <code>SourceId</code> is
5344
+ * the Thing name. </p>
5345
+ */
5346
+ SourceId?: string;
5347
+ /**
5348
+ * <p>The type of the source resource. For IoT Greengrass devices, <code>SourceType</code>
5349
+ * is <code>AWS::IoT::Thing</code>. </p>
5350
+ */
5351
+ SourceType?: SourceType | string;
5711
5352
  }
5712
5353
  export declare namespace InstanceInformation {
5713
5354
  /**
@@ -5717,7 +5358,7 @@ export declare namespace InstanceInformation {
5717
5358
  }
5718
5359
  export interface DescribeInstanceInformationResult {
5719
5360
  /**
5720
- * <p>The instance information list.</p>
5361
+ * <p>The managed node information list.</p>
5721
5362
  */
5722
5363
  InstanceInformationList?: InstanceInformation[];
5723
5364
  /**
@@ -5740,15 +5381,9 @@ export interface InvalidInstanceInformationFilterValue extends __SmithyException
5740
5381
  $fault: "client";
5741
5382
  message?: string;
5742
5383
  }
5743
- export declare namespace InvalidInstanceInformationFilterValue {
5744
- /**
5745
- * @internal
5746
- */
5747
- const filterSensitiveLog: (obj: InvalidInstanceInformationFilterValue) => any;
5748
- }
5749
5384
  export interface DescribeInstancePatchesRequest {
5750
5385
  /**
5751
- * <p>The ID of the instance whose patch state information should be retrieved.</p>
5386
+ * <p>The ID of the managed node whose patch state information should be retrieved.</p>
5752
5387
  */
5753
5388
  InstanceId: string | undefined;
5754
5389
  /**
@@ -5821,8 +5456,8 @@ export declare enum PatchComplianceDataState {
5821
5456
  NotApplicable = "NOT_APPLICABLE"
5822
5457
  }
5823
5458
  /**
5824
- * <p>Information about the state of a patch on a particular instance as it relates to the patch
5825
- * baseline used to patch the instance.</p>
5459
+ * <p>Information about the state of a patch on a particular managed node as it relates to the patch
5460
+ * baseline used to patch the node.</p>
5826
5461
  */
5827
5462
  export interface PatchComplianceData {
5828
5463
  /**
@@ -5844,12 +5479,12 @@ export interface PatchComplianceData {
5844
5479
  */
5845
5480
  Severity: string | undefined;
5846
5481
  /**
5847
- * <p>The state of the patch on the instance, such as INSTALLED or FAILED.</p>
5482
+ * <p>The state of the patch on the managed node, such as INSTALLED or FAILED.</p>
5848
5483
  * <p>For descriptions of each patch state, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-compliance-about.html#sysman-compliance-monitor-patch">About patch compliance</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
5849
5484
  */
5850
5485
  State: PatchComplianceDataState | string | undefined;
5851
5486
  /**
5852
- * <p>The date/time the patch was installed on the instance. Not all operating systems provide
5487
+ * <p>The date/time the patch was installed on the managed node. Not all operating systems provide
5853
5488
  * this level of information.</p>
5854
5489
  */
5855
5490
  InstalledTime: Date | undefined;
@@ -5907,7 +5542,7 @@ export declare namespace DescribeInstancePatchesResult {
5907
5542
  }
5908
5543
  export interface DescribeInstancePatchStatesRequest {
5909
5544
  /**
5910
- * <p>The ID of the instance for which patch state information should be retrieved.</p>
5545
+ * <p>The ID of the managed node for which patch state information should be retrieved.</p>
5911
5546
  */
5912
5547
  InstanceIds: string[] | undefined;
5913
5548
  /**
@@ -5916,7 +5551,7 @@ export interface DescribeInstancePatchStatesRequest {
5916
5551
  */
5917
5552
  NextToken?: string;
5918
5553
  /**
5919
- * <p>The maximum number of instances to return (per page).</p>
5554
+ * <p>The maximum number of managed nodes to return (per page).</p>
5920
5555
  */
5921
5556
  MaxResults?: number;
5922
5557
  }
@@ -5935,22 +5570,22 @@ export declare enum RebootOption {
5935
5570
  REBOOT_IF_NEEDED = "RebootIfNeeded"
5936
5571
  }
5937
5572
  /**
5938
- * <p>Defines the high-level patch compliance state for a managed instance, providing information
5573
+ * <p>Defines the high-level patch compliance state for a managed node, providing information
5939
5574
  * about the number of installed, missing, not applicable, and failed patches along with metadata
5940
- * about the operation when this information was gathered for the instance.</p>
5575
+ * about the operation when this information was gathered for the managed node.</p>
5941
5576
  */
5942
5577
  export interface InstancePatchState {
5943
5578
  /**
5944
- * <p>The ID of the managed instance the high-level patch compliance information was collected
5579
+ * <p>The ID of the managed node the high-level patch compliance information was collected
5945
5580
  * for.</p>
5946
5581
  */
5947
5582
  InstanceId: string | undefined;
5948
5583
  /**
5949
- * <p>The name of the patch group the managed instance belongs to.</p>
5584
+ * <p>The name of the patch group the managed node belongs to.</p>
5950
5585
  */
5951
5586
  PatchGroup: string | undefined;
5952
5587
  /**
5953
- * <p>The ID of the patch baseline used to patch the instance.</p>
5588
+ * <p>The ID of the patch baseline used to patch the managed node.</p>
5954
5589
  */
5955
5590
  BaselineId: string | undefined;
5956
5591
  /**
@@ -5975,21 +5610,21 @@ export interface InstancePatchState {
5975
5610
  */
5976
5611
  OwnerInformation?: string;
5977
5612
  /**
5978
- * <p>The number of patches from the patch baseline that are installed on the instance.</p>
5613
+ * <p>The number of patches from the patch baseline that are installed on the managed node.</p>
5979
5614
  */
5980
5615
  InstalledCount?: number;
5981
5616
  /**
5982
5617
  * <p>The number of patches not specified in the patch baseline that are installed on the
5983
- * instance.</p>
5618
+ * managed node.</p>
5984
5619
  */
5985
5620
  InstalledOtherCount?: number;
5986
5621
  /**
5987
- * <p>The number of patches installed by Patch Manager since the last time the instance was
5622
+ * <p>The number of patches installed by Patch Manager since the last time the managed node was
5988
5623
  * rebooted.</p>
5989
5624
  */
5990
5625
  InstalledPendingRebootCount?: number;
5991
5626
  /**
5992
- * <p>The number of patches installed on an instance that are specified in a
5627
+ * <p>The number of patches installed on a managed node that are specified in a
5993
5628
  * <code>RejectedPatches</code> list. Patches with a status of <code>InstalledRejected</code> were
5994
5629
  * typically installed before they were added to a <code>RejectedPatches</code> list.</p>
5995
5630
  * <note>
@@ -6000,7 +5635,7 @@ export interface InstancePatchState {
6000
5635
  */
6001
5636
  InstalledRejectedCount?: number;
6002
5637
  /**
6003
- * <p>The number of patches from the patch baseline that are applicable for the instance but
5638
+ * <p>The number of patches from the patch baseline that are applicable for the managed node but
6004
5639
  * aren't currently installed.</p>
6005
5640
  */
6006
5641
  MissingCount?: number;
@@ -6015,18 +5650,18 @@ export interface InstancePatchState {
6015
5650
  */
6016
5651
  UnreportedNotApplicableCount?: number;
6017
5652
  /**
6018
- * <p>The number of patches from the patch baseline that aren't applicable for the instance and
6019
- * therefore aren't installed on the instance. This number may be truncated if the list of patch
5653
+ * <p>The number of patches from the patch baseline that aren't applicable for the managed node and
5654
+ * therefore aren't installed on the node. This number may be truncated if the list of patch
6020
5655
  * names is very large. The number of patches beyond this limit are reported in
6021
5656
  * <code>UnreportedNotApplicableCount</code>.</p>
6022
5657
  */
6023
5658
  NotApplicableCount?: number;
6024
5659
  /**
6025
- * <p>The time the most recent patching operation was started on the instance.</p>
5660
+ * <p>The time the most recent patching operation was started on the managed node.</p>
6026
5661
  */
6027
5662
  OperationStartTime: Date | undefined;
6028
5663
  /**
6029
- * <p>The time the most recent patching operation completed on the instance.</p>
5664
+ * <p>The time the most recent patching operation completed on the managed node.</p>
6030
5665
  */
6031
5666
  OperationEndTime: Date | undefined;
6032
5667
  /**
@@ -6044,7 +5679,7 @@ export interface InstancePatchState {
6044
5679
  */
6045
5680
  Operation: PatchOperationType | string | undefined;
6046
5681
  /**
6047
- * <p>The time of the last attempt to patch the instance with <code>NoReboot</code> specified as
5682
+ * <p>The time of the last attempt to patch the managed node with <code>NoReboot</code> specified as
6048
5683
  * the reboot option.</p>
6049
5684
  */
6050
5685
  LastNoRebootInstallOperationTime?: Date;
@@ -6057,7 +5692,7 @@ export interface InstancePatchState {
6057
5692
  * <ul>
6058
5693
  * <li>
6059
5694
  * <p>
6060
- * <code>RebootIfNeeded</code>: Patch Manager tries to reboot the instance if it installed
5695
+ * <code>RebootIfNeeded</code>: Patch Manager tries to reboot the managed node if it installed
6061
5696
  * any patches, or if any patches are detected with a status of
6062
5697
  * <code>InstalledPendingReboot</code>.</p>
6063
5698
  * </li>
@@ -6072,23 +5707,23 @@ export interface InstancePatchState {
6072
5707
  */
6073
5708
  RebootOption?: RebootOption | string;
6074
5709
  /**
6075
- * <p>The number of instances where patches that are specified as <code>Critical</code> for
5710
+ * <p>The number of managed nodes where patches that are specified as <code>Critical</code> for
6076
5711
  * compliance reporting in the patch baseline aren't installed. These patches might be missing, have
6077
- * failed installation, were rejected, or were installed but awaiting a required instance reboot.
6078
- * The status of these instances is <code>NON_COMPLIANT</code>.</p>
5712
+ * failed installation, were rejected, or were installed but awaiting a required managed node reboot.
5713
+ * The status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
6079
5714
  */
6080
5715
  CriticalNonCompliantCount?: number;
6081
5716
  /**
6082
- * <p>The number of instances where patches that are specified as <code>Security</code> in a patch
6083
- * advisory aren't installed. These patches might be missing, have failed installation, were
6084
- * rejected, or were installed but awaiting a required instance reboot. The status of these
6085
- * instances is <code>NON_COMPLIANT</code>.</p>
5717
+ * <p>The number of managed nodes where patches that are specified as <code>Security</code> in a
5718
+ * patch advisory aren't installed. These patches might be missing, have failed installation, were
5719
+ * rejected, or were installed but awaiting a required managed node reboot. The status of these managed
5720
+ * nodes is <code>NON_COMPLIANT</code>.</p>
6086
5721
  */
6087
5722
  SecurityNonCompliantCount?: number;
6088
5723
  /**
6089
- * <p>The number of instances with patches installed that are specified as other than
5724
+ * <p>The number of managed nodes with patches installed that are specified as other than
6090
5725
  * <code>Critical</code> or <code>Security</code> but aren't compliant with the patch baseline. The
6091
- * status of these instances is <code>NON_COMPLIANT</code>.</p>
5726
+ * status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
6092
5727
  */
6093
5728
  OtherNonCompliantCount?: number;
6094
5729
  }
@@ -6100,7 +5735,7 @@ export declare namespace InstancePatchState {
6100
5735
  }
6101
5736
  export interface DescribeInstancePatchStatesResult {
6102
5737
  /**
6103
- * <p>The high-level patch state for the requested instances.</p>
5738
+ * <p>The high-level patch state for the requested managed nodes.</p>
6104
5739
  */
6105
5740
  InstancePatchStates?: InstancePatchState[];
6106
5741
  /**
@@ -6125,7 +5760,7 @@ export declare enum InstancePatchStateOperatorType {
6125
5760
  * <p>Defines a filter used in <a>DescribeInstancePatchStatesForPatchGroup</a> to scope
6126
5761
  * down the information returned by the API.</p>
6127
5762
  * <p>
6128
- * <b>Example</b>: To filter for all instances in a patch group
5763
+ * <b>Example</b>: To filter for all managed nodes in a patch group
6129
5764
  * having more than three patches with a <code>FailedCount</code> status, use the following for the
6130
5765
  * filter:</p>
6131
5766
  * <ul>
@@ -6244,7 +5879,7 @@ export declare namespace DescribeInstancePatchStatesForPatchGroupRequest {
6244
5879
  }
6245
5880
  export interface DescribeInstancePatchStatesForPatchGroupResult {
6246
5881
  /**
6247
- * <p>The high-level patch state for the requested instances. </p>
5882
+ * <p>The high-level patch state for the requested managed nodes. </p>
6248
5883
  */
6249
5884
  InstancePatchStates?: InstancePatchState[];
6250
5885
  /**
@@ -6351,12 +5986,6 @@ export interface InvalidDeletionIdException extends __SmithyException, $Metadata
6351
5986
  $fault: "client";
6352
5987
  Message?: string;
6353
5988
  }
6354
- export declare namespace InvalidDeletionIdException {
6355
- /**
6356
- * @internal
6357
- */
6358
- const filterSensitiveLog: (obj: InvalidDeletionIdException) => any;
6359
- }
6360
5989
  /**
6361
5990
  * <p>Filter used in the request. Supported filter keys depend on the API operation that includes
6362
5991
  * the filter. API operations that use <code>MaintenanceWindowFilter></code> include the
@@ -6837,7 +6466,7 @@ export interface DescribeMaintenanceWindowScheduleRequest {
6837
6466
  */
6838
6467
  WindowId?: string;
6839
6468
  /**
6840
- * <p>The instance ID or key-value pair to retrieve information about.</p>
6469
+ * <p>The managed node ID or key-value pair to retrieve information about.</p>
6841
6470
  */
6842
6471
  Targets?: Target[];
6843
6472
  /**
@@ -6910,7 +6539,7 @@ export declare namespace DescribeMaintenanceWindowScheduleResult {
6910
6539
  }
6911
6540
  export interface DescribeMaintenanceWindowsForTargetRequest {
6912
6541
  /**
6913
- * <p>The instance ID or key-value pair to retrieve information about.</p>
6542
+ * <p>The managed node ID or key-value pair to retrieve information about.</p>
6914
6543
  */
6915
6544
  Targets: Target[] | undefined;
6916
6545
  /**
@@ -6956,7 +6585,7 @@ export declare namespace MaintenanceWindowIdentityForTarget {
6956
6585
  }
6957
6586
  export interface DescribeMaintenanceWindowsForTargetResult {
6958
6587
  /**
6959
- * <p>Information about the maintenance window targets and tasks an instance is associated
6588
+ * <p>Information about the maintenance window targets and tasks a managed node is associated
6960
6589
  * with.</p>
6961
6590
  */
6962
6591
  WindowIdentities?: MaintenanceWindowIdentityForTarget[];
@@ -7016,8 +6645,8 @@ export interface MaintenanceWindowTarget {
7016
6645
  */
7017
6646
  ResourceType?: MaintenanceWindowResourceType | string;
7018
6647
  /**
7019
- * <p>The targets, either instances or tags.</p>
7020
- * <p>Specify instances using the following format:</p>
6648
+ * <p>The targets, either managed nodes or tags.</p>
6649
+ * <p>Specify managed nodes using the following format:</p>
7021
6650
  * <p>
7022
6651
  * <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>
7023
6652
  * </p>
@@ -7097,7 +6726,7 @@ export declare enum MaintenanceWindowTaskCutoffBehavior {
7097
6726
  }
7098
6727
  /**
7099
6728
  * <p>Information about an Amazon Simple Storage Service (Amazon S3) bucket to write
7100
- * instance-level logs to.</p>
6729
+ * managed node-level logs to.</p>
7101
6730
  * <note>
7102
6731
  * <p>
7103
6732
  * <code>LoggingInfo</code> has been deprecated. To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, instead use the
@@ -7166,7 +6795,7 @@ export interface MaintenanceWindowTask {
7166
6795
  */
7167
6796
  Type?: MaintenanceWindowTaskType | string;
7168
6797
  /**
7169
- * <p>The targets (either instances or tags). Instances are specified using
6798
+ * <p>The targets (either managed nodes or tags). Managed nodes are specified using
7170
6799
  * <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>. Tags are specified
7171
6800
  * using <code>Key=<tag name>,Values=<tag value></code>.</p>
7172
6801
  */
@@ -7637,8 +7266,3 @@ export declare enum ParameterTier {
7637
7266
  INTELLIGENT_TIERING = "Intelligent-Tiering",
7638
7267
  STANDARD = "Standard"
7639
7268
  }
7640
- export declare enum ParameterType {
7641
- SECURE_STRING = "SecureString",
7642
- STRING = "String",
7643
- STRING_LIST = "StringList"
7644
- }