@aws-sdk/client-backup 3.830.0 → 3.831.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +445 -122
  3. package/dist-es/Backup.js +10 -0
  4. package/dist-es/commands/AssociateBackupVaultMpaApprovalTeamCommand.js +23 -0
  5. package/dist-es/commands/CreateRestoreAccessBackupVaultCommand.js +23 -0
  6. package/dist-es/commands/DisassociateBackupVaultMpaApprovalTeamCommand.js +23 -0
  7. package/dist-es/commands/ListRestoreAccessBackupVaultsCommand.js +22 -0
  8. package/dist-es/commands/RevokeRestoreAccessBackupVaultCommand.js +23 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +110 -82
  11. package/dist-es/pagination/ListRestoreAccessBackupVaultsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +195 -14
  14. package/dist-types/Backup.d.ts +35 -0
  15. package/dist-types/BackupClient.d.ts +7 -2
  16. package/dist-types/commands/AssociateBackupVaultMpaApprovalTeamCommand.d.ts +89 -0
  17. package/dist-types/commands/CreateRestoreAccessBackupVaultCommand.d.ts +105 -0
  18. package/dist-types/commands/DescribeBackupVaultCommand.d.ts +11 -1
  19. package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +2 -1
  20. package/dist-types/commands/DisassociateBackupVaultMpaApprovalTeamCommand.d.ts +88 -0
  21. package/dist-types/commands/GetBackupVaultNotificationsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListBackupVaultsCommand.d.ts +2 -2
  23. package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +2 -1
  24. package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +1 -1
  25. package/dist-types/commands/ListRestoreAccessBackupVaultsCommand.d.ts +102 -0
  26. package/dist-types/commands/PutBackupVaultNotificationsCommand.d.ts +1 -1
  27. package/dist-types/commands/RevokeRestoreAccessBackupVaultCommand.d.ts +89 -0
  28. package/dist-types/commands/index.d.ts +5 -0
  29. package/dist-types/models/models_0.d.ts +437 -161
  30. package/dist-types/pagination/ListRestoreAccessBackupVaultsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  33. package/dist-types/ts3.4/Backup.d.ts +97 -0
  34. package/dist-types/ts3.4/BackupClient.d.ts +30 -0
  35. package/dist-types/ts3.4/commands/AssociateBackupVaultMpaApprovalTeamCommand.d.ts +47 -0
  36. package/dist-types/ts3.4/commands/CreateRestoreAccessBackupVaultCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/DisassociateBackupVaultMpaApprovalTeamCommand.d.ts +47 -0
  38. package/dist-types/ts3.4/commands/ListRestoreAccessBackupVaultsCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/RevokeRestoreAccessBackupVaultCommand.d.ts +47 -0
  40. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +145 -55
  42. package/dist-types/ts3.4/pagination/ListRestoreAccessBackupVaultsPaginator.d.ts +11 -0
  43. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  44. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  45. package/package.json +1 -1
@@ -77,6 +77,148 @@ export declare class AlreadyExistsException extends __BaseException {
77
77
  */
78
78
  constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
79
79
  }
