@aws-sdk/client-ssm 3.315.0 → 3.316.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.
@@ -138,1649 +138,874 @@ import { UpdatePatchBaselineCommandInput, UpdatePatchBaselineCommandOutput } fro
138
138
  import { UpdateResourceDataSyncCommandInput, UpdateResourceDataSyncCommandOutput } from "./commands/UpdateResourceDataSyncCommand";
139
139
  import { UpdateServiceSettingCommandInput, UpdateServiceSettingCommandOutput } from "./commands/UpdateServiceSettingCommand";
140
140
  import { SSMClient } from "./SSMClient";
141
- /**
142
- * @public
143
- * <p>Amazon Web Services Systems Manager is the operations hub for your Amazon Web Services applications and resources and a secure
144
- * end-to-end management solution for hybrid cloud environments that enables safe and secure
145
- * operations at scale.</p>
146
- * <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>. To get started, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-up.html">Setting up Amazon Web Services Systems Manager</a>.</p>
147
- * <p class="title">
148
- * <b>Related resources</b>
149
- * </p>
150
- * <ul>
151
- * <li>
152
- * <p>For information about each of the capabilities that comprise Systems Manager, see <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/what-is-systems-manager.html#systems-manager-capabilities">Systems Manager capabilities</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
153
- * </li>
154
- * <li>
155
- * <p>For details about predefined runbooks for Automation, a capability of Amazon Web Services Systems Manager, see the
156
- * <i>
157
- * <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation runbook reference</a>
158
- * </i>.</p>
159
- * </li>
160
- * <li>
161
- * <p>For information about AppConfig, a capability of Systems Manager, see the <i>
162
- * <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/">AppConfig User Guide</a>
163
- * </i>
164
- * and the <i>
165
- * <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/">AppConfig
166
- * API Reference</a>
167
- * </i>.</p>
168
- * </li>
169
- * <li>
170
- * <p>For information about Incident Manager, a capability of Systems Manager, see the <i>
171
- * <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/">Systems Manager Incident Manager User
172
- * Guide</a>
173
- * </i> and the <i>
174
- * <a href="https://docs.aws.amazon.com/incident-manager/latest/APIReference/">Systems Manager Incident Manager API
175
- * Reference</a>
176
- * </i>.</p>
177
- * </li>
178
- * </ul>
179
- */
180
- export declare class SSM extends SSMClient {
181
- /**
182
- * @public
183
- * <p>Adds or overwrites one or more tags for the specified resource. <i>Tags</i>
184
- * are metadata that you can assign to your automations, documents, managed nodes, maintenance
185
- * windows, Parameter Store parameters, and patch baselines. Tags enable you to categorize your
186
- * resources in different ways, for example, by purpose, owner, or environment. Each tag consists of
187
- * a key and an optional value, both of which you define. For example, you could define a set of
188
- * tags for your account's managed nodes that helps you track each node's owner and stack level. For
189
- * example:</p>
190
- * <ul>
191
- * <li>
192
- * <p>
193
- * <code>Key=Owner,Value=DbAdmin</code>
194
- * </p>
195
- * </li>
196
- * <li>
197
- * <p>
198
- * <code>Key=Owner,Value=SysAdmin</code>
199
- * </p>
200
- * </li>
201
- * <li>
202
- * <p>
203
- * <code>Key=Owner,Value=Dev</code>
204
- * </p>
205
- * </li>
206
- * <li>
207
- * <p>
208
- * <code>Key=Stack,Value=Production</code>
209
- * </p>
210
- * </li>
211
- * <li>
212
- * <p>
213
- * <code>Key=Stack,Value=Pre-Production</code>
214
- * </p>
215
- * </li>
216
- * <li>
217
- * <p>
218
- * <code>Key=Stack,Value=Test</code>
219
- * </p>
220
- * </li>
221
- * </ul>
222
- * <p>Most resources can have a maximum of 50 tags. Automations can have a maximum of 5
223
- * tags.</p>
224
- * <p>We recommend that you devise a set of tag keys that meets your needs for each resource type.
225
- * Using a consistent set of tag keys makes it easier for you to manage your resources. You can
226
- * search and filter the resources based on the tags you add. Tags don't have any semantic meaning
227
- * to and are interpreted strictly as a string of characters.</p>
228
- * <p>For more information about using tags with Amazon Elastic Compute Cloud (Amazon EC2) instances, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html">Tagging your Amazon EC2
229
- * resources</a> in the <i>Amazon EC2 User Guide</i>.</p>
141
+ export interface SSM {
142
+ /**
143
+ * @see {@link AddTagsToResourceCommand}
230
144
  */
231
145
  addTagsToResource(args: AddTagsToResourceCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToResourceCommandOutput>;
232
146
  addTagsToResource(args: AddTagsToResourceCommandInput, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
233
147
  addTagsToResource(args: AddTagsToResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
234
148
  /**
235
- * @public
236
- * <p>Associates a related item to a Systems Manager OpsCenter OpsItem. For example, you can associate an
237
- * Incident Manager incident or analysis with an OpsItem. Incident Manager and OpsCenter are capabilities of
238
- * Amazon Web Services Systems Manager.</p>
149
+ * @see {@link AssociateOpsItemRelatedItemCommand}
239
150
  */
240
151
  associateOpsItemRelatedItem(args: AssociateOpsItemRelatedItemCommandInput, options?: __HttpHandlerOptions): Promise<AssociateOpsItemRelatedItemCommandOutput>;
241
152
  associateOpsItemRelatedItem(args: AssociateOpsItemRelatedItemCommandInput, cb: (err: any, data?: AssociateOpsItemRelatedItemCommandOutput) => void): void;
242
153
  associateOpsItemRelatedItem(args: AssociateOpsItemRelatedItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateOpsItemRelatedItemCommandOutput) => void): void;
243
154
  /**
244
- * @public
245
- * <p>Attempts to cancel the command specified by the Command ID. There is no guarantee that the
246
- * command will be terminated and the underlying process stopped.</p>
155
+ * @see {@link CancelCommandCommand}
247
156
  */
248
157
  cancelCommand(args: CancelCommandCommandInput, options?: __HttpHandlerOptions): Promise<CancelCommandCommandOutput>;
249
158
  cancelCommand(args: CancelCommandCommandInput, cb: (err: any, data?: CancelCommandCommandOutput) => void): void;
250
159
  cancelCommand(args: CancelCommandCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelCommandCommandOutput) => void): void;
251
160
  /**
252
- * @public
253
- * <p>Stops a maintenance window execution that is already in progress and cancels any tasks in
254
- * the window that haven't already starting running. Tasks already in progress will continue to
255
- * completion.</p>
161
+ * @see {@link CancelMaintenanceWindowExecutionCommand}
256
162
  */
257
163
  cancelMaintenanceWindowExecution(args: CancelMaintenanceWindowExecutionCommandInput, options?: __HttpHandlerOptions): Promise<CancelMaintenanceWindowExecutionCommandOutput>;
258
164
  cancelMaintenanceWindowExecution(args: CancelMaintenanceWindowExecutionCommandInput, cb: (err: any, data?: CancelMaintenanceWindowExecutionCommandOutput) => void): void;
259
165
  cancelMaintenanceWindowExecution(args: CancelMaintenanceWindowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelMaintenanceWindowExecutionCommandOutput) => void): void;
260
166
  /**
261
- * @public
262
- * <p>Generates an activation code and activation ID you can use to register your on-premises
263
- * servers, edge devices, or virtual machine (VM) with Amazon Web Services Systems Manager. Registering these machines with
264
- * Systems Manager makes it possible to manage them using Systems Manager capabilities. You use the activation code and
265
- * ID when installing SSM Agent on machines in your hybrid environment. For more information about
266
- * requirements for managing on-premises machines using Systems Manager, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances.html">Setting up
267
- * Amazon Web Services Systems Manager for hybrid environments</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. </p>
268
- * <note>
269
- * <p>Amazon Elastic Compute Cloud (Amazon EC2) instances, edge devices, and on-premises servers and VMs that are
270
- * configured for Systems Manager are all called <i>managed nodes</i>.</p>
271
- * </note>
167
+ * @see {@link CreateActivationCommand}
272
168
  */
273
169
  createActivation(args: CreateActivationCommandInput, options?: __HttpHandlerOptions): Promise<CreateActivationCommandOutput>;
274
170
  createActivation(args: CreateActivationCommandInput, cb: (err: any, data?: CreateActivationCommandOutput) => void): void;
275
171
  createActivation(args: CreateActivationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateActivationCommandOutput) => void): void;
276
172
  /**
277
- * @public
278
- * <p>A State Manager association defines the state that you want to maintain on your managed
279
- * nodes. For example, an association can specify that anti-virus software must be installed and
280
- * running on your managed nodes, or that certain ports must be closed. For static targets, the
281
- * association specifies a schedule for when the configuration is reapplied. For dynamic targets,
282
- * such as an Amazon Web Services resource group or an Amazon Web Services autoscaling group, State Manager, a capability of
283
- * Amazon Web Services Systems Manager applies the configuration when new managed nodes are added to the group. The
284
- * association also specifies actions to take when applying the configuration. For example, an
285
- * association for anti-virus software might run once a day. If the software isn't installed, then
286
- * State Manager installs it. If the software is installed, but the service isn't running, then the
287
- * association might instruct State Manager to start the service. </p>
173
+ * @see {@link CreateAssociationCommand}
288
174
  */
289
175
  createAssociation(args: CreateAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssociationCommandOutput>;
290
176
  createAssociation(args: CreateAssociationCommandInput, cb: (err: any, data?: CreateAssociationCommandOutput) => void): void;
291
177
  createAssociation(args: CreateAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssociationCommandOutput) => void): void;
292
178
  /**
293
- * @public
294
- * <p>Associates the specified Amazon Web Services Systems Manager document (SSM document) with the specified managed nodes
295
- * or targets.</p>
296
- * <p>When you associate a document with one or more managed nodes using IDs or tags, Amazon Web Services Systems Manager
297
- * Agent (SSM Agent) running on the managed node processes the document and configures the node as
298
- * specified.</p>
299
- * <p>If you associate a document with a managed node that already has an associated document, the
300
- * system returns the AssociationAlreadyExists exception.</p>
179
+ * @see {@link CreateAssociationBatchCommand}
301
180
  */
302
181
  createAssociationBatch(args: CreateAssociationBatchCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssociationBatchCommandOutput>;
303
182
  createAssociationBatch(args: CreateAssociationBatchCommandInput, cb: (err: any, data?: CreateAssociationBatchCommandOutput) => void): void;
304
183
  createAssociationBatch(args: CreateAssociationBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssociationBatchCommandOutput) => void): void;
305
184
  /**
306
- * @public
307
- * <p>Creates a Amazon Web Services Systems Manager (SSM document). An SSM document defines the actions that Systems Manager performs
308
- * on your managed nodes. For more information about SSM documents, including information about
309
- * supported schemas, features, and syntax, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html">Amazon Web Services Systems Manager Documents</a> in the
310
- * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
185
+ * @see {@link CreateDocumentCommand}
311
186
  */
312
187
  createDocument(args: CreateDocumentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDocumentCommandOutput>;
313
188
  createDocument(args: CreateDocumentCommandInput, cb: (err: any, data?: CreateDocumentCommandOutput) => void): void;
314
189
  createDocument(args: CreateDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDocumentCommandOutput) => void): void;
315
190
  /**
316
- * @public
317
- * <p>Creates a new maintenance window.</p>
318
- * <note>
319
- * <p>The value you specify for <code>Duration</code> determines the specific end time for the
320
- * maintenance window based on the time it begins. No maintenance window tasks are permitted to
321
- * start after the resulting endtime minus the number of hours you specify for <code>Cutoff</code>.
322
- * For example, if the maintenance window starts at 3 PM, the duration is three hours, and the
323
- * value you specify for <code>Cutoff</code> is one hour, no maintenance window tasks can start
324
- * after 5 PM.</p>
325
- * </note>
191
+ * @see {@link CreateMaintenanceWindowCommand}
326
192
  */
327
193
  createMaintenanceWindow(args: CreateMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<CreateMaintenanceWindowCommandOutput>;
328
194
  createMaintenanceWindow(args: CreateMaintenanceWindowCommandInput, cb: (err: any, data?: CreateMaintenanceWindowCommandOutput) => void): void;
329
195
  createMaintenanceWindow(args: CreateMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMaintenanceWindowCommandOutput) => void): void;
330
196
  /**
331
- * @public
332
- * <p>Creates a new OpsItem. You must have permission in Identity and Access Management (IAM) to create a new OpsItem. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html">Getting started with
333
- * OpsCenter</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
334
- * <p>Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, and
335
- * remediate operational issues impacting the performance and health of their Amazon Web Services resources. For
336
- * more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html">Amazon Web Services Systems Manager OpsCenter</a> in the
337
- * <i>Amazon Web Services Systems Manager User Guide</i>. </p>
197
+ * @see {@link CreateOpsItemCommand}
338
198
  */
339
199
  createOpsItem(args: CreateOpsItemCommandInput, options?: __HttpHandlerOptions): Promise<CreateOpsItemCommandOutput>;
340
200
  createOpsItem(args: CreateOpsItemCommandInput, cb: (err: any, data?: CreateOpsItemCommandOutput) => void): void;
341
201
  createOpsItem(args: CreateOpsItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOpsItemCommandOutput) => void): void;
342
202
  /**
343
- * @public
344
- * <p>If you create a new application in Application Manager, Amazon Web Services Systems Manager calls this API operation to specify
345
- * information about the new application, including the application type.</p>
203
+ * @see {@link CreateOpsMetadataCommand}
346
204
  */
347
205
  createOpsMetadata(args: CreateOpsMetadataCommandInput, options?: __HttpHandlerOptions): Promise<CreateOpsMetadataCommandOutput>;
348
206
  createOpsMetadata(args: CreateOpsMetadataCommandInput, cb: (err: any, data?: CreateOpsMetadataCommandOutput) => void): void;
349
207
  createOpsMetadata(args: CreateOpsMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOpsMetadataCommandOutput) => void): void;
350
208
  /**
351
- * @public
352
- * <p>Creates a patch baseline.</p>
353
- * <note>
354
- * <p>For information about valid key-value pairs in <code>PatchFilters</code> for each supported
355
- * operating system type, see <a>PatchFilter</a>.</p>
356
- * </note>
209
+ * @see {@link CreatePatchBaselineCommand}
357
210
  */
358
211
  createPatchBaseline(args: CreatePatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<CreatePatchBaselineCommandOutput>;
359
212
  createPatchBaseline(args: CreatePatchBaselineCommandInput, cb: (err: any, data?: CreatePatchBaselineCommandOutput) => void): void;
360
213
  createPatchBaseline(args: CreatePatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePatchBaselineCommandOutput) => void): void;
