@aws-sdk/client-backup 3.312.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.
@@ -72,644 +72,447 @@ import { UpdateGlobalSettingsCommandInput, UpdateGlobalSettingsCommandOutput } f
72
72
  import { UpdateRecoveryPointLifecycleCommandInput, UpdateRecoveryPointLifecycleCommandOutput } from "./commands/UpdateRecoveryPointLifecycleCommand";
73
73
  import { UpdateRegionSettingsCommandInput, UpdateRegionSettingsCommandOutput } from "./commands/UpdateRegionSettingsCommand";
74
74
  import { UpdateReportPlanCommandInput, UpdateReportPlanCommandOutput } from "./commands/UpdateReportPlanCommand";
75
- /**
76
- * @public
77
- * <fullname>Backup</fullname>
78
- * <p>Backup is a unified backup service designed to protect Amazon Web Services
79
- * services and their associated data. Backup simplifies the creation, migration,
80
- * restoration, and deletion of backups, while also providing reporting and
81
- * auditing.</p>
82
- */
83
- export declare class Backup extends BackupClient {
75
+ export interface Backup {
84
76
  /**
85
- * @public
86
- * <p>This action removes the specified legal hold on a recovery point.
87
- * This action can only be performed by a user with sufficient permissions.</p>
77
+ * @see {@link CancelLegalHoldCommand}
88
78
  */
89
79
  cancelLegalHold(args: CancelLegalHoldCommandInput, options?: __HttpHandlerOptions): Promise<CancelLegalHoldCommandOutput>;
90
80
  cancelLegalHold(args: CancelLegalHoldCommandInput, cb: (err: any, data?: CancelLegalHoldCommandOutput) => void): void;
91
81
  cancelLegalHold(args: CancelLegalHoldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelLegalHoldCommandOutput) => void): void;
92
82
  /**
93
- * @public
94
- * <p>Creates a backup plan using a backup plan name and backup rules. A backup plan is a
95
- * document that contains information that Backup uses to schedule tasks that
96
- * create recovery points for resources.</p>
97
- * <p>If you call <code>CreateBackupPlan</code> with a plan that already exists, you receive
98
- * an <code>AlreadyExistsException</code> exception.</p>
83
+ * @see {@link CreateBackupPlanCommand}
99
84
  */
100
85
  createBackupPlan(args: CreateBackupPlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackupPlanCommandOutput>;
101
86
  createBackupPlan(args: CreateBackupPlanCommandInput, cb: (err: any, data?: CreateBackupPlanCommandOutput) => void): void;
102
87
  createBackupPlan(args: CreateBackupPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupPlanCommandOutput) => void): void;
103
88
  /**
104
- * @public
105
- * <p>Creates a JSON document that specifies a set of resources to assign to a backup plan.
106
- * For examples, see <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/assigning-resources.html#assigning-resources-json">Assigning resources programmatically</a>. </p>
89
+ * @see {@link CreateBackupSelectionCommand}
107
90
  */
108
91
  createBackupSelection(args: CreateBackupSelectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackupSelectionCommandOutput>;
109
92
  createBackupSelection(args: CreateBackupSelectionCommandInput, cb: (err: any, data?: CreateBackupSelectionCommandOutput) => void): void;
110
93
  createBackupSelection(args: CreateBackupSelectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupSelectionCommandOutput) => void): void;
111
94
  /**
112
- * @public
113
- * <p>Creates a logical container where backups are stored. A <code>CreateBackupVault</code>
114
- * request includes a name, optionally one or more resource tags, an encryption key, and a
115
- * request ID.</p>
116
- * <note>
117
- * <p>Do not include sensitive data, such as passport numbers, in the name of a backup
118
- * vault.</p>
119
- * </note>
95
+ * @see {@link CreateBackupVaultCommand}
120
96
  */
121
97
  createBackupVault(args: CreateBackupVaultCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackupVaultCommandOutput>;
122
98
  createBackupVault(args: CreateBackupVaultCommandInput, cb: (err: any, data?: CreateBackupVaultCommandOutput) => void): void;
123
99
  createBackupVault(args: CreateBackupVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupVaultCommandOutput) => void): void;
124
100
  /**
125
- * @public
126
- * <p>Creates a framework with one or more controls. A framework is a collection of controls
127
- * that you can use to evaluate your backup practices. By using pre-built customizable
128
- * controls to define your policies, you can evaluate whether your backup practices comply
129
- * with your policies and which resources are not yet in compliance.</p>
101
+ * @see {@link CreateFrameworkCommand}
130
102
  */
131
103
  createFramework(args: CreateFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<CreateFrameworkCommandOutput>;
132
104
  createFramework(args: CreateFrameworkCommandInput, cb: (err: any, data?: CreateFrameworkCommandOutput) => void): void;
133
105
  createFramework(args: CreateFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFrameworkCommandOutput) => void): void;
134
106
  /**
135
- * @public
136
- * <p>This action creates a legal hold on a recovery point (backup). A legal hold
137
- * is a restraint on altering or deleting a backup until an authorized user cancels the
138
- * legal hold. Any actions to delete or disassociate a recovery point will fail with
139
- * an error if one or more active legal holds are on the recovery point.</p>
107
+ * @see {@link CreateLegalHoldCommand}
140
108
  */
141
109
  createLegalHold(args: CreateLegalHoldCommandInput, options?: __HttpHandlerOptions): Promise<CreateLegalHoldCommandOutput>;
142
110
  createLegalHold(args: CreateLegalHoldCommandInput, cb: (err: any, data?: CreateLegalHoldCommandOutput) => void): void;
143
111
  createLegalHold(args: CreateLegalHoldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLegalHoldCommandOutput) => void): void;
144
112
  /**
145
- * @public
146
- * <p>Creates a report plan. A report plan is a document that contains information about the
147
- * contents of the report and where Backup will deliver it.</p>
148
- * <p>If you call <code>CreateReportPlan</code> with a plan that already exists, you receive
149
- * an <code>AlreadyExistsException</code> exception.</p>
113
+ * @see {@link CreateReportPlanCommand}
150
114
  */
151
115
  createReportPlan(args: CreateReportPlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateReportPlanCommandOutput>;
152
116
  createReportPlan(args: CreateReportPlanCommandInput, cb: (err: any, data?: CreateReportPlanCommandOutput) => void): void;
153
117
  createReportPlan(args: CreateReportPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReportPlanCommandOutput) => void): void;