80
+ /**
81
+ * @public
82
+ */
83
+ export interface AssociateBackupVaultMpaApprovalTeamInput {
84
+ /**
85
+ * <p>The name of the backup vault to associate with the MPA approval team.</p>
86
+ * @public
87
+ */
88
+ BackupVaultName: string | undefined;
89
+ /**
90
+ * <p>The Amazon Resource Name (ARN) of the MPA approval team to associate with the backup vault.</p>
91
+ * @public
92
+ */
93
+ MpaApprovalTeamArn: string | undefined;
94
+ /**
95
+ * <p>A comment provided by the requester explaining the association request.</p>
96
+ * @public
97
+ */
98
+ RequesterComment?: string | undefined;
99
+ }
100
+ /**
101
+ * <p>Indicates that something is wrong with a parameter's value. For example, the value is
102
+ * out of range.</p>
103
+ * @public
104
+ */
105
+ export declare class InvalidParameterValueException extends __BaseException {
106
+ readonly name: "InvalidParameterValueException";
107
+ readonly $fault: "client";
108
+ Code?: string | undefined;
109
+ Message?: string | undefined;
110
+ /**
111
+ * <p></p>
112
+ * @public
113
+ */
114
+ Type?: string | undefined;
115
+ /**
116
+ * <p></p>
117
+ * @public
118
+ */
119
+ Context?: string | undefined;
120
+ /**
121
+ * @internal
122
+ */
123
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
124
+ }
125
+ /**
126
+ * <p>Indicates that something is wrong with the input to the request. For example, a
127
+ * parameter is of the wrong type.</p>
128
+ * @public
129
+ */
130
+ export declare class InvalidRequestException extends __BaseException {
131
+ readonly name: "InvalidRequestException";
132
+ readonly $fault: "client";
133
+ Code?: string | undefined;
134
+ Message?: string | undefined;
135
+ /**
136
+ * <p></p>
137
+ * @public
138
+ */
139
+ Type?: string | undefined;
140
+ /**
141
+ * <p></p>
142
+ * @public
143
+ */
144
+ Context?: string | undefined;
145
+ /**
146
+ * @internal
147
+ */
148
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
149
+ }
150
+ /**
151
+ * <p>Indicates that a required parameter is missing.</p>
152
+ * @public
153
+ */
154
+ export declare class MissingParameterValueException extends __BaseException {
155
+ readonly name: "MissingParameterValueException";
156
+ readonly $fault: "client";
157
+ Code?: string | undefined;
158
+ Message?: string | undefined;
159
+ /**
160
+ * <p></p>
161
+ * @public
162
+ */
163
+ Type?: string | undefined;
164
+ /**
165
+ * <p></p>
166
+ * @public
167
+ */
168
+ Context?: string | undefined;
169
+ /**
170
+ * @internal
171
+ */
172
+ constructor(opts: __ExceptionOptionType<MissingParameterValueException, __BaseException>);
173
+ }
174
+ /**
175
+ * <p>A resource that is required for the action doesn't exist.</p>
176
+ * @public
177
+ */
178
+ export declare class ResourceNotFoundException extends __BaseException {
179
+ readonly name: "ResourceNotFoundException";
180
+ readonly $fault: "client";
181
+ Code?: string | undefined;
182
+ Message?: string | undefined;
183
+ /**
184
+ * <p></p>
185
+ * @public
186
+ */
187
+ Type?: string | undefined;
188
+ /**
189
+ * <p></p>
190
+ * @public
191
+ */
192
+ Context?: string | undefined;
193
+ /**
194
+ * @internal
195
+ */
196
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
197
+ }
198
+ /**
199
+ * <p>The request failed due to a temporary failure of the server.</p>
200
+ * @public
201
+ */
202
+ export declare class ServiceUnavailableException extends __BaseException {
203
+ readonly name: "ServiceUnavailableException";
204
+ readonly $fault: "server";
205
+ Code?: string | undefined;
206
+ Message?: string | undefined;
207
+ /**
208
+ * <p></p>
209
+ * @public
210
+ */
211
+ Type?: string | undefined;
212
+ /**
213
+ * <p></p>
214
+ * @public
215
+ */
216
+ Context?: string | undefined;
217
+ /**
218
+ * @internal
219
+ */
220
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
221
+ }
80
222
  /**
81
223
  * <p>Contains information about the backup plan and rule that Backup used to
82
224
  * initiate the recovery point backup.</p>
@@ -1064,6 +1206,7 @@ export declare const BackupVaultEvent: {
1064
1206
  readonly BACKUP_JOB_SUCCESSFUL: "BACKUP_JOB_SUCCESSFUL";
1065
1207
  readonly BACKUP_PLAN_CREATED: "BACKUP_PLAN_CREATED";
1066
1208
  readonly BACKUP_PLAN_MODIFIED: "BACKUP_PLAN_MODIFIED";
1209
+ readonly CONTINUOUS_BACKUP_INTERRUPTED: "CONTINUOUS_BACKUP_INTERRUPTED";
1067
1210
  readonly COPY_JOB_FAILED: "COPY_JOB_FAILED";
1068
1211
  readonly COPY_JOB_STARTED: "COPY_JOB_STARTED";
1069
1212
  readonly COPY_JOB_SUCCESSFUL: "COPY_JOB_SUCCESSFUL";
@@ -1102,6 +1245,7 @@ export type VaultState = (typeof VaultState)[keyof typeof VaultState];
1102
1245
  export declare const VaultType: {
1103
1246
  readonly BACKUP_VAULT: "BACKUP_VAULT";
1104
1247
  readonly LOGICALLY_AIR_GAPPED_BACKUP_VAULT: "LOGICALLY_AIR_GAPPED_BACKUP_VAULT";
1248
+ readonly RESTORE_ACCESS_BACKUP_VAULT: "RESTORE_ACCESS_BACKUP_VAULT";
1105
1249
  };
1106
1250
  /**
1107
1251
  * @public
@@ -1266,31 +1410,6 @@ export interface CancelLegalHoldInput {
1266
1410
  */