361
214
  /**
362
- * @public
363
- * <p>A resource data sync helps you view data from multiple sources in a single location.
364
- * Amazon Web Services Systems Manager offers two types of resource data sync: <code>SyncToDestination</code> and
365
- * <code>SyncFromSource</code>.</p>
366
- * <p>You can configure Systems Manager Inventory to use the <code>SyncToDestination</code> type to
367
- * synchronize Inventory data from multiple Amazon Web Services Regions to a single Amazon Simple Storage Service (Amazon S3) bucket. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-datasync.html">Configuring resource data
368
- * sync for Inventory</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
369
- * <p>You can configure Systems Manager Explorer to use the <code>SyncFromSource</code> type to synchronize
370
- * operational work items (OpsItems) and operational data (OpsData) from multiple Amazon Web Services Regions to a
371
- * single Amazon S3 bucket. This type can synchronize OpsItems and OpsData from multiple
372
- * Amazon Web Services accounts and Amazon Web Services Regions or <code>EntireOrganization</code> by using Organizations. For more
373
- * information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resource-data-sync.html">Setting up Systems Manager
374
- * Explorer to display data from multiple accounts and Regions</a> in the
375
- * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
376
- * <p>A resource data sync is an asynchronous operation that returns immediately. After a
377
- * successful initial sync is completed, the system continuously syncs data. To check the status of
378
- * a sync, use the <a>ListResourceDataSync</a>.</p>
379
- * <note>
380
- * <p>By default, data isn't encrypted in Amazon S3. We strongly recommend that you
381
- * enable encryption in Amazon S3 to ensure secure data storage. We also recommend that you
382
- * secure access to the Amazon S3 bucket by creating a restrictive bucket policy. </p>
383
- * </note>
215
+ * @see {@link CreateResourceDataSyncCommand}
384
216
  */
385
217
  createResourceDataSync(args: CreateResourceDataSyncCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceDataSyncCommandOutput>;
386
218
  createResourceDataSync(args: CreateResourceDataSyncCommandInput, cb: (err: any, data?: CreateResourceDataSyncCommandOutput) => void): void;
387
219
  createResourceDataSync(args: CreateResourceDataSyncCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceDataSyncCommandOutput) => void): void;
388
220
  /**
389
- * @public
390
- * <p>Deletes an activation. You aren't required to delete an activation. If you delete an
391
- * activation, you can no longer use it to register additional managed nodes. Deleting an activation
392
- * doesn't de-register managed nodes. You must manually de-register managed nodes.</p>
221
+ * @see {@link DeleteActivationCommand}
393
222
  */
394
223
  deleteActivation(args: DeleteActivationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteActivationCommandOutput>;
395
224
  deleteActivation(args: DeleteActivationCommandInput, cb: (err: any, data?: DeleteActivationCommandOutput) => void): void;
396
225
  deleteActivation(args: DeleteActivationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteActivationCommandOutput) => void): void;
397
226
  /**
398
- * @public
399
- * <p>Disassociates the specified Amazon Web Services Systems Manager document (SSM document) from the specified managed
400
- * node. If you created the association by using the <code>Targets</code> parameter, then you must
401
- * delete the association by using the association ID.</p>
402
- * <p>When you disassociate a document from a managed node, it doesn't change the configuration of
403
- * the node. To change the configuration state of a managed node after you disassociate a document,
404
- * you must create a new document with the desired configuration and associate it with the
405
- * node.</p>
227
+ * @see {@link DeleteAssociationCommand}
406
228
  */
407
229
  deleteAssociation(args: DeleteAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssociationCommandOutput>;
408
230
  deleteAssociation(args: DeleteAssociationCommandInput, cb: (err: any, data?: DeleteAssociationCommandOutput) => void): void;
409
231
  deleteAssociation(args: DeleteAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssociationCommandOutput) => void): void;
410
232
  /**
411
- * @public
412
- * <p>Deletes the Amazon Web Services Systems Manager document (SSM document) and all managed node associations to the
413
- * document.</p>
414
- * <p>Before you delete the document, we recommend that you use <a>DeleteAssociation</a> to disassociate all managed nodes that are associated with the document.</p>
233
+ * @see {@link DeleteDocumentCommand}
415
234
  */
416
235
  deleteDocument(args: DeleteDocumentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDocumentCommandOutput>;
417
236
  deleteDocument(args: DeleteDocumentCommandInput, cb: (err: any, data?: DeleteDocumentCommandOutput) => void): void;
418
237
  deleteDocument(args: DeleteDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDocumentCommandOutput) => void): void;
419
238
  /**
420
- * @public
421
- * <p>Delete a custom inventory type or the data associated with a custom Inventory type. Deleting
422
- * a custom inventory type is also referred to as deleting a custom inventory schema.</p>
239
+ * @see {@link DeleteInventoryCommand}
423
240
  */
424
241
  deleteInventory(args: DeleteInventoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInventoryCommandOutput>;
425
242
  deleteInventory(args: DeleteInventoryCommandInput, cb: (err: any, data?: DeleteInventoryCommandOutput) => void): void;
426
243
  deleteInventory(args: DeleteInventoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInventoryCommandOutput) => void): void;
427
244
  /**
428
- * @public
429
- * <p>Deletes a maintenance window.</p>
245
+ * @see {@link DeleteMaintenanceWindowCommand}
430
246
  */
431
247
  deleteMaintenanceWindow(args: DeleteMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMaintenanceWindowCommandOutput>;
432
248
  deleteMaintenanceWindow(args: DeleteMaintenanceWindowCommandInput, cb: (err: any, data?: DeleteMaintenanceWindowCommandOutput) => void): void;
433
249
  deleteMaintenanceWindow(args: DeleteMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMaintenanceWindowCommandOutput) => void): void;
434
250
  /**
435
- * @public
436
- * <p>Delete OpsMetadata related to an application.</p>
251
+ * @see {@link DeleteOpsMetadataCommand}
437
252
  */
438
253
  deleteOpsMetadata(args: DeleteOpsMetadataCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOpsMetadataCommandOutput>;
439
254
  deleteOpsMetadata(args: DeleteOpsMetadataCommandInput, cb: (err: any, data?: DeleteOpsMetadataCommandOutput) => void): void;
440
255
  deleteOpsMetadata(args: DeleteOpsMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOpsMetadataCommandOutput) => void): void;
441
256
  /**
442
- * @public
443
- * <p>Delete a parameter from the system. After deleting a parameter, wait for at least 30 seconds
444
- * to create a parameter with the same name.</p>
257
+ * @see {@link DeleteParameterCommand}
445
258
  */
446
259
  deleteParameter(args: DeleteParameterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteParameterCommandOutput>;
447
260
  deleteParameter(args: DeleteParameterCommandInput, cb: (err: any, data?: DeleteParameterCommandOutput) => void): void;
448
261
  deleteParameter(args: DeleteParameterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteParameterCommandOutput) => void): void;
449
262
  /**
450
- * @public
451
- * <p>Delete a list of parameters. After deleting a parameter, wait for at least 30 seconds to
452
- * create a parameter with the same name.</p>
263
+ * @see {@link DeleteParametersCommand}
453
264
  */
454
265
  deleteParameters(args: DeleteParametersCommandInput, options?: __HttpHandlerOptions): Promise<DeleteParametersCommandOutput>;
455
266
  deleteParameters(args: DeleteParametersCommandInput, cb: (err: any, data?: DeleteParametersCommandOutput) => void): void;
456
267
  deleteParameters(args: DeleteParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteParametersCommandOutput) => void): void;
457
268
  /**
458
- * @public
459
- * <p>Deletes a patch baseline.</p>
269
+ * @see {@link DeletePatchBaselineCommand}
460
270
  */
461
271
  deletePatchBaseline(args: DeletePatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<DeletePatchBaselineCommandOutput>;
462
272
  deletePatchBaseline(args: DeletePatchBaselineCommandInput, cb: (err: any, data?: DeletePatchBaselineCommandOutput) => void): void;
463
273
  deletePatchBaseline(args: DeletePatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePatchBaselineCommandOutput) => void): void;
464
274
  /**
465
- * @public
466
- * <p>Deletes a resource data sync configuration. After the configuration is deleted, changes to
467
- * data on managed nodes are no longer synced to or from the target. Deleting a sync configuration
468
- * doesn't delete data.</p>
275
+ * @see {@link DeleteResourceDataSyncCommand}
469
276
  */
470
277
  deleteResourceDataSync(args: DeleteResourceDataSyncCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceDataSyncCommandOutput>;
471
278
  deleteResourceDataSync(args: DeleteResourceDataSyncCommandInput, cb: (err: any, data?: DeleteResourceDataSyncCommandOutput) => void): void;
472
279
  deleteResourceDataSync(args: DeleteResourceDataSyncCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceDataSyncCommandOutput) => void): void;
473
280
  /**
474
- * @public
475
- * <p>Deletes a Systems Manager resource policy. A resource policy helps you to define the IAM entity (for example, an Amazon Web Services account) that can manage your Systems Manager resources. Currently,
476
- * <code>OpsItemGroup</code> is the only resource that supports Systems Manager resource policies. The
477
- * resource policy for <code>OpsItemGroup</code> enables Amazon Web Services accounts to view and interact with
478
- * OpsCenter operational work items (OpsItems).</p>
281
+ * @see {@link DeleteResourcePolicyCommand}
479
282
  */
480
283
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
481
284
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
482
285
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
483
286
  /**
484
- * @public
485
- * <p>Removes the server or virtual machine from the list of registered servers. You can
486
- * reregister the node again at any time. If you don't plan to use Run Command on the server, we
487
- * suggest uninstalling SSM Agent first.</p>
287
+ * @see {@link DeregisterManagedInstanceCommand}
488
288
  */
489
289
  deregisterManagedInstance(args: DeregisterManagedInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterManagedInstanceCommandOutput>;
490
290
  deregisterManagedInstance(args: DeregisterManagedInstanceCommandInput, cb: (err: any, data?: DeregisterManagedInstanceCommandOutput) => void): void;
491
291
  deregisterManagedInstance(args: DeregisterManagedInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterManagedInstanceCommandOutput) => void): void;
492
292
  /**
493
- * @public
494
- * <p>Removes a patch group from a patch baseline.</p>
293
+ * @see {@link DeregisterPatchBaselineForPatchGroupCommand}
495
294
  */
496
295
  deregisterPatchBaselineForPatchGroup(args: DeregisterPatchBaselineForPatchGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterPatchBaselineForPatchGroupCommandOutput>;
497
296
  deregisterPatchBaselineForPatchGroup(args: DeregisterPatchBaselineForPatchGroupCommandInput, cb: (err: any, data?: DeregisterPatchBaselineForPatchGroupCommandOutput) => void): void;
498
297
  deregisterPatchBaselineForPatchGroup(args: DeregisterPatchBaselineForPatchGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterPatchBaselineForPatchGroupCommandOutput) => void): void;
499
298
  /**
500
- * @public
501
- * <p>Removes a target from a maintenance window.</p>
299
+ * @see {@link DeregisterTargetFromMaintenanceWindowCommand}
502
300
  */
503
301
  deregisterTargetFromMaintenanceWindow(args: DeregisterTargetFromMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterTargetFromMaintenanceWindowCommandOutput>;
504
302
  deregisterTargetFromMaintenanceWindow(args: DeregisterTargetFromMaintenanceWindowCommandInput, cb: (err: any, data?: DeregisterTargetFromMaintenanceWindowCommandOutput) => void): void;
505
303
  deregisterTargetFromMaintenanceWindow(args: DeregisterTargetFromMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterTargetFromMaintenanceWindowCommandOutput) => void): void;
506
304
  /**
507
- * @public
508
- * <p>Removes a task from a maintenance window.</p>
305
+ * @see {@link DeregisterTaskFromMaintenanceWindowCommand}
509
306
  */
510
307
  deregisterTaskFromMaintenanceWindow(args: DeregisterTaskFromMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterTaskFromMaintenanceWindowCommandOutput>;
511
308
  deregisterTaskFromMaintenanceWindow(args: DeregisterTaskFromMaintenanceWindowCommandInput, cb: (err: any, data?: DeregisterTaskFromMaintenanceWindowCommandOutput) => void): void;
512
309
  deregisterTaskFromMaintenanceWindow(args: DeregisterTaskFromMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterTaskFromMaintenanceWindowCommandOutput) => void): void;
513
310
  /**
514
- * @public
515
- * <p>Describes details about the activation, such as the date and time the activation was
516
- * created, its expiration date, the Identity and Access Management (IAM) role assigned to
517
- * the managed nodes in the activation, and the number of nodes registered by using this
518
- * activation.</p>
311
+ * @see {@link DescribeActivationsCommand}
519
312
  */
520
313
  describeActivations(args: DescribeActivationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeActivationsCommandOutput>;
521
314
  describeActivations(args: DescribeActivationsCommandInput, cb: (err: any, data?: DescribeActivationsCommandOutput) => void): void;
522
315
  describeActivations(args: DescribeActivationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeActivationsCommandOutput) => void): void;
523
316
  /**
524
- * @public
525
- * <p>Describes the association for the specified target or managed node. If you created the
526
- * association by using the <code>Targets</code> parameter, then you must retrieve the association
527
- * by using the association ID.</p>
317
+ * @see {@link DescribeAssociationCommand}
528
318
  */
529
319
  describeAssociation(args: DescribeAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAssociationCommandOutput>;
530
320
  describeAssociation(args: DescribeAssociationCommandInput, cb: (err: any, data?: DescribeAssociationCommandOutput) => void): void;
531
321
  describeAssociation(args: DescribeAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAssociationCommandOutput) => void): void;
532
322
  /**
533
- * @public
534
- * <p>Views all executions for a specific association ID. </p>
323
+ * @see {@link DescribeAssociationExecutionsCommand}
535
324
  */
536
325
  describeAssociationExecutions(args: DescribeAssociationExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAssociationExecutionsCommandOutput>;
537
326
  describeAssociationExecutions(args: DescribeAssociationExecutionsCommandInput, cb: (err: any, data?: DescribeAssociationExecutionsCommandOutput) => void): void;
538
327
  describeAssociationExecutions(args: DescribeAssociationExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAssociationExecutionsCommandOutput) => void): void;
539
328
  /**
540
- * @public
541
- * <p>Views information about a specific execution of a specific association.</p>
329
+ * @see {@link DescribeAssociationExecutionTargetsCommand}
542
330
  */
543
331
  describeAssociationExecutionTargets(args: DescribeAssociationExecutionTargetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAssociationExecutionTargetsCommandOutput>;
544
332
  describeAssociationExecutionTargets(args: DescribeAssociationExecutionTargetsCommandInput, cb: (err: any, data?: DescribeAssociationExecutionTargetsCommandOutput) => void): void;
545
333
  describeAssociationExecutionTargets(args: DescribeAssociationExecutionTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAssociationExecutionTargetsCommandOutput) => void): void;
546
334
  /**
547
- * @public
548
- * <p>Provides details about all active and terminated Automation executions.</p>
335
+ * @see {@link DescribeAutomationExecutionsCommand}
549
336
  */
550
337
  describeAutomationExecutions(args: DescribeAutomationExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutomationExecutionsCommandOutput>;
551
338
  describeAutomationExecutions(args: DescribeAutomationExecutionsCommandInput, cb: (err: any, data?: DescribeAutomationExecutionsCommandOutput) => void): void;
552
339
  describeAutomationExecutions(args: DescribeAutomationExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutomationExecutionsCommandOutput) => void): void;
553
340
  /**
554
- * @public
555
- * <p>Information about all active and terminated step executions in an Automation
556
- * workflow.</p>
341
+ * @see {@link DescribeAutomationStepExecutionsCommand}
557
342
  */
558
343
  describeAutomationStepExecutions(args: DescribeAutomationStepExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutomationStepExecutionsCommandOutput>;
559
344
  describeAutomationStepExecutions(args: DescribeAutomationStepExecutionsCommandInput, cb: (err: any, data?: DescribeAutomationStepExecutionsCommandOutput) => void): void;
560
345
  describeAutomationStepExecutions(args: DescribeAutomationStepExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutomationStepExecutionsCommandOutput) => void): void;