154
118
  /**
155
- * @public
156
- * <p>Deletes a backup plan. A backup plan can only be deleted after all associated selections
157
- * of resources have been deleted. Deleting a backup plan deletes the current version of a
158
- * backup plan. Previous versions, if any, will still exist.</p>
119
+ * @see {@link DeleteBackupPlanCommand}
159
120
  */
160
121
  deleteBackupPlan(args: DeleteBackupPlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupPlanCommandOutput>;
161
122
  deleteBackupPlan(args: DeleteBackupPlanCommandInput, cb: (err: any, data?: DeleteBackupPlanCommandOutput) => void): void;
162
123
  deleteBackupPlan(args: DeleteBackupPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupPlanCommandOutput) => void): void;
163
124
  /**
164
- * @public
165
- * <p>Deletes the resource selection associated with a backup plan that is specified by the
166
- * <code>SelectionId</code>.</p>
125
+ * @see {@link DeleteBackupSelectionCommand}
167
126
  */
168
127
  deleteBackupSelection(args: DeleteBackupSelectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupSelectionCommandOutput>;
169
128
  deleteBackupSelection(args: DeleteBackupSelectionCommandInput, cb: (err: any, data?: DeleteBackupSelectionCommandOutput) => void): void;
170
129
  deleteBackupSelection(args: DeleteBackupSelectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupSelectionCommandOutput) => void): void;
171
130
  /**
172
- * @public
173
- * <p>Deletes the backup vault identified by its name. A vault can be deleted only if it is
174
- * empty.</p>
131
+ * @see {@link DeleteBackupVaultCommand}
175
132
  */
176
133
  deleteBackupVault(args: DeleteBackupVaultCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupVaultCommandOutput>;
177
134
  deleteBackupVault(args: DeleteBackupVaultCommandInput, cb: (err: any, data?: DeleteBackupVaultCommandOutput) => void): void;
178
135
  deleteBackupVault(args: DeleteBackupVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupVaultCommandOutput) => void): void;
179
136
  /**
180
- * @public
181
- * <p>Deletes the policy document that manages permissions on a backup vault.</p>
137
+ * @see {@link DeleteBackupVaultAccessPolicyCommand}
182
138
  */
183
139
  deleteBackupVaultAccessPolicy(args: DeleteBackupVaultAccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupVaultAccessPolicyCommandOutput>;
184
140
  deleteBackupVaultAccessPolicy(args: DeleteBackupVaultAccessPolicyCommandInput, cb: (err: any, data?: DeleteBackupVaultAccessPolicyCommandOutput) => void): void;
185
141
  deleteBackupVaultAccessPolicy(args: DeleteBackupVaultAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupVaultAccessPolicyCommandOutput) => void): void;
186
142
  /**
187
- * @public
188
- * <p>Deletes Backup Vault Lock from a backup vault specified by a backup vault
189
- * name.</p>
190
- * <p>If the Vault Lock configuration is immutable, then you cannot delete Vault Lock using
191
- * API operations, and you will receive an <code>InvalidRequestException</code> if you attempt
192
- * to do so. For more information, see <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/vault-lock.html">Vault Lock</a> in the
193
- * <i>Backup Developer Guide</i>.</p>
143
+ * @see {@link DeleteBackupVaultLockConfigurationCommand}
194
144
  */
195
145
  deleteBackupVaultLockConfiguration(args: DeleteBackupVaultLockConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupVaultLockConfigurationCommandOutput>;
196
146
  deleteBackupVaultLockConfiguration(args: DeleteBackupVaultLockConfigurationCommandInput, cb: (err: any, data?: DeleteBackupVaultLockConfigurationCommandOutput) => void): void;
197
147
  deleteBackupVaultLockConfiguration(args: DeleteBackupVaultLockConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupVaultLockConfigurationCommandOutput) => void): void;
198
148
  /**
199
- * @public
200
- * <p>Deletes event notifications for the specified backup vault.</p>
149
+ * @see {@link DeleteBackupVaultNotificationsCommand}
201
150
  */
202
151
  deleteBackupVaultNotifications(args: DeleteBackupVaultNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupVaultNotificationsCommandOutput>;
203
152
  deleteBackupVaultNotifications(args: DeleteBackupVaultNotificationsCommandInput, cb: (err: any, data?: DeleteBackupVaultNotificationsCommandOutput) => void): void;
204
153
  deleteBackupVaultNotifications(args: DeleteBackupVaultNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupVaultNotificationsCommandOutput) => void): void;
205
154
  /**
206
- * @public
207
- * <p>Deletes the framework specified by a framework name.</p>
155
+ * @see {@link DeleteFrameworkCommand}
208
156
  */
209
157
  deleteFramework(args: DeleteFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFrameworkCommandOutput>;
210
158
  deleteFramework(args: DeleteFrameworkCommandInput, cb: (err: any, data?: DeleteFrameworkCommandOutput) => void): void;
211
159
  deleteFramework(args: DeleteFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFrameworkCommandOutput) => void): void;
212
160
  /**
213
- * @public
214
- * <p>Deletes the recovery point specified by a recovery point ID.</p>
215
- * <p>If the recovery point ID belongs to a continuous backup, calling this endpoint deletes
216
- * the existing continuous backup and stops future continuous backup.</p>
217
- * <p>When an IAM role's permissions are insufficient to call this API, the service sends back
218
- * an HTTP 200 response with an empty HTTP body, but the recovery point is not deleted.
219
- * Instead, it enters an <code>EXPIRED</code> state.</p>
220
- * <p>
221
- * <code>EXPIRED</code> recovery points can be deleted with this API once the IAM role
222
- * has the <code>iam:CreateServiceLinkedRole</code> action. To learn more about adding this role, see
223
- * <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/deleting-backups.html#deleting-backups-troubleshooting">
224
- * Troubleshooting manual deletions</a>.</p>
225
- * <p>If the user or role is deleted or the permission within the role is removed,
226
- * the deletion will not be successful and will enter an <code>EXPIRED</code> state.</p>
161
+ * @see {@link DeleteRecoveryPointCommand}
227
162
  */
228
163
  deleteRecoveryPoint(args: DeleteRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryPointCommandOutput>;
229
164
  deleteRecoveryPoint(args: DeleteRecoveryPointCommandInput, cb: (err: any, data?: DeleteRecoveryPointCommandOutput) => void): void;
230
165
  deleteRecoveryPoint(args: DeleteRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryPointCommandOutput) => void): void;
