@aws-sdk/client-backup 3.933.0 → 3.934.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 (37) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +251 -0
  3. package/dist-es/Backup.js +10 -0
  4. package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
  5. package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
  6. package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
  7. package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
  8. package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/schemas/schemas_0.js +178 -0
  13. package/dist-types/Backup.d.ts +36 -0
  14. package/dist-types/BackupClient.d.ts +7 -2
  15. package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
  16. package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
  17. package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
  18. package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
  19. package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
  20. package/dist-types/commands/index.d.ts +5 -0
  21. package/dist-types/models/models_0.d.ts +333 -0
  22. package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
  23. package/dist-types/pagination/index.d.ts +1 -0
  24. package/dist-types/schemas/schemas_0.d.ts +22 -0
  25. package/dist-types/ts3.4/Backup.d.ts +86 -0
  26. package/dist-types/ts3.4/BackupClient.d.ts +32 -2
  27. package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
  28. package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
  29. package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
  30. package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
  31. package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +68 -0
  34. package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
  35. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  37. package/package.json +5 -5
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "DeleteTieringConfiguration", {})
13
+ .n("BackupClient", "DeleteTieringConfigurationCommand")
14
+ .sc(DeleteTieringConfiguration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "GetTieringConfiguration", {})
13
+ .n("BackupClient", "GetTieringConfigurationCommand")
14
+ .sc(GetTieringConfiguration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListTieringConfigurations } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListTieringConfigurationsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "ListTieringConfigurations", {})
13
+ .n("BackupClient", "ListTieringConfigurationsCommand")
14
+ .sc(ListTieringConfigurations)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "UpdateTieringConfiguration", {})
13
+ .n("BackupClient", "UpdateTieringConfigurationCommand")
14
+ .sc(UpdateTieringConfiguration)
15
+ .build() {
16
+ }
@@ -10,6 +10,7 @@ export * from "./CreateReportPlanCommand";
10
10
  export * from "./CreateRestoreAccessBackupVaultCommand";
11
11
  export * from "./CreateRestoreTestingPlanCommand";
12
12
  export * from "./CreateRestoreTestingSelectionCommand";
13
+ export * from "./CreateTieringConfigurationCommand";
13
14
  export * from "./DeleteBackupPlanCommand";
14
15
  export * from "./DeleteBackupSelectionCommand";
15
16
  export * from "./DeleteBackupVaultAccessPolicyCommand";
@@ -21,6 +22,7 @@ export * from "./DeleteRecoveryPointCommand";
21
22
  export * from "./DeleteReportPlanCommand";
22
23
  export * from "./DeleteRestoreTestingPlanCommand";
23
24
  export * from "./DeleteRestoreTestingSelectionCommand";
25
+ export * from "./DeleteTieringConfigurationCommand";
24
26
  export * from "./DescribeBackupJobCommand";
25
27
  export * from "./DescribeBackupVaultCommand";
26
28
  export * from "./DescribeCopyJobCommand";
@@ -50,6 +52,7 @@ export * from "./GetRestoreTestingInferredMetadataCommand";
50
52
  export * from "./GetRestoreTestingPlanCommand";
51
53
  export * from "./GetRestoreTestingSelectionCommand";
52
54
  export * from "./GetSupportedResourceTypesCommand";
55
+ export * from "./GetTieringConfigurationCommand";
53
56
  export * from "./ListBackupJobSummariesCommand";
54
57
  export * from "./ListBackupJobsCommand";
55
58
  export * from "./ListBackupPlanTemplatesCommand";
@@ -76,6 +79,7 @@ export * from "./ListRestoreJobsCommand";
76
79
  export * from "./ListRestoreTestingPlansCommand";
77
80
  export * from "./ListRestoreTestingSelectionsCommand";
78
81
  export * from "./ListTagsCommand";
82
+ export * from "./ListTieringConfigurationsCommand";
79
83
  export * from "./PutBackupVaultAccessPolicyCommand";
80
84
  export * from "./PutBackupVaultLockConfigurationCommand";
81
85
  export * from "./PutBackupVaultNotificationsCommand";
@@ -97,3 +101,4 @@ export * from "./UpdateRegionSettingsCommand";
97
101
  export * from "./UpdateReportPlanCommand";
98
102
  export * from "./UpdateRestoreTestingPlanCommand";
99
103
  export * from "./UpdateRestoreTestingSelectionCommand";
