@aws-sdk/client-backup 3.1103.0 → 3.1105.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.
- package/README.md +42 -0
- package/dist-cjs/index.js +190 -1
- package/dist-es/Backup.js +18 -0
- package/dist-es/commands/CreateBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/DeleteBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/DescribeBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsByRecoveryPointCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsByResourceCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsCommand.js +4 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListBackupAccessPointsByRecoveryPointPaginator.js +4 -0
- package/dist-es/pagination/ListBackupAccessPointsByResourcePaginator.js +4 -0
- package/dist-es/pagination/ListBackupAccessPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +113 -0
- package/dist-types/Backup.d.ts +64 -0
- package/dist-types/BackupClient.d.ts +8 -2
- package/dist-types/commands/CreateBackupAccessPointCommand.d.ts +112 -0
- package/dist-types/commands/DeleteBackupAccessPointCommand.d.ts +89 -0
- package/dist-types/commands/DescribeBackupAccessPointCommand.d.ts +103 -0
- package/dist-types/commands/GetBackupVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/ListBackupAccessPointsByRecoveryPointCommand.d.ts +99 -0
- package/dist-types/commands/ListBackupAccessPointsByResourceCommand.d.ts +98 -0
- package/dist-types/commands/ListBackupAccessPointsCommand.d.ts +96 -0
- package/dist-types/commands/ListProtectedResourcesCommand.d.ts +4 -3
- package/dist-types/commands/PutBackupVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +335 -3
- package/dist-types/pagination/ListBackupAccessPointsByRecoveryPointPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBackupAccessPointsByResourcePaginator.d.ts +7 -0
- package/dist-types/pagination/ListBackupAccessPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/Backup.d.ts +124 -0
- package/dist-types/ts3.4/BackupClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateBackupAccessPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteBackupAccessPointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeBackupAccessPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsByRecoveryPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsByResourceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +70 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsByRecoveryPointPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsByResourcePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +1 -1
package/dist-es/models/enums.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
export const AccessPointStatus = {
|
|
2
|
+
AVAILABLE: "AVAILABLE",
|
|
3
|
+
CREATING: "CREATING",
|
|
4
|
+
DELETING: "DELETING",
|
|
5
|
+
DISASSOCIATED: "DISASSOCIATED",
|
|
6
|
+
DISASSOCIATING: "DISASSOCIATING",
|
|
7
|
+
EXPIRED: "EXPIRED",
|
|
8
|
+
FAILED: "FAILED",
|
|
9
|
+
};
|
|
1
10
|
export const ScanFinding = {
|
|
2
11
|
MALWARE: "MALWARE",
|
|
3
12
|
};
|
|
@@ -44,6 +53,12 @@ export const ConditionType = {
|
|
|
44
53
|
STRINGEQUALS: "STRINGEQUALS",
|
|
45
54
|
};
|
|
46
55
|
export const BackupVaultEvent = {
|
|
56
|
+
ACCESS_POINT_AVAILABLE: "ACCESS_POINT_AVAILABLE",
|
|
57
|
+
ACCESS_POINT_CREATION_FAILED: "ACCESS_POINT_CREATION_FAILED",
|
|
58
|
+
ACCESS_POINT_DELETED: "ACCESS_POINT_DELETED",
|
|
59
|
+
ACCESS_POINT_DELETION_FAILED: "ACCESS_POINT_DELETION_FAILED",
|
|
60
|
+
ACCESS_POINT_DISASSOCIATED: "ACCESS_POINT_DISASSOCIATED",
|
|
61
|
+
ACCESS_POINT_EXPIRED: "ACCESS_POINT_EXPIRED",
|
|
47
62
|
BACKUP_JOB_COMPLETED: "BACKUP_JOB_COMPLETED",
|
|
48
63
|
BACKUP_JOB_EXPIRED: "BACKUP_JOB_EXPIRED",
|
|
49
64
|
BACKUP_JOB_FAILED: "BACKUP_JOB_FAILED",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BackupClient } from "../BackupClient";
|
|
3
|
+
import { ListBackupAccessPointsByRecoveryPointCommand, } from "../commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
4
|
+
export const paginateListBackupAccessPointsByRecoveryPoint = createPaginator(BackupClient, ListBackupAccessPointsByRecoveryPointCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BackupClient } from "../BackupClient";
|
|
3
|
+
import { ListBackupAccessPointsByResourceCommand, } from "../commands/ListBackupAccessPointsByResourceCommand";
|
|
4
|
+
export const paginateListBackupAccessPointsByResource = createPaginator(BackupClient, ListBackupAccessPointsByResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BackupClient } from "../BackupClient";
|
|
3
|
+
import { ListBackupAccessPointsCommand, } from "../commands/ListBackupAccessPointsCommand";
|
|
4
|
+
export const paginateListBackupAccessPoints = createPaginator(BackupClient, ListBackupAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListBackupAccessPointsPaginator";
|
|
3
|
+
export * from "./ListBackupAccessPointsByRecoveryPointPaginator";
|
|
4
|
+
export * from "./ListBackupAccessPointsByResourcePaginator";
|
|
2
5
|
export * from "./ListBackupJobsPaginator";
|
|
3
6
|
export * from "./ListBackupJobSummariesPaginator";
|
|
4
7
|
export * from "./ListBackupPlansPaginator";
|
|
@@ -7,10 +7,15 @@ const _AD = "ApprovalDate";
|
|
|
7
7
|
const _AEE = "AlreadyExistsException";
|
|
8
8
|
const _AI = "AccountId";
|
|
9
9
|
const _AP = "AggregationPeriod";
|
|
10
|
+
const _APA = "AccessPointArn";
|
|
11
|
+
const _APM = "AccessPointMetadata";
|
|
12
|
+
const _APMM = "AccessPointMetadataMap";
|
|
13
|
+
const _APP = "AccessPointPolicy";
|
|
10
14
|
const _ASR = "AggregatedScanResult";
|
|
11
15
|
const _Ac = "Accounts";
|
|
12
16
|
const _Al = "Algorithm";
|
|
13
17
|
const _BAI = "ByAccountId";
|
|
18
|
+
const _BAP = "BackupAccessPoints";
|
|
14
19
|
const _BBPI = "ByBackupPlanId";
|
|
15
20
|
const _BBVN = "ByBackupVaultName";
|
|
16
21
|
const _BCA = "ByCreatedAfter";
|
|
@@ -90,6 +95,9 @@ const _CAo = "CopyAction";
|
|
|
90
95
|
const _CAr = "CreatedAfter";
|
|
91
96
|
const _CAre = "CreationAfter";
|
|
92
97
|
const _CB = "CreatedBy";
|
|
98
|
+
const _CBAP = "CreateBackupAccessPoint";
|
|
99
|
+
const _CBAPR = "CreateBackupAccessPointRequest";
|
|
100
|
+
const _CBAPRr = "CreateBackupAccessPointResponse";
|
|
93
101
|
const _CBBJI = "CreatedByBackupJobId";
|
|
94
102
|
const _CBP = "CreateBackupPlan";
|
|
95
103
|
const _CBPI = "CreateBackupPlanInput";
|
|
@@ -173,6 +181,11 @@ const _D = "Description";
|
|
|
173
181
|
const _DA = "DeleteAt";
|
|
174
182
|
const _DAD = "DeleteAfterDays";
|
|
175
183
|
const _DAE = "DeleteAfterEvent";
|
|
184
|
+
const _DBAP = "DeleteBackupAccessPoint";
|
|
185
|
+
const _DBAPI = "DeleteBackupAccessPointInput";
|
|
186
|
+
const _DBAPIe = "DescribeBackupAccessPointInput";
|
|
187
|
+
const _DBAPR = "DescribeBackupAccessPointResponse";
|
|
188
|
+
const _DBAPe = "DescribeBackupAccessPoint";
|
|
176
189
|
const _DBJ = "DescribeBackupJob";
|
|
177
190
|
const _DBJI = "DescribeBackupJobInput";
|
|
178
191
|
const _DBJO = "DescribeBackupJobOutput";
|
|
@@ -356,6 +369,16 @@ const _KVL = "KeyValueList";
|
|
|
356
369
|
const _L = "Lifecycle";
|
|
357
370
|
const _LAET = "LastAttemptedExecutionTime";
|
|
358
371
|
const _LAGBVA = "LogicallyAirGappedBackupVaultArn";
|
|
372
|
+
const _LAPM = "ListAccessPointsMember";
|
|
373
|
+
const _LBAP = "ListBackupAccessPoints";
|
|
374
|
+
const _LBAPBR = "ListBackupAccessPointsByResource";
|
|
375
|
+
const _LBAPBRP = "ListBackupAccessPointsByRecoveryPoint";
|
|
376
|
+
const _LBAPBRPR = "ListBackupAccessPointsByRecoveryPointRequest";
|
|
377
|
+
const _LBAPBRPRi = "ListBackupAccessPointsByRecoveryPointResponse";
|
|
378
|
+
const _LBAPBRR = "ListBackupAccessPointsByResourceRequest";
|
|
379
|
+
const _LBAPBRRi = "ListBackupAccessPointsByResourceResponse";
|
|
380
|
+
const _LBAPR = "ListBackupAccessPointsRequest";
|
|
381
|
+
const _LBAPRi = "ListBackupAccessPointsResponse";
|
|
359
382
|
const _LBJ = "ListBackupJobs";
|
|
360
383
|
const _LBJI = "ListBackupJobsInput";
|
|
361
384
|
const _LBJO = "ListBackupJobsOutput";
|
|
@@ -483,6 +506,7 @@ const _MSRP = "MaxScheduledRunsPreview";
|
|
|
483
506
|
const _MTCSA = "MoveToColdStorageAt";
|
|
484
507
|
const _MTCSAD = "MoveToColdStorageAfterDays";
|
|
485
508
|
const _Me = "Metadata";
|
|
509
|
+
const _N = "Name";
|
|
486
510
|
const _NOC = "NumberOfControls";
|
|
487
511
|
const _NOCJ = "NumberOfChildJobs";
|
|
488
512
|
const _NOF = "NumberOfFrameworks";
|
|
@@ -676,6 +700,7 @@ const _TDSID = "TieringDownSettingsInDays";
|
|
|
676
700
|
const _TII = "TotalItemsIndexed";
|
|
677
701
|
const _TKL = "TagKeyList";
|
|
678
702
|
const _TLAGBVA = "TargetLogicallyAirGappedBackupVaultArn";
|
|
703
|
+
const _TM = "TagMap";
|
|
679
704
|
const _TR = "TagResource";
|
|
680
705
|
const _TRI = "TagResourceInput";
|
|
681
706
|
const _Ta = "Tags";
|
|
@@ -958,6 +983,16 @@ export var CopyJobSummary$ = [3, n0, _CJS,
|
|
|
958
983
|
[_R, _AI, _S, _RT, _MC, _Cou, _ST, _ET],
|
|
959
984
|
[0, 0, 0, 0, 0, 1, 4, 4]
|
|
960
985
|
];
|
|
986
|
+
export var CreateBackupAccessPointRequest$ = [3, n0, _CBAPR,
|
|
987
|
+
0,
|
|
988
|
+
[_N, _RPA, _APM, _APP, _Ta],
|
|
989
|
+
[0, 0, [() => AccessPointMetadataMap, 0], 0, [() => TagMap, 0]], 2
|
|
990
|
+
];
|
|
991
|
+
export var CreateBackupAccessPointResponse$ = [3, n0, _CBAPRr,
|
|
992
|
+
0,
|
|
993
|
+
[_APA, _St],
|
|
994
|
+
[0, 0], 2
|
|
995
|
+
];
|
|
961
996
|
export var CreateBackupPlanInput$ = [3, n0, _CBPI,
|
|
962
997
|
0,
|
|
963
998
|
[_BP, _BPT, _CRI],
|
|
@@ -1073,6 +1108,11 @@ export var DateRange$ = [3, n0, _DR,
|
|
|
1073
1108
|
[_FDr, _TD],
|
|
1074
1109
|
[4, 4], 2
|
|
1075
1110
|
];
|
|
1111
|
+
export var DeleteBackupAccessPointInput$ = [3, n0, _DBAPI,
|
|
1112
|
+
0,
|
|
1113
|
+
[_APA],
|
|
1114
|
+
[[0, 1]], 1
|
|
1115
|
+
];
|
|
1076
1116
|
export var DeleteBackupPlanInput$ = [3, n0, _DBPI,
|
|
1077
1117
|
0,
|
|
1078
1118
|
[_BPIa],
|
|
@@ -1143,6 +1183,16 @@ export var DeleteTieringConfigurationOutput$ = [3, n0, _DTCO,
|
|
|
1143
1183
|
[],
|
|
1144
1184
|
[]
|
|
1145
1185
|
];
|
|
1186
|
+
export var DescribeBackupAccessPointInput$ = [3, n0, _DBAPIe,
|
|
1187
|
+
0,
|
|
1188
|
+
[_APA],
|
|
1189
|
+
[[0, 1]], 1
|
|
1190
|
+
];
|
|
1191
|
+
export var DescribeBackupAccessPointResponse$ = [3, n0, _DBAPR,
|
|
1192
|
+
0,
|
|
1193
|
+
[_APA, _BVN, _CTr, _N, _RPA, _RA, _RT, _St, _APM, _BVA, _SM],
|
|
1194
|
+
[0, 0, 4, 0, 0, 0, 0, 0, [() => AccessPointMetadataMap, 0], 0, 0], 8
|
|
1195
|
+
];
|
|
1146
1196
|
export var DescribeBackupJobInput$ = [3, n0, _DBJI,
|
|
1147
1197
|
0,
|
|
1148
1198
|
[_BJI],
|
|
@@ -1488,6 +1538,41 @@ export var Lifecycle$ = [3, n0, _L,
|
|
|
1488
1538
|
[_MTCSAD, _DAD, _OITAFSR, _DAE],
|
|
1489
1539
|
[1, 1, 2, 0]
|
|
1490
1540
|
];
|
|
1541
|
+
export var ListAccessPointsMember$ = [3, n0, _LAPM,
|
|
1542
|
+
0,
|
|
1543
|
+
[_APA, _APM, _BVN, _CTr, _N, _RPA, _RA, _RT, _St, _BVA, _SM],
|
|
1544
|
+
[0, [() => AccessPointMetadataMap, 0], 0, 4, 0, 0, 0, 0, 0, 0, 0], 9
|
|
1545
|
+
];
|
|
1546
|
+
export var ListBackupAccessPointsByRecoveryPointRequest$ = [3, n0, _LBAPBRPR,
|
|
1547
|
+
0,
|
|
1548
|
+
[_RPA, _MR, _NT],
|
|
1549
|
+
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1550
|
+
];
|
|
1551
|
+
export var ListBackupAccessPointsByRecoveryPointResponse$ = [3, n0, _LBAPBRPRi,
|
|
1552
|
+
0,
|
|
1553
|
+
[_BAP, _NT],
|
|
1554
|
+
[[() => BackupAccessPoints, 0], 0], 1
|
|
1555
|
+
];
|
|
1556
|
+
export var ListBackupAccessPointsByResourceRequest$ = [3, n0, _LBAPBRR,
|
|
1557
|
+
0,
|
|
1558
|
+
[_RA, _MR, _NT],
|
|
1559
|
+
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1560
|
+
];
|
|
1561
|
+
export var ListBackupAccessPointsByResourceResponse$ = [3, n0, _LBAPBRRi,
|
|
1562
|
+
0,
|
|
1563
|
+
[_BAP, _NT],
|
|
1564
|
+
[[() => BackupAccessPoints, 0], 0], 1
|
|
1565
|
+
];
|
|
1566
|
+
export var ListBackupAccessPointsRequest$ = [3, n0, _LBAPR,
|
|
1567
|
+
0,
|
|
1568
|
+
[_MR, _NT],
|
|
1569
|
+
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1570
|
+
];
|
|
1571
|
+
export var ListBackupAccessPointsResponse$ = [3, n0, _LBAPRi,
|
|
1572
|
+
0,
|
|
1573
|
+
[_BAP, _NT],
|
|
1574
|
+
[[() => BackupAccessPoints, 0], 0], 1
|
|
1575
|
+
];
|
|
1491
1576
|
export var ListBackupJobsInput$ = [3, n0, _LBJI,
|
|
1492
1577
|
0,
|
|
1493
1578
|
[_NT, _MR, _BRA, _BSy, _BBVN, _BCB, _BCA, _BRT, _BAI, _BCAy, _BCBy, _BPJI, _BMC],
|
|
@@ -2152,6 +2237,10 @@ var __Unit = "unit";
|
|
|
2152
2237
|
var AdvancedBackupSettings = [1, n0, _ABSd,
|
|
2153
2238
|
0, () => AdvancedBackupSetting$
|
|
2154
2239
|
];
|
|
2240
|
+
var BackupAccessPoints = [1, n0, _BAP,
|
|
2241
|
+
0, [() => ListAccessPointsMember$,
|
|
2242
|
+
0]
|
|
2243
|
+
];
|
|
2155
2244
|
var BackupJobsList = [1, n0, _BJL,
|
|
2156
2245
|
0, () => BackupJob$
|
|
2157
2246
|
];
|
|
@@ -2288,6 +2377,9 @@ var TieringConfigurationsList = [1, n0, _TCL,
|
|
|
2288
2377
|
0, () => TieringConfigurationsListMember$
|
|
2289
2378
|
];
|
|
2290
2379
|
var VaultNames = 64 | 0;
|
|
2380
|
+
var AccessPointMetadataMap = [2, n0, _APMM,
|
|
2381
|
+
8, 0, 0
|
|
2382
|
+
];
|
|
2291
2383
|
var BackupJobChildJobsInState = 128 | 1;
|
|
2292
2384
|
var BackupOptions = 128 | 0;
|
|
2293
2385
|
var CopyJobChildJobsInState = 128 | 1;
|
|
@@ -2301,6 +2393,9 @@ var SensitiveStringMap = [2, n0, _SSM,
|
|
|
2301
2393
|
8, 0, 0
|
|
2302
2394
|
];
|
|
2303
2395
|
var stringMap = 128 | 0;
|
|
2396
|
+
var TagMap = [2, n0, _TM,
|
|
2397
|
+
8, 0, 0
|
|
2398
|
+
];
|
|
2304
2399
|
var Tags = [2, n0, _Ta,
|
|
2305
2400
|
8, 0, 0
|
|
2306
2401
|
];
|
|
@@ -2310,6 +2405,9 @@ export var AssociateBackupVaultMpaApprovalTeam$ = [9, n0, _ABVMAT,
|
|
|
2310
2405
|
export var CancelLegalHold$ = [9, n0, _CLH,
|
|
2311
2406
|
{ [_h]: ["DELETE", "/legal-holds/{LegalHoldId}", 201] }, () => CancelLegalHoldInput$, () => CancelLegalHoldOutput$
|
|
2312
2407
|
];
|
|
2408
|
+
export var CreateBackupAccessPoint$ = [9, n0, _CBAP,
|
|
2409
|
+
{ [_h]: ["PUT", "/backup-access-point/create", 201] }, () => CreateBackupAccessPointRequest$, () => CreateBackupAccessPointResponse$
|
|
2410
|
+
];
|
|
2313
2411
|
export var CreateBackupPlan$ = [9, n0, _CBP,
|
|
2314
2412
|
{ [_h]: ["PUT", "/backup/plans", 200] }, () => CreateBackupPlanInput$, () => CreateBackupPlanOutput$
|
|
2315
2413
|
];
|
|
@@ -2343,6 +2441,9 @@ export var CreateRestoreTestingSelection$ = [9, n0, _CRTS,
|
|
|
2343
2441
|
export var CreateTieringConfiguration$ = [9, n0, _CTC,
|
|
2344
2442
|
{ [_h]: ["PUT", "/tiering-configurations", 200] }, () => CreateTieringConfigurationInput$, () => CreateTieringConfigurationOutput$
|
|
2345
2443
|
];
|
|
2444
|
+
export var DeleteBackupAccessPoint$ = [9, n0, _DBAP,
|
|
2445
|
+
{ [_h]: ["DELETE", "/backup-access-point/delete/{AccessPointArn}", 204] }, () => DeleteBackupAccessPointInput$, () => __Unit
|
|
2446
|
+
];
|
|
2346
2447
|
export var DeleteBackupPlan$ = [9, n0, _DBP,
|
|
2347
2448
|
{ [_h]: ["DELETE", "/backup/plans/{BackupPlanId}", 200] }, () => DeleteBackupPlanInput$, () => DeleteBackupPlanOutput$
|
|
2348
2449
|
];
|
|
@@ -2379,6 +2480,9 @@ export var DeleteRestoreTestingSelection$ = [9, n0, _DRTS,
|
|
|
2379
2480
|
export var DeleteTieringConfiguration$ = [9, n0, _DTC,
|
|
2380
2481
|
{ [_h]: ["DELETE", "/tiering-configurations/{TieringConfigurationName}", 200] }, () => DeleteTieringConfigurationInput$, () => DeleteTieringConfigurationOutput$
|
|
2381
2482
|
];
|
|
2483
|
+
export var DescribeBackupAccessPoint$ = [9, n0, _DBAPe,
|
|
2484
|
+
{ [_h]: ["GET", "/backup-access-point/{AccessPointArn}", 200] }, () => DescribeBackupAccessPointInput$, () => DescribeBackupAccessPointResponse$
|
|
2485
|
+
];
|
|
2382
2486
|
export var DescribeBackupJob$ = [9, n0, _DBJ,
|
|
2383
2487
|
{ [_h]: ["GET", "/backup-jobs/{BackupJobId}", 200] }, () => DescribeBackupJobInput$, () => DescribeBackupJobOutput$
|
|
2384
2488
|
];
|
|
@@ -2475,6 +2579,15 @@ export var GetSupportedResourceTypes$ = [9, n0, _GSRT,
|
|
|
2475
2579
|
export var GetTieringConfiguration$ = [9, n0, _GTC,
|
|
2476
2580
|
{ [_h]: ["GET", "/tiering-configurations/{TieringConfigurationName}", 200] }, () => GetTieringConfigurationInput$, () => GetTieringConfigurationOutput$
|
|
2477
2581
|
];
|
|
2582
|
+
export var ListBackupAccessPoints$ = [9, n0, _LBAP,
|
|
2583
|
+
{ [_h]: ["GET", "/backup-access-point", 200] }, () => ListBackupAccessPointsRequest$, () => ListBackupAccessPointsResponse$
|
|
2584
|
+
];
|
|
2585
|
+
export var ListBackupAccessPointsByRecoveryPoint$ = [9, n0, _LBAPBRP,
|
|
2586
|
+
{ [_h]: ["POST", "/backup-access-point/recovery-point/{RecoveryPointArn}", 200] }, () => ListBackupAccessPointsByRecoveryPointRequest$, () => ListBackupAccessPointsByRecoveryPointResponse$
|
|
2587
|
+
];
|
|
2588
|
+
export var ListBackupAccessPointsByResource$ = [9, n0, _LBAPBR,
|
|
2589
|
+
{ [_h]: ["POST", "/backup-access-point/resource/{ResourceArn}", 200] }, () => ListBackupAccessPointsByResourceRequest$, () => ListBackupAccessPointsByResourceResponse$
|
|
2590
|
+
];
|
|
2478
2591
|
export var ListBackupJobs$ = [9, n0, _LBJ,
|
|
2479
2592
|
{ [_h]: ["GET", "/backup-jobs", 200] }, () => ListBackupJobsInput$, () => ListBackupJobsOutput$
|
|
2480
2593
|
];
|
package/dist-types/Backup.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguratio
|
|
|
2
2
|
import { BackupClient } from "./BackupClient";
|
|
3
3
|
import { type AssociateBackupVaultMpaApprovalTeamCommandInput, type AssociateBackupVaultMpaApprovalTeamCommandOutput } from "./commands/AssociateBackupVaultMpaApprovalTeamCommand";
|
|
4
4
|
import { type CancelLegalHoldCommandInput, type CancelLegalHoldCommandOutput } from "./commands/CancelLegalHoldCommand";
|
|
5
|
+
import { type CreateBackupAccessPointCommandInput, type CreateBackupAccessPointCommandOutput } from "./commands/CreateBackupAccessPointCommand";
|
|
5
6
|
import { type CreateBackupPlanCommandInput, type CreateBackupPlanCommandOutput } from "./commands/CreateBackupPlanCommand";
|
|
6
7
|
import { type CreateBackupSelectionCommandInput, type CreateBackupSelectionCommandOutput } from "./commands/CreateBackupSelectionCommand";
|
|
7
8
|
import { type CreateBackupVaultCommandInput, type CreateBackupVaultCommandOutput } from "./commands/CreateBackupVaultCommand";
|
|
@@ -13,6 +14,7 @@ import { type CreateRestoreAccessBackupVaultCommandInput, type CreateRestoreAcce
|
|
|
13
14
|
import { type CreateRestoreTestingPlanCommandInput, type CreateRestoreTestingPlanCommandOutput } from "./commands/CreateRestoreTestingPlanCommand";
|
|
14
15
|
import { type CreateRestoreTestingSelectionCommandInput, type CreateRestoreTestingSelectionCommandOutput } from "./commands/CreateRestoreTestingSelectionCommand";
|
|
15
16
|
import { type CreateTieringConfigurationCommandInput, type CreateTieringConfigurationCommandOutput } from "./commands/CreateTieringConfigurationCommand";
|
|
17
|
+
import { type DeleteBackupAccessPointCommandInput, type DeleteBackupAccessPointCommandOutput } from "./commands/DeleteBackupAccessPointCommand";
|
|
16
18
|
import { type DeleteBackupPlanCommandInput, type DeleteBackupPlanCommandOutput } from "./commands/DeleteBackupPlanCommand";
|
|
17
19
|
import { type DeleteBackupSelectionCommandInput, type DeleteBackupSelectionCommandOutput } from "./commands/DeleteBackupSelectionCommand";
|
|
18
20
|
import { type DeleteBackupVaultAccessPolicyCommandInput, type DeleteBackupVaultAccessPolicyCommandOutput } from "./commands/DeleteBackupVaultAccessPolicyCommand";
|
|
@@ -25,6 +27,7 @@ import { type DeleteReportPlanCommandInput, type DeleteReportPlanCommandOutput }
|
|
|
25
27
|
import { type DeleteRestoreTestingPlanCommandInput, type DeleteRestoreTestingPlanCommandOutput } from "./commands/DeleteRestoreTestingPlanCommand";
|
|
26
28
|
import { type DeleteRestoreTestingSelectionCommandInput, type DeleteRestoreTestingSelectionCommandOutput } from "./commands/DeleteRestoreTestingSelectionCommand";
|
|
27
29
|
import { type DeleteTieringConfigurationCommandInput, type DeleteTieringConfigurationCommandOutput } from "./commands/DeleteTieringConfigurationCommand";
|
|
30
|
+
import { type DescribeBackupAccessPointCommandInput, type DescribeBackupAccessPointCommandOutput } from "./commands/DescribeBackupAccessPointCommand";
|
|
28
31
|
import { type DescribeBackupJobCommandInput, type DescribeBackupJobCommandOutput } from "./commands/DescribeBackupJobCommand";
|
|
29
32
|
import { type DescribeBackupVaultCommandInput, type DescribeBackupVaultCommandOutput } from "./commands/DescribeBackupVaultCommand";
|
|
30
33
|
import { type DescribeCopyJobCommandInput, type DescribeCopyJobCommandOutput } from "./commands/DescribeCopyJobCommand";
|
|
@@ -57,6 +60,9 @@ import { type GetRestoreTestingPlanCommandInput, type GetRestoreTestingPlanComma
|
|
|
57
60
|
import { type GetRestoreTestingSelectionCommandInput, type GetRestoreTestingSelectionCommandOutput } from "./commands/GetRestoreTestingSelectionCommand";
|
|
58
61
|
import { type GetSupportedResourceTypesCommandInput, type GetSupportedResourceTypesCommandOutput } from "./commands/GetSupportedResourceTypesCommand";
|
|
59
62
|
import { type GetTieringConfigurationCommandInput, type GetTieringConfigurationCommandOutput } from "./commands/GetTieringConfigurationCommand";
|
|
63
|
+
import { type ListBackupAccessPointsByRecoveryPointCommandInput, type ListBackupAccessPointsByRecoveryPointCommandOutput } from "./commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
64
|
+
import { type ListBackupAccessPointsByResourceCommandInput, type ListBackupAccessPointsByResourceCommandOutput } from "./commands/ListBackupAccessPointsByResourceCommand";
|
|
65
|
+
import { type ListBackupAccessPointsCommandInput, type ListBackupAccessPointsCommandOutput } from "./commands/ListBackupAccessPointsCommand";
|
|
60
66
|
import { type ListBackupJobsCommandInput, type ListBackupJobsCommandOutput } from "./commands/ListBackupJobsCommand";
|
|
61
67
|
import { type ListBackupJobSummariesCommandInput, type ListBackupJobSummariesCommandOutput } from "./commands/ListBackupJobSummariesCommand";
|
|
62
68
|
import { type ListBackupPlansCommandInput, type ListBackupPlansCommandOutput } from "./commands/ListBackupPlansCommand";
|
|
@@ -122,6 +128,12 @@ export interface Backup {
|
|
|
122
128
|
cancelLegalHold(args: CancelLegalHoldCommandInput, options?: __HttpHandlerOptions): Promise<CancelLegalHoldCommandOutput>;
|
|
123
129
|
cancelLegalHold(args: CancelLegalHoldCommandInput, cb: (err: any, data?: CancelLegalHoldCommandOutput) => void): void;
|
|
124
130
|
cancelLegalHold(args: CancelLegalHoldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelLegalHoldCommandOutput) => void): void;
|
|
131
|
+
/**
|
|
132
|
+
* @see {@link CreateBackupAccessPointCommand}
|
|
133
|
+
*/
|
|
134
|
+
createBackupAccessPoint(args: CreateBackupAccessPointCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackupAccessPointCommandOutput>;
|
|
135
|
+
createBackupAccessPoint(args: CreateBackupAccessPointCommandInput, cb: (err: any, data?: CreateBackupAccessPointCommandOutput) => void): void;
|
|
136
|
+
createBackupAccessPoint(args: CreateBackupAccessPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupAccessPointCommandOutput) => void): void;
|
|
125
137
|
/**
|
|
126
138
|
* @see {@link CreateBackupPlanCommand}
|
|
127
139
|
*/
|
|
@@ -188,6 +200,12 @@ export interface Backup {
|
|
|
188
200
|
createTieringConfiguration(args: CreateTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateTieringConfigurationCommandOutput>;
|
|
189
201
|
createTieringConfiguration(args: CreateTieringConfigurationCommandInput, cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void): void;
|
|
190
202
|
createTieringConfiguration(args: CreateTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void): void;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link DeleteBackupAccessPointCommand}
|
|
205
|
+
*/
|
|
206
|
+
deleteBackupAccessPoint(args: DeleteBackupAccessPointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupAccessPointCommandOutput>;
|
|
207
|
+
deleteBackupAccessPoint(args: DeleteBackupAccessPointCommandInput, cb: (err: any, data?: DeleteBackupAccessPointCommandOutput) => void): void;
|
|
208
|
+
deleteBackupAccessPoint(args: DeleteBackupAccessPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupAccessPointCommandOutput) => void): void;
|
|
191
209
|
/**
|
|
192
210
|
* @see {@link DeleteBackupPlanCommand}
|
|
193
211
|
*/
|
|
@@ -260,6 +278,12 @@ export interface Backup {
|
|
|
260
278
|
deleteTieringConfiguration(args: DeleteTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTieringConfigurationCommandOutput>;
|
|
261
279
|
deleteTieringConfiguration(args: DeleteTieringConfigurationCommandInput, cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void): void;
|
|
262
280
|
deleteTieringConfiguration(args: DeleteTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void): void;
|
|
281
|
+
/**
|
|
282
|
+
* @see {@link DescribeBackupAccessPointCommand}
|
|
283
|
+
*/
|
|
284
|
+
describeBackupAccessPoint(args: DescribeBackupAccessPointCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBackupAccessPointCommandOutput>;
|
|
285
|
+
describeBackupAccessPoint(args: DescribeBackupAccessPointCommandInput, cb: (err: any, data?: DescribeBackupAccessPointCommandOutput) => void): void;
|
|
286
|
+
describeBackupAccessPoint(args: DescribeBackupAccessPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupAccessPointCommandOutput) => void): void;
|
|
263
287
|
/**
|
|
264
288
|
* @see {@link DescribeBackupJobCommand}
|
|
265
289
|
*/
|
|
@@ -455,6 +479,25 @@ export interface Backup {
|
|
|
455
479
|
getTieringConfiguration(args: GetTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetTieringConfigurationCommandOutput>;
|
|
456
480
|
getTieringConfiguration(args: GetTieringConfigurationCommandInput, cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void): void;
|
|
457
481
|
getTieringConfiguration(args: GetTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void): void;
|
|
482
|
+
/**
|
|
483
|
+
* @see {@link ListBackupAccessPointsCommand}
|
|
484
|
+
*/
|
|
485
|
+
listBackupAccessPoints(): Promise<ListBackupAccessPointsCommandOutput>;
|
|
486
|
+
listBackupAccessPoints(args: ListBackupAccessPointsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupAccessPointsCommandOutput>;
|
|
487
|
+
listBackupAccessPoints(args: ListBackupAccessPointsCommandInput, cb: (err: any, data?: ListBackupAccessPointsCommandOutput) => void): void;
|
|
488
|
+
listBackupAccessPoints(args: ListBackupAccessPointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupAccessPointsCommandOutput) => void): void;
|
|
489
|
+
/**
|
|
490
|
+
* @see {@link ListBackupAccessPointsByRecoveryPointCommand}
|
|
491
|
+
*/
|
|
492
|
+
listBackupAccessPointsByRecoveryPoint(args: ListBackupAccessPointsByRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupAccessPointsByRecoveryPointCommandOutput>;
|
|
493
|
+
listBackupAccessPointsByRecoveryPoint(args: ListBackupAccessPointsByRecoveryPointCommandInput, cb: (err: any, data?: ListBackupAccessPointsByRecoveryPointCommandOutput) => void): void;
|
|
494
|
+
listBackupAccessPointsByRecoveryPoint(args: ListBackupAccessPointsByRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupAccessPointsByRecoveryPointCommandOutput) => void): void;
|
|
495
|
+
/**
|
|
496
|
+
* @see {@link ListBackupAccessPointsByResourceCommand}
|
|
497
|
+
*/
|
|
498
|
+
listBackupAccessPointsByResource(args: ListBackupAccessPointsByResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListBackupAccessPointsByResourceCommandOutput>;
|
|
499
|
+
listBackupAccessPointsByResource(args: ListBackupAccessPointsByResourceCommandInput, cb: (err: any, data?: ListBackupAccessPointsByResourceCommandOutput) => void): void;
|
|
500
|
+
listBackupAccessPointsByResource(args: ListBackupAccessPointsByResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackupAccessPointsByResourceCommandOutput) => void): void;
|
|
458
501
|
/**
|
|
459
502
|
* @see {@link ListBackupJobsCommand}
|
|
460
503
|
*/
|
|
@@ -788,6 +831,27 @@ export interface Backup {
|
|
|
788
831
|
updateTieringConfiguration(args: UpdateTieringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTieringConfigurationCommandOutput>;
|
|
789
832
|
updateTieringConfiguration(args: UpdateTieringConfigurationCommandInput, cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void): void;
|
|
790
833
|
updateTieringConfiguration(args: UpdateTieringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void): void;
|
|
834
|
+
/**
|
|
835
|
+
* @see {@link ListBackupAccessPointsCommand}
|
|
836
|
+
* @param args - command input.
|
|
837
|
+
* @param paginationConfig - optional pagination config.
|
|
838
|
+
* @returns AsyncIterable of {@link ListBackupAccessPointsCommandOutput}.
|
|
839
|
+
*/
|
|
840
|
+
paginateListBackupAccessPoints(args?: ListBackupAccessPointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBackupAccessPointsCommandOutput>;
|
|
841
|
+
/**
|
|
842
|
+
* @see {@link ListBackupAccessPointsByRecoveryPointCommand}
|
|
843
|
+
* @param args - command input.
|
|
844
|
+
* @param paginationConfig - optional pagination config.
|
|
845
|
+
* @returns AsyncIterable of {@link ListBackupAccessPointsByRecoveryPointCommandOutput}.
|
|
846
|
+
*/
|
|
847
|
+
paginateListBackupAccessPointsByRecoveryPoint(args: ListBackupAccessPointsByRecoveryPointCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBackupAccessPointsByRecoveryPointCommandOutput>;
|
|
848
|
+
/**
|
|
849
|
+
* @see {@link ListBackupAccessPointsByResourceCommand}
|
|
850
|
+
* @param args - command input.
|
|
851
|
+
* @param paginationConfig - optional pagination config.
|
|
852
|
+
* @returns AsyncIterable of {@link ListBackupAccessPointsByResourceCommandOutput}.
|
|
853
|
+
*/
|
|
854
|
+
paginateListBackupAccessPointsByResource(args: ListBackupAccessPointsByResourceCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBackupAccessPointsByResourceCommandOutput>;
|
|
791
855
|
/**
|
|
792
856
|
* @see {@link ListBackupJobsCommand}
|
|
793
857
|
* @param args - command input.
|
|
@@ -8,6 +8,7 @@ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengt
|
|
|
8
8
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
9
9
|
import type { AssociateBackupVaultMpaApprovalTeamCommandInput, AssociateBackupVaultMpaApprovalTeamCommandOutput } from "./commands/AssociateBackupVaultMpaApprovalTeamCommand";
|
|
10
10
|
import type { CancelLegalHoldCommandInput, CancelLegalHoldCommandOutput } from "./commands/CancelLegalHoldCommand";
|
|
11
|
+
import type { CreateBackupAccessPointCommandInput, CreateBackupAccessPointCommandOutput } from "./commands/CreateBackupAccessPointCommand";
|
|
11
12
|
import type { CreateBackupPlanCommandInput, CreateBackupPlanCommandOutput } from "./commands/CreateBackupPlanCommand";
|
|
12
13
|
import type { CreateBackupSelectionCommandInput, CreateBackupSelectionCommandOutput } from "./commands/CreateBackupSelectionCommand";
|
|
13
14
|
import type { CreateBackupVaultCommandInput, CreateBackupVaultCommandOutput } from "./commands/CreateBackupVaultCommand";
|
|
@@ -19,6 +20,7 @@ import type { CreateRestoreAccessBackupVaultCommandInput, CreateRestoreAccessBac
|
|
|
19
20
|
import type { CreateRestoreTestingPlanCommandInput, CreateRestoreTestingPlanCommandOutput } from "./commands/CreateRestoreTestingPlanCommand";
|
|
20
21
|
import type { CreateRestoreTestingSelectionCommandInput, CreateRestoreTestingSelectionCommandOutput } from "./commands/CreateRestoreTestingSelectionCommand";
|
|
21
22
|
import type { CreateTieringConfigurationCommandInput, CreateTieringConfigurationCommandOutput } from "./commands/CreateTieringConfigurationCommand";
|
|
23
|
+
import type { DeleteBackupAccessPointCommandInput, DeleteBackupAccessPointCommandOutput } from "./commands/DeleteBackupAccessPointCommand";
|
|
22
24
|
import type { DeleteBackupPlanCommandInput, DeleteBackupPlanCommandOutput } from "./commands/DeleteBackupPlanCommand";
|
|
23
25
|
import type { DeleteBackupSelectionCommandInput, DeleteBackupSelectionCommandOutput } from "./commands/DeleteBackupSelectionCommand";
|
|
24
26
|
import type { DeleteBackupVaultAccessPolicyCommandInput, DeleteBackupVaultAccessPolicyCommandOutput } from "./commands/DeleteBackupVaultAccessPolicyCommand";
|
|
@@ -31,6 +33,7 @@ import type { DeleteReportPlanCommandInput, DeleteReportPlanCommandOutput } from
|
|
|
31
33
|
import type { DeleteRestoreTestingPlanCommandInput, DeleteRestoreTestingPlanCommandOutput } from "./commands/DeleteRestoreTestingPlanCommand";
|
|
32
34
|
import type { DeleteRestoreTestingSelectionCommandInput, DeleteRestoreTestingSelectionCommandOutput } from "./commands/DeleteRestoreTestingSelectionCommand";
|
|
33
35
|
import type { DeleteTieringConfigurationCommandInput, DeleteTieringConfigurationCommandOutput } from "./commands/DeleteTieringConfigurationCommand";
|
|
36
|
+
import type { DescribeBackupAccessPointCommandInput, DescribeBackupAccessPointCommandOutput } from "./commands/DescribeBackupAccessPointCommand";
|
|
34
37
|
import type { DescribeBackupJobCommandInput, DescribeBackupJobCommandOutput } from "./commands/DescribeBackupJobCommand";
|
|
35
38
|
import type { DescribeBackupVaultCommandInput, DescribeBackupVaultCommandOutput } from "./commands/DescribeBackupVaultCommand";
|
|
36
39
|
import type { DescribeCopyJobCommandInput, DescribeCopyJobCommandOutput } from "./commands/DescribeCopyJobCommand";
|
|
@@ -63,6 +66,9 @@ import type { GetRestoreTestingPlanCommandInput, GetRestoreTestingPlanCommandOut
|
|
|
63
66
|
import type { GetRestoreTestingSelectionCommandInput, GetRestoreTestingSelectionCommandOutput } from "./commands/GetRestoreTestingSelectionCommand";
|
|
64
67
|
import type { GetSupportedResourceTypesCommandInput, GetSupportedResourceTypesCommandOutput } from "./commands/GetSupportedResourceTypesCommand";
|
|
65
68
|
import type { GetTieringConfigurationCommandInput, GetTieringConfigurationCommandOutput } from "./commands/GetTieringConfigurationCommand";
|
|
69
|
+
import type { ListBackupAccessPointsByRecoveryPointCommandInput, ListBackupAccessPointsByRecoveryPointCommandOutput } from "./commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
70
|
+
import type { ListBackupAccessPointsByResourceCommandInput, ListBackupAccessPointsByResourceCommandOutput } from "./commands/ListBackupAccessPointsByResourceCommand";
|
|
71
|
+
import type { ListBackupAccessPointsCommandInput, ListBackupAccessPointsCommandOutput } from "./commands/ListBackupAccessPointsCommand";
|
|
66
72
|
import type { ListBackupJobsCommandInput, ListBackupJobsCommandOutput } from "./commands/ListBackupJobsCommand";
|
|
67
73
|
import type { ListBackupJobSummariesCommandInput, ListBackupJobSummariesCommandOutput } from "./commands/ListBackupJobSummariesCommand";
|
|
68
74
|
import type { ListBackupPlansCommandInput, ListBackupPlansCommandOutput } from "./commands/ListBackupPlansCommand";
|
|
@@ -121,11 +127,11 @@ export { __Client };
|
|
|
121
127
|
/**
|
|
122
128
|
* @public
|
|
123
129
|
*/
|
|
124
|
-
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 | DescribeScanJobCommandInput | DisassociateBackupVaultMpaApprovalTeamCommandInput | DisassociateRecoveryPointCommandInput | DisassociateRecoveryPointFromParentCommandInput | ExportBackupPlanTemplateCommandInput | GetBackupPlanCommandInput | GetBackupPlanFromJSONCommandInput | GetBackupPlanFromTemplateCommandInput | GetBackupSelectionCommandInput | GetBackupVaultAccessPolicyCommandInput | GetBackupVaultNotificationsCommandInput | GetLegalHoldCommandInput | GetPITRMalwareScanResultsCommandInput | 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 | ListScanJobSummariesCommandInput | ListScanJobsCommandInput | ListTagsCommandInput | ListTieringConfigurationsCommandInput | PutBackupVaultAccessPolicyCommandInput | PutBackupVaultLockConfigurationCommandInput | PutBackupVaultNotificationsCommandInput | PutRestoreValidationResultCommandInput | RevokeRestoreAccessBackupVaultCommandInput | StartBackupJobCommandInput | StartCopyJobCommandInput | StartReportJobCommandInput | StartRestoreJobCommandInput | StartScanJobCommandInput | StopBackupJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBackupPlanCommandInput | UpdateFrameworkCommandInput | UpdateGlobalSettingsCommandInput | UpdateRecoveryPointIndexSettingsCommandInput | UpdateRecoveryPointLifecycleCommandInput | UpdateRegionSettingsCommandInput | UpdateReportPlanCommandInput | UpdateRestoreTestingPlanCommandInput | UpdateRestoreTestingSelectionCommandInput | UpdateTieringConfigurationCommandInput;
|
|
130
|
+
export type ServiceInputTypes = AssociateBackupVaultMpaApprovalTeamCommandInput | CancelLegalHoldCommandInput | CreateBackupAccessPointCommandInput | CreateBackupPlanCommandInput | CreateBackupSelectionCommandInput | CreateBackupVaultCommandInput | CreateFrameworkCommandInput | CreateLegalHoldCommandInput | CreateLogicallyAirGappedBackupVaultCommandInput | CreateReportPlanCommandInput | CreateRestoreAccessBackupVaultCommandInput | CreateRestoreTestingPlanCommandInput | CreateRestoreTestingSelectionCommandInput | CreateTieringConfigurationCommandInput | DeleteBackupAccessPointCommandInput | DeleteBackupPlanCommandInput | DeleteBackupSelectionCommandInput | DeleteBackupVaultAccessPolicyCommandInput | DeleteBackupVaultCommandInput | DeleteBackupVaultLockConfigurationCommandInput | DeleteBackupVaultNotificationsCommandInput | DeleteFrameworkCommandInput | DeleteRecoveryPointCommandInput | DeleteReportPlanCommandInput | DeleteRestoreTestingPlanCommandInput | DeleteRestoreTestingSelectionCommandInput | DeleteTieringConfigurationCommandInput | DescribeBackupAccessPointCommandInput | DescribeBackupJobCommandInput | DescribeBackupVaultCommandInput | DescribeCopyJobCommandInput | DescribeFrameworkCommandInput | DescribeGlobalSettingsCommandInput | DescribeProtectedResourceCommandInput | DescribeRecoveryPointCommandInput | DescribeRegionSettingsCommandInput | DescribeReportJobCommandInput | DescribeReportPlanCommandInput | DescribeRestoreJobCommandInput | DescribeScanJobCommandInput | DisassociateBackupVaultMpaApprovalTeamCommandInput | DisassociateRecoveryPointCommandInput | DisassociateRecoveryPointFromParentCommandInput | ExportBackupPlanTemplateCommandInput | GetBackupPlanCommandInput | GetBackupPlanFromJSONCommandInput | GetBackupPlanFromTemplateCommandInput | GetBackupSelectionCommandInput | GetBackupVaultAccessPolicyCommandInput | GetBackupVaultNotificationsCommandInput | GetLegalHoldCommandInput | GetPITRMalwareScanResultsCommandInput | GetRecoveryPointIndexDetailsCommandInput | GetRecoveryPointRestoreMetadataCommandInput | GetRestoreJobMetadataCommandInput | GetRestoreTestingInferredMetadataCommandInput | GetRestoreTestingPlanCommandInput | GetRestoreTestingSelectionCommandInput | GetSupportedResourceTypesCommandInput | GetTieringConfigurationCommandInput | ListBackupAccessPointsByRecoveryPointCommandInput | ListBackupAccessPointsByResourceCommandInput | ListBackupAccessPointsCommandInput | 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 | ListScanJobSummariesCommandInput | ListScanJobsCommandInput | ListTagsCommandInput | ListTieringConfigurationsCommandInput | PutBackupVaultAccessPolicyCommandInput | PutBackupVaultLockConfigurationCommandInput | PutBackupVaultNotificationsCommandInput | PutRestoreValidationResultCommandInput | RevokeRestoreAccessBackupVaultCommandInput | StartBackupJobCommandInput | StartCopyJobCommandInput | StartReportJobCommandInput | StartRestoreJobCommandInput | StartScanJobCommandInput | StopBackupJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBackupPlanCommandInput | UpdateFrameworkCommandInput | UpdateGlobalSettingsCommandInput | UpdateRecoveryPointIndexSettingsCommandInput | UpdateRecoveryPointLifecycleCommandInput | UpdateRegionSettingsCommandInput | UpdateReportPlanCommandInput | UpdateRestoreTestingPlanCommandInput | UpdateRestoreTestingSelectionCommandInput | UpdateTieringConfigurationCommandInput;
|
|
125
131
|
/**
|
|
126
132
|
* @public
|
|
127
133
|
*/
|
|
128
|
-
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 | DescribeScanJobCommandOutput | DisassociateBackupVaultMpaApprovalTeamCommandOutput | DisassociateRecoveryPointCommandOutput | DisassociateRecoveryPointFromParentCommandOutput | ExportBackupPlanTemplateCommandOutput | GetBackupPlanCommandOutput | GetBackupPlanFromJSONCommandOutput | GetBackupPlanFromTemplateCommandOutput | GetBackupSelectionCommandOutput | GetBackupVaultAccessPolicyCommandOutput | GetBackupVaultNotificationsCommandOutput | GetLegalHoldCommandOutput | GetPITRMalwareScanResultsCommandOutput | 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 | ListScanJobSummariesCommandOutput | ListScanJobsCommandOutput | ListTagsCommandOutput | ListTieringConfigurationsCommandOutput | PutBackupVaultAccessPolicyCommandOutput | PutBackupVaultLockConfigurationCommandOutput | PutBackupVaultNotificationsCommandOutput | PutRestoreValidationResultCommandOutput | RevokeRestoreAccessBackupVaultCommandOutput | StartBackupJobCommandOutput | StartCopyJobCommandOutput | StartReportJobCommandOutput | StartRestoreJobCommandOutput | StartScanJobCommandOutput | StopBackupJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBackupPlanCommandOutput | UpdateFrameworkCommandOutput | UpdateGlobalSettingsCommandOutput | UpdateRecoveryPointIndexSettingsCommandOutput | UpdateRecoveryPointLifecycleCommandOutput | UpdateRegionSettingsCommandOutput | UpdateReportPlanCommandOutput | UpdateRestoreTestingPlanCommandOutput | UpdateRestoreTestingSelectionCommandOutput | UpdateTieringConfigurationCommandOutput;
|
|
134
|
+
export type ServiceOutputTypes = AssociateBackupVaultMpaApprovalTeamCommandOutput | CancelLegalHoldCommandOutput | CreateBackupAccessPointCommandOutput | CreateBackupPlanCommandOutput | CreateBackupSelectionCommandOutput | CreateBackupVaultCommandOutput | CreateFrameworkCommandOutput | CreateLegalHoldCommandOutput | CreateLogicallyAirGappedBackupVaultCommandOutput | CreateReportPlanCommandOutput | CreateRestoreAccessBackupVaultCommandOutput | CreateRestoreTestingPlanCommandOutput | CreateRestoreTestingSelectionCommandOutput | CreateTieringConfigurationCommandOutput | DeleteBackupAccessPointCommandOutput | DeleteBackupPlanCommandOutput | DeleteBackupSelectionCommandOutput | DeleteBackupVaultAccessPolicyCommandOutput | DeleteBackupVaultCommandOutput | DeleteBackupVaultLockConfigurationCommandOutput | DeleteBackupVaultNotificationsCommandOutput | DeleteFrameworkCommandOutput | DeleteRecoveryPointCommandOutput | DeleteReportPlanCommandOutput | DeleteRestoreTestingPlanCommandOutput | DeleteRestoreTestingSelectionCommandOutput | DeleteTieringConfigurationCommandOutput | DescribeBackupAccessPointCommandOutput | DescribeBackupJobCommandOutput | DescribeBackupVaultCommandOutput | DescribeCopyJobCommandOutput | DescribeFrameworkCommandOutput | DescribeGlobalSettingsCommandOutput | DescribeProtectedResourceCommandOutput | DescribeRecoveryPointCommandOutput | DescribeRegionSettingsCommandOutput | DescribeReportJobCommandOutput | DescribeReportPlanCommandOutput | DescribeRestoreJobCommandOutput | DescribeScanJobCommandOutput | DisassociateBackupVaultMpaApprovalTeamCommandOutput | DisassociateRecoveryPointCommandOutput | DisassociateRecoveryPointFromParentCommandOutput | ExportBackupPlanTemplateCommandOutput | GetBackupPlanCommandOutput | GetBackupPlanFromJSONCommandOutput | GetBackupPlanFromTemplateCommandOutput | GetBackupSelectionCommandOutput | GetBackupVaultAccessPolicyCommandOutput | GetBackupVaultNotificationsCommandOutput | GetLegalHoldCommandOutput | GetPITRMalwareScanResultsCommandOutput | GetRecoveryPointIndexDetailsCommandOutput | GetRecoveryPointRestoreMetadataCommandOutput | GetRestoreJobMetadataCommandOutput | GetRestoreTestingInferredMetadataCommandOutput | GetRestoreTestingPlanCommandOutput | GetRestoreTestingSelectionCommandOutput | GetSupportedResourceTypesCommandOutput | GetTieringConfigurationCommandOutput | ListBackupAccessPointsByRecoveryPointCommandOutput | ListBackupAccessPointsByResourceCommandOutput | ListBackupAccessPointsCommandOutput | 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 | ListScanJobSummariesCommandOutput | ListScanJobsCommandOutput | ListTagsCommandOutput | ListTieringConfigurationsCommandOutput | PutBackupVaultAccessPolicyCommandOutput | PutBackupVaultLockConfigurationCommandOutput | PutBackupVaultNotificationsCommandOutput | PutRestoreValidationResultCommandOutput | RevokeRestoreAccessBackupVaultCommandOutput | StartBackupJobCommandOutput | StartCopyJobCommandOutput | StartReportJobCommandOutput | StartRestoreJobCommandOutput | StartScanJobCommandOutput | StopBackupJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBackupPlanCommandOutput | UpdateFrameworkCommandOutput | UpdateGlobalSettingsCommandOutput | UpdateRecoveryPointIndexSettingsCommandOutput | UpdateRecoveryPointLifecycleCommandOutput | UpdateRegionSettingsCommandOutput | UpdateReportPlanCommandOutput | UpdateRestoreTestingPlanCommandOutput | UpdateRestoreTestingSelectionCommandOutput | UpdateTieringConfigurationCommandOutput;
|
|
129
135
|
/**
|
|
130
136
|
* @public
|
|
131
137
|
*/
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreateBackupAccessPointRequest, CreateBackupAccessPointResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreateBackupAccessPointCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateBackupAccessPointCommandInput extends CreateBackupAccessPointRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreateBackupAccessPointCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateBackupAccessPointCommandOutput extends CreateBackupAccessPointResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreateBackupAccessPointCommand_base: {
|
|
22
|
+
new (input: CreateBackupAccessPointCommandInput): import("@smithy/core/client").CommandImpl<CreateBackupAccessPointCommandInput, CreateBackupAccessPointCommandOutput, import("..").BackupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateBackupAccessPointCommandInput): import("@smithy/core/client").CommandImpl<CreateBackupAccessPointCommandInput, CreateBackupAccessPointCommandOutput, import("..").BackupClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Creates a backup access point for an Amazon S3 recovery point. A backup access point provides
|
|
28
|
+
* on-demand, read-only access to the backup data in a recovery point through an Amazon S3 access point,
|
|
29
|
+
* without initiating a restore.</p>
|
|
30
|
+
* <p>While a backup access point is active for a recovery point, Backup pauses lifecycle transitions
|
|
31
|
+
* and blocks deletion of that recovery point.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { BackupClient, CreateBackupAccessPointCommand } from "@aws-sdk/client-backup"; // ES Modules import
|
|
36
|
+
* // const { BackupClient, CreateBackupAccessPointCommand } = require("@aws-sdk/client-backup"); // CommonJS import
|
|
37
|
+
* // import type { BackupClientConfig } from "@aws-sdk/client-backup";
|
|
38
|
+
* const config = {}; // type is BackupClientConfig
|
|
39
|
+
* const client = new BackupClient(config);
|
|
40
|
+
* const input = { // CreateBackupAccessPointRequest
|
|
41
|
+
* AccessPointMetadata: { // AccessPointMetadataMap
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* AccessPointPolicy: "STRING_VALUE",
|
|
45
|
+
* Name: "STRING_VALUE", // required
|
|
46
|
+
* RecoveryPointArn: "STRING_VALUE", // required
|
|
47
|
+
* Tags: { // TagMap
|
|
48
|
+
* "<keys>": "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* };
|
|
51
|
+
* const command = new CreateBackupAccessPointCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // CreateBackupAccessPointResponse
|
|
54
|
+
* // AccessPointArn: "STRING_VALUE", // required
|
|
55
|
+
* // Status: "AVAILABLE" || "CREATING" || "DELETING" || "DISASSOCIATED" || "DISASSOCIATING" || "EXPIRED" || "FAILED", // required
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param CreateBackupAccessPointCommandInput - {@link CreateBackupAccessPointCommandInput}
|
|
61
|
+
* @returns {@link CreateBackupAccessPointCommandOutput}
|
|
62
|
+
* @see {@link CreateBackupAccessPointCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link CreateBackupAccessPointCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link BackupClientResolvedConfig | config} for BackupClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
67
|
+
* <p>The required resource already exists.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ConflictException} (client fault)
|
|
70
|
+
* <p>Backup can't perform the action that you requested until it finishes
|
|
71
|
+
* performing a previous action. Try again later.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
74
|
+
* <p>Indicates that something is wrong with a parameter's value. For example, the value is
|
|
75
|
+
* out of range.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
78
|
+
* <p>Indicates that something is wrong with the input to the request. For example, a
|
|
79
|
+
* parameter is of the wrong type.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
82
|
+
* <p>A limit in the request has been exceeded; for example, a maximum number of items allowed
|
|
83
|
+
* in a request.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link MissingParameterValueException} (client fault)
|
|
86
|
+
* <p>Indicates that a required parameter is missing.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
89
|
+
* <p>A resource that is required for the action doesn't exist.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
92
|
+
* <p>The request failed due to a temporary failure of the server.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link BackupServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Backup service.</p>
|
|
96
|
+
*
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class CreateBackupAccessPointCommand extends CreateBackupAccessPointCommand_base {
|
|
101
|
+
/** @internal type navigation helper, not in runtime. */
|
|
102
|
+
protected static __types: {
|
|
103
|
+
api: {
|
|
104
|
+
input: CreateBackupAccessPointRequest;
|
|
105
|
+
output: CreateBackupAccessPointResponse;
|
|
106
|
+
};
|
|
107
|
+
sdk: {
|
|
108
|
+
input: CreateBackupAccessPointCommandInput;
|
|
109
|
+
output: CreateBackupAccessPointCommandOutput;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}
|