1267
1411
  export interface CancelLegalHoldOutput {
1268
1412
  }
1269
- /**
1270
- * <p>Indicates that something is wrong with a parameter's value. For example, the value is
1271
- * out of range.</p>
1272
- * @public
1273
- */
1274
- export declare class InvalidParameterValueException extends __BaseException {
1275
- readonly name: "InvalidParameterValueException";
1276
- readonly $fault: "client";
1277
- Code?: string | undefined;
1278
- Message?: string | undefined;
1279
- /**
1280
- * <p></p>
1281
- * @public
1282
- */
1283
- Type?: string | undefined;
1284
- /**
1285
- * <p></p>
1286
- * @public
1287
- */
1288
- Context?: string | undefined;
1289
- /**
1290
- * @internal
1291
- */
1292
- constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
1293
- }
1294
1413
  /**
1295
1414
  * <p>Backup is already performing an action on this recovery point. It can't
1296
1415
  * perform the action you requested until the first action finishes. Try again later.</p>
@@ -1316,78 +1435,6 @@ export declare class InvalidResourceStateException extends __BaseException {
1316
1435
  */
1317
1436
  constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
1318
1437
  }
1319
- /**
1320
- * <p>Indicates that a required parameter is missing.</p>
1321
- * @public
1322
- */
1323
- export declare class MissingParameterValueException extends __BaseException {
1324
- readonly name: "MissingParameterValueException";
1325
- readonly $fault: "client";
1326
- Code?: string | undefined;
1327
- Message?: string | undefined;
1328
- /**
1329
- * <p></p>
1330
- * @public
1331
- */
1332
- Type?: string | undefined;
1333
- /**
1334
- * <p></p>
1335
- * @public
1336
- */
1337
- Context?: string | undefined;
1338
- /**
1339
- * @internal
1340
- */
1341
- constructor(opts: __ExceptionOptionType<MissingParameterValueException, __BaseException>);
1342
- }
1343
- /**
1344
- * <p>A resource that is required for the action doesn't exist.</p>
1345
- * @public
1346
- */
1347
- export declare class ResourceNotFoundException extends __BaseException {
1348
- readonly name: "ResourceNotFoundException";
1349
- readonly $fault: "client";
1350
- Code?: string | undefined;
1351
- Message?: string | undefined;
1352
- /**
1353
- * <p></p>
1354
- * @public
1355
- */
1356
- Type?: string | undefined;
1357
- /**
1358
- * <p></p>
1359
- * @public
1360
- */
1361
- Context?: string | undefined;
1362
- /**
1363
- * @internal
1364
- */
1365
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1366
- }
1367
- /**
1368
- * <p>The request failed due to a temporary failure of the server.</p>
1369
- * @public
1370
- */
1371
- export declare class ServiceUnavailableException extends __BaseException {
1372
- readonly name: "ServiceUnavailableException";
1373
- readonly $fault: "server";
1374
- Code?: string | undefined;
1375
- Message?: string | undefined;
1376
- /**
1377
- * <p></p>
1378
- * @public
1379
- */
1380
- Type?: string | undefined;
1381
- /**
1382
- * <p></p>
1383
- * @public
1384
- */
1385
- Context?: string | undefined;
1386
- /**
1387
- * @internal
1388
- */
1389
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
1390
- }
1391
1438
  /**
1392
1439
  * <p>Backup can't perform the action that you requested until it finishes
1393
1440
  * performing a previous action. Try again later.</p>
@@ -2202,31 +2249,6 @@ export interface CreateLogicallyAirGappedBackupVaultOutput {
2202
2249
  */