231
166
  /**
232
- * @public
233
- * <p>Deletes the report plan specified by a report plan name.</p>
167
+ * @see {@link DeleteReportPlanCommand}
234
168
  */
235
169
  deleteReportPlan(args: DeleteReportPlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReportPlanCommandOutput>;
236
170
  deleteReportPlan(args: DeleteReportPlanCommandInput, cb: (err: any, data?: DeleteReportPlanCommandOutput) => void): void;
237
171
  deleteReportPlan(args: DeleteReportPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReportPlanCommandOutput) => void): void;
238
172
  /**
239
- * @public
240
- * <p>Returns backup job details for the specified <code>BackupJobId</code>.</p>
173
+ * @see {@link DescribeBackupJobCommand}
241
174
  */
242
175
  describeBackupJob(args: DescribeBackupJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBackupJobCommandOutput>;
243
176
  describeBackupJob(args: DescribeBackupJobCommandInput, cb: (err: any, data?: DescribeBackupJobCommandOutput) => void): void;
244
177
  describeBackupJob(args: DescribeBackupJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupJobCommandOutput) => void): void;
245
178
  /**
246
- * @public
247
- * <p>Returns metadata about a backup vault specified by its name.</p>
179
+ * @see {@link DescribeBackupVaultCommand}
248
180
  */
249
181
  describeBackupVault(args: DescribeBackupVaultCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBackupVaultCommandOutput>;
250
182
  describeBackupVault(args: DescribeBackupVaultCommandInput, cb: (err: any, data?: DescribeBackupVaultCommandOutput) => void): void;
251
183
  describeBackupVault(args: DescribeBackupVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupVaultCommandOutput) => void): void;
252
184
  /**
253
- * @public
254
- * <p>Returns metadata associated with creating a copy of a resource.</p>
185
+ * @see {@link DescribeCopyJobCommand}
255
186
  */
256
187
  describeCopyJob(args: DescribeCopyJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCopyJobCommandOutput>;
257
188
  describeCopyJob(args: DescribeCopyJobCommandInput, cb: (err: any, data?: DescribeCopyJobCommandOutput) => void): void;
258
189
  describeCopyJob(args: DescribeCopyJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCopyJobCommandOutput) => void): void;
259
190
  /**
260
- * @public
261
- * <p>Returns the framework details for the specified <code>FrameworkName</code>.</p>
191
+ * @see {@link DescribeFrameworkCommand}
262
192
  */
263
193
  describeFramework(args: DescribeFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFrameworkCommandOutput>;
264
194
  describeFramework(args: DescribeFrameworkCommandInput, cb: (err: any, data?: DescribeFrameworkCommandOutput) => void): void;
265
195
  describeFramework(args: DescribeFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFrameworkCommandOutput) => void): void;
266
196
  /**
267
- * @public
268
- * <p>Describes whether the Amazon Web Services account is opted in to cross-account backup.
269
- * Returns an error if the account is not a member of an Organizations organization.
270
- * Example: <code>describe-global-settings --region us-west-2</code>
271
- * </p>
197
+ * @see {@link DescribeGlobalSettingsCommand}
272
198
  */
273
199
  describeGlobalSettings(args: DescribeGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGlobalSettingsCommandOutput>;
274
200
  describeGlobalSettings(args: DescribeGlobalSettingsCommandInput, cb: (err: any, data?: DescribeGlobalSettingsCommandOutput) => void): void;
275
201
  describeGlobalSettings(args: DescribeGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGlobalSettingsCommandOutput) => void): void;
276
202
  /**
277
- * @public
278
- * <p>Returns information about a saved resource, including the last time it was backed up,
279
- * its Amazon Resource Name (ARN), and the Amazon Web Services service type of the saved
280
- * resource.</p>
203
+ * @see {@link DescribeProtectedResourceCommand}
281
204
  */
282
205
  describeProtectedResource(args: DescribeProtectedResourceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProtectedResourceCommandOutput>;
283
206
  describeProtectedResource(args: DescribeProtectedResourceCommandInput, cb: (err: any, data?: DescribeProtectedResourceCommandOutput) => void): void;
284
207
  describeProtectedResource(args: DescribeProtectedResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProtectedResourceCommandOutput) => void): void;
285
208
  /**
286
- * @public
287
- * <p>Returns metadata associated with a recovery point, including ID, status, encryption, and
288
- * lifecycle.</p>
209
+ * @see {@link DescribeRecoveryPointCommand}
289
210
  */
290
211
  describeRecoveryPoint(args: DescribeRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoveryPointCommandOutput>;
291
212
  describeRecoveryPoint(args: DescribeRecoveryPointCommandInput, cb: (err: any, data?: DescribeRecoveryPointCommandOutput) => void): void;
292
213
  describeRecoveryPoint(args: DescribeRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoveryPointCommandOutput) => void): void;
293
214
  /**
294
- * @public
295
- * <p>Returns the current service opt-in settings for the Region. If service opt-in is enabled
296
- * for a service, Backup tries to protect that service's resources in this Region,
297
- * when the resource is included in an on-demand backup or scheduled backup plan. Otherwise,
298
- * Backup does not try to protect that service's resources in this
299
- * Region.</p>
215
+ * @see {@link DescribeRegionSettingsCommand}
300
216
  */
301
217
  describeRegionSettings(args: DescribeRegionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRegionSettingsCommandOutput>;
302
218
  describeRegionSettings(args: DescribeRegionSettingsCommandInput, cb: (err: any, data?: DescribeRegionSettingsCommandOutput) => void): void;
303
219
  describeRegionSettings(args: DescribeRegionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRegionSettingsCommandOutput) => void): void;
304
220
  /**
305
- * @public
306
- * <p>Returns the details associated with creating a report as specified by its
307
- * <code>ReportJobId</code>.</p>
221
+ * @see {@link DescribeReportJobCommand}
308
222
  */
309
223
  describeReportJob(args: DescribeReportJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReportJobCommandOutput>;
310
224
  describeReportJob(args: DescribeReportJobCommandInput, cb: (err: any, data?: DescribeReportJobCommandOutput) => void): void;
311
225
  describeReportJob(args: DescribeReportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReportJobCommandOutput) => void): void;
312
226
  /**
313
- * @public
314
- * <p>Returns a list of all report plans for an Amazon Web Services account and Amazon Web Services Region.</p>
227
+ * @see {@link DescribeReportPlanCommand}
315
228
  */