104
+ export * from "./UpdateTieringConfigurationCommand";
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BackupClient } from "../BackupClient";
3
+ import { ListTieringConfigurationsCommand, } from "../commands/ListTieringConfigurationsCommand";
4
+ export const paginateListTieringConfigurations = createPaginator(BackupClient, ListTieringConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -25,3 +25,4 @@ export * from "./ListRestoreJobsPaginator";
25
25
  export * from "./ListRestoreTestingPlansPaginator";
26
26
  export * from "./ListRestoreTestingSelectionsPaginator";
27
27
  export * from "./ListTagsPaginator";
28
+ export * from "./ListTieringConfigurationsPaginator";
@@ -151,6 +151,9 @@ const _CRTSO = "CreateRestoreTestingSelectionOutput";
151
151
  const _CS = "ControlScope";
152
152
  const _CSTTRR = "CopySourceTagsToRestoredResource";
153
153
  const _CT = "ConditionType";
154
+ const _CTC = "CreateTieringConfiguration";
155
+ const _CTCI = "CreateTieringConfigurationInput";
156
+ const _CTCO = "CreateTieringConfigurationOutput";
154
157
  const _CTo = "CompletionTime";
155
158
  const _CTr = "CreationTime";
156
159
  const _CV = "ConditionValue";
@@ -236,6 +239,9 @@ const _DRTSI = "DeleteRestoreTestingSelectionInput";
236
239
  const _DS = "DeploymentStatus";
237
240
  const _DSM = "DeletionStatusMessage";
238
241
  const _DSe = "DeletionStatus";
242
+ const _DTC = "DeleteTieringConfiguration";
243
+ const _DTCI = "DeleteTieringConfigurationInput";
244
+ const _DTCO = "DeleteTieringConfigurationOutput";
239
245
  const _DVLS = "DestinationVaultLockState";
240
246
  const _DVT = "DestinationVaultType";
241
247
  const _EBPT = "ExportBackupPlanTemplate";
@@ -305,6 +311,9 @@ const _GRTSO = "GetRestoreTestingSelectionOutput";
305
311
  const _GS = "GlobalSettings";
306
312
  const _GSRT = "GetSupportedResourceTypes";
307
313
  const _GSRTO = "GetSupportedResourceTypesOutput";
314
+ const _GTC = "GetTieringConfiguration";
315
+ const _GTCI = "GetTieringConfigurationInput";
316
+ const _GTCO = "GetTieringConfigurationOutput";
308
317
  const _I = "Index";
309
318
  const _IA = "IndexActions";
310
319
  const _IAn = "IndexAction";
@@ -429,9 +438,13 @@ const _LRTSI = "ListRestoreTestingSelectionsInput";
429
438
  const _LRTSO = "ListRestoreTestingSelectionsOutput";
430
439
  const _LSET = "LastSuccessfulExecutionTime";
431
440
  const _LT = "ListTags";
441
+ const _LTC = "ListTieringConfigurations";
442
+ const _LTCI = "ListTieringConfigurationsInput";
443
+ const _LTCO = "ListTieringConfigurationsOutput";
432
444
  const _LTI = "ListTagsInput";
433
445
  const _LTO = "ListTagsOutput";
434
446
  const _LUT = "LastUpdateTime";
447
+ const _LUTa = "LastUpdatedTime";
435
448
  const _Lo = "Locked";
436
449
  const _M = "Message";
437
450
  const _MATA = "MpaApprovalTeamArn";
@@ -529,6 +542,8 @@ const _RRABVI = "RevokeRestoreAccessBackupVaultInput";
529
542
  const _RRID = "RetainRecordInDays";
530
543
  const _RRU = "RetainRecordUntil";
531
544
  const _RS = "ReportSetting";
545
+ const _RSe = "ResourceSelection";
546
+ const _RSes = "ResourceSelections";
532
547
  const _RT = "ResourceType";
533
548
  const _RTMP = "ResourceTypeManagementPreference";
534
549
  const _RTOIP = "ResourceTypeOptInPreference";
@@ -599,7 +614,17 @@ const _SWM = "StartWindowMinutes";
599
614
  const _St = "Status";
600
615
  const _T = "Type";
601
616
  const _TBVN = "TargetBackupVaultName";
617
+ const _TC = "TieringConfiguration";
618
+ const _TCA = "TieringConfigurationArn";
619
+ const _TCIFC = "TieringConfigurationInputForCreate";
620
+ const _TCIFU = "TieringConfigurationInputForUpdate";
621
+ const _TCL = "TieringConfigurationsList";
622
+ const _TCLM = "TieringConfigurationsListMember";
623
+ const _TCN = "TieringConfigurationName";
624
+ const _TCT = "TieringConfigurationTags";
625
+ const _TCi = "TieringConfigurations";
602
626
  const _TD = "ToDate";
627
+ const _TDSID = "TieringDownSettingsInDays";
603
628
  const _TII = "TotalItemsIndexed";
604
629
  const _TKL = "TagKeyList";
605
630
  const _TLAGBVA = "TargetLogicallyAirGappedBackupVaultArn";
@@ -635,6 +660,9 @@ const _URTS = "UpdateRestoreTestingSelection";
635
660
  const _URTSI = "UpdateRestoreTestingSelectionInput";
636
661
  const _URTSO = "UpdateRestoreTestingSelectionOutput";
637
662
  const _UT = "UpdateTime";
663
+ const _UTC = "UpdateTieringConfiguration";
664
+ const _UTCI = "UpdateTieringConfigurationInput";
665
+ const _UTCO = "UpdateTieringConfigurationOutput";
638
666
  const _V = "Value";
639
667
  const _VI = "VersionId";
640
668
  const _VLS = "VaultLockState";
@@ -1103,6 +1131,15 @@ export var CreateRestoreTestingSelectionOutput = [
1103
1131
  [_CTr, _RTPA, _RTPN, _RTSN],
1104
1132
  [4, 0, 0, 0],
1105
1133
  ];
1134
+ export var CreateTieringConfigurationInput = [
1135
+ 3,
1136
+ n0,
1137
+ _CTCI,
1138
+ 0,
1139
+ [_TC, _TCT, _CRI],
1140
+ [() => TieringConfigurationInputForCreate, [() => Tags, 0], [0, 4]],
1141
+ ];
1142
+ export var CreateTieringConfigurationOutput = [3, n0, _CTCO, 0, [_TCA, _TCN, _CTr], [0, 0, 4]];
1106
1143
  export var DateRange = [3, n0, _DR, 0, [_FDr, _TD], [4, 4]];
1107
1144
  export var DeleteBackupPlanInput = [3, n0, _DBPI, 0, [_BPIa], [[0, 1]]];
1108
1145
  export var DeleteBackupPlanOutput = [3, n0, _DBPO, 0, [_BPIa, _BPA, _DD, _VI], [0, 0, 4, 0]];
@@ -1146,6 +1183,8 @@ export var DeleteRestoreTestingSelectionInput = [
1146
1183
  [0, 1],
1147
1184
  ],
1148
1185
  ];