2203
2250
  VaultState?: VaultState | undefined;
2204
2251
  }
2205
- /**
2206
- * <p>Indicates that something is wrong with the input to the request. For example, a
2207
- * parameter is of the wrong type.</p>
2208
- * @public
2209
- */
2210
- export declare class InvalidRequestException extends __BaseException {
2211
- readonly name: "InvalidRequestException";
2212
- readonly $fault: "client";
2213
- Code?: string | undefined;
2214
- Message?: string | undefined;
2215
- /**
2216
- * <p></p>
2217
- * @public
2218
- */
2219
- Type?: string | undefined;
2220
- /**
2221
- * <p></p>
2222
- * @public
2223
- */
2224
- Context?: string | undefined;
2225
- /**
2226
- * @internal
2227
- */
2228
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
2229
- }
2230
2252
  /**
2231
2253
  * <p>Contains information from your report plan about where to deliver your reports,
2232
2254
  * specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your
@@ -2369,6 +2391,61 @@ export interface CreateReportPlanOutput {
2369
2391
  */
2370
2392
  CreationTime?: Date | undefined;
2371
2393
  }
2394
+ /**
2395
+ * @public
2396
+ */
2397
+ export interface CreateRestoreAccessBackupVaultInput {
2398
+ /**
2399
+ * <p>The ARN of the source backup vault containing the recovery points to which temporary access is requested.</p>
2400
+ * @public
2401
+ */
2402
+ SourceBackupVaultArn: string | undefined;
2403
+ /**
2404
+ * <p>The name of the backup vault to associate with an MPA approval team.</p>
2405
+ * @public
2406
+ */
2407
+ BackupVaultName?: string | undefined;
2408
+ /**
2409
+ * <p>Optional tags to assign to the restore access backup vault.</p>
2410
+ * @public
2411
+ */
2412
+ BackupVaultTags?: Record<string, string> | undefined;
2413
+ /**
2414
+ * <p>A unique string that identifies the request and allows failed requests to be retried without the risk of executing the operation twice.</p>
2415
+ * @public
2416
+ */
2417
+ CreatorRequestId?: string | undefined;
2418
+ /**
2419
+ * <p>A comment explaining the reason for requesting restore access to the backup vault.</p>
2420
+ * @public
2421
+ */
2422
+ RequesterComment?: string | undefined;
2423
+ }
2424
+ /**
2425
+ * @public
2426
+ */
2427
+ export interface CreateRestoreAccessBackupVaultOutput {
2428
+ /**
2429
+ * <p>The ARN that uniquely identifies the created restore access backup vault.</p>
2430
+ * @public
2431
+ */
2432
+ RestoreAccessBackupVaultArn?: string | undefined;
2433
+ /**
2434
+ * <p>The current state of the restore access backup vault.</p>
2435
+ * @public
2436
+ */
2437
+ VaultState?: VaultState | undefined;
2438
+ /**
2439
+ * <p>The name of the created restore access backup vault.</p>
2440
+ * @public
2441
+ */
2442
+ RestoreAccessBackupVaultName?: string | undefined;
2443
+ /**
2444
+ * <p>>The date and time when the restore access backup vault was created, in Unix format and Coordinated Universal Time </p>
2445
+ * @public
2446
+ */
2447
+ CreationDate?: Date | undefined;
2448
+ }
2372
2449
  /**
2373
2450
  * @public
2374
2451
  * @enum
@@ -3261,6 +3338,50 @@ export interface DescribeBackupVaultInput {
3261
3338
  */