316
229
  describeReportPlan(args: DescribeReportPlanCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReportPlanCommandOutput>;
317
230
  describeReportPlan(args: DescribeReportPlanCommandInput, cb: (err: any, data?: DescribeReportPlanCommandOutput) => void): void;
318
231
  describeReportPlan(args: DescribeReportPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReportPlanCommandOutput) => void): void;
319
232
  /**
320
- * @public
321
- * <p>Returns metadata associated with a restore job that is specified by a job ID.</p>
233
+ * @see {@link DescribeRestoreJobCommand}
322
234
  */
323
235
  describeRestoreJob(args: DescribeRestoreJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRestoreJobCommandOutput>;
324
236
  describeRestoreJob(args: DescribeRestoreJobCommandInput, cb: (err: any, data?: DescribeRestoreJobCommandOutput) => void): void;
325
237
  describeRestoreJob(args: DescribeRestoreJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRestoreJobCommandOutput) => void): void;
326
238
  /**
327
- * @public
328
- * <p>Deletes the specified continuous backup recovery point from Backup and
329
- * releases control of that continuous backup to the source service, such as Amazon RDS. The source service will continue to create and retain continuous backups using the
330
- * lifecycle that you specified in your original backup plan.</p>
331
- * <p>Does not support snapshot backup recovery points.</p>
239
+ * @see {@link DisassociateRecoveryPointCommand}
332
240
  */
333
241
  disassociateRecoveryPoint(args: DisassociateRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRecoveryPointCommandOutput>;
334
242
  disassociateRecoveryPoint(args: DisassociateRecoveryPointCommandInput, cb: (err: any, data?: DisassociateRecoveryPointCommandOutput) => void): void;
335
243
  disassociateRecoveryPoint(args: DisassociateRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRecoveryPointCommandOutput) => void): void;
336
244
  /**
337
- * @public
338
- * <p>This action to a specific child (nested) recovery point removes the relationship
339
- * between the specified recovery point and its parent (composite) recovery point.</p>
245
+ * @see {@link DisassociateRecoveryPointFromParentCommand}
340
246
  */
341
247
  disassociateRecoveryPointFromParent(args: DisassociateRecoveryPointFromParentCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRecoveryPointFromParentCommandOutput>;
342
248
  disassociateRecoveryPointFromParent(args: DisassociateRecoveryPointFromParentCommandInput, cb: (err: any, data?: DisassociateRecoveryPointFromParentCommandOutput) => void): void;
343
249
  disassociateRecoveryPointFromParent(args: DisassociateRecoveryPointFromParentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRecoveryPointFromParentCommandOutput) => void): void;
344
250
  /**
345
- * @public
346
- * <p>Returns the backup plan that is specified by the plan ID as a backup template.</p>
251
+ * @see {@link ExportBackupPlanTemplateCommand}
347
252
  */
348
253
  exportBackupPlanTemplate(args: ExportBackupPlanTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ExportBackupPlanTemplateCommandOutput>;
349
254
  exportBackupPlanTemplate(args: ExportBackupPlanTemplateCommandInput, cb: (err: any, data?: ExportBackupPlanTemplateCommandOutput) => void): void;
350
255
  exportBackupPlanTemplate(args: ExportBackupPlanTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportBackupPlanTemplateCommandOutput) => void): void;
351
256
  /**
352
- * @public
353
- * <p>Returns <code>BackupPlan</code> details for the specified <code>BackupPlanId</code>. The
354
- * details are the body of a backup plan in JSON format, in addition to plan metadata.</p>
257
+ * @see {@link GetBackupPlanCommand}
355
258
  */
356
259
  getBackupPlan(args: GetBackupPlanCommandInput, options?: __HttpHandlerOptions): Promise<GetBackupPlanCommandOutput>;
357
260
  getBackupPlan(args: GetBackupPlanCommandInput, cb: (err: any, data?: GetBackupPlanCommandOutput) => void): void;
358
261
  getBackupPlan(args: GetBackupPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackupPlanCommandOutput) => void): void;
359
262
  /**
360
- * @public
361
- * <p>Returns a valid JSON document specifying a backup plan or an error.</p>
263
+ * @see {@link GetBackupPlanFromJSONCommand}
362
264
  */
363
265
  getBackupPlanFromJSON(args: GetBackupPlanFromJSONCommandInput, options?: __HttpHandlerOptions): Promise<GetBackupPlanFromJSONCommandOutput>;
364
266
  getBackupPlanFromJSON(args: GetBackupPlanFromJSONCommandInput, cb: (err: any, data?: GetBackupPlanFromJSONCommandOutput) => void): void;
365
267
  getBackupPlanFromJSON(args: GetBackupPlanFromJSONCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackupPlanFromJSONCommandOutput) => void): void;
366
268
  /**
367
- * @public
368
- * <p>Returns the template specified by its <code>templateId</code> as a backup plan.</p>
269
+ * @see {@link GetBackupPlanFromTemplateCommand}
369
270
  */
370
271
  getBackupPlanFromTemplate(args: GetBackupPlanFromTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetBackupPlanFromTemplateCommandOutput>;
371
272
  getBackupPlanFromTemplate(args: GetBackupPlanFromTemplateCommandInput, cb: (err: any, data?: GetBackupPlanFromTemplateCommandOutput) => void): void;
372
273
  getBackupPlanFromTemplate(args: GetBackupPlanFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackupPlanFromTemplateCommandOutput) => void): void;
373
274
  /**
374
- * @public
375
- * <p>Returns selection metadata and a document in JSON format that specifies a list of
376
- * resources that are associated with a backup plan.</p>
275
+ * @see {@link GetBackupSelectionCommand}
377
276
  */
378
277
  getBackupSelection(args: GetBackupSelectionCommandInput, options?: __HttpHandlerOptions): Promise<GetBackupSelectionCommandOutput>;
379
278
  getBackupSelection(args: GetBackupSelectionCommandInput, cb: (err: any, data?: GetBackupSelectionCommandOutput) => void): void;
380
279
  getBackupSelection(args: GetBackupSelectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackupSelectionCommandOutput) => void): void;
381
280
  /**
382
- * @public
383
- * <p>Returns the access policy document that is associated with the named backup
384
- * vault.</p>
281
+ * @see {@link GetBackupVaultAccessPolicyCommand}
385
282
  */
386
283
  getBackupVaultAccessPolicy(args: GetBackupVaultAccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetBackupVaultAccessPolicyCommandOutput>;
387
284
  getBackupVaultAccessPolicy(args: GetBackupVaultAccessPolicyCommandInput, cb: (err: any, data?: GetBackupVaultAccessPolicyCommandOutput) => void): void;
388
285
  getBackupVaultAccessPolicy(args: GetBackupVaultAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackupVaultAccessPolicyCommandOutput) => void): void;