561
346
  /**
562
- * @public
563
- * <p>Lists all patches eligible to be included in a patch baseline.</p>
347
+ * @see {@link DescribeAvailablePatchesCommand}
564
348
  */
565
349
  describeAvailablePatches(args: DescribeAvailablePatchesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAvailablePatchesCommandOutput>;
566
350
  describeAvailablePatches(args: DescribeAvailablePatchesCommandInput, cb: (err: any, data?: DescribeAvailablePatchesCommandOutput) => void): void;
567
351
  describeAvailablePatches(args: DescribeAvailablePatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAvailablePatchesCommandOutput) => void): void;
568
352
  /**
569
- * @public
570
- * <p>Describes the specified Amazon Web Services Systems Manager document (SSM document).</p>
353
+ * @see {@link DescribeDocumentCommand}
571
354
  */
572
355
  describeDocument(args: DescribeDocumentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDocumentCommandOutput>;
573
356
  describeDocument(args: DescribeDocumentCommandInput, cb: (err: any, data?: DescribeDocumentCommandOutput) => void): void;
574
357
  describeDocument(args: DescribeDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDocumentCommandOutput) => void): void;
575
358
  /**
576
- * @public
577
- * <p>Describes the permissions for a Amazon Web Services Systems Manager document (SSM document). If you created the
578
- * document, you are the owner. If a document is shared, it can either be shared privately (by
579
- * specifying a user's Amazon Web Services account ID) or publicly (<i>All</i>). </p>
359
+ * @see {@link DescribeDocumentPermissionCommand}
580
360
  */
581
361
  describeDocumentPermission(args: DescribeDocumentPermissionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDocumentPermissionCommandOutput>;
582
362
  describeDocumentPermission(args: DescribeDocumentPermissionCommandInput, cb: (err: any, data?: DescribeDocumentPermissionCommandOutput) => void): void;
583
363
  describeDocumentPermission(args: DescribeDocumentPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDocumentPermissionCommandOutput) => void): void;
584
364
  /**
585
- * @public
586
- * <p>All associations for the managed node(s).</p>
365
+ * @see {@link DescribeEffectiveInstanceAssociationsCommand}
587
366
  */
588
367
  describeEffectiveInstanceAssociations(args: DescribeEffectiveInstanceAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEffectiveInstanceAssociationsCommandOutput>;
589
368
  describeEffectiveInstanceAssociations(args: DescribeEffectiveInstanceAssociationsCommandInput, cb: (err: any, data?: DescribeEffectiveInstanceAssociationsCommandOutput) => void): void;
590
369
  describeEffectiveInstanceAssociations(args: DescribeEffectiveInstanceAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEffectiveInstanceAssociationsCommandOutput) => void): void;
591
370
  /**
592
- * @public
593
- * <p>Retrieves the current effective patches (the patch and the approval state) for the specified
594
- * patch baseline. Applies to patch baselines for Windows only.</p>
371
+ * @see {@link DescribeEffectivePatchesForPatchBaselineCommand}
595
372
  */
596
373
  describeEffectivePatchesForPatchBaseline(args: DescribeEffectivePatchesForPatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEffectivePatchesForPatchBaselineCommandOutput>;
597
374
  describeEffectivePatchesForPatchBaseline(args: DescribeEffectivePatchesForPatchBaselineCommandInput, cb: (err: any, data?: DescribeEffectivePatchesForPatchBaselineCommandOutput) => void): void;
598
375
  describeEffectivePatchesForPatchBaseline(args: DescribeEffectivePatchesForPatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEffectivePatchesForPatchBaselineCommandOutput) => void): void;
599
376
  /**
600
- * @public
601
- * <p>The status of the associations for the managed node(s).</p>
377
+ * @see {@link DescribeInstanceAssociationsStatusCommand}
602
378
  */
603
379
  describeInstanceAssociationsStatus(args: DescribeInstanceAssociationsStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceAssociationsStatusCommandOutput>;
604
380
  describeInstanceAssociationsStatus(args: DescribeInstanceAssociationsStatusCommandInput, cb: (err: any, data?: DescribeInstanceAssociationsStatusCommandOutput) => void): void;
605
381
  describeInstanceAssociationsStatus(args: DescribeInstanceAssociationsStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceAssociationsStatusCommandOutput) => void): void;
606
382
  /**
607
- * @public
608
- * <p>Describes one or more of your managed nodes, including information about the operating
609
- * system platform, the version of SSM Agent installed on the managed node, node status, and so
610
- * on.</p>
611
- * <p>If you specify one or more managed node IDs, it returns information for those managed nodes.
612
- * If you don't specify node IDs, it returns information for all your managed nodes. If you specify
613
- * a node ID that isn't valid or a node that you don't own, you receive an error.</p>
614
- * <note>
615
- * <p>The <code>IamRole</code> field for this API operation is the Identity and Access Management
616
- * (IAM) role assigned to on-premises managed nodes. This call doesn't return the
617
- * IAM role for EC2 instances.</p>
618
- * </note>
383
+ * @see {@link DescribeInstanceInformationCommand}
619
384
  */
620
385
  describeInstanceInformation(args: DescribeInstanceInformationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceInformationCommandOutput>;
621
386
  describeInstanceInformation(args: DescribeInstanceInformationCommandInput, cb: (err: any, data?: DescribeInstanceInformationCommandOutput) => void): void;
622
387
  describeInstanceInformation(args: DescribeInstanceInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceInformationCommandOutput) => void): void;
623
388
  /**
624
- * @public
625
- * <p>Retrieves information about the patches on the specified managed node and their state
626
- * relative to the patch baseline being used for the node.</p>
389
+ * @see {@link DescribeInstancePatchesCommand}
627
390
  */
628
391
  describeInstancePatches(args: DescribeInstancePatchesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstancePatchesCommandOutput>;
629
392
  describeInstancePatches(args: DescribeInstancePatchesCommandInput, cb: (err: any, data?: DescribeInstancePatchesCommandOutput) => void): void;
630
393
  describeInstancePatches(args: DescribeInstancePatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstancePatchesCommandOutput) => void): void;
631
394
  /**
632
- * @public
633
- * <p>Retrieves the high-level patch state of one or more managed nodes.</p>
395
+ * @see {@link DescribeInstancePatchStatesCommand}
634
396
  */
635
397
  describeInstancePatchStates(args: DescribeInstancePatchStatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstancePatchStatesCommandOutput>;
636
398
  describeInstancePatchStates(args: DescribeInstancePatchStatesCommandInput, cb: (err: any, data?: DescribeInstancePatchStatesCommandOutput) => void): void;
637
399
  describeInstancePatchStates(args: DescribeInstancePatchStatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstancePatchStatesCommandOutput) => void): void;
638
400
  /**
639
- * @public
640
- * <p>Retrieves the high-level patch state for the managed nodes in the specified patch
641
- * group.</p>
401
+ * @see {@link DescribeInstancePatchStatesForPatchGroupCommand}
642
402
  */
643
403
  describeInstancePatchStatesForPatchGroup(args: DescribeInstancePatchStatesForPatchGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstancePatchStatesForPatchGroupCommandOutput>;
644
404
  describeInstancePatchStatesForPatchGroup(args: DescribeInstancePatchStatesForPatchGroupCommandInput, cb: (err: any, data?: DescribeInstancePatchStatesForPatchGroupCommandOutput) => void): void;
645
405
  describeInstancePatchStatesForPatchGroup(args: DescribeInstancePatchStatesForPatchGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstancePatchStatesForPatchGroupCommandOutput) => void): void;
646
406
  /**
647
- * @public
648
- * <p>Describes a specific delete inventory operation.</p>
407
+ * @see {@link DescribeInventoryDeletionsCommand}
649
408
  */
650
409
  describeInventoryDeletions(args: DescribeInventoryDeletionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInventoryDeletionsCommandOutput>;
651
410
  describeInventoryDeletions(args: DescribeInventoryDeletionsCommandInput, cb: (err: any, data?: DescribeInventoryDeletionsCommandOutput) => void): void;
652
411
  describeInventoryDeletions(args: DescribeInventoryDeletionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInventoryDeletionsCommandOutput) => void): void;
653
412
  /**
654
- * @public
655
- * <p>Lists the executions of a maintenance window. This includes information about when the
656
- * maintenance window was scheduled to be active, and information about tasks registered and run
657
- * with the maintenance window.</p>
413
+ * @see {@link DescribeMaintenanceWindowExecutionsCommand}
658
414
  */
659
415
  describeMaintenanceWindowExecutions(args: DescribeMaintenanceWindowExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowExecutionsCommandOutput>;
660
416
  describeMaintenanceWindowExecutions(args: DescribeMaintenanceWindowExecutionsCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowExecutionsCommandOutput) => void): void;
661
417
  describeMaintenanceWindowExecutions(args: DescribeMaintenanceWindowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowExecutionsCommandOutput) => void): void;
662
418
  /**
663
- * @public
664
- * <p>Retrieves the individual task executions (one per target) for a particular task run as part
665
- * of a maintenance window execution.</p>
419
+ * @see {@link DescribeMaintenanceWindowExecutionTaskInvocationsCommand}
666
420
  */
667
421
  describeMaintenanceWindowExecutionTaskInvocations(args: DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput>;
668
422
  describeMaintenanceWindowExecutionTaskInvocations(args: DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput) => void): void;
669
423
  describeMaintenanceWindowExecutionTaskInvocations(args: DescribeMaintenanceWindowExecutionTaskInvocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowExecutionTaskInvocationsCommandOutput) => void): void;
670
424
  /**
671
- * @public
672
- * <p>For a given maintenance window execution, lists the tasks that were run.</p>
425
+ * @see {@link DescribeMaintenanceWindowExecutionTasksCommand}
673
426
  */
674
427
  describeMaintenanceWindowExecutionTasks(args: DescribeMaintenanceWindowExecutionTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowExecutionTasksCommandOutput>;
675
428
  describeMaintenanceWindowExecutionTasks(args: DescribeMaintenanceWindowExecutionTasksCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowExecutionTasksCommandOutput) => void): void;
676
429
  describeMaintenanceWindowExecutionTasks(args: DescribeMaintenanceWindowExecutionTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowExecutionTasksCommandOutput) => void): void;
677
430
  /**
678
- * @public
679
- * <p>Retrieves the maintenance windows in an Amazon Web Services account.</p>
431
+ * @see {@link DescribeMaintenanceWindowsCommand}
680
432
  */
681
433
  describeMaintenanceWindows(args: DescribeMaintenanceWindowsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowsCommandOutput>;
682
434
  describeMaintenanceWindows(args: DescribeMaintenanceWindowsCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowsCommandOutput) => void): void;
683
435
  describeMaintenanceWindows(args: DescribeMaintenanceWindowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowsCommandOutput) => void): void;
684
436
  /**
685
- * @public
686
- * <p>Retrieves information about upcoming executions of a maintenance window.</p>
437
+ * @see {@link DescribeMaintenanceWindowScheduleCommand}
687
438
  */
688
439
  describeMaintenanceWindowSchedule(args: DescribeMaintenanceWindowScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowScheduleCommandOutput>;
689
440
  describeMaintenanceWindowSchedule(args: DescribeMaintenanceWindowScheduleCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowScheduleCommandOutput) => void): void;
690
441
  describeMaintenanceWindowSchedule(args: DescribeMaintenanceWindowScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowScheduleCommandOutput) => void): void;
691
442
  /**
692
- * @public
693
- * <p>Retrieves information about the maintenance window targets or tasks that a managed node is
694
- * associated with.</p>
443
+ * @see {@link DescribeMaintenanceWindowsForTargetCommand}
695
444
  */
696
445
  describeMaintenanceWindowsForTarget(args: DescribeMaintenanceWindowsForTargetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowsForTargetCommandOutput>;
697
446
  describeMaintenanceWindowsForTarget(args: DescribeMaintenanceWindowsForTargetCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowsForTargetCommandOutput) => void): void;
698
447
  describeMaintenanceWindowsForTarget(args: DescribeMaintenanceWindowsForTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowsForTargetCommandOutput) => void): void;
699
448
  /**
700
- * @public
701
- * <p>Lists the targets registered with the maintenance window.</p>
449
+ * @see {@link DescribeMaintenanceWindowTargetsCommand}
702
450
  */
703
451
  describeMaintenanceWindowTargets(args: DescribeMaintenanceWindowTargetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowTargetsCommandOutput>;
704
452
  describeMaintenanceWindowTargets(args: DescribeMaintenanceWindowTargetsCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowTargetsCommandOutput) => void): void;
705
453
  describeMaintenanceWindowTargets(args: DescribeMaintenanceWindowTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowTargetsCommandOutput) => void): void;
706
454
  /**
707
- * @public
708
- * <p>Lists the tasks in a maintenance window.</p>
709
- * <note>
710
- * <p>For maintenance window tasks without a specified target, you can't supply values for
711
- * <code>--max-errors</code> and <code>--max-concurrency</code>. Instead, the system inserts a
712
- * placeholder value of <code>1</code>, which may be reported in the response to this command.
713
- * These values don't affect the running of your task and can be ignored.</p>
714
- * </note>
455
+ * @see {@link DescribeMaintenanceWindowTasksCommand}
715
456
  */
716
457
  describeMaintenanceWindowTasks(args: DescribeMaintenanceWindowTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMaintenanceWindowTasksCommandOutput>;
717
458
  describeMaintenanceWindowTasks(args: DescribeMaintenanceWindowTasksCommandInput, cb: (err: any, data?: DescribeMaintenanceWindowTasksCommandOutput) => void): void;
718
459
  describeMaintenanceWindowTasks(args: DescribeMaintenanceWindowTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMaintenanceWindowTasksCommandOutput) => void): void;
719
460
  /**
720
- * @public
721
- * <p>Query a set of OpsItems. You must have permission in Identity and Access Management (IAM) to query a list of OpsItems. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html">Getting started with
722
- * OpsCenter</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
723
- * <p>Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, and
724
- * remediate operational issues impacting the performance and health of their Amazon Web Services resources. For
725
- * more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html">OpsCenter</a> in the
726
- * <i>Amazon Web Services Systems Manager User Guide</i>. </p>
461
+ * @see {@link DescribeOpsItemsCommand}
727
462
  */
728
463
  describeOpsItems(args: DescribeOpsItemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOpsItemsCommandOutput>;
729
464
  describeOpsItems(args: DescribeOpsItemsCommandInput, cb: (err: any, data?: DescribeOpsItemsCommandOutput) => void): void;
730
465
  describeOpsItems(args: DescribeOpsItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOpsItemsCommandOutput) => void): void;
731
466
  /**
732
- * @public
733
- * <p>Get information about a parameter.</p>
734
- * <p>Request results are returned on a best-effort basis. If you specify <code>MaxResults</code>
735
- * in the request, the response includes information up to the limit specified. The number of items
736
- * returned, however, can be between zero and the value of <code>MaxResults</code>. If the service
737
- * reaches an internal limit while processing the results, it stops the operation and returns the
738
- * matching values up to that point and a <code>NextToken</code>. You can specify the
739
- * <code>NextToken</code> in a subsequent call to get the next set of results.</p>
740
- * <important>
741
- * <p>If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must
742
- * also update the key alias the parameter uses to reference KMS. Otherwise,
743
- * <code>DescribeParameters</code> retrieves whatever the original key alias was
744
- * referencing.</p>
745
- * </important>
467
+ * @see {@link DescribeParametersCommand}
746
468
  */
747
469
  describeParameters(args: DescribeParametersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeParametersCommandOutput>;
748
470
  describeParameters(args: DescribeParametersCommandInput, cb: (err: any, data?: DescribeParametersCommandOutput) => void): void;
749
471
  describeParameters(args: DescribeParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeParametersCommandOutput) => void): void;