3262
3339
  BackupVaultAccountId?: string | undefined;
3263
3340
  }
3341
+ /**
3342
+ * @public
3343
+ * @enum
3344
+ */
3345
+ export declare const MpaSessionStatus: {
3346
+ readonly APPROVED: "APPROVED";
3347
+ readonly FAILED: "FAILED";
3348
+ readonly PENDING: "PENDING";
3349
+ };
3350
+ /**
3351
+ * @public
3352
+ */
3353
+ export type MpaSessionStatus = (typeof MpaSessionStatus)[keyof typeof MpaSessionStatus];
3354
+ /**
3355
+ * <p>Contains information about the latest update to an MPA approval team association.</p>
3356
+ * @public
3357
+ */
3358
+ export interface LatestMpaApprovalTeamUpdate {
3359
+ /**
3360
+ * <p>The ARN of the MPA session associated with this update.</p>
3361
+ * @public
3362
+ */
3363
+ MpaSessionArn?: string | undefined;
3364
+ /**
3365
+ * <p>The current status of the MPA approval team update.</p>
3366
+ * @public
3367
+ */
3368
+ Status?: MpaSessionStatus | undefined;
3369
+ /**
3370
+ * <p>A message describing the current status of the MPA approval team update.</p>
3371
+ * @public
3372
+ */
3373
+ StatusMessage?: string | undefined;
3374
+ /**
3375
+ * <p>The date and time when the MPA approval team update was initiated.</p>
3376
+ * @public
3377
+ */
3378
+ InitiationDate?: Date | undefined;
3379
+ /**
3380
+ * <p>The date and time when the MPA approval team update will expire.</p>
3381
+ * @public
3382
+ */
3383
+ ExpiryDate?: Date | undefined;
3384
+ }
3264
3385
  /**
3265
3386
  * @public
3266
3387
  */
@@ -3364,6 +3485,26 @@ export interface DescribeBackupVaultOutput {
3364
3485
  * @public
3365
3486
  */
3366
3487
  LockDate?: Date | undefined;
3488
+ /**
3489
+ * <p>The ARN of the source backup vault from which this restore access backup vault was created.</p>
3490
+ * @public
3491
+ */
3492
+ SourceBackupVaultArn?: string | undefined;
3493
+ /**
3494
+ * <p>The ARN of the MPA approval team associated with this backup vault.</p>
3495
+ * @public
3496
+ */
3497
+ MpaApprovalTeamArn?: string | undefined;
3498
+ /**
3499
+ * <p>The ARN of the MPA session associated with this backup vault.</p>
3500
+ * @public
3501
+ */
3502
+ MpaSessionArn?: string | undefined;
3503
+ /**
3504
+ * <p>Information about the latest update to the MPA approval team association for this backup vault.</p>
3505
+ * @public
3506
+ */
3507
+ LatestMpaApprovalTeamUpdate?: LatestMpaApprovalTeamUpdate | undefined;
3367
3508
  }
3368
3509
  /**
3369
3510
  * @public
@@ -3755,6 +3896,12 @@ export interface DescribeRecoveryPointOutput {
3755
3896
  * @public
3756
3897
  */
3757
3898
  CreationDate?: Date | undefined;
3899
+ /**
3900
+ * <p>The date and time when the backup job that created this recovery point was initiated, in
3901
+ * Unix format and Coordinated Universal Time (UTC).</p>
3902
+ * @public
3903
+ */
3904
+ InitiationDate?: Date | undefined;
3758
3905
  /**
3759
3906
  * <p>The date and time that a job to create a recovery point is completed, in Unix format and
3760
3907
  * Coordinated Universal Time (UTC). The value of <code>CompletionDate</code> is accurate to
@@ -4273,6 +4420,21 @@ export interface DescribeRestoreJobOutput {
4273
4420
  */