389
286
  /**
390
- * @public
391
- * <p>Returns event notifications for the specified backup vault.</p>
287
+ * @see {@link GetBackupVaultNotificationsCommand}
392
288
  */
393
289
  getBackupVaultNotifications(args: GetBackupVaultNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<GetBackupVaultNotificationsCommandOutput>;
394
290
  getBackupVaultNotifications(args: GetBackupVaultNotificationsCommandInput, cb: (err: any, data?: GetBackupVaultNotificationsCommandOutput) => void): void;
395
291
  getBackupVaultNotifications(args: GetBackupVaultNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackupVaultNotificationsCommandOutput) => void): void;
396
292
  /**
397
- * @public
398
- * <p>This action returns details for a specified legal hold. The details are the
399
- * body of a legal hold in JSON format, in addition to metadata.</p>
293
+ * @see {@link GetLegalHoldCommand}
400
294
  */
401
295
  getLegalHold(args: GetLegalHoldCommandInput, options?: __HttpHandlerOptions): Promise<GetLegalHoldCommandOutput>;
402
296
  getLegalHold(args: GetLegalHoldCommandInput, cb: (err: any, data?: GetLegalHoldCommandOutput) => void): void;
403
297
  getLegalHold(args: GetLegalHoldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLegalHoldCommandOutput) => void): void;
404
298
  /**
405
- * @public
406
- * <p>Returns a set of metadata key-value pairs that were used to create the backup.</p>
299
+ * @see {@link GetRecoveryPointRestoreMetadataCommand}
407
300
  */
408
301
  getRecoveryPointRestoreMetadata(args: GetRecoveryPointRestoreMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryPointRestoreMetadataCommandOutput>;
409
302
  getRecoveryPointRestoreMetadata(args: GetRecoveryPointRestoreMetadataCommandInput, cb: (err: any, data?: GetRecoveryPointRestoreMetadataCommandOutput) => void): void;
410
303
  getRecoveryPointRestoreMetadata(args: GetRecoveryPointRestoreMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryPointRestoreMetadataCommandOutput) => void): void;
411
304
  /**
412
- * @public
413
- * <p>Returns the Amazon Web Services resource types supported by Backup.</p>
305
+ * @see {@link GetSupportedResourceTypesCommand}
414
306
  */
415
307
  getSupportedResourceTypes(args: GetSupportedResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetSupportedResourceTypesCommandOutput>;
416
308
  getSupportedResourceTypes(args: GetSupportedResourceTypesCommandInput, cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void): void;
417
309
  getSupportedResourceTypes(args: GetSupportedResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void): void;
418
310
  /**
419
- * @public
420
- * <p>Returns a list of existing backup jobs for an authenticated account for the last 30
421
- * days. For a longer period of time, consider using these <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/monitoring.html">monitoring tools</a>.</p>
311
+ * @see {@link ListBackupJobsCommand}
422
312
  */
423
313
  listBackupJobs(args: ListBackupJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupJobsCommandOutput>;
424
314
  listBackupJobs(args: ListBackupJobsCommandInput, cb: (err: any, data?: ListBackupJobsCommandOutput) => void): void;
425
315
  listBackupJobs(args: ListBackupJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupJobsCommandOutput) => void): void;
426
316
  /**
427
- * @public
428
- * <p>Returns a list of all active backup plans for an authenticated account. The list
429
- * contains information such as Amazon Resource Names (ARNs), plan IDs, creation and deletion
430
- * dates, version IDs, plan names, and creator request IDs.</p>
317
+ * @see {@link ListBackupPlansCommand}
431
318
  */
432
319
  listBackupPlans(args: ListBackupPlansCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupPlansCommandOutput>;
433
320
  listBackupPlans(args: ListBackupPlansCommandInput, cb: (err: any, data?: ListBackupPlansCommandOutput) => void): void;
434
321
  listBackupPlans(args: ListBackupPlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupPlansCommandOutput) => void): void;
435
322
  /**
436
- * @public
437
- * <p>Returns metadata of your saved backup plan templates, including the template ID, name,
438
- * and the creation and deletion dates.</p>
323
+ * @see {@link ListBackupPlanTemplatesCommand}
439
324
  */
440
325
  listBackupPlanTemplates(args: ListBackupPlanTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupPlanTemplatesCommandOutput>;
441
326
  listBackupPlanTemplates(args: ListBackupPlanTemplatesCommandInput, cb: (err: any, data?: ListBackupPlanTemplatesCommandOutput) => void): void;
442
327
  listBackupPlanTemplates(args: ListBackupPlanTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupPlanTemplatesCommandOutput) => void): void;
443
328
  /**
444
- * @public
445
- * <p>Returns version metadata of your backup plans, including Amazon Resource Names (ARNs),
446
- * backup plan IDs, creation and deletion dates, plan names, and version IDs.</p>
329
+ * @see {@link ListBackupPlanVersionsCommand}
447
330
  */
448
331
  listBackupPlanVersions(args: ListBackupPlanVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupPlanVersionsCommandOutput>;
449
332
  listBackupPlanVersions(args: ListBackupPlanVersionsCommandInput, cb: (err: any, data?: ListBackupPlanVersionsCommandOutput) => void): void;
450
333
  listBackupPlanVersions(args: ListBackupPlanVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupPlanVersionsCommandOutput) => void): void;
451
334
  /**
452
- * @public
453
- * <p>Returns an array containing metadata of the resources associated with the target backup
454
- * plan.</p>
335
+ * @see {@link ListBackupSelectionsCommand}
455
336
  */
456
337
  listBackupSelections(args: ListBackupSelectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupSelectionsCommandOutput>;
457
338
  listBackupSelections(args: ListBackupSelectionsCommandInput, cb: (err: any, data?: ListBackupSelectionsCommandOutput) => void): void;
458
339
  listBackupSelections(args: ListBackupSelectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupSelectionsCommandOutput) => void): void;
459
340
  /**
460
- * @public
461
- * <p>Returns a list of recovery point storage containers along with information about
462
- * them.</p>
341
+ * @see {@link ListBackupVaultsCommand}
463
342
  */
464
343
  listBackupVaults(args: ListBackupVaultsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupVaultsCommandOutput>;
465
344
  listBackupVaults(args: ListBackupVaultsCommandInput, cb: (err: any, data?: ListBackupVaultsCommandOutput) => void): void;
466
345
  listBackupVaults(args: ListBackupVaultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupVaultsCommandOutput) => void): void;
467
346
  /**
468
- * @public
469
- * <p>Returns metadata about your copy jobs.</p>
347
+ * @see {@link ListCopyJobsCommand}
470
348
  */
471
349
  listCopyJobs(args: ListCopyJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListCopyJobsCommandOutput>;
472
350
  listCopyJobs(args: ListCopyJobsCommandInput, cb: (err: any, data?: ListCopyJobsCommandOutput) => void): void;
473
351
  listCopyJobs(args: ListCopyJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCopyJobsCommandOutput) => void): void;
474
352
  /**
475
- * @public
476
- * <p>Returns a list of all frameworks for an Amazon Web Services account and Amazon Web Services Region.</p>
353
+ * @see {@link ListFrameworksCommand}
477
354
  */
478
355
  listFrameworks(args: ListFrameworksCommandInput, options?: __HttpHandlerOptions): Promise<ListFrameworksCommandOutput>;
479
356
  listFrameworks(args: ListFrameworksCommandInput, cb: (err: any, data?: ListFrameworksCommandOutput) => void): void;
480
357
  listFrameworks(args: ListFrameworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFrameworksCommandOutput) => void): void;