750
472
  /**
751
- * @public
752
- * <p>Lists the patch baselines in your Amazon Web Services account.</p>
473
+ * @see {@link DescribePatchBaselinesCommand}
753
474
  */
754
475
  describePatchBaselines(args: DescribePatchBaselinesCommandInput, options?: __HttpHandlerOptions): Promise<DescribePatchBaselinesCommandOutput>;
755
476
  describePatchBaselines(args: DescribePatchBaselinesCommandInput, cb: (err: any, data?: DescribePatchBaselinesCommandOutput) => void): void;
756
477
  describePatchBaselines(args: DescribePatchBaselinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePatchBaselinesCommandOutput) => void): void;
757
478
  /**
758
- * @public
759
- * <p>Lists all patch groups that have been registered with patch baselines.</p>
479
+ * @see {@link DescribePatchGroupsCommand}
760
480
  */
761
481
  describePatchGroups(args: DescribePatchGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribePatchGroupsCommandOutput>;
762
482
  describePatchGroups(args: DescribePatchGroupsCommandInput, cb: (err: any, data?: DescribePatchGroupsCommandOutput) => void): void;
763
483
  describePatchGroups(args: DescribePatchGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePatchGroupsCommandOutput) => void): void;
764
484
  /**
765
- * @public
766
- * <p>Returns high-level aggregated patch compliance state information for a patch group.</p>
485
+ * @see {@link DescribePatchGroupStateCommand}
767
486
  */
768
487
  describePatchGroupState(args: DescribePatchGroupStateCommandInput, options?: __HttpHandlerOptions): Promise<DescribePatchGroupStateCommandOutput>;
769
488
  describePatchGroupState(args: DescribePatchGroupStateCommandInput, cb: (err: any, data?: DescribePatchGroupStateCommandOutput) => void): void;
770
489
  describePatchGroupState(args: DescribePatchGroupStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePatchGroupStateCommandOutput) => void): void;
771
490
  /**
772
- * @public
773
- * <p>Lists the properties of available patches organized by product, product family,
774
- * classification, severity, and other properties of available patches. You can use the reported
775
- * properties in the filters you specify in requests for operations such as <a>CreatePatchBaseline</a>, <a>UpdatePatchBaseline</a>, <a>DescribeAvailablePatches</a>, and <a>DescribePatchBaselines</a>.</p>
776
- * <p>The following section lists the properties that can be used in filters for each major
777
- * operating system type:</p>
778
- * <dl>
779
- * <dt>AMAZON_LINUX</dt>
780
- * <dd>
781
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code> |
782
- * <code>SEVERITY</code>
783
- * </p>
784
- * </dd>
785
- * <dt>AMAZON_LINUX_2</dt>
786
- * <dd>
787
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code> |
788
- * <code>SEVERITY</code>
789
- * </p>
790
- * </dd>
791
- * <dt>CENTOS</dt>
792
- * <dd>
793
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code> |
794
- * <code>SEVERITY</code>
795
- * </p>
796
- * </dd>
797
- * <dt>DEBIAN</dt>
798
- * <dd>
799
- * <p>Valid properties: <code>PRODUCT</code> | <code>PRIORITY</code>
800
- * </p>
801
- * </dd>
802
- * <dt>MACOS</dt>
803
- * <dd>
804
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code>
805
- * </p>
806
- * </dd>
807
- * <dt>ORACLE_LINUX</dt>
808
- * <dd>
809
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code> |
810
- * <code>SEVERITY</code>
811
- * </p>
812
- * </dd>
813
- * <dt>REDHAT_ENTERPRISE_LINUX</dt>
814
- * <dd>
815
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code> |
816
- * <code>SEVERITY</code>
817
- * </p>
818
- * </dd>
819
- * <dt>SUSE</dt>
820
- * <dd>
821
- * <p>Valid properties: <code>PRODUCT</code> | <code>CLASSIFICATION</code> |
822
- * <code>SEVERITY</code>
823
- * </p>
824
- * </dd>
825
- * <dt>UBUNTU</dt>
826
- * <dd>
827
- * <p>Valid properties: <code>PRODUCT</code> | <code>PRIORITY</code>
828
- * </p>
829
- * </dd>
830
- * <dt>WINDOWS</dt>
831
- * <dd>
832
- * <p>Valid properties: <code>PRODUCT</code> | <code>PRODUCT_FAMILY</code> |
833
- * <code>CLASSIFICATION</code> | <code>MSRC_SEVERITY</code>
834
- * </p>
835
- * </dd>
836
- * </dl>
491
+ * @see {@link DescribePatchPropertiesCommand}
837
492
  */
838
493
  describePatchProperties(args: DescribePatchPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<DescribePatchPropertiesCommandOutput>;
839
494
  describePatchProperties(args: DescribePatchPropertiesCommandInput, cb: (err: any, data?: DescribePatchPropertiesCommandOutput) => void): void;
840
495
  describePatchProperties(args: DescribePatchPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePatchPropertiesCommandOutput) => void): void;
841
496
  /**
842
- * @public
843
- * <p>Retrieves a list of all active sessions (both connected and disconnected) or terminated
844
- * sessions from the past 30 days.</p>
497
+ * @see {@link DescribeSessionsCommand}
845
498
  */
846
499
  describeSessions(args: DescribeSessionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSessionsCommandOutput>;
847
500
  describeSessions(args: DescribeSessionsCommandInput, cb: (err: any, data?: DescribeSessionsCommandOutput) => void): void;
848
501
  describeSessions(args: DescribeSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSessionsCommandOutput) => void): void;
849
502
  /**
850
- * @public
851
- * <p>Deletes the association between an OpsItem and a related item. For example, this API
852
- * operation can delete an Incident Manager incident from an OpsItem. Incident Manager is a capability of
853
- * Amazon Web Services Systems Manager.</p>
503
+ * @see {@link DisassociateOpsItemRelatedItemCommand}
854
504
  */
855
505
  disassociateOpsItemRelatedItem(args: DisassociateOpsItemRelatedItemCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateOpsItemRelatedItemCommandOutput>;
856
506
  disassociateOpsItemRelatedItem(args: DisassociateOpsItemRelatedItemCommandInput, cb: (err: any, data?: DisassociateOpsItemRelatedItemCommandOutput) => void): void;
857
507
  disassociateOpsItemRelatedItem(args: DisassociateOpsItemRelatedItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateOpsItemRelatedItemCommandOutput) => void): void;
858
508
  /**
859
- * @public
860
- * <p>Get detailed information about a particular Automation execution.</p>
509
+ * @see {@link GetAutomationExecutionCommand}
861
510
  */
862
511
  getAutomationExecution(args: GetAutomationExecutionCommandInput, options?: __HttpHandlerOptions): Promise<GetAutomationExecutionCommandOutput>;
863
512
  getAutomationExecution(args: GetAutomationExecutionCommandInput, cb: (err: any, data?: GetAutomationExecutionCommandOutput) => void): void;
864
513
  getAutomationExecution(args: GetAutomationExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAutomationExecutionCommandOutput) => void): void;
865
514
  /**
866
- * @public
867
- * <p>Gets the state of a Amazon Web Services Systems Manager change calendar at the current time or a specified time. If
868
- * you specify a time, <code>GetCalendarState</code> returns the state of the calendar at that
869
- * specific time, and returns the next time that the change calendar state will transition. If you
870
- * don't specify a time, <code>GetCalendarState</code> uses the current time. Change Calendar
871
- * entries have two possible states: <code>OPEN</code> or <code>CLOSED</code>.</p>
872
- * <p>If you specify more than one calendar in a request, the command returns the status of
873
- * <code>OPEN</code> only if all calendars in the request are open. If one or more calendars in the
874
- * request are closed, the status returned is <code>CLOSED</code>.</p>
875
- * <p>For more information about Change Calendar, a capability of Amazon Web Services Systems Manager, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar.html">Amazon Web Services Systems Manager Change Calendar</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
515
+ * @see {@link GetCalendarStateCommand}
876
516
  */
877
517
  getCalendarState(args: GetCalendarStateCommandInput, options?: __HttpHandlerOptions): Promise<GetCalendarStateCommandOutput>;
878
518
  getCalendarState(args: GetCalendarStateCommandInput, cb: (err: any, data?: GetCalendarStateCommandOutput) => void): void;
879
519
  getCalendarState(args: GetCalendarStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCalendarStateCommandOutput) => void): void;
880
520
  /**
881
- * @public
882
- * <p>Returns detailed information about command execution for an invocation or plugin.</p>
883
- * <p>
884
- * <code>GetCommandInvocation</code> only gives the execution status of a plugin in a document.
885
- * To get the command execution status on a specific managed node, use <a>ListCommandInvocations</a>. To get the command execution status across managed nodes,
886
- * use <a>ListCommands</a>.</p>
521
+ * @see {@link GetCommandInvocationCommand}
887
522
  */
888
523
  getCommandInvocation(args: GetCommandInvocationCommandInput, options?: __HttpHandlerOptions): Promise<GetCommandInvocationCommandOutput>;
889
524
  getCommandInvocation(args: GetCommandInvocationCommandInput, cb: (err: any, data?: GetCommandInvocationCommandOutput) => void): void;
890
525
  getCommandInvocation(args: GetCommandInvocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCommandInvocationCommandOutput) => void): void;
891
526
  /**
892
- * @public
893
- * <p>Retrieves the Session Manager connection status for a managed node to determine whether it is running
894
- * and ready to receive Session Manager connections.</p>
527
+ * @see {@link GetConnectionStatusCommand}
895
528
  */
896
529
  getConnectionStatus(args: GetConnectionStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectionStatusCommandOutput>;
897
530
  getConnectionStatus(args: GetConnectionStatusCommandInput, cb: (err: any, data?: GetConnectionStatusCommandOutput) => void): void;
898
531
  getConnectionStatus(args: GetConnectionStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionStatusCommandOutput) => void): void;
899
532
  /**
900
- * @public
901
- * <p>Retrieves the default patch baseline. Amazon Web Services Systems Manager supports creating multiple default patch
902
- * baselines. For example, you can create a default patch baseline for each operating system.</p>
903
- * <p>If you don't specify an operating system value, the default patch baseline for Windows is
904
- * returned.</p>
533
+ * @see {@link GetDefaultPatchBaselineCommand}
905
534
  */
906
535
  getDefaultPatchBaseline(args: GetDefaultPatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<GetDefaultPatchBaselineCommandOutput>;
907
536
  getDefaultPatchBaseline(args: GetDefaultPatchBaselineCommandInput, cb: (err: any, data?: GetDefaultPatchBaselineCommandOutput) => void): void;
908
537
  getDefaultPatchBaseline(args: GetDefaultPatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDefaultPatchBaselineCommandOutput) => void): void;
909
538
  /**
910
- * @public
911
- * <p>Retrieves the current snapshot for the patch baseline the managed node uses. This API is
912
- * primarily used by the <code>AWS-RunPatchBaseline</code> Systems Manager document (SSM document).</p>
913
- * <note>
914
- * <p>If you run the command locally, such as with the Command Line Interface (CLI), the system attempts to use your local Amazon Web Services credentials and the operation fails. To avoid
915
- * this, you can run the command in the Amazon Web Services Systems Manager console. Use Run Command, a capability of
916
- * Amazon Web Services Systems Manager, with an SSM document that enables you to target a managed node with a script or
917
- * command. For example, run the command using the <code>AWS-RunShellScript</code> document or the
918
- * <code>AWS-RunPowerShellScript</code> document.</p>
919
- * </note>
539
+ * @see {@link GetDeployablePatchSnapshotForInstanceCommand}
920
540
  */
921
541
  getDeployablePatchSnapshotForInstance(args: GetDeployablePatchSnapshotForInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetDeployablePatchSnapshotForInstanceCommandOutput>;
922
542
  getDeployablePatchSnapshotForInstance(args: GetDeployablePatchSnapshotForInstanceCommandInput, cb: (err: any, data?: GetDeployablePatchSnapshotForInstanceCommandOutput) => void): void;
923
543
  getDeployablePatchSnapshotForInstance(args: GetDeployablePatchSnapshotForInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeployablePatchSnapshotForInstanceCommandOutput) => void): void;
924
544
  /**
925
- * @public
926
- * <p>Gets the contents of the specified Amazon Web Services Systems Manager document (SSM document).</p>
545
+ * @see {@link GetDocumentCommand}
927
546
  */
928
547
  getDocument(args: GetDocumentCommandInput, options?: __HttpHandlerOptions): Promise<GetDocumentCommandOutput>;
929
548
  getDocument(args: GetDocumentCommandInput, cb: (err: any, data?: GetDocumentCommandOutput) => void): void;
930
549
  getDocument(args: GetDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentCommandOutput) => void): void;
931
550
  /**
932
- * @public
933
- * <p>Query inventory information. This includes managed node status, such as <code>Stopped</code>
934
- * or <code>Terminated</code>.</p>
551
+ * @see {@link GetInventoryCommand}
935
552
  */
936
553
  getInventory(args: GetInventoryCommandInput, options?: __HttpHandlerOptions): Promise<GetInventoryCommandOutput>;
937
554
  getInventory(args: GetInventoryCommandInput, cb: (err: any, data?: GetInventoryCommandOutput) => void): void;
938
555
  getInventory(args: GetInventoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInventoryCommandOutput) => void): void;
939
556
  /**
940
- * @public
941
- * <p>Return a list of inventory type names for the account, or return a list of attribute names
942
- * for a specific Inventory item type.</p>
557
+ * @see {@link GetInventorySchemaCommand}
943
558
  */
944
559
  getInventorySchema(args: GetInventorySchemaCommandInput, options?: __HttpHandlerOptions): Promise<GetInventorySchemaCommandOutput>;
945
560
  getInventorySchema(args: GetInventorySchemaCommandInput, cb: (err: any, data?: GetInventorySchemaCommandOutput) => void): void;
946
561
  getInventorySchema(args: GetInventorySchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInventorySchemaCommandOutput) => void): void;
947
562
  /**
948
- * @public
949
- * <p>Retrieves a maintenance window.</p>
563
+ * @see {@link GetMaintenanceWindowCommand}
950
564
  */
951
565
  getMaintenanceWindow(args: GetMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<GetMaintenanceWindowCommandOutput>;
952
566
  getMaintenanceWindow(args: GetMaintenanceWindowCommandInput, cb: (err: any, data?: GetMaintenanceWindowCommandOutput) => void): void;
953
567
  getMaintenanceWindow(args: GetMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMaintenanceWindowCommandOutput) => void): void;
954
568
  /**
955
- * @public
956
- * <p>Retrieves details about a specific a maintenance window execution.</p>
569
+ * @see {@link GetMaintenanceWindowExecutionCommand}
957
570
  */
958
571
  getMaintenanceWindowExecution(args: GetMaintenanceWindowExecutionCommandInput, options?: __HttpHandlerOptions): Promise<GetMaintenanceWindowExecutionCommandOutput>;
959
572
  getMaintenanceWindowExecution(args: GetMaintenanceWindowExecutionCommandInput, cb: (err: any, data?: GetMaintenanceWindowExecutionCommandOutput) => void): void;
960
573
  getMaintenanceWindowExecution(args: GetMaintenanceWindowExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMaintenanceWindowExecutionCommandOutput) => void): void;