1186
+ export var DeleteTieringConfigurationInput = [3, n0, _DTCI, 0, [_TCN], [[0, 1]]];
1187
+ export var DeleteTieringConfigurationOutput = [3, n0, _DTCO, 0, [], []];
1149
1188
  export var DependencyFailureException = [
1150
1189
  -3,
1151
1190
  n0,
@@ -1634,6 +1673,15 @@ export var GetRestoreTestingSelectionOutput = [
1634
1673
  [[() => RestoreTestingSelectionForGet, 0]],
1635
1674
  ];
1636
1675
  export var GetSupportedResourceTypesOutput = [3, n0, _GSRTO, 0, [_RTe], [64 | 0]];
1676
+ export var GetTieringConfigurationInput = [3, n0, _GTCI, 0, [_TCN], [[0, 1]]];
1677
+ export var GetTieringConfigurationOutput = [
1678
+ 3,
1679
+ n0,
1680
+ _GTCO,
1681
+ 0,
1682
+ [_TC],
1683
+ [() => TieringConfiguration],
1684
+ ];
1637
1685
  export var IndexAction = [3, n0, _IAn, 0, [_RTe], [64 | 0]];
1638
1686
  export var IndexedRecoveryPoint = [
1639
1687
  3,
@@ -2820,6 +2868,35 @@ export var ListTagsInput = [
2820
2868
  ],
2821
2869
  ];
2822
2870
  export var ListTagsOutput = [3, n0, _LTO, 0, [_NT, _Ta], [0, [() => Tags, 0]]];
2871
+ export var ListTieringConfigurationsInput = [
2872
+ 3,
2873
+ n0,
2874
+ _LTCI,
2875
+ 0,
2876
+ [_MR, _NT],
2877
+ [
2878
+ [
2879
+ 1,
2880
+ {
2881
+ [_hQ]: _mR,
2882
+ },
2883
+ ],
2884
+ [
2885
+ 0,
2886
+ {
2887
+ [_hQ]: _nT,
2888
+ },
2889
+ ],
2890
+ ],
2891
+ ];
2892
+ export var ListTieringConfigurationsOutput = [
2893
+ 3,
2894
+ n0,
2895
+ _LTCO,
2896
+ 0,
2897
+ [_TCi, _NT],
2898
+ [() => TieringConfigurationsList, 0],
2899
+ ];
2823
2900
  export var MissingParameterValueException = [
2824
2901
  -3,
2825
2902
  n0,
@@ -2998,6 +3075,7 @@ export var ResourceNotFoundException = [
2998
3075
  [0, 0, 0, 0],
2999
3076
  ];
3000
3077
  TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
3078
+ export var ResourceSelection = [3, n0, _RSe, 0, [_Re, _TDSID, _RT], [64 | 0, 1, 0]];
3001
3079
  export var RestoreAccessBackupVaultListMember = [
3002
3080
  3,
3003
3081
  n0,
@@ -3199,6 +3277,38 @@ export var TagResourceInput = [
3199
3277
  [() => Tags, 0],
3200
3278
  ],
3201
3279
  ];
3280
+ export var TieringConfiguration = [
3281
+ 3,
3282
+ n0,
3283
+ _TC,
3284
+ 0,
3285
+ [_TCN, _TCA, _BVN, _RSe, _CRI, _CTr, _LUTa],
3286
+ [0, 0, 0, () => ResourceSelections, 0, 4, 4],
3287
+ ];
3288
+ export var TieringConfigurationInputForCreate = [
3289
+ 3,
3290
+ n0,
3291
+ _TCIFC,
3292
+ 0,
3293
+ [_TCN, _BVN, _RSe],
3294
+ [0, 0, () => ResourceSelections],
3295
+ ];
3296
+ export var TieringConfigurationInputForUpdate = [
3297
+ 3,
3298
+ n0,
3299
+ _TCIFU,
3300
+ 0,
3301
+ [_RSe, _BVN],
3302
+ [() => ResourceSelections, 0],
3303
+ ];
3304
+ export var TieringConfigurationsListMember = [
3305
+ 3,
3306
+ n0,
3307
+ _TCLM,
3308
+ 0,
3309
+ [_TCA, _TCN, _BVN, _CTr, _LUTa],
3310
+ [0, 0, 0, 4, 4],
3311
+ ];
3202
3312
  export var UntagResourceInput = [
3203
3313
  3,
3204
3314
  n0,
@@ -3317,6 +3427,22 @@ export var UpdateRestoreTestingSelectionOutput = [
3317
3427
  [_CTr, _RTPA, _RTPN, _RTSN, _UT],
3318
3428
  [4, 0, 0, 0, 4],
3319
3429
  ];
3430
+ export var UpdateTieringConfigurationInput = [
3431
+ 3,
3432
+ n0,
3433
+ _UTCI,
3434
+ 0,
3435
+ [_TCN, _TC],
3436
+ [[0, 1], () => TieringConfigurationInputForUpdate],
3437
+ ];
3438
+ export var UpdateTieringConfigurationOutput = [
3439
+ 3,
3440
+ n0,
3441
+ _UTCO,
3442
+ 0,
3443
+ [_TCA, _TCN, _CTr, _LUTa],
3444
+ [0, 0, 4, 4],
3445
+ ];
3320
3446
  export var __Unit = "unit";
3321
3447
  export var BackupServiceException = [-3, _sm, "BackupServiceException", 0, [], []];
3322
3448
  TypeRegistry.for(_sm).registerError(BackupServiceException, __BackupServiceException);
@@ -3353,6 +3479,7 @@ export var ReportJobList = [1, n0, _RJL, 0, () => ReportJob];
3353
3479
  export var ReportPlanList = [1, n0, _RPLep, 0, () => ReportPlan];
3354
3480
  export var ResourceArns = 64 | 0;
3355
3481
  export var ResourceIdentifiers = 64 | 0;
3482
+ export var ResourceSelections = [1, n0, _RSes, 0, () => ResourceSelection];
3356
3483
  export var ResourceTypeList = 64 | 0;
3357
3484
  export var ResourceTypes = 64 | 0;
3358
3485
  export var RestoreAccessBackupVaultList = [
@@ -3370,6 +3497,7 @@ export var RestoreTestingSelections = [1, n0, _RTSe, 0, () => RestoreTestingSele
3370
3497
  export var ScheduledRunsPreview = [1, n0, _SRP, 0, () => ScheduledPlanExecutionMember];
3371
3498
  export var stringList = 64 | 0;
3372
3499
  export var TagKeyList = [1, n0, _TKL, 8, 0];
3500
+ export var TieringConfigurationsList = [1, n0, _TCL, 0, () => TieringConfigurationsListMember];
3373
3501
  export var VaultNames = 64 | 0;
3374
3502
  export var BackupJobChildJobsInState = 128 | 1;
3375
3503
  export var BackupOptions = 128 | 0;
@@ -3501,6 +3629,16 @@ export var CreateRestoreTestingSelection = [
3501
3629
  () => CreateRestoreTestingSelectionInput,
3502
3630
  () => CreateRestoreTestingSelectionOutput,
3503
3631
  ];
3632
+ export var CreateTieringConfiguration = [
3633
+ 9,
3634
+ n0,
3635
+ _CTC,
3636
+ {
3637
+ [_h]: ["PUT", "/tiering-configurations", 200],
3638
+ },
3639
+ () => CreateTieringConfigurationInput,
3640
+ () => CreateTieringConfigurationOutput,
3641
+ ];
3504
3642
  export var DeleteBackupPlan = [
3505
3643
  9,
3506
3644
  n0,
@@ -3611,6 +3749,16 @@ export var DeleteRestoreTestingSelection = [
3611
3749
  () => DeleteRestoreTestingSelectionInput,
3612
3750
  () => __Unit,
3613
3751
  ];
3752
+ export var DeleteTieringConfiguration = [
3753
+ 9,
3754
+ n0,
3755
+ _DTC,
3756
+ {
3757
+ [_h]: ["DELETE", "/tiering-configurations/{TieringConfigurationName}", 200],
3758
+ },
3759
+ () => DeleteTieringConfigurationInput,
3760
+ () => DeleteTieringConfigurationOutput,
3761
+ ];
3614
3762
  export var DescribeBackupJob = [
3615
3763
  9,
3616
3764
  n0,
@@ -3901,6 +4049,16 @@ export var GetSupportedResourceTypes = [
3901
4049
  () => __Unit,
3902
4050
  () => GetSupportedResourceTypesOutput,
3903
4051
  ];
4052
+ export var GetTieringConfiguration = [
4053
+ 9,
4054
+ n0,
4055
+ _GTC,
4056
+ {
4057
+ [_h]: ["GET", "/tiering-configurations/{TieringConfigurationName}", 200],
4058
+ },
4059
+ () => GetTieringConfigurationInput,
4060
+ () => GetTieringConfigurationOutput,
4061
+ ];
3904
4062
  export var ListBackupJobs = [
3905
4063
  9,
3906
4064
  n0,
@@ -4161,6 +4319,16 @@ export var ListTags = [
4161
4319
  () => ListTagsInput,
4162
4320
  () => ListTagsOutput,
4163
4321
  ];
4322
+ export var ListTieringConfigurations = [
4323
+ 9,
4324
+ n0,
4325
+ _LTC,
4326
+ {
4327
+ [_h]: ["GET", "/tiering-configurations", 200],
4328
+ },
4329
+ () => ListTieringConfigurationsInput,
4330
+ () => ListTieringConfigurationsOutput,
4331
+ ];
4164
4332
  export var PutBackupVaultAccessPolicy = [
4165
4333
  9,
4166
4334
  n0,
@@ -4375,3 +4543,13 @@ export var UpdateRestoreTestingSelection = [
4375
4543
  () => UpdateRestoreTestingSelectionInput,
4376
4544
  () => UpdateRestoreTestingSelectionOutput,
4377
4545
  ];
4546
+ export var UpdateTieringConfiguration = [
4547
+ 9,
4548
+ n0,
4549
+ _UTC,
4550
+ {
4551
+ [_h]: ["PUT", "/tiering-configurations/{TieringConfigurationName}", 200],
4552
+ },
4553
+ () => UpdateTieringConfigurationInput,
4554
+ () => UpdateTieringConfigurationOutput,
4555
+ ];
@@ -12,6 +12,7 @@ import { CreateReportPlanCommandInput, CreateReportPlanCommandOutput } from "./c
12
12
  import { CreateRestoreAccessBackupVaultCommandInput, CreateRestoreAccessBackupVaultCommandOutput } from "./commands/CreateRestoreAccessBackupVaultCommand";
13
13
  import { CreateRestoreTestingPlanCommandInput, CreateRestoreTestingPlanCommandOutput } from "./commands/CreateRestoreTestingPlanCommand";
14
14
  import { CreateRestoreTestingSelectionCommandInput, CreateRestoreTestingSelectionCommandOutput } from "./commands/CreateRestoreTestingSelectionCommand";
15
+ import { CreateTieringConfigurationCommandInput, CreateTieringConfigurationCommandOutput } from "./commands/CreateTieringConfigurationCommand";
15
16
  import { DeleteBackupPlanCommandInput, DeleteBackupPlanCommandOutput } from "./commands/DeleteBackupPlanCommand";
16
17
  import { DeleteBackupSelectionCommandInput, DeleteBackupSelectionCommandOutput } from "./commands/DeleteBackupSelectionCommand";
17
18
  import { DeleteBackupVaultAccessPolicyCommandInput, DeleteBackupVaultAccessPolicyCommandOutput } from "./commands/DeleteBackupVaultAccessPolicyCommand";
@@ -23,6 +24,7 @@ import { DeleteRecoveryPointCommandInput, DeleteRecoveryPointCommandOutput } fro
23
24
  import { DeleteReportPlanCommandInput, DeleteReportPlanCommandOutput } from "./commands/DeleteReportPlanCommand";
24
25
  import { DeleteRestoreTestingPlanCommandInput, DeleteRestoreTestingPlanCommandOutput } from "./commands/DeleteRestoreTestingPlanCommand";
25
26
  import { DeleteRestoreTestingSelectionCommandInput, DeleteRestoreTestingSelectionCommandOutput } from "./commands/DeleteRestoreTestingSelectionCommand";
27
+ import { DeleteTieringConfigurationCommandInput, DeleteTieringConfigurationCommandOutput } from "./commands/DeleteTieringConfigurationCommand";
26
28
  import { DescribeBackupJobCommandInput, DescribeBackupJobCommandOutput } from "./commands/DescribeBackupJobCommand";
27
29
  import { DescribeBackupVaultCommandInput, DescribeBackupVaultCommandOutput } from "./commands/DescribeBackupVaultCommand";
28
30
  import { DescribeCopyJobCommandInput, DescribeCopyJobCommandOutput } from "./commands/DescribeCopyJobCommand";
@@ -52,6 +54,7 @@ import { GetRestoreTestingInferredMetadataCommandInput, GetRestoreTestingInferre
52
54
  import { GetRestoreTestingPlanCommandInput, GetRestoreTestingPlanCommandOutput } from "./commands/GetRestoreTestingPlanCommand";
53
55
  import { GetRestoreTestingSelectionCommandInput, GetRestoreTestingSelectionCommandOutput } from "./commands/GetRestoreTestingSelectionCommand";
54
56
  import { GetSupportedResourceTypesCommandInput, GetSupportedResourceTypesCommandOutput } from "./commands/GetSupportedResourceTypesCommand";
57
+ import { GetTieringConfigurationCommandInput, GetTieringConfigurationCommandOutput } from "./commands/GetTieringConfigurationCommand";
55
58
  import { ListBackupJobsCommandInput, ListBackupJobsCommandOutput } from "./commands/ListBackupJobsCommand";
56
59
  import { ListBackupJobSummariesCommandInput, ListBackupJobSummariesCommandOutput } from "./commands/ListBackupJobSummariesCommand";
57
60
  import { ListBackupPlansCommandInput, ListBackupPlansCommandOutput } from "./commands/ListBackupPlansCommand";
@@ -78,6 +81,7 @@ import { ListRestoreJobSummariesCommandInput, ListRestoreJobSummariesCommandOutp
78
81
  import { ListRestoreTestingPlansCommandInput, ListRestoreTestingPlansCommandOutput } from "./commands/ListRestoreTestingPlansCommand";
79
82
  import { ListRestoreTestingSelectionsCommandInput, ListRestoreTestingSelectionsCommandOutput } from "./commands/ListRestoreTestingSelectionsCommand";
80
83
  import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
84
+ import { ListTieringConfigurationsCommandInput, ListTieringConfigurationsCommandOutput } from "./commands/ListTieringConfigurationsCommand";
81
85
  import { PutBackupVaultAccessPolicyCommandInput, PutBackupVaultAccessPolicyCommandOutput } from "./commands/PutBackupVaultAccessPolicyCommand";
82
86
  import { PutBackupVaultLockConfigurationCommandInput, PutBackupVaultLockConfigurationCommandOutput } from "./commands/PutBackupVaultLockConfigurationCommand";
83
87
  import { PutBackupVaultNotificationsCommandInput, PutBackupVaultNotificationsCommandOutput } from "./commands/PutBackupVaultNotificationsCommand";
@@ -99,6 +103,7 @@ import { UpdateRegionSettingsCommandInput, UpdateRegionSettingsCommandOutput } f
99
103
  import { UpdateReportPlanCommandInput, UpdateReportPlanCommandOutput } from "./commands/UpdateReportPlanCommand";
100
104
  import { UpdateRestoreTestingPlanCommandInput, UpdateRestoreTestingPlanCommandOutput } from "./commands/UpdateRestoreTestingPlanCommand";
101
105
  import { UpdateRestoreTestingSelectionCommandInput, UpdateRestoreTestingSelectionCommandOutput } from "./commands/UpdateRestoreTestingSelectionCommand";
106
+ import { UpdateTieringConfigurationCommandInput, UpdateTieringConfigurationCommandOutput } from "./commands/UpdateTieringConfigurationCommand";
102
107
  export interface Backup {
103
108
  /**
104
109
  * @see {@link AssociateBackupVaultMpaApprovalTeamCommand}
@@ -172,6 +177,12 @@ export interface Backup {
172
177
  createRestoreTestingSelection(args: CreateRestoreTestingSelectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateRestoreTestingSelectionCommandOutput>;
173
178
  createRestoreTestingSelection(args: CreateRestoreTestingSelectionCommandInput, cb: (err: any, data?: CreateRestoreTestingSelectionCommandOutput) => void): void;
174
179
  createRestoreTestingSelection(args: CreateRestoreTestingSelectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRestoreTestingSelectionCommandOutput) => void): void;
180
+ /**
181
+ * @see {@link CreateTieringConfigurationCommand}
182
+ */
183
+ createTieringConfiguration(args: CreateTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateTieringConfigurationCommandOutput>;
184
+ createTieringConfiguration(args: CreateTieringConfigurationCommandInput, cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void): void;
185
+ createTieringConfiguration(args: CreateTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void): void;
175
186
  /**
176
187
  * @see {@link DeleteBackupPlanCommand}
177
188
  */
@@ -238,6 +249,12 @@ export interface Backup {
238
249
  deleteRestoreTestingSelection(args: DeleteRestoreTestingSelectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRestoreTestingSelectionCommandOutput>;
239
250
  deleteRestoreTestingSelection(args: DeleteRestoreTestingSelectionCommandInput, cb: (err: any, data?: DeleteRestoreTestingSelectionCommandOutput) => void): void;
240
251
  deleteRestoreTestingSelection(args: DeleteRestoreTestingSelectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRestoreTestingSelectionCommandOutput) => void): void;
252
+ /**
253
+ * @see {@link DeleteTieringConfigurationCommand}
254
+ */
255
+ deleteTieringConfiguration(args: DeleteTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTieringConfigurationCommandOutput>;
256
+ deleteTieringConfiguration(args: DeleteTieringConfigurationCommandInput, cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void): void;
257
+ deleteTieringConfiguration(args: DeleteTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void): void;
241
258
  /**
242
259
  * @see {@link DescribeBackupJobCommand}
243
260
  */
@@ -415,6 +432,12 @@ export interface Backup {
415
432
  getSupportedResourceTypes(args: GetSupportedResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetSupportedResourceTypesCommandOutput>;
416
433
  getSupportedResourceTypes(args: GetSupportedResourceTypesCommandInput, cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void): void;
417
434
  getSupportedResourceTypes(args: GetSupportedResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void): void;
435
+ /**
436
+ * @see {@link GetTieringConfigurationCommand}
437
+ */
438
+ getTieringConfiguration(args: GetTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetTieringConfigurationCommandOutput>;
439
+ getTieringConfiguration(args: GetTieringConfigurationCommandInput, cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void): void;
440
+ getTieringConfiguration(args: GetTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void): void;
418
441
  /**
419
442
  * @see {@link ListBackupJobsCommand}
420
443
  */
@@ -587,6 +610,13 @@ export interface Backup {
587
610
  listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
588
611
  listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
589
612
  listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
613
+ /**
614
+ * @see {@link ListTieringConfigurationsCommand}
615
+ */
616
+ listTieringConfigurations(): Promise<ListTieringConfigurationsCommandOutput>;
617
+ listTieringConfigurations(args: ListTieringConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListTieringConfigurationsCommandOutput>;
618
+ listTieringConfigurations(args: ListTieringConfigurationsCommandInput, cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void): void;
619
+ listTieringConfigurations(args: ListTieringConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void): void;
590
620
  /**
591
621
  * @see {@link PutBackupVaultAccessPolicyCommand}
592
622
  */
@@ -715,6 +745,12 @@ export interface Backup {
715
745
  updateRestoreTestingSelection(args: UpdateRestoreTestingSelectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRestoreTestingSelectionCommandOutput>;
716
746
  updateRestoreTestingSelection(args: UpdateRestoreTestingSelectionCommandInput, cb: (err: any, data?: UpdateRestoreTestingSelectionCommandOutput) => void): void;
717
747
  updateRestoreTestingSelection(args: UpdateRestoreTestingSelectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRestoreTestingSelectionCommandOutput) => void): void;
748
+ /**
749
+ * @see {@link UpdateTieringConfigurationCommand}
750
+ */
751
+ updateTieringConfiguration(args: UpdateTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTieringConfigurationCommandOutput>;
752
+ updateTieringConfiguration(args: UpdateTieringConfigurationCommandInput, cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void): void;
753
+ updateTieringConfiguration(args: UpdateTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void): void;
718
754
  }
719
755
  /**
720
756
  * <fullname>Backup</fullname>
@@ -19,6 +19,7 @@ import { CreateReportPlanCommandInput, CreateReportPlanCommandOutput } from "./c
19
19
  import { CreateRestoreAccessBackupVaultCommandInput, CreateRestoreAccessBackupVaultCommandOutput } from "./commands/CreateRestoreAccessBackupVaultCommand";
20
20
  import { CreateRestoreTestingPlanCommandInput, CreateRestoreTestingPlanCommandOutput } from "./commands/CreateRestoreTestingPlanCommand";
21
21
  import { CreateRestoreTestingSelectionCommandInput, CreateRestoreTestingSelectionCommandOutput } from "./commands/CreateRestoreTestingSelectionCommand";
22
+ import { CreateTieringConfigurationCommandInput, CreateTieringConfigurationCommandOutput } from "./commands/CreateTieringConfigurationCommand";
22
23
  import { DeleteBackupPlanCommandInput, DeleteBackupPlanCommandOutput } from "./commands/DeleteBackupPlanCommand";
23
24
  import { DeleteBackupSelectionCommandInput, DeleteBackupSelectionCommandOutput } from "./commands/DeleteBackupSelectionCommand";
24
25
  import { DeleteBackupVaultAccessPolicyCommandInput, DeleteBackupVaultAccessPolicyCommandOutput } from "./commands/DeleteBackupVaultAccessPolicyCommand";
@@ -30,6 +31,7 @@ import { DeleteRecoveryPointCommandInput, DeleteRecoveryPointCommandOutput } fro
30
31
  import { DeleteReportPlanCommandInput, DeleteReportPlanCommandOutput } from "./commands/DeleteReportPlanCommand";
31
32
  import { DeleteRestoreTestingPlanCommandInput, DeleteRestoreTestingPlanCommandOutput } from "./commands/DeleteRestoreTestingPlanCommand";
32
33
  import { DeleteRestoreTestingSelectionCommandInput, DeleteRestoreTestingSelectionCommandOutput } from "./commands/DeleteRestoreTestingSelectionCommand";
34
+ import { DeleteTieringConfigurationCommandInput, DeleteTieringConfigurationCommandOutput } from "./commands/DeleteTieringConfigurationCommand";
33
35
  import { DescribeBackupJobCommandInput, DescribeBackupJobCommandOutput } from "./commands/DescribeBackupJobCommand";
34
36
  import { DescribeBackupVaultCommandInput, DescribeBackupVaultCommandOutput } from "./commands/DescribeBackupVaultCommand";
35
37
  import { DescribeCopyJobCommandInput, DescribeCopyJobCommandOutput } from "./commands/DescribeCopyJobCommand";
@@ -59,6 +61,7 @@ import { GetRestoreTestingInferredMetadataCommandInput, GetRestoreTestingInferre
59
61
  import { GetRestoreTestingPlanCommandInput, GetRestoreTestingPlanCommandOutput } from "./commands/GetRestoreTestingPlanCommand";
60
62
  import { GetRestoreTestingSelectionCommandInput, GetRestoreTestingSelectionCommandOutput } from "./commands/GetRestoreTestingSelectionCommand";
61
63
  import { GetSupportedResourceTypesCommandInput, GetSupportedResourceTypesCommandOutput } from "./commands/GetSupportedResourceTypesCommand";
64
+ import { GetTieringConfigurationCommandInput, GetTieringConfigurationCommandOutput } from "./commands/GetTieringConfigurationCommand";
62
65
  import { ListBackupJobsCommandInput, ListBackupJobsCommandOutput } from "./commands/ListBackupJobsCommand";
63
66
  import { ListBackupJobSummariesCommandInput, ListBackupJobSummariesCommandOutput } from "./commands/ListBackupJobSummariesCommand";
64
67
  import { ListBackupPlansCommandInput, ListBackupPlansCommandOutput } from "./commands/ListBackupPlansCommand";
@@ -85,6 +88,7 @@ import { ListRestoreJobSummariesCommandInput, ListRestoreJobSummariesCommandOutp
85
88
  import { ListRestoreTestingPlansCommandInput, ListRestoreTestingPlansCommandOutput } from "./commands/ListRestoreTestingPlansCommand";
86
89
  import { ListRestoreTestingSelectionsCommandInput, ListRestoreTestingSelectionsCommandOutput } from "./commands/ListRestoreTestingSelectionsCommand";
87
90
  import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
91
+ import { ListTieringConfigurationsCommandInput, ListTieringConfigurationsCommandOutput } from "./commands/ListTieringConfigurationsCommand";
88
92
  import { PutBackupVaultAccessPolicyCommandInput, PutBackupVaultAccessPolicyCommandOutput } from "./commands/PutBackupVaultAccessPolicyCommand";
89
93
  import { PutBackupVaultLockConfigurationCommandInput, PutBackupVaultLockConfigurationCommandOutput } from "./commands/PutBackupVaultLockConfigurationCommand";
90
94
  import { PutBackupVaultNotificationsCommandInput, PutBackupVaultNotificationsCommandOutput } from "./commands/PutBackupVaultNotificationsCommand";
@@ -106,17 +110,18 @@ import { UpdateRegionSettingsCommandInput, UpdateRegionSettingsCommandOutput } f
106
110
  import { UpdateReportPlanCommandInput, UpdateReportPlanCommandOutput } from "./commands/UpdateReportPlanCommand";
107
111
  import { UpdateRestoreTestingPlanCommandInput, UpdateRestoreTestingPlanCommandOutput } from "./commands/UpdateRestoreTestingPlanCommand";
108
112
  import { UpdateRestoreTestingSelectionCommandInput, UpdateRestoreTestingSelectionCommandOutput } from "./commands/UpdateRestoreTestingSelectionCommand";
113
+ import { UpdateTieringConfigurationCommandInput, UpdateTieringConfigurationCommandOutput } from "./commands/UpdateTieringConfigurationCommand";
109
114
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
110
115
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
111
116
  export { __Client };
112
117
  /**
113
118
  * @public
114
119
  */
115
- export type ServiceInputTypes = AssociateBackupVaultMpaApprovalTeamCommandInput | CancelLegalHoldCommandInput | CreateBackupPlanCommandInput | CreateBackupSelectionCommandInput | CreateBackupVaultCommandInput | CreateFrameworkCommandInput | CreateLegalHoldCommandInput | CreateLogicallyAirGappedBackupVaultCommandInput | CreateReportPlanCommandInput | CreateRestoreAccessBackupVaultCommandInput | CreateRestoreTestingPlanCommandInput | CreateRestoreTestingSelectionCommandInput | DeleteBackupPlanCommandInput | DeleteBackupSelectionCommandInput | DeleteBackupVaultAccessPolicyCommandInput | DeleteBackupVaultCommandInput | DeleteBackupVaultLockConfigurationCommandInput | DeleteBackupVaultNotificationsCommandInput | DeleteFrameworkCommandInput | DeleteRecoveryPointCommandInput | DeleteReportPlanCommandInput | DeleteRestoreTestingPlanCommandInput | DeleteRestoreTestingSelectionCommandInput | DescribeBackupJobCommandInput | DescribeBackupVaultCommandInput | DescribeCopyJobCommandInput | DescribeFrameworkCommandInput | DescribeGlobalSettingsCommandInput | DescribeProtectedResourceCommandInput | DescribeRecoveryPointCommandInput | DescribeRegionSettingsCommandInput | DescribeReportJobCommandInput | DescribeReportPlanCommandInput | DescribeRestoreJobCommandInput | DisassociateBackupVaultMpaApprovalTeamCommandInput | DisassociateRecoveryPointCommandInput | DisassociateRecoveryPointFromParentCommandInput | ExportBackupPlanTemplateCommandInput | GetBackupPlanCommandInput | GetBackupPlanFromJSONCommandInput | GetBackupPlanFromTemplateCommandInput | GetBackupSelectionCommandInput | GetBackupVaultAccessPolicyCommandInput | GetBackupVaultNotificationsCommandInput | GetLegalHoldCommandInput | GetRecoveryPointIndexDetailsCommandInput | GetRecoveryPointRestoreMetadataCommandInput | GetRestoreJobMetadataCommandInput | GetRestoreTestingInferredMetadataCommandInput | GetRestoreTestingPlanCommandInput | GetRestoreTestingSelectionCommandInput | GetSupportedResourceTypesCommandInput | ListBackupJobSummariesCommandInput | ListBackupJobsCommandInput | ListBackupPlanTemplatesCommandInput | ListBackupPlanVersionsCommandInput | ListBackupPlansCommandInput | ListBackupSelectionsCommandInput | ListBackupVaultsCommandInput | ListCopyJobSummariesCommandInput | ListCopyJobsCommandInput | ListFrameworksCommandInput | ListIndexedRecoveryPointsCommandInput | ListLegalHoldsCommandInput | ListProtectedResourcesByBackupVaultCommandInput | ListProtectedResourcesCommandInput | ListRecoveryPointsByBackupVaultCommandInput | ListRecoveryPointsByLegalHoldCommandInput | ListRecoveryPointsByResourceCommandInput | ListReportJobsCommandInput | ListReportPlansCommandInput | ListRestoreAccessBackupVaultsCommandInput | ListRestoreJobSummariesCommandInput | ListRestoreJobsByProtectedResourceCommandInput | ListRestoreJobsCommandInput | ListRestoreTestingPlansCommandInput | ListRestoreTestingSelectionsCommandInput | ListTagsCommandInput | PutBackupVaultAccessPolicyCommandInput | PutBackupVaultLockConfigurationCommandInput | PutBackupVaultNotificationsCommandInput | PutRestoreValidationResultCommandInput | RevokeRestoreAccessBackupVaultCommandInput | StartBackupJobCommandInput | StartCopyJobCommandInput | StartReportJobCommandInput | StartRestoreJobCommandInput | StopBackupJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBackupPlanCommandInput | UpdateFrameworkCommandInput | UpdateGlobalSettingsCommandInput | UpdateRecoveryPointIndexSettingsCommandInput | UpdateRecoveryPointLifecycleCommandInput | UpdateRegionSettingsCommandInput | UpdateReportPlanCommandInput | UpdateRestoreTestingPlanCommandInput | UpdateRestoreTestingSelectionCommandInput;
120
+ export type ServiceInputTypes = AssociateBackupVaultMpaApprovalTeamCommandInput | CancelLegalHoldCommandInput | CreateBackupPlanCommandInput | CreateBackupSelectionCommandInput | CreateBackupVaultCommandInput | CreateFrameworkCommandInput | CreateLegalHoldCommandInput | CreateLogicallyAirGappedBackupVaultCommandInput | CreateReportPlanCommandInput | CreateRestoreAccessBackupVaultCommandInput | CreateRestoreTestingPlanCommandInput | CreateRestoreTestingSelectionCommandInput | CreateTieringConfigurationCommandInput | DeleteBackupPlanCommandInput | DeleteBackupSelectionCommandInput | DeleteBackupVaultAccessPolicyCommandInput | DeleteBackupVaultCommandInput | DeleteBackupVaultLockConfigurationCommandInput | DeleteBackupVaultNotificationsCommandInput | DeleteFrameworkCommandInput | DeleteRecoveryPointCommandInput | DeleteReportPlanCommandInput | DeleteRestoreTestingPlanCommandInput | DeleteRestoreTestingSelectionCommandInput | DeleteTieringConfigurationCommandInput | DescribeBackupJobCommandInput | DescribeBackupVaultCommandInput | DescribeCopyJobCommandInput | DescribeFrameworkCommandInput | DescribeGlobalSettingsCommandInput | DescribeProtectedResourceCommandInput | DescribeRecoveryPointCommandInput | DescribeRegionSettingsCommandInput | DescribeReportJobCommandInput | DescribeReportPlanCommandInput | DescribeRestoreJobCommandInput | DisassociateBackupVaultMpaApprovalTeamCommandInput | DisassociateRecoveryPointCommandInput | DisassociateRecoveryPointFromParentCommandInput | ExportBackupPlanTemplateCommandInput | GetBackupPlanCommandInput | GetBackupPlanFromJSONCommandInput | GetBackupPlanFromTemplateCommandInput | GetBackupSelectionCommandInput | GetBackupVaultAccessPolicyCommandInput | GetBackupVaultNotificationsCommandInput | GetLegalHoldCommandInput | GetRecoveryPointIndexDetailsCommandInput | GetRecoveryPointRestoreMetadataCommandInput | GetRestoreJobMetadataCommandInput | GetRestoreTestingInferredMetadataCommandInput | GetRestoreTestingPlanCommandInput | GetRestoreTestingSelectionCommandInput | GetSupportedResourceTypesCommandInput | GetTieringConfigurationCommandInput | ListBackupJobSummariesCommandInput | ListBackupJobsCommandInput | ListBackupPlanTemplatesCommandInput | ListBackupPlanVersionsCommandInput | ListBackupPlansCommandInput | ListBackupSelectionsCommandInput | ListBackupVaultsCommandInput | ListCopyJobSummariesCommandInput | ListCopyJobsCommandInput | ListFrameworksCommandInput | ListIndexedRecoveryPointsCommandInput | ListLegalHoldsCommandInput | ListProtectedResourcesByBackupVaultCommandInput | ListProtectedResourcesCommandInput | ListRecoveryPointsByBackupVaultCommandInput | ListRecoveryPointsByLegalHoldCommandInput | ListRecoveryPointsByResourceCommandInput | ListReportJobsCommandInput | ListReportPlansCommandInput | ListRestoreAccessBackupVaultsCommandInput | ListRestoreJobSummariesCommandInput | ListRestoreJobsByProtectedResourceCommandInput | ListRestoreJobsCommandInput | ListRestoreTestingPlansCommandInput | ListRestoreTestingSelectionsCommandInput | ListTagsCommandInput | ListTieringConfigurationsCommandInput | PutBackupVaultAccessPolicyCommandInput | PutBackupVaultLockConfigurationCommandInput | PutBackupVaultNotificationsCommandInput | PutRestoreValidationResultCommandInput | RevokeRestoreAccessBackupVaultCommandInput | StartBackupJobCommandInput | StartCopyJobCommandInput | StartReportJobCommandInput | StartRestoreJobCommandInput | StopBackupJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBackupPlanCommandInput | UpdateFrameworkCommandInput | UpdateGlobalSettingsCommandInput | UpdateRecoveryPointIndexSettingsCommandInput | UpdateRecoveryPointLifecycleCommandInput | UpdateRegionSettingsCommandInput | UpdateReportPlanCommandInput | UpdateRestoreTestingPlanCommandInput | UpdateRestoreTestingSelectionCommandInput | UpdateTieringConfigurationCommandInput;
116
121
  /**
117
122
  * @public
118
123
  */
119
- export type ServiceOutputTypes = AssociateBackupVaultMpaApprovalTeamCommandOutput | CancelLegalHoldCommandOutput | CreateBackupPlanCommandOutput | CreateBackupSelectionCommandOutput | CreateBackupVaultCommandOutput | CreateFrameworkCommandOutput | CreateLegalHoldCommandOutput | CreateLogicallyAirGappedBackupVaultCommandOutput | CreateReportPlanCommandOutput | CreateRestoreAccessBackupVaultCommandOutput | CreateRestoreTestingPlanCommandOutput | CreateRestoreTestingSelectionCommandOutput | DeleteBackupPlanCommandOutput | DeleteBackupSelectionCommandOutput | DeleteBackupVaultAccessPolicyCommandOutput | DeleteBackupVaultCommandOutput | DeleteBackupVaultLockConfigurationCommandOutput | DeleteBackupVaultNotificationsCommandOutput | DeleteFrameworkCommandOutput | DeleteRecoveryPointCommandOutput | DeleteReportPlanCommandOutput | DeleteRestoreTestingPlanCommandOutput | DeleteRestoreTestingSelectionCommandOutput | DescribeBackupJobCommandOutput | DescribeBackupVaultCommandOutput | DescribeCopyJobCommandOutput | DescribeFrameworkCommandOutput | DescribeGlobalSettingsCommandOutput | DescribeProtectedResourceCommandOutput | DescribeRecoveryPointCommandOutput | DescribeRegionSettingsCommandOutput | DescribeReportJobCommandOutput | DescribeReportPlanCommandOutput | DescribeRestoreJobCommandOutput | DisassociateBackupVaultMpaApprovalTeamCommandOutput | DisassociateRecoveryPointCommandOutput | DisassociateRecoveryPointFromParentCommandOutput | ExportBackupPlanTemplateCommandOutput | GetBackupPlanCommandOutput | GetBackupPlanFromJSONCommandOutput | GetBackupPlanFromTemplateCommandOutput | GetBackupSelectionCommandOutput | GetBackupVaultAccessPolicyCommandOutput | GetBackupVaultNotificationsCommandOutput | GetLegalHoldCommandOutput | GetRecoveryPointIndexDetailsCommandOutput | GetRecoveryPointRestoreMetadataCommandOutput | GetRestoreJobMetadataCommandOutput | GetRestoreTestingInferredMetadataCommandOutput | GetRestoreTestingPlanCommandOutput | GetRestoreTestingSelectionCommandOutput | GetSupportedResourceTypesCommandOutput | ListBackupJobSummariesCommandOutput | ListBackupJobsCommandOutput | ListBackupPlanTemplatesCommandOutput | ListBackupPlanVersionsCommandOutput | ListBackupPlansCommandOutput | ListBackupSelectionsCommandOutput | ListBackupVaultsCommandOutput | ListCopyJobSummariesCommandOutput | ListCopyJobsCommandOutput | ListFrameworksCommandOutput | ListIndexedRecoveryPointsCommandOutput | ListLegalHoldsCommandOutput | ListProtectedResourcesByBackupVaultCommandOutput | ListProtectedResourcesCommandOutput | ListRecoveryPointsByBackupVaultCommandOutput | ListRecoveryPointsByLegalHoldCommandOutput | ListRecoveryPointsByResourceCommandOutput | ListReportJobsCommandOutput | ListReportPlansCommandOutput | ListRestoreAccessBackupVaultsCommandOutput | ListRestoreJobSummariesCommandOutput | ListRestoreJobsByProtectedResourceCommandOutput | ListRestoreJobsCommandOutput | ListRestoreTestingPlansCommandOutput | ListRestoreTestingSelectionsCommandOutput | ListTagsCommandOutput | PutBackupVaultAccessPolicyCommandOutput | PutBackupVaultLockConfigurationCommandOutput | PutBackupVaultNotificationsCommandOutput | PutRestoreValidationResultCommandOutput | RevokeRestoreAccessBackupVaultCommandOutput | StartBackupJobCommandOutput | StartCopyJobCommandOutput | StartReportJobCommandOutput | StartRestoreJobCommandOutput | StopBackupJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBackupPlanCommandOutput | UpdateFrameworkCommandOutput | UpdateGlobalSettingsCommandOutput | UpdateRecoveryPointIndexSettingsCommandOutput | UpdateRecoveryPointLifecycleCommandOutput | UpdateRegionSettingsCommandOutput | UpdateReportPlanCommandOutput | UpdateRestoreTestingPlanCommandOutput | UpdateRestoreTestingSelectionCommandOutput;
124
+ export type ServiceOutputTypes = AssociateBackupVaultMpaApprovalTeamCommandOutput | CancelLegalHoldCommandOutput | CreateBackupPlanCommandOutput | CreateBackupSelectionCommandOutput | CreateBackupVaultCommandOutput | CreateFrameworkCommandOutput | CreateLegalHoldCommandOutput | CreateLogicallyAirGappedBackupVaultCommandOutput | CreateReportPlanCommandOutput | CreateRestoreAccessBackupVaultCommandOutput | CreateRestoreTestingPlanCommandOutput | CreateRestoreTestingSelectionCommandOutput | CreateTieringConfigurationCommandOutput | DeleteBackupPlanCommandOutput | DeleteBackupSelectionCommandOutput | DeleteBackupVaultAccessPolicyCommandOutput | DeleteBackupVaultCommandOutput | DeleteBackupVaultLockConfigurationCommandOutput | DeleteBackupVaultNotificationsCommandOutput | DeleteFrameworkCommandOutput | DeleteRecoveryPointCommandOutput | DeleteReportPlanCommandOutput | DeleteRestoreTestingPlanCommandOutput | DeleteRestoreTestingSelectionCommandOutput | DeleteTieringConfigurationCommandOutput | DescribeBackupJobCommandOutput | DescribeBackupVaultCommandOutput | DescribeCopyJobCommandOutput | DescribeFrameworkCommandOutput | DescribeGlobalSettingsCommandOutput | DescribeProtectedResourceCommandOutput | DescribeRecoveryPointCommandOutput | DescribeRegionSettingsCommandOutput | DescribeReportJobCommandOutput | DescribeReportPlanCommandOutput | DescribeRestoreJobCommandOutput | DisassociateBackupVaultMpaApprovalTeamCommandOutput | DisassociateRecoveryPointCommandOutput | DisassociateRecoveryPointFromParentCommandOutput | ExportBackupPlanTemplateCommandOutput | GetBackupPlanCommandOutput | GetBackupPlanFromJSONCommandOutput | GetBackupPlanFromTemplateCommandOutput | GetBackupSelectionCommandOutput | GetBackupVaultAccessPolicyCommandOutput | GetBackupVaultNotificationsCommandOutput | GetLegalHoldCommandOutput | GetRecoveryPointIndexDetailsCommandOutput | GetRecoveryPointRestoreMetadataCommandOutput | GetRestoreJobMetadataCommandOutput | GetRestoreTestingInferredMetadataCommandOutput | GetRestoreTestingPlanCommandOutput | GetRestoreTestingSelectionCommandOutput | GetSupportedResourceTypesCommandOutput | GetTieringConfigurationCommandOutput | ListBackupJobSummariesCommandOutput | ListBackupJobsCommandOutput | ListBackupPlanTemplatesCommandOutput | ListBackupPlanVersionsCommandOutput | ListBackupPlansCommandOutput | ListBackupSelectionsCommandOutput | ListBackupVaultsCommandOutput | ListCopyJobSummariesCommandOutput | ListCopyJobsCommandOutput | ListFrameworksCommandOutput | ListIndexedRecoveryPointsCommandOutput | ListLegalHoldsCommandOutput | ListProtectedResourcesByBackupVaultCommandOutput | ListProtectedResourcesCommandOutput | ListRecoveryPointsByBackupVaultCommandOutput | ListRecoveryPointsByLegalHoldCommandOutput | ListRecoveryPointsByResourceCommandOutput | ListReportJobsCommandOutput | ListReportPlansCommandOutput | ListRestoreAccessBackupVaultsCommandOutput | ListRestoreJobSummariesCommandOutput | ListRestoreJobsByProtectedResourceCommandOutput | ListRestoreJobsCommandOutput | ListRestoreTestingPlansCommandOutput | ListRestoreTestingSelectionsCommandOutput | ListTagsCommandOutput | ListTieringConfigurationsCommandOutput | PutBackupVaultAccessPolicyCommandOutput | PutBackupVaultLockConfigurationCommandOutput | PutBackupVaultNotificationsCommandOutput | PutRestoreValidationResultCommandOutput | RevokeRestoreAccessBackupVaultCommandOutput | StartBackupJobCommandOutput | StartCopyJobCommandOutput | StartReportJobCommandOutput | StartRestoreJobCommandOutput | StopBackupJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBackupPlanCommandOutput | UpdateFrameworkCommandOutput | UpdateGlobalSettingsCommandOutput | UpdateRecoveryPointIndexSettingsCommandOutput | UpdateRecoveryPointLifecycleCommandOutput | UpdateRegionSettingsCommandOutput | UpdateReportPlanCommandOutput | UpdateRestoreTestingPlanCommandOutput | UpdateRestoreTestingSelectionCommandOutput | UpdateTieringConfigurationCommandOutput;
120
125
  /**
121
126
  * @public
122
127
  */