481
358
  /**
482
- * @public
483
- * <p>This action returns metadata about active and previous legal holds.</p>
359
+ * @see {@link ListLegalHoldsCommand}
484
360
  */
485
361
  listLegalHolds(args: ListLegalHoldsCommandInput, options?: __HttpHandlerOptions): Promise<ListLegalHoldsCommandOutput>;
486
362
  listLegalHolds(args: ListLegalHoldsCommandInput, cb: (err: any, data?: ListLegalHoldsCommandOutput) => void): void;
487
363
  listLegalHolds(args: ListLegalHoldsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLegalHoldsCommandOutput) => void): void;
488
364
  /**
489
- * @public
490
- * <p>Returns an array of resources successfully backed up by Backup, including
491
- * the time the resource was saved, an Amazon Resource Name (ARN) of the resource, and a
492
- * resource type.</p>
365
+ * @see {@link ListProtectedResourcesCommand}
493
366
  */
494
367
  listProtectedResources(args: ListProtectedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListProtectedResourcesCommandOutput>;
495
368
  listProtectedResources(args: ListProtectedResourcesCommandInput, cb: (err: any, data?: ListProtectedResourcesCommandOutput) => void): void;
496
369
  listProtectedResources(args: ListProtectedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProtectedResourcesCommandOutput) => void): void;
497
370
  /**
498
- * @public
499
- * <p>Returns detailed information about the recovery points stored in a backup vault.</p>
371
+ * @see {@link ListRecoveryPointsByBackupVaultCommand}
500
372
  */
501
373
  listRecoveryPointsByBackupVault(args: ListRecoveryPointsByBackupVaultCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryPointsByBackupVaultCommandOutput>;
502
374
  listRecoveryPointsByBackupVault(args: ListRecoveryPointsByBackupVaultCommandInput, cb: (err: any, data?: ListRecoveryPointsByBackupVaultCommandOutput) => void): void;
503
375
  listRecoveryPointsByBackupVault(args: ListRecoveryPointsByBackupVaultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryPointsByBackupVaultCommandOutput) => void): void;
504
376
  /**
505
- * @public
506
- * <p>This action returns recovery point ARNs (Amazon Resource Names) of the
507
- * specified legal hold.</p>
377
+ * @see {@link ListRecoveryPointsByLegalHoldCommand}
508
378
  */
509
379
  listRecoveryPointsByLegalHold(args: ListRecoveryPointsByLegalHoldCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryPointsByLegalHoldCommandOutput>;
510
380
  listRecoveryPointsByLegalHold(args: ListRecoveryPointsByLegalHoldCommandInput, cb: (err: any, data?: ListRecoveryPointsByLegalHoldCommandOutput) => void): void;
511
381
  listRecoveryPointsByLegalHold(args: ListRecoveryPointsByLegalHoldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryPointsByLegalHoldCommandOutput) => void): void;
512
382
  /**
513
- * @public
514
- * <p>Returns detailed information about all the recovery points of the type specified by a
515
- * resource Amazon Resource Name (ARN).</p>
516
- * <note>
517
- * <p>For Amazon EFS and Amazon EC2, this action only lists recovery points
518
- * created by Backup.</p>
519
- * </note>
383
+ * @see {@link ListRecoveryPointsByResourceCommand}
520
384
  */
521
385
  listRecoveryPointsByResource(args: ListRecoveryPointsByResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryPointsByResourceCommandOutput>;
522
386
  listRecoveryPointsByResource(args: ListRecoveryPointsByResourceCommandInput, cb: (err: any, data?: ListRecoveryPointsByResourceCommandOutput) => void): void;
523
387
  listRecoveryPointsByResource(args: ListRecoveryPointsByResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryPointsByResourceCommandOutput) => void): void;
524
388
  /**
525
- * @public
526
- * <p>Returns details about your report jobs.</p>
389
+ * @see {@link ListReportJobsCommand}
527
390
  */
528
391
  listReportJobs(args: ListReportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListReportJobsCommandOutput>;
529
392
  listReportJobs(args: ListReportJobsCommandInput, cb: (err: any, data?: ListReportJobsCommandOutput) => void): void;
530
393
  listReportJobs(args: ListReportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportJobsCommandOutput) => void): void;
531
394
  /**
532
- * @public
533
- * <p>Returns a list of your report plans. For detailed information about a single report
534
- * plan, use <code>DescribeReportPlan</code>.</p>
395
+ * @see {@link ListReportPlansCommand}
535
396
  */
536
397
  listReportPlans(args: ListReportPlansCommandInput, options?: __HttpHandlerOptions): Promise<ListReportPlansCommandOutput>;
537
398
  listReportPlans(args: ListReportPlansCommandInput, cb: (err: any, data?: ListReportPlansCommandOutput) => void): void;
538
399
  listReportPlans(args: ListReportPlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportPlansCommandOutput) => void): void;
539
400
  /**
540
- * @public
541
- * <p>Returns a list of jobs that Backup initiated to restore a saved resource,
542
- * including details about the recovery process.</p>
401
+ * @see {@link ListRestoreJobsCommand}
543
402
  */