961
574
  /**
962
- * @public
963
- * <p>Retrieves the details about a specific task run as part of a maintenance window
964
- * execution.</p>
575
+ * @see {@link GetMaintenanceWindowExecutionTaskCommand}
965
576
  */
966
577
  getMaintenanceWindowExecutionTask(args: GetMaintenanceWindowExecutionTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetMaintenanceWindowExecutionTaskCommandOutput>;
967
578
  getMaintenanceWindowExecutionTask(args: GetMaintenanceWindowExecutionTaskCommandInput, cb: (err: any, data?: GetMaintenanceWindowExecutionTaskCommandOutput) => void): void;
968
579
  getMaintenanceWindowExecutionTask(args: GetMaintenanceWindowExecutionTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMaintenanceWindowExecutionTaskCommandOutput) => void): void;
969
580
  /**
970
- * @public
971
- * <p>Retrieves information about a specific task running on a specific target.</p>
581
+ * @see {@link GetMaintenanceWindowExecutionTaskInvocationCommand}
972
582
  */
973
583
  getMaintenanceWindowExecutionTaskInvocation(args: GetMaintenanceWindowExecutionTaskInvocationCommandInput, options?: __HttpHandlerOptions): Promise<GetMaintenanceWindowExecutionTaskInvocationCommandOutput>;
974
584
  getMaintenanceWindowExecutionTaskInvocation(args: GetMaintenanceWindowExecutionTaskInvocationCommandInput, cb: (err: any, data?: GetMaintenanceWindowExecutionTaskInvocationCommandOutput) => void): void;
975
585
  getMaintenanceWindowExecutionTaskInvocation(args: GetMaintenanceWindowExecutionTaskInvocationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMaintenanceWindowExecutionTaskInvocationCommandOutput) => void): void;
976
586
  /**
977
- * @public
978
- * <p>Retrieves the details of a maintenance window task.</p>
979
- * <note>
980
- * <p>For maintenance window tasks without a specified target, you can't supply values for
981
- * <code>--max-errors</code> and <code>--max-concurrency</code>. Instead, the system inserts a
982
- * placeholder value of <code>1</code>, which may be reported in the response to this command.
983
- * These values don't affect the running of your task and can be ignored.</p>
984
- * </note>
985
- * <p>To retrieve a list of tasks in a maintenance window, instead use the <a>DescribeMaintenanceWindowTasks</a> command.</p>
587
+ * @see {@link GetMaintenanceWindowTaskCommand}
986
588
  */
987
589
  getMaintenanceWindowTask(args: GetMaintenanceWindowTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetMaintenanceWindowTaskCommandOutput>;
988
590
  getMaintenanceWindowTask(args: GetMaintenanceWindowTaskCommandInput, cb: (err: any, data?: GetMaintenanceWindowTaskCommandOutput) => void): void;
989
591
  getMaintenanceWindowTask(args: GetMaintenanceWindowTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMaintenanceWindowTaskCommandOutput) => void): void;
990
592
  /**
991
- * @public
992
- * <p>Get information about an OpsItem by using the ID. You must have permission in Identity and Access Management (IAM) to view information about an OpsItem. For more information,
993
- * see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html">Getting started with
994
- * OpsCenter</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
995
- * <p>Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, and
996
- * remediate operational issues impacting the performance and health of their Amazon Web Services resources. For
997
- * more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html">OpsCenter</a> in the
998
- * <i>Amazon Web Services Systems Manager User Guide</i>. </p>
593
+ * @see {@link GetOpsItemCommand}
999
594
  */
1000
595
  getOpsItem(args: GetOpsItemCommandInput, options?: __HttpHandlerOptions): Promise<GetOpsItemCommandOutput>;
1001
596
  getOpsItem(args: GetOpsItemCommandInput, cb: (err: any, data?: GetOpsItemCommandOutput) => void): void;
1002
597
  getOpsItem(args: GetOpsItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOpsItemCommandOutput) => void): void;
1003
598
  /**
1004
- * @public
1005
- * <p>View operational metadata related to an application in Application Manager.</p>
599
+ * @see {@link GetOpsMetadataCommand}
1006
600
  */
1007
601
  getOpsMetadata(args: GetOpsMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetOpsMetadataCommandOutput>;
1008
602
  getOpsMetadata(args: GetOpsMetadataCommandInput, cb: (err: any, data?: GetOpsMetadataCommandOutput) => void): void;
1009
603
  getOpsMetadata(args: GetOpsMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOpsMetadataCommandOutput) => void): void;
1010
604
  /**
1011
- * @public
1012
- * <p>View a summary of operations metadata (OpsData) based on specified filters and aggregators.
1013
- * OpsData can include information about Amazon Web Services Systems Manager OpsCenter operational workitems (OpsItems) as
1014
- * well as information about any Amazon Web Services resource or service configured to report OpsData to Amazon Web Services Systems Manager
1015
- * Explorer. </p>
605
+ * @see {@link GetOpsSummaryCommand}
1016
606
  */
1017
607
  getOpsSummary(args: GetOpsSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetOpsSummaryCommandOutput>;
1018
608
  getOpsSummary(args: GetOpsSummaryCommandInput, cb: (err: any, data?: GetOpsSummaryCommandOutput) => void): void;
1019
609
  getOpsSummary(args: GetOpsSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOpsSummaryCommandOutput) => void): void;
1020
610
  /**
1021
- * @public
1022
- * <p>Get information about a single parameter by specifying the parameter name.</p>
1023
- * <note>
1024
- * <p>To get information about more than one parameter at a time, use the <a>GetParameters</a> operation.</p>
1025
- * </note>
611
+ * @see {@link GetParameterCommand}
1026
612
  */
1027
613
  getParameter(args: GetParameterCommandInput, options?: __HttpHandlerOptions): Promise<GetParameterCommandOutput>;
1028
614
  getParameter(args: GetParameterCommandInput, cb: (err: any, data?: GetParameterCommandOutput) => void): void;
1029
615
  getParameter(args: GetParameterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetParameterCommandOutput) => void): void;
1030
616
  /**
1031
- * @public
1032
- * <p>Retrieves the history of all changes to a parameter.</p>
1033
- * <important>
1034
- * <p>If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must
1035
- * also update the key alias the parameter uses to reference KMS. Otherwise,
1036
- * <code>GetParameterHistory</code> retrieves whatever the original key alias was
1037
- * referencing.</p>
1038
- * </important>
617
+ * @see {@link GetParameterHistoryCommand}
1039
618
  */
1040
619
  getParameterHistory(args: GetParameterHistoryCommandInput, options?: __HttpHandlerOptions): Promise<GetParameterHistoryCommandOutput>;
1041
620
  getParameterHistory(args: GetParameterHistoryCommandInput, cb: (err: any, data?: GetParameterHistoryCommandOutput) => void): void;
1042
621
  getParameterHistory(args: GetParameterHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetParameterHistoryCommandOutput) => void): void;
1043
622
  /**
1044
- * @public
1045
- * <p>Get information about one or more parameters by specifying multiple parameter names.</p>
1046
- * <note>
1047
- * <p>To get information about a single parameter, you can use the <a>GetParameter</a>
1048
- * operation instead.</p>
1049
- * </note>
623
+ * @see {@link GetParametersCommand}
1050
624
  */
1051
625
  getParameters(args: GetParametersCommandInput, options?: __HttpHandlerOptions): Promise<GetParametersCommandOutput>;
1052
626
  getParameters(args: GetParametersCommandInput, cb: (err: any, data?: GetParametersCommandOutput) => void): void;
1053
627
  getParameters(args: GetParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetParametersCommandOutput) => void): void;
1054
628
  /**
1055
- * @public
1056
- * <p>Retrieve information about one or more parameters in a specific hierarchy. </p>
1057
- * <p>Request results are returned on a best-effort basis. If you specify <code>MaxResults</code>
1058
- * in the request, the response includes information up to the limit specified. The number of items
1059
- * returned, however, can be between zero and the value of <code>MaxResults</code>. If the service
1060
- * reaches an internal limit while processing the results, it stops the operation and returns the
1061
- * matching values up to that point and a <code>NextToken</code>. You can specify the
1062
- * <code>NextToken</code> in a subsequent call to get the next set of results.</p>
629
+ * @see {@link GetParametersByPathCommand}
1063
630
  */
1064
631
  getParametersByPath(args: GetParametersByPathCommandInput, options?: __HttpHandlerOptions): Promise<GetParametersByPathCommandOutput>;
1065
632
  getParametersByPath(args: GetParametersByPathCommandInput, cb: (err: any, data?: GetParametersByPathCommandOutput) => void): void;
1066
633
  getParametersByPath(args: GetParametersByPathCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetParametersByPathCommandOutput) => void): void;
1067
634
  /**
1068
- * @public
1069
- * <p>Retrieves information about a patch baseline.</p>
635
+ * @see {@link GetPatchBaselineCommand}
1070
636
  */
1071
637
  getPatchBaseline(args: GetPatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<GetPatchBaselineCommandOutput>;
1072
638
  getPatchBaseline(args: GetPatchBaselineCommandInput, cb: (err: any, data?: GetPatchBaselineCommandOutput) => void): void;
1073
639
  getPatchBaseline(args: GetPatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPatchBaselineCommandOutput) => void): void;
1074
640
  /**
1075
- * @public
1076
- * <p>Retrieves the patch baseline that should be used for the specified patch group.</p>
641
+ * @see {@link GetPatchBaselineForPatchGroupCommand}
1077
642
  */
1078
643
  getPatchBaselineForPatchGroup(args: GetPatchBaselineForPatchGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetPatchBaselineForPatchGroupCommandOutput>;
1079
644
  getPatchBaselineForPatchGroup(args: GetPatchBaselineForPatchGroupCommandInput, cb: (err: any, data?: GetPatchBaselineForPatchGroupCommandOutput) => void): void;
1080
645
  getPatchBaselineForPatchGroup(args: GetPatchBaselineForPatchGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPatchBaselineForPatchGroupCommandOutput) => void): void;
1081
646
  /**
1082
- * @public
1083
- * <p>Returns an array of the <code>Policy</code> object.</p>
647
+ * @see {@link GetResourcePoliciesCommand}
1084
648
  */
1085
649
  getResourcePolicies(args: GetResourcePoliciesCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePoliciesCommandOutput>;
1086
650
  getResourcePolicies(args: GetResourcePoliciesCommandInput, cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void): void;
1087
651
  getResourcePolicies(args: GetResourcePoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void): void;
1088
652
  /**
1089
- * @public
1090
- * <p>
1091
- * <code>ServiceSetting</code> is an account-level setting for an Amazon Web Services service. This setting
1092
- * defines how a user interacts with or uses a service or a feature of a service. For example, if an
1093
- * Amazon Web Services service charges money to the account based on feature or service usage, then the Amazon Web Services
1094
- * service team might create a default setting of <code>false</code>. This means the user can't use
1095
- * this feature unless they change the setting to <code>true</code> and intentionally opt in for a
1096
- * paid feature.</p>
1097
- * <p>Services map a <code>SettingId</code> object to a setting value. Amazon Web Services services teams define
1098
- * the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,
1099
- * but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>
1100
- * permission for the setting. Use the <a>UpdateServiceSetting</a> API operation to
1101
- * change the default setting. Or use the <a>ResetServiceSetting</a> to change the value
1102
- * back to the original value defined by the Amazon Web Services service team.</p>
1103
- * <p>Query the current service setting for the Amazon Web Services account. </p>
653
+ * @see {@link GetServiceSettingCommand}
1104
654
  */
1105
655
  getServiceSetting(args: GetServiceSettingCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceSettingCommandOutput>;
1106
656
  getServiceSetting(args: GetServiceSettingCommandInput, cb: (err: any, data?: GetServiceSettingCommandOutput) => void): void;
1107
657
  getServiceSetting(args: GetServiceSettingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceSettingCommandOutput) => void): void;
1108
658
  /**
1109
- * @public
1110
- * <p>A parameter label is a user-defined alias to help you manage different versions of a
1111
- * parameter. When you modify a parameter, Amazon Web Services Systems Manager automatically saves a new version and
1112
- * increments the version number by one. A label can help you remember the purpose of a parameter
1113
- * when there are multiple versions. </p>
1114
- * <p>Parameter labels have the following requirements and restrictions.</p>
1115
- * <ul>
1116
- * <li>
1117
- * <p>A version of a parameter can have a maximum of 10 labels.</p>
1118
- * </li>
1119
- * <li>
1120
- * <p>You can't attach the same label to different versions of the same parameter. For example,
1121
- * if version 1 has the label Production, then you can't attach Production to version 2.</p>
1122
- * </li>
1123
- * <li>
1124
- * <p>You can move a label from one version of a parameter to another.</p>
1125
- * </li>
1126
- * <li>
1127
- * <p>You can't create a label when you create a new parameter. You must attach a label to a
1128
- * specific version of a parameter.</p>
1129
- * </li>
1130
- * <li>
1131
- * <p>If you no longer want to use a parameter label, then you can either delete it or move it
1132
- * to a different version of a parameter.</p>
1133
- * </li>
1134
- * <li>
1135
- * <p>A label can have a maximum of 100 characters.</p>
1136
- * </li>
1137
- * <li>
1138
- * <p>Labels can contain letters (case sensitive), numbers, periods (.), hyphens (-), or
1139
- * underscores (_).</p>
1140
- * </li>
1141
- * <li>
1142
- * <p>Labels can't begin with a number, "<code>aws</code>" or "<code>ssm</code>" (not case
1143
- * sensitive). If a label fails to meet these requirements, then the label isn't associated with a
1144
- * parameter and the system displays it in the list of InvalidLabels.</p>
1145
- * </li>
1146
- * </ul>
659
+ * @see {@link LabelParameterVersionCommand}
1147
660
  */
1148
661
  labelParameterVersion(args: LabelParameterVersionCommandInput, options?: __HttpHandlerOptions): Promise<LabelParameterVersionCommandOutput>;
1149
662
  labelParameterVersion(args: LabelParameterVersionCommandInput, cb: (err: any, data?: LabelParameterVersionCommandOutput) => void): void;
1150
663
  labelParameterVersion(args: LabelParameterVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: LabelParameterVersionCommandOutput) => void): void;
1151
664
  /**
1152
- * @public
1153
- * <p>Returns all State Manager associations in the current Amazon Web Services account and Amazon Web Services Region. You
1154
- * can limit the results to a specific State Manager association document or managed node by
1155
- * specifying a filter. State Manager is a capability of Amazon Web Services Systems Manager.</p>
665
+ * @see {@link ListAssociationsCommand}
1156
666
  */
1157
667
  listAssociations(args: ListAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociationsCommandOutput>;
1158
668
  listAssociations(args: ListAssociationsCommandInput, cb: (err: any, data?: ListAssociationsCommandOutput) => void): void;
1159
669
  listAssociations(args: ListAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociationsCommandOutput) => void): void;
1160
670
  /**
1161
- * @public
1162
- * <p>Retrieves all versions of an association for a specific association ID.</p>
671
+ * @see {@link ListAssociationVersionsCommand}
1163
672
  */
1164
673
  listAssociationVersions(args: ListAssociationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociationVersionsCommandOutput>;
1165
674
  listAssociationVersions(args: ListAssociationVersionsCommandInput, cb: (err: any, data?: ListAssociationVersionsCommandOutput) => void): void;
1166
675
  listAssociationVersions(args: ListAssociationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociationVersionsCommandOutput) => void): void;