4274
4421
  DeletionStatusMessage?: string | undefined;
4275
4422
  }
4423
+ /**
4424
+ * @public
4425
+ */
4426
+ export interface DisassociateBackupVaultMpaApprovalTeamInput {
4427
+ /**
4428
+ * <p>The name of the backup vault from which to disassociate the MPA approval team.</p>
4429
+ * @public
4430
+ */
4431
+ BackupVaultName: string | undefined;
4432
+ /**
4433
+ * <p>An optional comment explaining the reason for disassociating the MPA approval team from the backup vault.</p>
4434
+ * @public
4435
+ */
4436
+ RequesterComment?: string | undefined;
4437
+ }
4276
4438
  /**
4277
4439
  * @public
4278
4440
  */
@@ -6654,6 +6816,12 @@ export interface RecoveryPointByBackupVault {
6654
6816
  * @public
6655
6817
  */
6656
6818
  CreationDate?: Date | undefined;
6819
+ /**
6820
+ * <p>The date and time when the backup job that created this recovery point was initiated, in
6821
+ * Unix format and Coordinated Universal Time (UTC).</p>
6822
+ * @public
6823
+ */
6824
+ InitiationDate?: Date | undefined;
6657
6825
  /**
6658
6826
  * <p>The date and time a job to restore a recovery point is completed, in Unix format and
6659
6827
  * Coordinated Universal Time (UTC). The value of <code>CompletionDate</code> is accurate to
@@ -7092,6 +7260,115 @@ export interface ListReportPlansOutput {
7092
7260
  */
7093
7261
  NextToken?: string | undefined;
7094
7262
  }
7263
+ /**
7264
+ * @public
7265
+ */
7266
+ export interface ListRestoreAccessBackupVaultsInput {
7267
+ /**
7268
+ * <p>The name of the backup vault for which to list associated restore access backup vaults.</p>
7269
+ * @public
7270
+ */
7271
+ BackupVaultName: string | undefined;
7272
+ /**
7273
+ * <p>The pagination token from a previous request to retrieve the next set of results.</p>
7274
+ * @public
7275
+ */
7276
+ NextToken?: string | undefined;
7277
+ /**
7278
+ * <p>The maximum number of items to return in the response.</p>
7279
+ * @public
7280
+ */
7281
+ MaxResults?: number | undefined;
7282
+ }
7283
+ /**
7284
+ * @public
7285
+ * @enum
7286
+ */
7287
+ export declare const MpaRevokeSessionStatus: {
7288
+ readonly FAILED: "FAILED";
7289
+ readonly PENDING: "PENDING";
7290
+ };
7291
+ /**
7292
+ * @public
7293
+ */
7294
+ export type MpaRevokeSessionStatus = (typeof MpaRevokeSessionStatus)[keyof typeof MpaRevokeSessionStatus];
7295
+ /**
7296
+ * <p>Contains information about the latest request to revoke access to a backup vault.</p>
7297
+ * @public
7298
+ */
7299
+ export interface LatestRevokeRequest {
7300
+ /**
7301
+ * <p>The ARN of the MPA session associated with this revoke request.</p>
7302
+ * @public
7303
+ */
7304
+ MpaSessionArn?: string | undefined;
7305
+ /**
7306
+ * <p>The current status of the revoke request.</p>
7307
+ * @public
7308
+ */
7309
+ Status?: MpaRevokeSessionStatus | undefined;
7310
+ /**
7311
+ * <p>A message describing the current status of the revoke request.</p>
7312
+ * @public
7313
+ */
7314
+ StatusMessage?: string | undefined;
7315
+ /**
7316
+ * <p>The date and time when the revoke request was initiated.</p>
7317
+ * @public
7318
+ */
7319
+ InitiationDate?: Date | undefined;
7320
+ /**
7321
+ * <p>The date and time when the revoke request will expire.</p>
7322
+ * @public
7323
+ */
7324
+ ExpiryDate?: Date | undefined;
7325
+ }
7326
+ /**
7327
+ * <p>Contains information about a restore access backup vault.</p>
7328
+ * @public
7329
+ */
7330
+ export interface RestoreAccessBackupVaultListMember {
7331
+ /**
7332
+ * <p>The ARN of the restore access backup vault.</p>
7333
+ * @public
7334
+ */
7335
+ RestoreAccessBackupVaultArn?: string | undefined;
7336
+ /**
7337
+ * <p>The date and time when the restore access backup vault was created.</p>
7338
+ * @public
7339
+ */
7340
+ CreationDate?: Date | undefined;
7341
+ /**
7342
+ * <p>The date and time when the restore access backup vault was approved.</p>
7343
+ * @public
7344
+ */
7345
+ ApprovalDate?: Date | undefined;
7346
+ /**
7347
+ * <p>The current state of the restore access backup vault.</p>
7348
+ * @public
7349
+ */
7350
+ VaultState?: VaultState | undefined;
7351
+ /**
7352
+ * <p>Information about the latest request to revoke access to this backup vault.</p>
7353
+ * @public
7354
+ */
7355
+ LatestRevokeRequest?: LatestRevokeRequest | undefined;
7356
+ }
7357
+ /**
7358
+ * @public
7359
+ */
7360
+ export interface ListRestoreAccessBackupVaultsOutput {
7361
+ /**
7362
+ * <p>The pagination token to use in a subsequent request to retrieve the next set of results.</p>
7363
+ * @public
7364
+ */
7365
+ NextToken?: string | undefined;
7366
+ /**
7367
+ * <p>A list of restore access backup vaults associated with the specified backup vault.</p>
7368
+ * @public
7369
+ */
7370
+ RestoreAccessBackupVaults?: RestoreAccessBackupVaultListMember[] | undefined;
7371
+ }
7095
7372
  /**
7096
7373
  * @public
7097
7374
  */