544
403
  listRestoreJobs(args: ListRestoreJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListRestoreJobsCommandOutput>;
545
404
  listRestoreJobs(args: ListRestoreJobsCommandInput, cb: (err: any, data?: ListRestoreJobsCommandOutput) => void): void;
546
405
  listRestoreJobs(args: ListRestoreJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRestoreJobsCommandOutput) => void): void;
547
406
  /**
548
- * @public
549
- * <p>Returns a list of key-value pairs assigned to a target recovery point, backup plan, or
550
- * backup vault.</p>
551
- * <p>
552
- * <code>ListTags</code> only works for resource types that support full Backup
553
- * management of their backups. Those resource types are listed in the "Full Backup management" section of the <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html#features-by-resource"> Feature
554
- * availability by resource</a> table.</p>
407
+ * @see {@link ListTagsCommand}
555
408
  */
556
409
  listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
557
410
  listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
558
411
  listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
559
412
  /**
560
- * @public
561
- * <p>Sets a resource-based policy that is used to manage access permissions on the target
562
- * backup vault. Requires a backup vault name and an access policy document in JSON
563
- * format.</p>
413
+ * @see {@link PutBackupVaultAccessPolicyCommand}
564
414
  */
565
415
  putBackupVaultAccessPolicy(args: PutBackupVaultAccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutBackupVaultAccessPolicyCommandOutput>;
566
416
  putBackupVaultAccessPolicy(args: PutBackupVaultAccessPolicyCommandInput, cb: (err: any, data?: PutBackupVaultAccessPolicyCommandOutput) => void): void;
567
417
  putBackupVaultAccessPolicy(args: PutBackupVaultAccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBackupVaultAccessPolicyCommandOutput) => void): void;
568
418
  /**
569
- * @public
570
- * <p>Applies Backup Vault Lock to a backup vault, preventing attempts to delete
571
- * any recovery point stored in or created in a backup vault. Vault Lock also prevents
572
- * attempts to update the lifecycle policy that controls the retention period of any recovery
573
- * point currently stored in a backup vault. If specified, Vault Lock enforces a minimum and
574
- * maximum retention period for future backup and copy jobs that target a backup vault.</p>
575
- * <note>
576
- * <p>Backup Vault Lock has been assessed by Cohasset Associates for use in environments
577
- * that are subject to SEC 17a-4, CFTC, and FINRA regulations. For more information about
578
- * how Backup Vault Lock relates to these regulations, see the
579
- * <a href="samples/cohassetreport.zip">Cohasset Associates
580
- * Compliance Assessment.</a>
581
- * </p>
582
- * </note>
419
+ * @see {@link PutBackupVaultLockConfigurationCommand}
583
420
  */
584
421
  putBackupVaultLockConfiguration(args: PutBackupVaultLockConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutBackupVaultLockConfigurationCommandOutput>;
585
422
  putBackupVaultLockConfiguration(args: PutBackupVaultLockConfigurationCommandInput, cb: (err: any, data?: PutBackupVaultLockConfigurationCommandOutput) => void): void;
586
423
  putBackupVaultLockConfiguration(args: PutBackupVaultLockConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBackupVaultLockConfigurationCommandOutput) => void): void;
587
424
  /**
588
- * @public
589
- * <p>Turns on notifications on a backup vault for the specified topic and events.</p>
425
+ * @see {@link PutBackupVaultNotificationsCommand}
590
426
  */
591
427
  putBackupVaultNotifications(args: PutBackupVaultNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<PutBackupVaultNotificationsCommandOutput>;
592
428
  putBackupVaultNotifications(args: PutBackupVaultNotificationsCommandInput, cb: (err: any, data?: PutBackupVaultNotificationsCommandOutput) => void): void;
593
429
  putBackupVaultNotifications(args: PutBackupVaultNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBackupVaultNotificationsCommandOutput) => void): void;
594
430
  /**
595
- * @public
596
- * <p>Starts an on-demand backup job for the specified resource.</p>
431
+ * @see {@link StartBackupJobCommand}
597
432
  */
598
433
  startBackupJob(args: StartBackupJobCommandInput, options?: __HttpHandlerOptions): Promise<StartBackupJobCommandOutput>;
599
434
  startBackupJob(args: StartBackupJobCommandInput, cb: (err: any, data?: StartBackupJobCommandOutput) => void): void;
600
435
  startBackupJob(args: StartBackupJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBackupJobCommandOutput) => void): void;
601
436
  /**
602
- * @public
603
- * <p>Starts a job to create a one-time copy of the specified resource.</p>
604
- * <p>Does not support continuous backups.</p>
437
+ * @see {@link StartCopyJobCommand}
605
438
  */
606
439
  startCopyJob(args: StartCopyJobCommandInput, options?: __HttpHandlerOptions): Promise<StartCopyJobCommandOutput>;
607
440
  startCopyJob(args: StartCopyJobCommandInput, cb: (err: any, data?: StartCopyJobCommandOutput) => void): void;
608
441
  startCopyJob(args: StartCopyJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCopyJobCommandOutput) => void): void;
609
442
  /**
610
- * @public
611
- * <p>Starts an on-demand report job for the specified report plan.</p>
443
+ * @see {@link StartReportJobCommand}
612
444
  */
613
445
  startReportJob(args: StartReportJobCommandInput, options?: __HttpHandlerOptions): Promise<StartReportJobCommandOutput>;
614
446
  startReportJob(args: StartReportJobCommandInput, cb: (err: any, data?: StartReportJobCommandOutput) => void): void;
615
447
  startReportJob(args: StartReportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReportJobCommandOutput) => void): void;
616
448
  /**
617
- * @public
618
- * <p>Recovers the saved resource identified by an Amazon Resource Name (ARN).</p>
449
+ * @see {@link StartRestoreJobCommand}
619
450
  */
620
451
  startRestoreJob(args: StartRestoreJobCommandInput, options?: __HttpHandlerOptions): Promise<StartRestoreJobCommandOutput>;
621
452
  startRestoreJob(args: StartRestoreJobCommandInput, cb: (err: any, data?: StartRestoreJobCommandOutput) => void): void;
622
453
  startRestoreJob(args: StartRestoreJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRestoreJobCommandOutput) => void): void;
623
454
  /**
624
- * @public
625
- * <p>Attempts to cancel a job to create a one-time backup of a resource.</p>
626
- * <p>This action is not supported for the following services:
627
- * Amazon FSx for Windows File Server, Amazon FSx for Lustre, FSx for ONTAP
628
- * , Amazon FSx for OpenZFS, Amazon DocumentDB (with MongoDB compatibility), Amazon RDS, Amazon Aurora,
629
- * and Amazon Neptune.</p>
455
+ * @see {@link StopBackupJobCommand}
630
456
  */