1167
676
  /**
1168
- * @public
1169
- * <p>An invocation is copy of a command sent to a specific managed node. A command can apply to
1170
- * one or more managed nodes. A command invocation applies to one managed node. For example, if a
1171
- * user runs <code>SendCommand</code> against three managed nodes, then a command invocation is
1172
- * created for each requested managed node ID. <code>ListCommandInvocations</code> provide status
1173
- * about command execution.</p>
677
+ * @see {@link ListCommandInvocationsCommand}
1174
678
  */
1175
679
  listCommandInvocations(args: ListCommandInvocationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCommandInvocationsCommandOutput>;
1176
680
  listCommandInvocations(args: ListCommandInvocationsCommandInput, cb: (err: any, data?: ListCommandInvocationsCommandOutput) => void): void;
1177
681
  listCommandInvocations(args: ListCommandInvocationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCommandInvocationsCommandOutput) => void): void;
1178
682
  /**
1179
- * @public
1180
- * <p>Lists the commands requested by users of the Amazon Web Services account.</p>
683
+ * @see {@link ListCommandsCommand}
1181
684
  */
1182
685
  listCommands(args: ListCommandsCommandInput, options?: __HttpHandlerOptions): Promise<ListCommandsCommandOutput>;
1183
686
  listCommands(args: ListCommandsCommandInput, cb: (err: any, data?: ListCommandsCommandOutput) => void): void;
1184
687
  listCommands(args: ListCommandsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCommandsCommandOutput) => void): void;
1185
688
  /**
1186
- * @public
1187
- * <p>For a specified resource ID, this API operation returns a list of compliance statuses for
1188
- * different resource types. Currently, you can only specify one resource ID per call. List results
1189
- * depend on the criteria specified in the filter.</p>
689
+ * @see {@link ListComplianceItemsCommand}
1190
690
  */
1191
691
  listComplianceItems(args: ListComplianceItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListComplianceItemsCommandOutput>;
1192
692
  listComplianceItems(args: ListComplianceItemsCommandInput, cb: (err: any, data?: ListComplianceItemsCommandOutput) => void): void;
1193
693
  listComplianceItems(args: ListComplianceItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComplianceItemsCommandOutput) => void): void;
1194
694
  /**
1195
- * @public
1196
- * <p>Returns a summary count of compliant and non-compliant resources for a compliance type. For
1197
- * example, this call can return State Manager associations, patches, or custom compliance types
1198
- * according to the filter criteria that you specify.</p>
695
+ * @see {@link ListComplianceSummariesCommand}
1199
696
  */
1200
697
  listComplianceSummaries(args: ListComplianceSummariesCommandInput, options?: __HttpHandlerOptions): Promise<ListComplianceSummariesCommandOutput>;
1201
698
  listComplianceSummaries(args: ListComplianceSummariesCommandInput, cb: (err: any, data?: ListComplianceSummariesCommandOutput) => void): void;
1202
699
  listComplianceSummaries(args: ListComplianceSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComplianceSummariesCommandOutput) => void): void;
1203
700
  /**
1204
- * @public
1205
- * <p>Information about approval reviews for a version of a change template in Change Manager.</p>
701
+ * @see {@link ListDocumentMetadataHistoryCommand}
1206
702
  */
1207
703
  listDocumentMetadataHistory(args: ListDocumentMetadataHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListDocumentMetadataHistoryCommandOutput>;
1208
704
  listDocumentMetadataHistory(args: ListDocumentMetadataHistoryCommandInput, cb: (err: any, data?: ListDocumentMetadataHistoryCommandOutput) => void): void;
1209
705
  listDocumentMetadataHistory(args: ListDocumentMetadataHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDocumentMetadataHistoryCommandOutput) => void): void;
1210
706
  /**
1211
- * @public
1212
- * <p>Returns all Systems Manager (SSM) documents in the current Amazon Web Services account and Amazon Web Services Region. You can
1213
- * limit the results of this request by using a filter.</p>
707
+ * @see {@link ListDocumentsCommand}
1214
708
  */
1215
709
  listDocuments(args: ListDocumentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDocumentsCommandOutput>;
1216
710
  listDocuments(args: ListDocumentsCommandInput, cb: (err: any, data?: ListDocumentsCommandOutput) => void): void;
1217
711
  listDocuments(args: ListDocumentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDocumentsCommandOutput) => void): void;
1218
712
  /**
1219
- * @public
1220
- * <p>List all versions for a document.</p>
713
+ * @see {@link ListDocumentVersionsCommand}
1221
714
  */
1222
715
  listDocumentVersions(args: ListDocumentVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDocumentVersionsCommandOutput>;
1223
716
  listDocumentVersions(args: ListDocumentVersionsCommandInput, cb: (err: any, data?: ListDocumentVersionsCommandOutput) => void): void;
1224
717
  listDocumentVersions(args: ListDocumentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDocumentVersionsCommandOutput) => void): void;
1225
718
  /**
1226
- * @public
1227
- * <p>A list of inventory items returned by the request.</p>
719
+ * @see {@link ListInventoryEntriesCommand}
1228
720
  */
1229
721
  listInventoryEntries(args: ListInventoryEntriesCommandInput, options?: __HttpHandlerOptions): Promise<ListInventoryEntriesCommandOutput>;
1230
722
  listInventoryEntries(args: ListInventoryEntriesCommandInput, cb: (err: any, data?: ListInventoryEntriesCommandOutput) => void): void;
1231
723
  listInventoryEntries(args: ListInventoryEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInventoryEntriesCommandOutput) => void): void;
1232
724
  /**
1233
- * @public
1234
- * <p>Returns a list of all OpsItem events in the current Amazon Web Services Region and Amazon Web Services account. You can
1235
- * limit the results to events associated with specific OpsItems by specifying a filter.</p>
725
+ * @see {@link ListOpsItemEventsCommand}
1236
726
  */
1237
727
  listOpsItemEvents(args: ListOpsItemEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListOpsItemEventsCommandOutput>;
1238
728
  listOpsItemEvents(args: ListOpsItemEventsCommandInput, cb: (err: any, data?: ListOpsItemEventsCommandOutput) => void): void;
1239
729
  listOpsItemEvents(args: ListOpsItemEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpsItemEventsCommandOutput) => void): void;
1240
730
  /**
1241
- * @public
1242
- * <p>Lists all related-item resources associated with a Systems Manager OpsCenter OpsItem. OpsCenter is a
1243
- * capability of Amazon Web Services Systems Manager.</p>
731
+ * @see {@link ListOpsItemRelatedItemsCommand}
1244
732
  */
1245
733
  listOpsItemRelatedItems(args: ListOpsItemRelatedItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListOpsItemRelatedItemsCommandOutput>;
1246
734
  listOpsItemRelatedItems(args: ListOpsItemRelatedItemsCommandInput, cb: (err: any, data?: ListOpsItemRelatedItemsCommandOutput) => void): void;
1247
735
  listOpsItemRelatedItems(args: ListOpsItemRelatedItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpsItemRelatedItemsCommandOutput) => void): void;
1248
736
  /**
1249
- * @public
1250
- * <p>Amazon Web Services Systems Manager calls this API operation when displaying all Application Manager OpsMetadata objects or
1251
- * blobs.</p>
737
+ * @see {@link ListOpsMetadataCommand}
1252
738
  */
1253
739
  listOpsMetadata(args: ListOpsMetadataCommandInput, options?: __HttpHandlerOptions): Promise<ListOpsMetadataCommandOutput>;
1254
740
  listOpsMetadata(args: ListOpsMetadataCommandInput, cb: (err: any, data?: ListOpsMetadataCommandOutput) => void): void;
1255
741
  listOpsMetadata(args: ListOpsMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpsMetadataCommandOutput) => void): void;
1256
742
  /**
1257
- * @public
1258
- * <p>Returns a resource-level summary count. The summary includes information about compliant and
1259
- * non-compliant statuses and detailed compliance-item severity counts, according to the filter
1260
- * criteria you specify.</p>
743
+ * @see {@link ListResourceComplianceSummariesCommand}
1261
744
  */
1262
745
  listResourceComplianceSummaries(args: ListResourceComplianceSummariesCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceComplianceSummariesCommandOutput>;
1263
746
  listResourceComplianceSummaries(args: ListResourceComplianceSummariesCommandInput, cb: (err: any, data?: ListResourceComplianceSummariesCommandOutput) => void): void;
1264
747
  listResourceComplianceSummaries(args: ListResourceComplianceSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceComplianceSummariesCommandOutput) => void): void;
1265
748
  /**
1266
- * @public
1267
- * <p>Lists your resource data sync configurations. Includes information about the last time a
1268
- * sync attempted to start, the last sync status, and the last time a sync successfully
1269
- * completed.</p>
1270
- * <p>The number of sync configurations might be too large to return using a single call to
1271
- * <code>ListResourceDataSync</code>. You can limit the number of sync configurations returned by
1272
- * using the <code>MaxResults</code> parameter. To determine whether there are more sync
1273
- * configurations to list, check the value of <code>NextToken</code> in the output. If there are
1274
- * more sync configurations to list, you can request them by specifying the <code>NextToken</code>
1275
- * returned in the call to the parameter of a subsequent call. </p>
749
+ * @see {@link ListResourceDataSyncCommand}
1276
750
  */
1277
751
  listResourceDataSync(args: ListResourceDataSyncCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceDataSyncCommandOutput>;
1278
752
  listResourceDataSync(args: ListResourceDataSyncCommandInput, cb: (err: any, data?: ListResourceDataSyncCommandOutput) => void): void;
1279
753
  listResourceDataSync(args: ListResourceDataSyncCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceDataSyncCommandOutput) => void): void;
1280
754
  /**
1281
- * @public
1282
- * <p>Returns a list of the tags assigned to the specified resource.</p>
1283
- * <p>For information about the ID format for each supported resource type, see <a>AddTagsToResource</a>.</p>
755
+ * @see {@link ListTagsForResourceCommand}
1284
756
  */
1285
757
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
1286
758
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
1287
759
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
1288
760
  /**
1289
- * @public
1290
- * <p>Shares a Amazon Web Services Systems Manager document (SSM document)publicly or privately. If you share a document
1291
- * privately, you must specify the Amazon Web Services user IDs for those people who can use the document. If
1292
- * you share a document publicly, you must specify <i>All</i> as the account
1293
- * ID.</p>
761
+ * @see {@link ModifyDocumentPermissionCommand}
1294
762
  */
1295
763
  modifyDocumentPermission(args: ModifyDocumentPermissionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyDocumentPermissionCommandOutput>;
1296
764
  modifyDocumentPermission(args: ModifyDocumentPermissionCommandInput, cb: (err: any, data?: ModifyDocumentPermissionCommandOutput) => void): void;
1297
765
  modifyDocumentPermission(args: ModifyDocumentPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyDocumentPermissionCommandOutput) => void): void;
1298
766
  /**
1299
- * @public
1300
- * <p>Registers a compliance type and other compliance details on a designated resource. This
1301
- * operation lets you register custom compliance details with a resource. This call overwrites
1302
- * existing compliance information on the resource, so you must provide a full list of compliance
1303
- * items each time that you send the request.</p>
1304
- * <p>ComplianceType can be one of the following:</p>
1305
- * <ul>
1306
- * <li>
1307
- * <p>ExecutionId: The execution ID when the patch, association, or custom compliance item was
1308
- * applied.</p>
1309
- * </li>
1310
- * <li>
1311
- * <p>ExecutionType: Specify patch, association, or Custom:<code>string</code>.</p>
1312
- * </li>
1313
- * <li>
1314
- * <p>ExecutionTime. The time the patch, association, or custom compliance item was applied to
1315
- * the managed node.</p>
1316
- * </li>
1317
- * <li>
1318
- * <p>Id: The patch, association, or custom compliance ID.</p>
1319
- * </li>
1320
- * <li>
1321
- * <p>Title: A title.</p>
1322
- * </li>
1323
- * <li>
1324
- * <p>Status: The status of the compliance item. For example, <code>approved</code> for patches,
1325
- * or <code>Failed</code> for associations.</p>
1326
- * </li>
1327
- * <li>
1328
- * <p>Severity: A patch severity. For example, <code>Critical</code>.</p>
1329
- * </li>
1330
- * <li>
1331
- * <p>DocumentName: An SSM document name. For example, <code>AWS-RunPatchBaseline</code>.</p>
1332
- * </li>
1333
- * <li>
1334
- * <p>DocumentVersion: An SSM document version number. For example, 4.</p>
1335
- * </li>
1336
- * <li>
1337
- * <p>Classification: A patch classification. For example, <code>security updates</code>.</p>
1338
- * </li>
1339
- * <li>
1340
- * <p>PatchBaselineId: A patch baseline ID.</p>
1341
- * </li>
1342
- * <li>
1343
- * <p>PatchSeverity: A patch severity. For example, <code>Critical</code>.</p>
1344
- * </li>
1345
- * <li>
1346
- * <p>PatchState: A patch state. For example, <code>InstancesWithFailedPatches</code>.</p>
1347
- * </li>
1348
- * <li>
1349
- * <p>PatchGroup: The name of a patch group.</p>
1350
- * </li>
1351
- * <li>
1352
- * <p>InstalledTime: The time the association, patch, or custom compliance item was applied to
1353
- * the resource. Specify the time by using the following format: yyyy-MM-dd'T'HH:mm:ss'Z'</p>
1354
- * </li>
1355
- * </ul>
767
+ * @see {@link PutComplianceItemsCommand}
1356
768
  */
1357
769
  putComplianceItems(args: PutComplianceItemsCommandInput, options?: __HttpHandlerOptions): Promise<PutComplianceItemsCommandOutput>;
1358
770
  putComplianceItems(args: PutComplianceItemsCommandInput, cb: (err: any, data?: PutComplianceItemsCommandOutput) => void): void;
1359
771
  putComplianceItems(args: PutComplianceItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutComplianceItemsCommandOutput) => void): void;
1360
772
  /**
1361
- * @public
1362
- * <p>Bulk update custom inventory items on one or more managed nodes. The request adds an
1363
- * inventory item, if it doesn't already exist, or updates an inventory item, if it does
1364
- * exist.</p>
773
+ * @see {@link PutInventoryCommand}
1365
774
  */
1366
775
  putInventory(args: PutInventoryCommandInput, options?: __HttpHandlerOptions): Promise<PutInventoryCommandOutput>;
1367
776
  putInventory(args: PutInventoryCommandInput, cb: (err: any, data?: PutInventoryCommandOutput) => void): void;
1368
777
  putInventory(args: PutInventoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutInventoryCommandOutput) => void): void;
1369
778
  /**
1370
- * @public
1371
- * <p>Add a parameter to the system.</p>
779
+ * @see {@link PutParameterCommand}
1372
780
  */
1373
781
  putParameter(args: PutParameterCommandInput, options?: __HttpHandlerOptions): Promise<PutParameterCommandOutput>;
1374
782
  putParameter(args: PutParameterCommandInput, cb: (err: any, data?: PutParameterCommandOutput) => void): void;
1375
783
  putParameter(args: PutParameterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutParameterCommandOutput) => void): void;
1376
784
  /**
1377
- * @public
1378
- * <p>Creates or updates a Systems Manager resource policy. A resource policy helps you to define the
1379
- * IAM entity (for example, an Amazon Web Services account) that can manage your Systems Manager resources.
1380
- * Currently, <code>OpsItemGroup</code> is the only resource that supports Systems Manager resource policies.
1381
- * The resource policy for <code>OpsItemGroup</code> enables Amazon Web Services accounts to view and interact
1382
- * with OpsCenter operational work items (OpsItems).</p>
785
+ * @see {@link PutResourcePolicyCommand}
1383
786
  */