@@ -7949,45 +8226,8 @@ export interface PutBackupVaultNotificationsInput {
7949
8226
  SNSTopicArn: string | undefined;
7950
8227
  /**
7951
8228
  * <p>An array of events that indicate the status of jobs to back up resources to the backup
7952
- * vault.</p>
7953
- * <p>For common use cases and code samples, see <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/sns-notifications.html">Using Amazon SNS to
7954
- * track Backup events</a>.</p>
7955
- * <p>The following events are supported:</p>
7956
- * <ul>
7957
- * <li>
7958
- * <p>
7959
- * <code>BACKUP_JOB_STARTED</code> | <code>BACKUP_JOB_COMPLETED</code> | <code>BACKUP_JOB_FAILED</code>
7960
- * </p>
7961
- * </li>
7962
- * <li>
7963
- * <p>
7964
- * <code>COPY_JOB_STARTED</code> | <code>COPY_JOB_SUCCESSFUL</code> |
7965
- * <code>COPY_JOB_FAILED</code>
7966
- * </p>
7967
- * </li>
7968
- * <li>
7969
- * <p>
7970
- * <code>RESTORE_JOB_STARTED</code> | <code>RESTORE_JOB_COMPLETED</code> |
7971
- * <code>RECOVERY_POINT_MODIFIED</code>
7972
- * </p>
7973
- * </li>
7974
- * <li>
7975
- * <p>
7976
- * <code>S3_BACKUP_OBJECT_FAILED</code> | <code>S3_RESTORE_OBJECT_FAILED</code>
7977
- * </p>
7978
- * </li>
7979
- * <li>
7980
- * <p>
7981
- * <code>RECOVERY_POINT_INDEX_COMPLETED</code> | <code>RECOVERY_POINT_INDEX_DELETED</code> |
7982
- * <code>RECOVERY_POINT_INDEXING_FAILED</code>
7983
- * </p>
7984
- * </li>
7985
- * </ul>
7986
- * <note>
7987
- * <p>The list below includes both supported events and deprecated events that are no longer
7988
- * in use (for reference). Deprecated events do not return statuses or notifications.
7989
- * Refer to the list above for the supported events.</p>
7990
- * </note>
8229
+ * vault. For the list of supported events, common use cases, and code samples, see <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/backup-notifications.html">Notification options
8230
+ * with Backup</a>.</p>
7991
8231
  * @public
7992
8232
  */
7993
8233
  BackupVaultEvents: BackupVaultEvent[] | undefined;
@@ -8013,6 +8253,26 @@ export interface PutRestoreValidationResultInput {
8013
8253
  */
8014
8254
  ValidationStatusMessage?: string | undefined;
8015
8255
  }
8256
+ /**
8257
+ * @public
8258
+ */
8259
+ export interface RevokeRestoreAccessBackupVaultInput {
8260
+ /**
8261
+ * <p>The name of the source backup vault associated with the restore access backup vault to be revoked.</p>
8262
+ * @public
8263
+ */
8264
+ BackupVaultName: string | undefined;
8265
+ /**
8266
+ * <p>The ARN of the restore access backup vault to revoke.</p>
8267
+ * @public
8268
+ */
8269
+ RestoreAccessBackupVaultArn: string | undefined;
8270
+ /**
8271
+ * <p>A comment explaining the reason for revoking access to the restore access backup vault.</p>
8272
+ * @public
8273
+ */
8274
+ RequesterComment?: string | undefined;
8275
+ }
8016
8276
  /**
8017
8277
  * @public
8018
8278
  * @enum
@@ -9046,6 +9306,10 @@ export interface UpdateRestoreTestingSelectionOutput {
9046
9306
  */
9047
9307
  UpdateTime: Date | undefined;
9048
9308
  }