631
457
  stopBackupJob(args: StopBackupJobCommandInput, options?: __HttpHandlerOptions): Promise<StopBackupJobCommandOutput>;
632
458
  stopBackupJob(args: StopBackupJobCommandInput, cb: (err: any, data?: StopBackupJobCommandOutput) => void): void;
633
459
  stopBackupJob(args: StopBackupJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBackupJobCommandOutput) => void): void;
634
460
  /**
635
- * @public
636
- * <p>Assigns a set of key-value pairs to a recovery point, backup plan, or backup vault
637
- * identified by an Amazon Resource Name (ARN).</p>
461
+ * @see {@link TagResourceCommand}
638
462
  */
639
463
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
640
464
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
641
465
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
642
466
  /**
643
- * @public
644
- * <p>Removes a set of key-value pairs from a recovery point, backup plan, or backup vault
645
- * identified by an Amazon Resource Name (ARN)</p>
467
+ * @see {@link UntagResourceCommand}
646
468
  */
647
469
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
648
470
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
649
471
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
650
472
  /**
651
- * @public
652
- * <p>Updates an existing backup plan identified by its <code>backupPlanId</code> with the
653
- * input document in JSON format. The new version is uniquely identified by a
654
- * <code>VersionId</code>.</p>
473
+ * @see {@link UpdateBackupPlanCommand}
655
474
  */
656
475
  updateBackupPlan(args: UpdateBackupPlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBackupPlanCommandOutput>;
657
476
  updateBackupPlan(args: UpdateBackupPlanCommandInput, cb: (err: any, data?: UpdateBackupPlanCommandOutput) => void): void;
658
477
  updateBackupPlan(args: UpdateBackupPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBackupPlanCommandOutput) => void): void;
659
478
  /**
660
- * @public
661
- * <p>Updates an existing framework identified by its <code>FrameworkName</code> with the
662
- * input document in JSON format.</p>
479
+ * @see {@link UpdateFrameworkCommand}
663
480
  */
664
481
  updateFramework(args: UpdateFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFrameworkCommandOutput>;
665
482
  updateFramework(args: UpdateFrameworkCommandInput, cb: (err: any, data?: UpdateFrameworkCommandOutput) => void): void;
666
483
  updateFramework(args: UpdateFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFrameworkCommandOutput) => void): void;
667
484
  /**
668
- * @public
669
- * <p>Updates whether the Amazon Web Services account is opted in to cross-account backup.
670
- * Returns an error if the account is not an Organizations management account. Use the
671
- * <code>DescribeGlobalSettings</code> API to determine the current settings.</p>
485
+ * @see {@link UpdateGlobalSettingsCommand}
672
486
  */
673
487
  updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGlobalSettingsCommandOutput>;
674
488
  updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
675
489
  updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
676
490
  /**
677
- * @public
678
- * <p>Sets the transition lifecycle of a recovery point.</p>
679
- * <p>The lifecycle defines when a protected resource is transitioned to cold storage and when
680
- * it expires. Backup transitions and expires backups automatically according to
681
- * the lifecycle that you define.</p>
682
- * <p>Backups transitioned to cold storage must be stored in cold storage for a minimum of 90
683
- * days. Therefore, the “retention” setting must be 90 days greater than the “transition to
684
- * cold after days” setting. The “transition to cold after days” setting cannot be changed
685
- * after a backup has been transitioned to cold.</p>
686
- * <p>Resource types that are able to be transitioned to cold storage are listed in the "Lifecycle to cold storage"
687
- * section of the <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html#features-by-resource">
688
- * Feature availability by resource</a> table. Backup ignores this expression for
689
- * other resource types.</p>
690
- * <p>This operation does not support continuous backups.</p>
491
+ * @see {@link UpdateRecoveryPointLifecycleCommand}
691
492
  */
692
493
  updateRecoveryPointLifecycle(args: UpdateRecoveryPointLifecycleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecoveryPointLifecycleCommandOutput>;
693
494
  updateRecoveryPointLifecycle(args: UpdateRecoveryPointLifecycleCommandInput, cb: (err: any, data?: UpdateRecoveryPointLifecycleCommandOutput) => void): void;
694
495
  updateRecoveryPointLifecycle(args: UpdateRecoveryPointLifecycleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecoveryPointLifecycleCommandOutput) => void): void;
695
496
  /**
696
- * @public
697
- * <p>Updates the current service opt-in settings for the Region. If service-opt-in is enabled
698
- * for a service, Backup tries to protect that service's resources in this Region,
699
- * when the resource is included in an on-demand backup or scheduled backup plan. Otherwise,
700
- * Backup does not try to protect that service's resources in this Region. Use
701
- * the <code>DescribeRegionSettings</code> API to determine the resource types that are
702
- * supported.</p>
497
+ * @see {@link UpdateRegionSettingsCommand}
703
498
  */
704
499
  updateRegionSettings(args: UpdateRegionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRegionSettingsCommandOutput>;
705
500
  updateRegionSettings(args: UpdateRegionSettingsCommandInput, cb: (err: any, data?: UpdateRegionSettingsCommandOutput) => void): void;
706
501
  updateRegionSettings(args: UpdateRegionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegionSettingsCommandOutput) => void): void;
707
502
  /**
708
- * @public
709
- * <p>Updates an existing report plan identified by its <code>ReportPlanName</code> with the
710
- * input document in JSON format.</p>
503
+ * @see {@link UpdateReportPlanCommand}
711
504
  */
712
505
  updateReportPlan(args: UpdateReportPlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReportPlanCommandOutput>;
713
506
  updateReportPlan(args: UpdateReportPlanCommandInput, cb: (err: any, data?: UpdateReportPlanCommandOutput) => void): void;
714
507
  updateReportPlan(args: UpdateReportPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReportPlanCommandOutput) => void): void;
715
508
  }
509
+ /**
510
+ * @public
511
+ * <fullname>Backup</fullname>
512
+ * <p>Backup is a unified backup service designed to protect Amazon Web Services
513
+ * services and their associated data. Backup simplifies the creation, migration,
514
+ * restoration, and deletion of backups, while also providing reporting and
515
+ * auditing.</p>
516
+ */
517
+ export declare class Backup extends BackupClient implements Backup {
518
+ }