1384
787
  putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
1385
788
  putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
1386
789
  putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
1387
790
  /**
1388
- * @public
1389
- * <p>Defines the default patch baseline for the relevant operating system.</p>
1390
- * <p>To reset the Amazon Web Services-predefined patch baseline as the default, specify the full patch baseline
1391
- * Amazon Resource Name (ARN) as the baseline ID value. For example, for CentOS, specify
1392
- * <code>arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0574b43a65ea646ed</code> instead of
1393
- * <code>pb-0574b43a65ea646ed</code>.</p>
791
+ * @see {@link RegisterDefaultPatchBaselineCommand}
1394
792
  */
1395
793
  registerDefaultPatchBaseline(args: RegisterDefaultPatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<RegisterDefaultPatchBaselineCommandOutput>;
1396
794
  registerDefaultPatchBaseline(args: RegisterDefaultPatchBaselineCommandInput, cb: (err: any, data?: RegisterDefaultPatchBaselineCommandOutput) => void): void;
1397
795
  registerDefaultPatchBaseline(args: RegisterDefaultPatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterDefaultPatchBaselineCommandOutput) => void): void;
1398
796
  /**
1399
- * @public
1400
- * <p>Registers a patch baseline for a patch group.</p>
797
+ * @see {@link RegisterPatchBaselineForPatchGroupCommand}
1401
798
  */
1402
799
  registerPatchBaselineForPatchGroup(args: RegisterPatchBaselineForPatchGroupCommandInput, options?: __HttpHandlerOptions): Promise<RegisterPatchBaselineForPatchGroupCommandOutput>;
1403
800
  registerPatchBaselineForPatchGroup(args: RegisterPatchBaselineForPatchGroupCommandInput, cb: (err: any, data?: RegisterPatchBaselineForPatchGroupCommandOutput) => void): void;
1404
801
  registerPatchBaselineForPatchGroup(args: RegisterPatchBaselineForPatchGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterPatchBaselineForPatchGroupCommandOutput) => void): void;
1405
802
  /**
1406
- * @public
1407
- * <p>Registers a target with a maintenance window.</p>
803
+ * @see {@link RegisterTargetWithMaintenanceWindowCommand}
1408
804
  */
1409
805
  registerTargetWithMaintenanceWindow(args: RegisterTargetWithMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<RegisterTargetWithMaintenanceWindowCommandOutput>;
1410
806
  registerTargetWithMaintenanceWindow(args: RegisterTargetWithMaintenanceWindowCommandInput, cb: (err: any, data?: RegisterTargetWithMaintenanceWindowCommandOutput) => void): void;
1411
807
  registerTargetWithMaintenanceWindow(args: RegisterTargetWithMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTargetWithMaintenanceWindowCommandOutput) => void): void;
1412
808
  /**
1413
- * @public
1414
- * <p>Adds a new task to a maintenance window.</p>
809
+ * @see {@link RegisterTaskWithMaintenanceWindowCommand}
1415
810
  */
1416
811
  registerTaskWithMaintenanceWindow(args: RegisterTaskWithMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<RegisterTaskWithMaintenanceWindowCommandOutput>;
1417
812
  registerTaskWithMaintenanceWindow(args: RegisterTaskWithMaintenanceWindowCommandInput, cb: (err: any, data?: RegisterTaskWithMaintenanceWindowCommandOutput) => void): void;
1418
813
  registerTaskWithMaintenanceWindow(args: RegisterTaskWithMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTaskWithMaintenanceWindowCommandOutput) => void): void;
1419
814
  /**
1420
- * @public
1421
- * <p>Removes tag keys from the specified resource.</p>
815
+ * @see {@link RemoveTagsFromResourceCommand}
1422
816
  */
1423
817
  removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsFromResourceCommandOutput>;
1424
818
  removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
1425
819
  removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
1426
820
  /**
1427
- * @public
1428
- * <p>
1429
- * <code>ServiceSetting</code> is an account-level setting for an Amazon Web Services service. This setting
1430
- * defines how a user interacts with or uses a service or a feature of a service. For example, if an
1431
- * Amazon Web Services service charges money to the account based on feature or service usage, then the Amazon Web Services
1432
- * service team might create a default setting of "false". This means the user can't use this
1433
- * feature unless they change the setting to "true" and intentionally opt in for a paid
1434
- * feature.</p>
1435
- * <p>Services map a <code>SettingId</code> object to a setting value. Amazon Web Services services teams define
1436
- * the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,
1437
- * but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>
1438
- * permission for the setting. Use the <a>GetServiceSetting</a> API operation to view the
1439
- * current value. Use the <a>UpdateServiceSetting</a> API operation to change the default
1440
- * setting. </p>
1441
- * <p>Reset the service setting for the account to the default value as provisioned by the Amazon Web Services
1442
- * service team. </p>
821
+ * @see {@link ResetServiceSettingCommand}
1443
822
  */
1444
823
  resetServiceSetting(args: ResetServiceSettingCommandInput, options?: __HttpHandlerOptions): Promise<ResetServiceSettingCommandOutput>;
1445
824
  resetServiceSetting(args: ResetServiceSettingCommandInput, cb: (err: any, data?: ResetServiceSettingCommandOutput) => void): void;
1446
825
  resetServiceSetting(args: ResetServiceSettingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetServiceSettingCommandOutput) => void): void;
1447
826
  /**
1448
- * @public
1449
- * <p>Reconnects a session to a managed node after it has been disconnected. Connections can be
1450
- * resumed for disconnected sessions, but not terminated sessions.</p>
1451
- * <note>
1452
- * <p>This command is primarily for use by client machines to automatically reconnect during
1453
- * intermittent network issues. It isn't intended for any other use.</p>
1454
- * </note>
827
+ * @see {@link ResumeSessionCommand}
1455
828
  */
1456
829
  resumeSession(args: ResumeSessionCommandInput, options?: __HttpHandlerOptions): Promise<ResumeSessionCommandOutput>;
1457
830
  resumeSession(args: ResumeSessionCommandInput, cb: (err: any, data?: ResumeSessionCommandOutput) => void): void;
1458
831
  resumeSession(args: ResumeSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeSessionCommandOutput) => void): void;
1459
832
  /**
1460
- * @public
1461
- * <p>Sends a signal to an Automation execution to change the current behavior or status of the
1462
- * execution. </p>
833
+ * @see {@link SendAutomationSignalCommand}
1463
834
  */
1464
835
  sendAutomationSignal(args: SendAutomationSignalCommandInput, options?: __HttpHandlerOptions): Promise<SendAutomationSignalCommandOutput>;
1465
836
  sendAutomationSignal(args: SendAutomationSignalCommandInput, cb: (err: any, data?: SendAutomationSignalCommandOutput) => void): void;
1466
837
  sendAutomationSignal(args: SendAutomationSignalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendAutomationSignalCommandOutput) => void): void;
1467
838
  /**
1468
- * @public
1469
- * <p>Runs commands on one or more managed nodes.</p>
839
+ * @see {@link SendCommandCommand}
1470
840
  */
1471
841
  sendCommand(args: SendCommandCommandInput, options?: __HttpHandlerOptions): Promise<SendCommandCommandOutput>;
1472
842
  sendCommand(args: SendCommandCommandInput, cb: (err: any, data?: SendCommandCommandOutput) => void): void;
1473
843
  sendCommand(args: SendCommandCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendCommandCommandOutput) => void): void;
1474
844
  /**
1475
- * @public
1476
- * <p>Runs an association immediately and only one time. This operation can be helpful when
1477
- * troubleshooting associations.</p>
845
+ * @see {@link StartAssociationsOnceCommand}
1478
846
  */
1479
847
  startAssociationsOnce(args: StartAssociationsOnceCommandInput, options?: __HttpHandlerOptions): Promise<StartAssociationsOnceCommandOutput>;
1480
848
  startAssociationsOnce(args: StartAssociationsOnceCommandInput, cb: (err: any, data?: StartAssociationsOnceCommandOutput) => void): void;
1481
849
  startAssociationsOnce(args: StartAssociationsOnceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAssociationsOnceCommandOutput) => void): void;
1482
850
  /**
1483
- * @public
1484
- * <p>Initiates execution of an Automation runbook.</p>
851
+ * @see {@link StartAutomationExecutionCommand}
1485
852
  */
1486
853
  startAutomationExecution(args: StartAutomationExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartAutomationExecutionCommandOutput>;
1487
854
  startAutomationExecution(args: StartAutomationExecutionCommandInput, cb: (err: any, data?: StartAutomationExecutionCommandOutput) => void): void;
1488
855
  startAutomationExecution(args: StartAutomationExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAutomationExecutionCommandOutput) => void): void;
1489
856
  /**
1490
- * @public
1491
- * <p>Creates a change request for Change Manager. The Automation runbooks specified in the
1492
- * change request run only after all required approvals for the change request have been
1493
- * received.</p>
857
+ * @see {@link StartChangeRequestExecutionCommand}
1494
858
  */
1495
859
  startChangeRequestExecution(args: StartChangeRequestExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartChangeRequestExecutionCommandOutput>;
1496
860
  startChangeRequestExecution(args: StartChangeRequestExecutionCommandInput, cb: (err: any, data?: StartChangeRequestExecutionCommandOutput) => void): void;
1497
861
  startChangeRequestExecution(args: StartChangeRequestExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartChangeRequestExecutionCommandOutput) => void): void;
1498
862
  /**
1499
- * @public
1500
- * <p>Initiates a connection to a target (for example, a managed node) for a Session Manager session.
1501
- * Returns a URL and token that can be used to open a WebSocket connection for sending input and
1502
- * receiving outputs.</p>
1503
- * <note>
1504
- * <p>Amazon Web Services CLI usage: <code>start-session</code> is an interactive command that requires the Session Manager
1505
- * plugin to be installed on the client machine making the call. For information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-install-plugin.html">Install
1506
- * the Session Manager plugin for the Amazon Web Services CLI</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1507
- * <p>Amazon Web Services Tools for PowerShell usage: Start-SSMSession isn't currently supported by Amazon Web Services Tools
1508
- * for PowerShell on Windows local machines.</p>
1509
- * </note>
863
+ * @see {@link StartSessionCommand}
1510
864
  */
1511
865
  startSession(args: StartSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartSessionCommandOutput>;
1512
866
  startSession(args: StartSessionCommandInput, cb: (err: any, data?: StartSessionCommandOutput) => void): void;
1513
867
  startSession(args: StartSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSessionCommandOutput) => void): void;
1514
868
  /**
1515
- * @public
1516
- * <p>Stop an Automation that is currently running.</p>
869
+ * @see {@link StopAutomationExecutionCommand}
1517
870
  */
1518
871
  stopAutomationExecution(args: StopAutomationExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StopAutomationExecutionCommandOutput>;
1519
872
  stopAutomationExecution(args: StopAutomationExecutionCommandInput, cb: (err: any, data?: StopAutomationExecutionCommandOutput) => void): void;
1520
873
  stopAutomationExecution(args: StopAutomationExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopAutomationExecutionCommandOutput) => void): void;
1521
874
  /**
1522
- * @public
1523
- * <p>Permanently ends a session and closes the data connection between the Session Manager client and
1524
- * SSM Agent on the managed node. A terminated session can't be resumed.</p>
875
+ * @see {@link TerminateSessionCommand}
1525
876
  */
1526
877
  terminateSession(args: TerminateSessionCommandInput, options?: __HttpHandlerOptions): Promise<TerminateSessionCommandOutput>;
1527
878
  terminateSession(args: TerminateSessionCommandInput, cb: (err: any, data?: TerminateSessionCommandOutput) => void): void;
1528
879
  terminateSession(args: TerminateSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateSessionCommandOutput) => void): void;
1529
880
  /**
1530
- * @public
1531
- * <p>Remove a label or labels from a parameter.</p>
881
+ * @see {@link UnlabelParameterVersionCommand}
1532
882
  */
1533
883
  unlabelParameterVersion(args: UnlabelParameterVersionCommandInput, options?: __HttpHandlerOptions): Promise<UnlabelParameterVersionCommandOutput>;
1534
884
  unlabelParameterVersion(args: UnlabelParameterVersionCommandInput, cb: (err: any, data?: UnlabelParameterVersionCommandOutput) => void): void;
1535
885
  unlabelParameterVersion(args: UnlabelParameterVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnlabelParameterVersionCommandOutput) => void): void;
1536
886
  /**
1537
- * @public
1538
- * <p>Updates an association. You can update the association name and version, the document
1539
- * version, schedule, parameters, and Amazon Simple Storage Service (Amazon S3) output. When you
1540
- * call <code>UpdateAssociation</code>, the system removes all optional parameters from the request
1541
- * and overwrites the association with null values for those parameters. This is by design. You must
1542
- * specify all optional parameters in the call, even if you are not changing the parameters. This
1543
- * includes the <code>Name</code> parameter. Before calling this API action, we recommend that you
1544
- * call the <a>DescribeAssociation</a> API operation and make a note of all optional
1545
- * parameters required for your <code>UpdateAssociation</code> call.</p>
1546
- * <p>In order to call this API operation, a user, group, or role must be granted permission to
1547
- * call the <a>DescribeAssociation</a> API operation. If you don't have permission to
1548
- * call <code>DescribeAssociation</code>, then you receive the following error: <code>An error
1549
- * occurred (AccessDeniedException) when calling the UpdateAssociation operation: User:
1550
- * <user_arn> isn't authorized to perform: ssm:DescribeAssociation on resource:
1551
- * <resource_arn></code>
1552
- * </p>
1553
- * <important>
1554
- * <p>When you update an association, the association immediately runs against the specified
1555
- * targets. You can add the <code>ApplyOnlyAtCronInterval</code> parameter to run the association
1556
- * during the next schedule run.</p>
1557
- * </important>
887
+ * @see {@link UpdateAssociationCommand}
1558
888
  */
1559
889
  updateAssociation(args: UpdateAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssociationCommandOutput>;
1560
890
  updateAssociation(args: UpdateAssociationCommandInput, cb: (err: any, data?: UpdateAssociationCommandOutput) => void): void;
1561
891
  updateAssociation(args: UpdateAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssociationCommandOutput) => void): void;
1562
892
  /**
1563
- * @public
1564
- * <p>Updates the status of the Amazon Web Services Systems Manager document (SSM document) associated with the specified
1565
- * managed node.</p>
1566
- * <p>
1567
- * <code>UpdateAssociationStatus</code> is primarily used by the Amazon Web Services Systems Manager Agent (SSM Agent) to
1568
- * report status updates about your associations and is only used for associations created with the
1569
- * <code>InstanceId</code> legacy parameter.</p>
893
+ * @see {@link UpdateAssociationStatusCommand}
1570
894
  */
1571
895
  updateAssociationStatus(args: UpdateAssociationStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssociationStatusCommandOutput>;
1572
896
  updateAssociationStatus(args: UpdateAssociationStatusCommandInput, cb: (err: any, data?: UpdateAssociationStatusCommandOutput) => void): void;
1573
897
  updateAssociationStatus(args: UpdateAssociationStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssociationStatusCommandOutput) => void): void;
1574
898
  /**
1575
- * @public
1576
- * <p>Updates one or more values for an SSM document.</p>
899
+ * @see {@link UpdateDocumentCommand}
1577
900
  */
1578
901
  updateDocument(args: UpdateDocumentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDocumentCommandOutput>;
1579
902
  updateDocument(args: UpdateDocumentCommandInput, cb: (err: any, data?: UpdateDocumentCommandOutput) => void): void;
1580
903
  updateDocument(args: UpdateDocumentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentCommandOutput) => void): void;