9309
+ /**
9310
+ * @internal
9311
+ */
9312
+ export declare const AssociateBackupVaultMpaApprovalTeamInputFilterSensitiveLog: (obj: AssociateBackupVaultMpaApprovalTeamInput) => any;
9049
9313
  /**
9050
9314
  * @internal
9051
9315
  */
@@ -9078,6 +9342,10 @@ export declare const CreateLegalHoldInputFilterSensitiveLog: (obj: CreateLegalHo
9078
9342
  * @internal
9079
9343
  */
9080
9344
  export declare const CreateLogicallyAirGappedBackupVaultInputFilterSensitiveLog: (obj: CreateLogicallyAirGappedBackupVaultInput) => any;
9345
+ /**
9346
+ * @internal
9347
+ */
9348
+ export declare const CreateRestoreAccessBackupVaultInputFilterSensitiveLog: (obj: CreateRestoreAccessBackupVaultInput) => any;
9081
9349
  /**
9082
9350
  * @internal
9083
9351
  */
@@ -9090,6 +9358,10 @@ export declare const RestoreTestingSelectionForCreateFilterSensitiveLog: (obj: R
9090
9358
  * @internal
9091
9359
  */
9092
9360
  export declare const CreateRestoreTestingSelectionInputFilterSensitiveLog: (obj: CreateRestoreTestingSelectionInput) => any;
9361
+ /**
9362
+ * @internal
9363
+ */
9364
+ export declare const DisassociateBackupVaultMpaApprovalTeamInputFilterSensitiveLog: (obj: DisassociateBackupVaultMpaApprovalTeamInput) => any;
9093
9365
  /**
9094
9366
  * @internal
9095
9367
  */
@@ -9122,6 +9394,10 @@ export declare const GetRestoreTestingSelectionOutputFilterSensitiveLog: (obj: G
9122
9394
  * @internal
9123
9395
  */
9124
9396
  export declare const ListTagsOutputFilterSensitiveLog: (obj: ListTagsOutput) => any;
9397
+ /**
9398
+ * @internal
9399
+ */
9400
+ export declare const RevokeRestoreAccessBackupVaultInputFilterSensitiveLog: (obj: RevokeRestoreAccessBackupVaultInput) => any;
9125
9401
  /**
9126
9402
  * @internal
9127
9403
  */