1581
904
  /**
1582
- * @public
1583
- * <p>Set the default version of a document. </p>
1584
- * <note>
1585
- * <p>If you change a document version for a State Manager association, Systems Manager immediately runs
1586
- * the association unless you previously specifed the <code>apply-only-at-cron-interval</code>
1587
- * parameter.</p>
1588
- * </note>
905
+ * @see {@link UpdateDocumentDefaultVersionCommand}
1589
906
  */
1590
907
  updateDocumentDefaultVersion(args: UpdateDocumentDefaultVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDocumentDefaultVersionCommandOutput>;
1591
908
  updateDocumentDefaultVersion(args: UpdateDocumentDefaultVersionCommandInput, cb: (err: any, data?: UpdateDocumentDefaultVersionCommandOutput) => void): void;
1592
909
  updateDocumentDefaultVersion(args: UpdateDocumentDefaultVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentDefaultVersionCommandOutput) => void): void;
1593
910
  /**
1594
- * @public
1595
- * <p>Updates information related to approval reviews for a specific version of a change template
1596
- * in Change Manager.</p>
911
+ * @see {@link UpdateDocumentMetadataCommand}
1597
912
  */
1598
913
  updateDocumentMetadata(args: UpdateDocumentMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDocumentMetadataCommandOutput>;
1599
914
  updateDocumentMetadata(args: UpdateDocumentMetadataCommandInput, cb: (err: any, data?: UpdateDocumentMetadataCommandOutput) => void): void;
1600
915
  updateDocumentMetadata(args: UpdateDocumentMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentMetadataCommandOutput) => void): void;
1601
916
  /**
1602
- * @public
1603
- * <p>Updates an existing maintenance window. Only specified parameters are modified.</p>
1604
- * <note>
1605
- * <p>The value you specify for <code>Duration</code> determines the specific end time for the
1606
- * maintenance window based on the time it begins. No maintenance window tasks are permitted to
1607
- * start after the resulting endtime minus the number of hours you specify for <code>Cutoff</code>.
1608
- * For example, if the maintenance window starts at 3 PM, the duration is three hours, and the
1609
- * value you specify for <code>Cutoff</code> is one hour, no maintenance window tasks can start
1610
- * after 5 PM.</p>
1611
- * </note>
917
+ * @see {@link UpdateMaintenanceWindowCommand}
1612
918
  */
1613
919
  updateMaintenanceWindow(args: UpdateMaintenanceWindowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMaintenanceWindowCommandOutput>;
1614
920
  updateMaintenanceWindow(args: UpdateMaintenanceWindowCommandInput, cb: (err: any, data?: UpdateMaintenanceWindowCommandOutput) => void): void;
1615
921
  updateMaintenanceWindow(args: UpdateMaintenanceWindowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMaintenanceWindowCommandOutput) => void): void;
1616
922
  /**
1617
- * @public
1618
- * <p>Modifies the target of an existing maintenance window. You
1619
- * can change the following:</p>
1620
- * <ul>
1621
- * <li>
1622
- * <p>Name</p>
1623
- * </li>
1624
- * <li>
1625
- * <p>Description</p>
1626
- * </li>
1627
- * <li>
1628
- * <p>Owner</p>
1629
- * </li>
1630
- * <li>
1631
- * <p>IDs for an ID target</p>
1632
- * </li>
1633
- * <li>
1634
- * <p>Tags for a Tag target</p>
1635
- * </li>
1636
- * <li>
1637
- * <p>From any supported tag type to another. The three supported tag types are ID target, Tag
1638
- * target, and resource group. For more information, see <a>Target</a>.</p>
1639
- * </li>
1640
- * </ul>
1641
- * <note>
1642
- * <p>If a parameter is null, then the corresponding field isn't modified.</p>
1643
- * </note>
923
+ * @see {@link UpdateMaintenanceWindowTargetCommand}
1644
924
  */
1645
925
  updateMaintenanceWindowTarget(args: UpdateMaintenanceWindowTargetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMaintenanceWindowTargetCommandOutput>;
1646
926
  updateMaintenanceWindowTarget(args: UpdateMaintenanceWindowTargetCommandInput, cb: (err: any, data?: UpdateMaintenanceWindowTargetCommandOutput) => void): void;
1647
927
  updateMaintenanceWindowTarget(args: UpdateMaintenanceWindowTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMaintenanceWindowTargetCommandOutput) => void): void;
1648
928
  /**
1649
- * @public
1650
- * <p>Modifies a task assigned to a maintenance window. You can't change the task type, but you
1651
- * can change the following values:</p>
1652
- * <ul>
1653
- * <li>
1654
- * <p>
1655
- * <code>TaskARN</code>. For example, you can change a <code>RUN_COMMAND</code> task from
1656
- * <code>AWS-RunPowerShellScript</code> to <code>AWS-RunShellScript</code>.</p>
1657
- * </li>
1658
- * <li>
1659
- * <p>
1660
- * <code>ServiceRoleArn</code>
1661
- * </p>
1662
- * </li>
1663
- * <li>
1664
- * <p>
1665
- * <code>TaskInvocationParameters</code>
1666
- * </p>
1667
- * </li>
1668
- * <li>
1669
- * <p>
1670
- * <code>Priority</code>
1671
- * </p>
1672
- * </li>
1673
- * <li>
1674
- * <p>
1675
- * <code>MaxConcurrency</code>
1676
- * </p>
1677
- * </li>
1678
- * <li>
1679
- * <p>
1680
- * <code>MaxErrors</code>
1681
- * </p>
1682
- * </li>
1683
- * </ul>
1684
- * <note>
1685
- * <p>One or more targets must be specified for maintenance window Run Command-type tasks.
1686
- * Depending on the task, targets are optional for other maintenance window task types (Automation,
1687
- * Lambda, and Step Functions). For more information about running tasks
1688
- * that don't specify targets, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html">Registering
1689
- * maintenance window tasks without targets</a> in the
1690
- * <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1691
- * </note>
1692
- * <p>If the value for a parameter in <code>UpdateMaintenanceWindowTask</code> is null, then the
1693
- * corresponding field isn't modified. If you set <code>Replace</code> to true, then all fields
1694
- * required by the <a>RegisterTaskWithMaintenanceWindow</a> operation are required for
1695
- * this request. Optional fields that aren't specified are set to null.</p>
1696
- * <important>
1697
- * <p>When you update a maintenance window task that has options specified in
1698
- * <code>TaskInvocationParameters</code>, you must provide again all the
1699
- * <code>TaskInvocationParameters</code> values that you want to retain. The values you don't
1700
- * specify again are removed. For example, suppose that when you registered a Run Command task, you
1701
- * specified <code>TaskInvocationParameters</code> values for <code>Comment</code>,
1702
- * <code>NotificationConfig</code>, and <code>OutputS3BucketName</code>. If you update the
1703
- * maintenance window task and specify only a different <code>OutputS3BucketName</code> value, the
1704
- * values for <code>Comment</code> and <code>NotificationConfig</code> are removed.</p>
1705
- * </important>
929
+ * @see {@link UpdateMaintenanceWindowTaskCommand}
1706
930
  */
1707
931
  updateMaintenanceWindowTask(args: UpdateMaintenanceWindowTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMaintenanceWindowTaskCommandOutput>;
1708
932
  updateMaintenanceWindowTask(args: UpdateMaintenanceWindowTaskCommandInput, cb: (err: any, data?: UpdateMaintenanceWindowTaskCommandOutput) => void): void;
1709
933
  updateMaintenanceWindowTask(args: UpdateMaintenanceWindowTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMaintenanceWindowTaskCommandOutput) => void): void;
1710
934
  /**
1711
- * @public
1712
- * <p>Changes the Identity and Access Management (IAM) role that is assigned to the
1713
- * on-premises server, edge device, or virtual machines (VM). IAM roles are first
1714
- * assigned to these hybrid nodes during the activation process. For more information, see <a>CreateActivation</a>.</p>
935
+ * @see {@link UpdateManagedInstanceRoleCommand}
1715
936
  */
1716
937
  updateManagedInstanceRole(args: UpdateManagedInstanceRoleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateManagedInstanceRoleCommandOutput>;
1717
938
  updateManagedInstanceRole(args: UpdateManagedInstanceRoleCommandInput, cb: (err: any, data?: UpdateManagedInstanceRoleCommandOutput) => void): void;
1718
939
  updateManagedInstanceRole(args: UpdateManagedInstanceRoleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateManagedInstanceRoleCommandOutput) => void): void;
1719
940
  /**
1720
- * @public
1721
- * <p>Edit or change an OpsItem. You must have permission in Identity and Access Management (IAM) to update an OpsItem. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html">Getting started with
1722
- * OpsCenter</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
1723
- * <p>Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, and
1724
- * remediate operational issues impacting the performance and health of their Amazon Web Services resources. For
1725
- * more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html">OpsCenter</a> in the
1726
- * <i>Amazon Web Services Systems Manager User Guide</i>. </p>
941
+ * @see {@link UpdateOpsItemCommand}
1727
942
  */
1728
943
  updateOpsItem(args: UpdateOpsItemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOpsItemCommandOutput>;
1729
944
  updateOpsItem(args: UpdateOpsItemCommandInput, cb: (err: any, data?: UpdateOpsItemCommandOutput) => void): void;
1730
945
  updateOpsItem(args: UpdateOpsItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOpsItemCommandOutput) => void): void;
1731
946
  /**
1732
- * @public
1733
- * <p>Amazon Web Services Systems Manager calls this API operation when you edit OpsMetadata in Application Manager.</p>
947
+ * @see {@link UpdateOpsMetadataCommand}
1734
948
  */
1735
949
  updateOpsMetadata(args: UpdateOpsMetadataCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOpsMetadataCommandOutput>;
1736
950
  updateOpsMetadata(args: UpdateOpsMetadataCommandInput, cb: (err: any, data?: UpdateOpsMetadataCommandOutput) => void): void;
1737
951
  updateOpsMetadata(args: UpdateOpsMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOpsMetadataCommandOutput) => void): void;
1738
952
  /**
1739
- * @public
1740
- * <p>Modifies an existing patch baseline. Fields not specified in the request are left
1741
- * unchanged.</p>
1742
- * <note>
1743
- * <p>For information about valid key-value pairs in <code>PatchFilters</code> for each supported
1744
- * operating system type, see <a>PatchFilter</a>.</p>
1745
- * </note>
953
+ * @see {@link UpdatePatchBaselineCommand}
1746
954
  */
1747
955
  updatePatchBaseline(args: UpdatePatchBaselineCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePatchBaselineCommandOutput>;
1748
956
  updatePatchBaseline(args: UpdatePatchBaselineCommandInput, cb: (err: any, data?: UpdatePatchBaselineCommandOutput) => void): void;
1749
957
  updatePatchBaseline(args: UpdatePatchBaselineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePatchBaselineCommandOutput) => void): void;
1750
958
  /**
1751
- * @public
1752
- * <p>Update a resource data sync. After you create a resource data sync for a Region, you can't
1753
- * change the account options for that sync. For example, if you create a sync in the us-east-2
1754
- * (Ohio) Region and you choose the <code>Include only the current account</code> option, you can't
1755
- * edit that sync later and choose the <code>Include all accounts from my Organizations
1756
- * configuration</code> option. Instead, you must delete the first resource data sync, and create a
1757
- * new one.</p>
1758
- * <note>
1759
- * <p>This API operation only supports a resource data sync that was created with a
1760
- * SyncFromSource <code>SyncType</code>.</p>
1761
- * </note>
959
+ * @see {@link UpdateResourceDataSyncCommand}
1762
960
  */
1763
961
  updateResourceDataSync(args: UpdateResourceDataSyncCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceDataSyncCommandOutput>;
1764
962
  updateResourceDataSync(args: UpdateResourceDataSyncCommandInput, cb: (err: any, data?: UpdateResourceDataSyncCommandOutput) => void): void;
1765
963
  updateResourceDataSync(args: UpdateResourceDataSyncCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceDataSyncCommandOutput) => void): void;
1766
964
  /**
1767
- * @public
1768
- * <p>
1769
- * <code>ServiceSetting</code> is an account-level setting for an Amazon Web Services service. This setting
1770
- * defines how a user interacts with or uses a service or a feature of a service. For example, if an
1771
- * Amazon Web Services service charges money to the account based on feature or service usage, then the Amazon Web Services
1772
- * service team might create a default setting of "false". This means the user can't use this
1773
- * feature unless they change the setting to "true" and intentionally opt in for a paid
1774
- * feature.</p>
1775
- * <p>Services map a <code>SettingId</code> object to a setting value. Amazon Web Services services teams define
1776
- * the default value for a <code>SettingId</code>. You can't create a new <code>SettingId</code>,
1777
- * but you can overwrite the default value if you have the <code>ssm:UpdateServiceSetting</code>
1778
- * permission for the setting. Use the <a>GetServiceSetting</a> API operation to view the
1779
- * current value. Or, use the <a>ResetServiceSetting</a> to change the value back to the
1780
- * original value defined by the Amazon Web Services service team.</p>
1781
- * <p>Update the service setting for the account. </p>
965
+ * @see {@link UpdateServiceSettingCommand}
1782
966
  */
1783
967
  updateServiceSetting(args: UpdateServiceSettingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceSettingCommandOutput>;
1784
968
  updateServiceSetting(args: UpdateServiceSettingCommandInput, cb: (err: any, data?: UpdateServiceSettingCommandOutput) => void): void;
1785
969
  updateServiceSetting(args: UpdateServiceSettingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceSettingCommandOutput) => void): void;
1786
970
  }
971
+ /**
972
+ * @public
973
+ * <p>Amazon Web Services Systems Manager is the operations hub for your Amazon Web Services applications and resources and a secure
974
+ * end-to-end management solution for hybrid cloud environments that enables safe and secure
975
+ * operations at scale.</p>
976
+ * <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>. To get started, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-up.html">Setting up Amazon Web Services Systems Manager</a>.</p>
977
+ * <p class="title">
978
+ * <b>Related resources</b>
979
+ * </p>
980
+ * <ul>
981
+ * <li>
982
+ * <p>For information about each of the capabilities that comprise Systems Manager, see <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/what-is-systems-manager.html#systems-manager-capabilities">Systems Manager capabilities</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
983
+ * </li>
984
+ * <li>
985
+ * <p>For details about predefined runbooks for Automation, a capability of Amazon Web Services Systems Manager, see the
986
+ * <i>
987
+ * <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation runbook reference</a>
988
+ * </i>.</p>
989
+ * </li>
990
+ * <li>
991
+ * <p>For information about AppConfig, a capability of Systems Manager, see the <i>
992
+ * <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/">AppConfig User Guide</a>
993
+ * </i>
994
+ * and the <i>
995
+ * <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/">AppConfig
996
+ * API Reference</a>
997
+ * </i>.</p>
998
+ * </li>
999
+ * <li>
1000
+ * <p>For information about Incident Manager, a capability of Systems Manager, see the <i>
1001
+ * <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/">Systems Manager Incident Manager User
1002
+ * Guide</a>
1003
+ * </i> and the <i>
1004
+ * <a href="https://docs.aws.amazon.com/incident-manager/latest/APIReference/">Systems Manager Incident Manager API
1005
+ * Reference</a>
1006
+ * </i>.</p>
1007
+ * </li>
1008
+ * </ul>
1009
+ */
1010
+ export declare class SSM extends SSMClient implements SSM {
1011
+ }