@aws-sdk/client-lakeformation 3.969.0 → 3.970.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 +7 -0
- package/dist-cjs/index.js +90 -10
- package/dist-es/LakeFormation.js +2 -0
- package/dist-es/commands/GetTemporaryDataLocationCredentialsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +9 -0
- package/dist-es/models/errors.js +14 -0
- package/dist-es/schemas/schemas_0.js +46 -11
- package/dist-types/LakeFormation.d.ts +8 -0
- package/dist-types/LakeFormationClient.d.ts +3 -2
- package/dist-types/commands/DescribeResourceCommand.d.ts +2 -0
- package/dist-types/commands/GetTemporaryDataLocationCredentialsCommand.d.ts +132 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +2 -0
- package/dist-types/commands/RegisterResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +25 -0
- package/dist-types/models/errors.d.ts +17 -0
- package/dist-types/models/models_0.d.ts +124 -1
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/LakeFormation.d.ts +24 -0
- package/dist-types/ts3.4/LakeFormationClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetTemporaryDataLocationCredentialsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +13 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +23 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -426,6 +426,13 @@ GetTableObjects
|
|
|
426
426
|
</details>
|
|
427
427
|
<details>
|
|
428
428
|
<summary>
|
|
429
|
+
GetTemporaryDataLocationCredentials
|
|
430
|
+
</summary>
|
|
431
|
+
|
|
432
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lakeformation/command/GetTemporaryDataLocationCredentialsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/GetTemporaryDataLocationCredentialsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lakeformation/Interface/GetTemporaryDataLocationCredentialsCommandOutput/)
|
|
433
|
+
</details>
|
|
434
|
+
<details>
|
|
435
|
+
<summary>
|
|
429
436
|
GetTemporaryGluePartitionCredentials
|
|
430
437
|
</summary>
|
|
431
438
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -344,6 +344,20 @@ class GlueEncryptionException extends LakeFormationServiceException {
|
|
|
344
344
|
this.Message = opts.Message;
|
|
345
345
|
}
|
|
346
346
|
}
|
|
347
|
+
class ConflictException extends LakeFormationServiceException {
|
|
348
|
+
name = "ConflictException";
|
|
349
|
+
$fault = "client";
|
|
350
|
+
Message;
|
|
351
|
+
constructor(opts) {
|
|
352
|
+
super({
|
|
353
|
+
name: "ConflictException",
|
|
354
|
+
$fault: "client",
|
|
355
|
+
...opts,
|
|
356
|
+
});
|
|
357
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
358
|
+
this.Message = opts.Message;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
347
361
|
class PermissionTypeMismatchException extends LakeFormationServiceException {
|
|
348
362
|
name = "PermissionTypeMismatchException";
|
|
349
363
|
$fault = "client";
|
|
@@ -380,6 +394,7 @@ const _AC = "AuditContext";
|
|
|
380
394
|
const _ACd = "AdditionalContext";
|
|
381
395
|
const _AD = "AdditionalDetails";
|
|
382
396
|
const _ADE = "AccessDeniedException";
|
|
397
|
+
const _ADL = "AccessibleDataLocations";
|
|
383
398
|
const _ADRWSAML = "AssumeDecoratedRoleWithSAML";
|
|
384
399
|
const _ADRWSAMLR = "AssumeDecoratedRoleWithSAMLRequest";
|
|
385
400
|
const _ADRWSAMLRs = "AssumeDecoratedRoleWithSAMLResponse";
|
|
@@ -412,6 +427,7 @@ const _CDCF = "CreateDataCellsFilter";
|
|
|
412
427
|
const _CDCFR = "CreateDataCellsFilterRequest";
|
|
413
428
|
const _CDCFRr = "CreateDataCellsFilterResponse";
|
|
414
429
|
const _CDDP = "CreateDatabaseDefaultPermissions";
|
|
430
|
+
const _CE = "ConflictException";
|
|
415
431
|
const _CI = "CatalogId";
|
|
416
432
|
const _CIl = "ClusterId";
|
|
417
433
|
const _CLFICC = "CreateLakeFormationIdentityCenterConfiguration";
|
|
@@ -432,6 +448,7 @@ const _CME = "ConcurrentModificationException";
|
|
|
432
448
|
const _CN = "ColumnNames";
|
|
433
449
|
const _CO = "ComparisonOperator";
|
|
434
450
|
const _CR = "CatalogResource";
|
|
451
|
+
const _CS = "CredentialsScope";
|
|
435
452
|
const _CT = "CancelTransaction";
|
|
436
453
|
const _CTDP = "CreateTableDefaultPermissions";
|
|
437
454
|
const _CTR = "CancelTransactionRequest";
|
|
@@ -442,6 +459,7 @@ const _CTo = "CommitTransaction";
|
|
|
442
459
|
const _CW = "ColumnWildcard";
|
|
443
460
|
const _Ca = "Catalog";
|
|
444
461
|
const _Co = "Config";
|
|
462
|
+
const _Cr = "Credentials";
|
|
445
463
|
const _D = "Description";
|
|
446
464
|
const _DCF = "DataCellsFilter";
|
|
447
465
|
const _DCFL = "DataCellsFilterList";
|
|
@@ -450,7 +468,7 @@ const _DCFa = "DataCellsFilters";
|
|
|
450
468
|
const _DDCF = "DeleteDataCellsFilter";
|
|
451
469
|
const _DDCFR = "DeleteDataCellsFilterRequest";
|
|
452
470
|
const _DDCFRe = "DeleteDataCellsFilterResponse";
|
|
453
|
-
const _DL = "
|
|
471
|
+
const _DL = "DataLocations";
|
|
454
472
|
const _DLA = "DataLakeAdmins";
|
|
455
473
|
const _DLFICC = "DeleteLakeFormationIdentityCenterConfiguration";
|
|
456
474
|
const _DLFICCR = "DeleteLakeFormationIdentityCenterConfigurationRequest";
|
|
@@ -473,7 +491,8 @@ const _DLPI = "DataLakePrincipalIdentifier";
|
|
|
473
491
|
const _DLPL = "DataLakePrincipalList";
|
|
474
492
|
const _DLR = "DataLocationResource";
|
|
475
493
|
const _DLS = "DataLakeSettings";
|
|
476
|
-
const _DLa = "
|
|
494
|
+
const _DLa = "DataLocation";
|
|
495
|
+
const _DLat = "DatabaseList";
|
|
477
496
|
const _DM = "DetailsMap";
|
|
478
497
|
const _DN = "DatabaseName";
|
|
479
498
|
const _DO = "DeleteObject";
|
|
@@ -506,6 +525,7 @@ const _EFC = "ExternalFilteringConfiguration";
|
|
|
506
525
|
const _EM = "ErrorMessage";
|
|
507
526
|
const _EN = "ExpressionName";
|
|
508
527
|
const _ENFE = "EntityNotFoundException";
|
|
528
|
+
const _EROA = "ExpectedResourceOwnerAccount";
|
|
509
529
|
const _ES = "ExecutionStatistics";
|
|
510
530
|
const _ET = "ETag";
|
|
511
531
|
const _ETR = "ExtendTransactionRequest";
|
|
@@ -550,6 +570,9 @@ const _GQSe = "GetQueryStatistics";
|
|
|
550
570
|
const _GRLFT = "GetResourceLFTags";
|
|
551
571
|
const _GRLFTR = "GetResourceLFTagsRequest";
|
|
552
572
|
const _GRLFTRe = "GetResourceLFTagsResponse";
|
|
573
|
+
const _GTDLC = "GetTemporaryDataLocationCredentials";
|
|
574
|
+
const _GTDLCR = "GetTemporaryDataLocationCredentialsRequest";
|
|
575
|
+
const _GTDLCRe = "GetTemporaryDataLocationCredentialsResponse";
|
|
553
576
|
const _GTGPC = "GetTemporaryGluePartitionCredentials";
|
|
554
577
|
const _GTGPCR = "GetTemporaryGluePartitionCredentialsRequest";
|
|
555
578
|
const _GTGPCRe = "GetTemporaryGluePartitionCredentialsResponse";
|
|
@@ -721,6 +744,7 @@ const _St = "Status";
|
|
|
721
744
|
const _Sta = "State";
|
|
722
745
|
const _T = "Table";
|
|
723
746
|
const _TA = "TableArn";
|
|
747
|
+
const _TC = "TemporaryCredentials";
|
|
724
748
|
const _TCE = "TransactionCanceledException";
|
|
725
749
|
const _TCEr = "TransactionCommittedException";
|
|
726
750
|
const _TCI = "TableCatalogId";
|
|
@@ -778,6 +802,7 @@ const _V = "Values";
|
|
|
778
802
|
const _VI = "VersionId";
|
|
779
803
|
const _VO = "VirtualObject";
|
|
780
804
|
const _VOL = "VirtualObjectList";
|
|
805
|
+
const _VS = "VerificationStatus";
|
|
781
806
|
const _VSP = "VendedS3Path";
|
|
782
807
|
const _W = "Warnings";
|
|
783
808
|
const _WF = "WithFederation";
|
|
@@ -930,6 +955,12 @@ var Condition$ = [3, n0, _C,
|
|
|
930
955
|
[_Ex],
|
|
931
956
|
[0]
|
|
932
957
|
];
|
|
958
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
959
|
+
{ [_e]: _c },
|
|
960
|
+
[_M],
|
|
961
|
+
[0]
|
|
962
|
+
];
|
|
963
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
933
964
|
var CreateDataCellsFilterRequest$ = [3, n0, _CDCFR,
|
|
934
965
|
0,
|
|
935
966
|
[_TD],
|
|
@@ -1262,6 +1293,16 @@ var GetTableObjectsResponse$ = [3, n0, _GTORe,
|
|
|
1262
1293
|
[_O, _NT],
|
|
1263
1294
|
[() => PartitionedTableObjectsList, 0]
|
|
1264
1295
|
];
|
|
1296
|
+
var GetTemporaryDataLocationCredentialsRequest$ = [3, n0, _GTDLCR,
|
|
1297
|
+
0,
|
|
1298
|
+
[_DS, _AC, _DL, _CS],
|
|
1299
|
+
[1, () => AuditContext$, 64 | 0, 0]
|
|
1300
|
+
];
|
|
1301
|
+
var GetTemporaryDataLocationCredentialsResponse$ = [3, n0, _GTDLCRe,
|
|
1302
|
+
0,
|
|
1303
|
+
[_Cr, _ADL, _CS],
|
|
1304
|
+
[() => TemporaryCredentials$, 64 | 0, 0]
|
|
1305
|
+
];
|
|
1265
1306
|
var GetTemporaryGluePartitionCredentialsRequest$ = [3, n0, _GTGPCR,
|
|
1266
1307
|
0,
|
|
1267
1308
|
[_TA, _Par, _Pe, _DS, _AC, _SPT],
|
|
@@ -1514,8 +1555,8 @@ var RedshiftConnect$ = [3, n0, _RC,
|
|
|
1514
1555
|
];
|
|
1515
1556
|
var RegisterResourceRequest$ = [3, n0, _RRR,
|
|
1516
1557
|
0,
|
|
1517
|
-
[_RAe, _USLR, _RA, _WF, _HAE, _WPA],
|
|
1518
|
-
[0, 2, 0, 2, 2, 2], 1
|
|
1558
|
+
[_RAe, _USLR, _RA, _WF, _HAE, _WPA, _EROA],
|
|
1559
|
+
[0, 2, 0, 2, 2, 2, 0], 1
|
|
1519
1560
|
];
|
|
1520
1561
|
var RegisterResourceResponse$ = [3, n0, _RRRe,
|
|
1521
1562
|
0,
|
|
@@ -1534,13 +1575,13 @@ var RemoveLFTagsFromResourceResponse$ = [3, n0, _RLFTFRRe,
|
|
|
1534
1575
|
];
|
|
1535
1576
|
var Resource$ = [3, n0, _R,
|
|
1536
1577
|
0,
|
|
1537
|
-
[_Ca, _Da, _T, _TWC,
|
|
1578
|
+
[_Ca, _Da, _T, _TWC, _DLa, _DCF, _LFTa, _LFTPa, _LFTEa],
|
|
1538
1579
|
[() => CatalogResource$, () => DatabaseResource$, () => TableResource$, () => TableWithColumnsResource$, () => DataLocationResource$, () => DataCellsFilterResource$, () => LFTagKeyResource$, () => LFTagPolicyResource$, () => LFTagExpressionResource$]
|
|
1539
1580
|
];
|
|
1540
1581
|
var ResourceInfo$ = [3, n0, _RI,
|
|
1541
1582
|
0,
|
|
1542
|
-
[_RAe, _RA, _LM, _WF, _HAE, _WPA],
|
|
1543
|
-
[0, 0, 4, 2, 2, 2]
|
|
1583
|
+
[_RAe, _RA, _LM, _WF, _HAE, _WPA, _VS, _EROA],
|
|
1584
|
+
[0, 0, 4, 2, 2, 2, 0, 0]
|
|
1544
1585
|
];
|
|
1545
1586
|
var ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
1546
1587
|
{ [_e]: _c, [_hE]: 400 },
|
|
@@ -1576,7 +1617,7 @@ var SearchDatabasesByLFTagsRequest$ = [3, n0, _SDBLFTR,
|
|
|
1576
1617
|
];
|
|
1577
1618
|
var SearchDatabasesByLFTagsResponse$ = [3, n0, _SDBLFTRe,
|
|
1578
1619
|
0,
|
|
1579
|
-
[_NT,
|
|
1620
|
+
[_NT, _DLat],
|
|
1580
1621
|
[0, () => DatabaseLFTagsList]
|
|
1581
1622
|
];
|
|
1582
1623
|
var SearchTablesByLFTagsRequest$ = [3, n0, _STBLFTR,
|
|
@@ -1650,6 +1691,11 @@ var TaggedTable$ = [3, n0, _TTa,
|
|
|
1650
1691
|
[_T, _LFTOD, _LFTOT, _LFTOC],
|
|
1651
1692
|
[() => TableResource$, () => LFTagsList, () => LFTagsList, () => ColumnLFTagsList]
|
|
1652
1693
|
];
|
|
1694
|
+
var TemporaryCredentials$ = [3, n0, _TC,
|
|
1695
|
+
0,
|
|
1696
|
+
[_AKI, _SAK, _ST, _E],
|
|
1697
|
+
[0, 0, 0, 4]
|
|
1698
|
+
];
|
|
1653
1699
|
var ThrottledException$ = [-3, n0, _TE,
|
|
1654
1700
|
{ [_e]: _c, [_hE]: 429 },
|
|
1655
1701
|
[_M],
|
|
@@ -1721,8 +1767,8 @@ var UpdateLFTagResponse$ = [3, n0, _ULFTRp,
|
|
|
1721
1767
|
];
|
|
1722
1768
|
var UpdateResourceRequest$ = [3, n0, _URR,
|
|
1723
1769
|
0,
|
|
1724
|
-
[_RA, _RAe, _WF, _HAE],
|
|
1725
|
-
[0, 0, 2, 2], 2
|
|
1770
|
+
[_RA, _RAe, _WF, _HAE, _EROA],
|
|
1771
|
+
[0, 0, 2, 2, 0], 2
|
|
1726
1772
|
];
|
|
1727
1773
|
var UpdateResourceResponse$ = [3, n0, _URRp,
|
|
1728
1774
|
0,
|
|
@@ -1953,6 +1999,9 @@ var GetResourceLFTags$ = [9, n0, _GRLFT,
|
|
|
1953
1999
|
var GetTableObjects$ = [9, n0, _GTO,
|
|
1954
2000
|
{ [_h]: ["POST", "/GetTableObjects", 200] }, () => GetTableObjectsRequest$, () => GetTableObjectsResponse$
|
|
1955
2001
|
];
|
|
2002
|
+
var GetTemporaryDataLocationCredentials$ = [9, n0, _GTDLC,
|
|
2003
|
+
{ [_h]: ["POST", "/GetTemporaryDataLocationCredentials", 200] }, () => GetTemporaryDataLocationCredentialsRequest$, () => GetTemporaryDataLocationCredentialsResponse$
|
|
2004
|
+
];
|
|
1956
2005
|
var GetTemporaryGluePartitionCredentials$ = [9, n0, _GTGPC,
|
|
1957
2006
|
{ [_h]: ["POST", "/GetTemporaryGluePartitionCredentials", 200] }, () => GetTemporaryGluePartitionCredentialsRequest$, () => GetTemporaryGluePartitionCredentialsResponse$
|
|
1958
2007
|
];
|
|
@@ -2422,6 +2471,18 @@ class GetTableObjectsCommand extends smithyClient.Command
|
|
|
2422
2471
|
.build() {
|
|
2423
2472
|
}
|
|
2424
2473
|
|
|
2474
|
+
class GetTemporaryDataLocationCredentialsCommand extends smithyClient.Command
|
|
2475
|
+
.classBuilder()
|
|
2476
|
+
.ep(commonParams)
|
|
2477
|
+
.m(function (Command, cs, config, o) {
|
|
2478
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2479
|
+
})
|
|
2480
|
+
.s("AWSLakeFormation", "GetTemporaryDataLocationCredentials", {})
|
|
2481
|
+
.n("LakeFormationClient", "GetTemporaryDataLocationCredentialsCommand")
|
|
2482
|
+
.sc(GetTemporaryDataLocationCredentials$)
|
|
2483
|
+
.build() {
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2425
2486
|
class GetTemporaryGluePartitionCredentialsCommand extends smithyClient.Command
|
|
2426
2487
|
.classBuilder()
|
|
2427
2488
|
.ep(commonParams)
|
|
@@ -2791,6 +2852,7 @@ const commands = {
|
|
|
2791
2852
|
GetQueryStatisticsCommand,
|
|
2792
2853
|
GetResourceLFTagsCommand,
|
|
2793
2854
|
GetTableObjectsCommand,
|
|
2855
|
+
GetTemporaryDataLocationCredentialsCommand,
|
|
2794
2856
|
GetTemporaryGluePartitionCredentialsCommand,
|
|
2795
2857
|
GetTemporaryGlueTableCredentialsCommand,
|
|
2796
2858
|
GetWorkUnitResultsCommand,
|
|
@@ -2890,6 +2952,11 @@ const ServiceAuthorization = {
|
|
|
2890
2952
|
DISABLED: "DISABLED",
|
|
2891
2953
|
ENABLED: "ENABLED",
|
|
2892
2954
|
};
|
|
2955
|
+
const VerificationStatus = {
|
|
2956
|
+
NOT_VERIFIED: "NOT_VERIFIED",
|
|
2957
|
+
VERIFICATION_FAILED: "VERIFICATION_FAILED",
|
|
2958
|
+
VERIFIED: "VERIFIED",
|
|
2959
|
+
};
|
|
2893
2960
|
const QueryStateString = {
|
|
2894
2961
|
ERROR: "ERROR",
|
|
2895
2962
|
EXPIRED: "EXPIRED",
|
|
@@ -2897,6 +2964,10 @@ const QueryStateString = {
|
|
|
2897
2964
|
PENDING: "PENDING",
|
|
2898
2965
|
WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE",
|
|
2899
2966
|
};
|
|
2967
|
+
const CredentialsScope = {
|
|
2968
|
+
READ: "READ",
|
|
2969
|
+
READWRITE: "READWRITE",
|
|
2970
|
+
};
|
|
2900
2971
|
const PermissionType = {
|
|
2901
2972
|
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
2902
2973
|
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
@@ -3002,6 +3073,8 @@ exports.ComparisonOperator = ComparisonOperator;
|
|
|
3002
3073
|
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
3003
3074
|
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
3004
3075
|
exports.Condition$ = Condition$;
|
|
3076
|
+
exports.ConflictException = ConflictException;
|
|
3077
|
+
exports.ConflictException$ = ConflictException$;
|
|
3005
3078
|
exports.CreateDataCellsFilter$ = CreateDataCellsFilter$;
|
|
3006
3079
|
exports.CreateDataCellsFilterCommand = CreateDataCellsFilterCommand;
|
|
3007
3080
|
exports.CreateDataCellsFilterRequest$ = CreateDataCellsFilterRequest$;
|
|
@@ -3022,6 +3095,7 @@ exports.CreateLakeFormationOptIn$ = CreateLakeFormationOptIn$;
|
|
|
3022
3095
|
exports.CreateLakeFormationOptInCommand = CreateLakeFormationOptInCommand;
|
|
3023
3096
|
exports.CreateLakeFormationOptInRequest$ = CreateLakeFormationOptInRequest$;
|
|
3024
3097
|
exports.CreateLakeFormationOptInResponse$ = CreateLakeFormationOptInResponse$;
|
|
3098
|
+
exports.CredentialsScope = CredentialsScope;
|
|
3025
3099
|
exports.DataCellsFilter$ = DataCellsFilter$;
|
|
3026
3100
|
exports.DataCellsFilterResource$ = DataCellsFilterResource$;
|
|
3027
3101
|
exports.DataLakePrincipal$ = DataLakePrincipal$;
|
|
@@ -3125,6 +3199,10 @@ exports.GetTableObjects$ = GetTableObjects$;
|
|
|
3125
3199
|
exports.GetTableObjectsCommand = GetTableObjectsCommand;
|
|
3126
3200
|
exports.GetTableObjectsRequest$ = GetTableObjectsRequest$;
|
|
3127
3201
|
exports.GetTableObjectsResponse$ = GetTableObjectsResponse$;
|
|
3202
|
+
exports.GetTemporaryDataLocationCredentials$ = GetTemporaryDataLocationCredentials$;
|
|
3203
|
+
exports.GetTemporaryDataLocationCredentialsCommand = GetTemporaryDataLocationCredentialsCommand;
|
|
3204
|
+
exports.GetTemporaryDataLocationCredentialsRequest$ = GetTemporaryDataLocationCredentialsRequest$;
|
|
3205
|
+
exports.GetTemporaryDataLocationCredentialsResponse$ = GetTemporaryDataLocationCredentialsResponse$;
|
|
3128
3206
|
exports.GetTemporaryGluePartitionCredentials$ = GetTemporaryGluePartitionCredentials$;
|
|
3129
3207
|
exports.GetTemporaryGluePartitionCredentialsCommand = GetTemporaryGluePartitionCredentialsCommand;
|
|
3130
3208
|
exports.GetTemporaryGluePartitionCredentialsRequest$ = GetTemporaryGluePartitionCredentialsRequest$;
|
|
@@ -3264,6 +3342,7 @@ exports.TableWildcard$ = TableWildcard$;
|
|
|
3264
3342
|
exports.TableWithColumnsResource$ = TableWithColumnsResource$;
|
|
3265
3343
|
exports.TaggedDatabase$ = TaggedDatabase$;
|
|
3266
3344
|
exports.TaggedTable$ = TaggedTable$;
|
|
3345
|
+
exports.TemporaryCredentials$ = TemporaryCredentials$;
|
|
3267
3346
|
exports.ThrottledException = ThrottledException;
|
|
3268
3347
|
exports.ThrottledException$ = ThrottledException$;
|
|
3269
3348
|
exports.TransactionCanceledException = TransactionCanceledException;
|
|
@@ -3304,6 +3383,7 @@ exports.UpdateTableStorageOptimizer$ = UpdateTableStorageOptimizer$;
|
|
|
3304
3383
|
exports.UpdateTableStorageOptimizerCommand = UpdateTableStorageOptimizerCommand;
|
|
3305
3384
|
exports.UpdateTableStorageOptimizerRequest$ = UpdateTableStorageOptimizerRequest$;
|
|
3306
3385
|
exports.UpdateTableStorageOptimizerResponse$ = UpdateTableStorageOptimizerResponse$;
|
|
3386
|
+
exports.VerificationStatus = VerificationStatus;
|
|
3307
3387
|
exports.VirtualObject$ = VirtualObject$;
|
|
3308
3388
|
exports.WorkUnitRange$ = WorkUnitRange$;
|
|
3309
3389
|
exports.WorkUnitsNotReadyYetException = WorkUnitsNotReadyYetException;
|
package/dist-es/LakeFormation.js
CHANGED
|
@@ -31,6 +31,7 @@ import { GetQueryStateCommand, } from "./commands/GetQueryStateCommand";
|
|
|
31
31
|
import { GetQueryStatisticsCommand, } from "./commands/GetQueryStatisticsCommand";
|
|
32
32
|
import { GetResourceLFTagsCommand, } from "./commands/GetResourceLFTagsCommand";
|
|
33
33
|
import { GetTableObjectsCommand, } from "./commands/GetTableObjectsCommand";
|
|
34
|
+
import { GetTemporaryDataLocationCredentialsCommand, } from "./commands/GetTemporaryDataLocationCredentialsCommand";
|
|
34
35
|
import { GetTemporaryGluePartitionCredentialsCommand, } from "./commands/GetTemporaryGluePartitionCredentialsCommand";
|
|
35
36
|
import { GetTemporaryGlueTableCredentialsCommand, } from "./commands/GetTemporaryGlueTableCredentialsCommand";
|
|
36
37
|
import { GetWorkUnitResultsCommand, } from "./commands/GetWorkUnitResultsCommand";
|
|
@@ -93,6 +94,7 @@ const commands = {
|
|
|
93
94
|
GetQueryStatisticsCommand,
|
|
94
95
|
GetResourceLFTagsCommand,
|
|
95
96
|
GetTableObjectsCommand,
|
|
97
|
+
GetTemporaryDataLocationCredentialsCommand,
|
|
96
98
|
GetTemporaryGluePartitionCredentialsCommand,
|
|
97
99
|
GetTemporaryGlueTableCredentialsCommand,
|
|
98
100
|
GetWorkUnitResultsCommand,
|
|
@@ -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 { GetTemporaryDataLocationCredentials$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetTemporaryDataLocationCredentialsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AWSLakeFormation", "GetTemporaryDataLocationCredentials", {})
|
|
13
|
+
.n("LakeFormationClient", "GetTemporaryDataLocationCredentialsCommand")
|
|
14
|
+
.sc(GetTemporaryDataLocationCredentials$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -30,6 +30,7 @@ export * from "./GetQueryStateCommand";
|
|
|
30
30
|
export * from "./GetQueryStatisticsCommand";
|
|
31
31
|
export * from "./GetResourceLFTagsCommand";
|
|
32
32
|
export * from "./GetTableObjectsCommand";
|
|
33
|
+
export * from "./GetTemporaryDataLocationCredentialsCommand";
|
|
33
34
|
export * from "./GetTemporaryGluePartitionCredentialsCommand";
|
|
34
35
|
export * from "./GetTemporaryGlueTableCredentialsCommand";
|
|
35
36
|
export * from "./GetWorkUnitResultsCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -38,6 +38,11 @@ export const ServiceAuthorization = {
|
|
|
38
38
|
DISABLED: "DISABLED",
|
|
39
39
|
ENABLED: "ENABLED",
|
|
40
40
|
};
|
|
41
|
+
export const VerificationStatus = {
|
|
42
|
+
NOT_VERIFIED: "NOT_VERIFIED",
|
|
43
|
+
VERIFICATION_FAILED: "VERIFICATION_FAILED",
|
|
44
|
+
VERIFIED: "VERIFIED",
|
|
45
|
+
};
|
|
41
46
|
export const QueryStateString = {
|
|
42
47
|
ERROR: "ERROR",
|
|
43
48
|
EXPIRED: "EXPIRED",
|
|
@@ -45,6 +50,10 @@ export const QueryStateString = {
|
|
|
45
50
|
PENDING: "PENDING",
|
|
46
51
|
WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE",
|
|
47
52
|
};
|
|
53
|
+
export const CredentialsScope = {
|
|
54
|
+
READ: "READ",
|
|
55
|
+
READWRITE: "READWRITE",
|
|
56
|
+
};
|
|
48
57
|
export const PermissionType = {
|
|
49
58
|
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
50
59
|
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
package/dist-es/models/errors.js
CHANGED
|
@@ -226,6 +226,20 @@ export class GlueEncryptionException extends __BaseException {
|
|
|
226
226
|
this.Message = opts.Message;
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
|
+
export class ConflictException extends __BaseException {
|
|
230
|
+
name = "ConflictException";
|
|
231
|
+
$fault = "client";
|
|
232
|
+
Message;
|
|
233
|
+
constructor(opts) {
|
|
234
|
+
super({
|
|
235
|
+
name: "ConflictException",
|
|
236
|
+
$fault: "client",
|
|
237
|
+
...opts,
|
|
238
|
+
});
|
|
239
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
240
|
+
this.Message = opts.Message;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
229
243
|
export class PermissionTypeMismatchException extends __BaseException {
|
|
230
244
|
name = "PermissionTypeMismatchException";
|
|
231
245
|
$fault = "client";
|
|
@@ -5,6 +5,7 @@ const _AC = "AuditContext";
|
|
|
5
5
|
const _ACd = "AdditionalContext";
|
|
6
6
|
const _AD = "AdditionalDetails";
|
|
7
7
|
const _ADE = "AccessDeniedException";
|
|
8
|
+
const _ADL = "AccessibleDataLocations";
|
|
8
9
|
const _ADRWSAML = "AssumeDecoratedRoleWithSAML";
|
|
9
10
|
const _ADRWSAMLR = "AssumeDecoratedRoleWithSAMLRequest";
|
|
10
11
|
const _ADRWSAMLRs = "AssumeDecoratedRoleWithSAMLResponse";
|
|
@@ -37,6 +38,7 @@ const _CDCF = "CreateDataCellsFilter";
|
|
|
37
38
|
const _CDCFR = "CreateDataCellsFilterRequest";
|
|
38
39
|
const _CDCFRr = "CreateDataCellsFilterResponse";
|
|
39
40
|
const _CDDP = "CreateDatabaseDefaultPermissions";
|
|
41
|
+
const _CE = "ConflictException";
|
|
40
42
|
const _CI = "CatalogId";
|
|
41
43
|
const _CIl = "ClusterId";
|
|
42
44
|
const _CLFICC = "CreateLakeFormationIdentityCenterConfiguration";
|
|
@@ -57,6 +59,7 @@ const _CME = "ConcurrentModificationException";
|
|
|
57
59
|
const _CN = "ColumnNames";
|
|
58
60
|
const _CO = "ComparisonOperator";
|
|
59
61
|
const _CR = "CatalogResource";
|
|
62
|
+
const _CS = "CredentialsScope";
|
|
60
63
|
const _CT = "CancelTransaction";
|
|
61
64
|
const _CTDP = "CreateTableDefaultPermissions";
|
|
62
65
|
const _CTR = "CancelTransactionRequest";
|
|
@@ -67,6 +70,7 @@ const _CTo = "CommitTransaction";
|
|
|
67
70
|
const _CW = "ColumnWildcard";
|
|
68
71
|
const _Ca = "Catalog";
|
|
69
72
|
const _Co = "Config";
|
|
73
|
+
const _Cr = "Credentials";
|
|
70
74
|
const _D = "Description";
|
|
71
75
|
const _DCF = "DataCellsFilter";
|
|
72
76
|
const _DCFL = "DataCellsFilterList";
|
|
@@ -75,7 +79,7 @@ const _DCFa = "DataCellsFilters";
|
|
|
75
79
|
const _DDCF = "DeleteDataCellsFilter";
|
|
76
80
|
const _DDCFR = "DeleteDataCellsFilterRequest";
|
|
77
81
|
const _DDCFRe = "DeleteDataCellsFilterResponse";
|
|
78
|
-
const _DL = "
|
|
82
|
+
const _DL = "DataLocations";
|
|
79
83
|
const _DLA = "DataLakeAdmins";
|
|
80
84
|
const _DLFICC = "DeleteLakeFormationIdentityCenterConfiguration";
|
|
81
85
|
const _DLFICCR = "DeleteLakeFormationIdentityCenterConfigurationRequest";
|
|
@@ -98,7 +102,8 @@ const _DLPI = "DataLakePrincipalIdentifier";
|
|
|
98
102
|
const _DLPL = "DataLakePrincipalList";
|
|
99
103
|
const _DLR = "DataLocationResource";
|
|
100
104
|
const _DLS = "DataLakeSettings";
|
|
101
|
-
const _DLa = "
|
|
105
|
+
const _DLa = "DataLocation";
|
|
106
|
+
const _DLat = "DatabaseList";
|
|
102
107
|
const _DM = "DetailsMap";
|
|
103
108
|
const _DN = "DatabaseName";
|
|
104
109
|
const _DO = "DeleteObject";
|
|
@@ -131,6 +136,7 @@ const _EFC = "ExternalFilteringConfiguration";
|
|
|
131
136
|
const _EM = "ErrorMessage";
|
|
132
137
|
const _EN = "ExpressionName";
|
|
133
138
|
const _ENFE = "EntityNotFoundException";
|
|
139
|
+
const _EROA = "ExpectedResourceOwnerAccount";
|
|
134
140
|
const _ES = "ExecutionStatistics";
|
|
135
141
|
const _ET = "ETag";
|
|
136
142
|
const _ETR = "ExtendTransactionRequest";
|
|
@@ -175,6 +181,9 @@ const _GQSe = "GetQueryStatistics";
|
|
|
175
181
|
const _GRLFT = "GetResourceLFTags";
|
|
176
182
|
const _GRLFTR = "GetResourceLFTagsRequest";
|
|
177
183
|
const _GRLFTRe = "GetResourceLFTagsResponse";
|
|
184
|
+
const _GTDLC = "GetTemporaryDataLocationCredentials";
|
|
185
|
+
const _GTDLCR = "GetTemporaryDataLocationCredentialsRequest";
|
|
186
|
+
const _GTDLCRe = "GetTemporaryDataLocationCredentialsResponse";
|
|
178
187
|
const _GTGPC = "GetTemporaryGluePartitionCredentials";
|
|
179
188
|
const _GTGPCR = "GetTemporaryGluePartitionCredentialsRequest";
|
|
180
189
|
const _GTGPCRe = "GetTemporaryGluePartitionCredentialsResponse";
|
|
@@ -346,6 +355,7 @@ const _St = "Status";
|
|
|
346
355
|
const _Sta = "State";
|
|
347
356
|
const _T = "Table";
|
|
348
357
|
const _TA = "TableArn";
|
|
358
|
+
const _TC = "TemporaryCredentials";
|
|
349
359
|
const _TCE = "TransactionCanceledException";
|
|
350
360
|
const _TCEr = "TransactionCommittedException";
|
|
351
361
|
const _TCI = "TableCatalogId";
|
|
@@ -403,6 +413,7 @@ const _V = "Values";
|
|
|
403
413
|
const _VI = "VersionId";
|
|
404
414
|
const _VO = "VirtualObject";
|
|
405
415
|
const _VOL = "VirtualObjectList";
|
|
416
|
+
const _VS = "VerificationStatus";
|
|
406
417
|
const _VSP = "VendedS3Path";
|
|
407
418
|
const _W = "Warnings";
|
|
408
419
|
const _WF = "WithFederation";
|
|
@@ -430,7 +441,7 @@ const _se = "server";
|
|
|
430
441
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lakeformation";
|
|
431
442
|
const n0 = "com.amazonaws.lakeformation";
|
|
432
443
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
433
|
-
import { AccessDeniedException, AlreadyExistsException, ConcurrentModificationException, EntityNotFoundException, ExpiredException, GlueEncryptionException, InternalServiceException, InvalidInputException, OperationTimeoutException, PermissionTypeMismatchException, ResourceNotReadyException, ResourceNumberLimitExceededException, StatisticsNotReadyYetException, ThrottledException, TransactionCanceledException, TransactionCommitInProgressException, TransactionCommittedException, WorkUnitsNotReadyYetException, } from "../models/errors";
|
|
444
|
+
import { AccessDeniedException, AlreadyExistsException, ConcurrentModificationException, ConflictException, EntityNotFoundException, ExpiredException, GlueEncryptionException, InternalServiceException, InvalidInputException, OperationTimeoutException, PermissionTypeMismatchException, ResourceNotReadyException, ResourceNumberLimitExceededException, StatisticsNotReadyYetException, ThrottledException, TransactionCanceledException, TransactionCommitInProgressException, TransactionCommittedException, WorkUnitsNotReadyYetException, } from "../models/errors";
|
|
434
445
|
import { LakeFormationServiceException } from "../models/LakeFormationServiceException";
|
|
435
446
|
var ResultStream = [0, n0, _RS, { [_s]: 1 }, 42];
|
|
436
447
|
var SyntheticGetWorkUnitResultsRequestWorkUnitTokenString = [0, n0, _SGWURRWUTS, 8, 0];
|
|
@@ -558,6 +569,12 @@ export var Condition$ = [3, n0, _C,
|
|
|
558
569
|
[_Ex],
|
|
559
570
|
[0]
|
|
560
571
|
];
|
|
572
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
573
|
+
{ [_e]: _c },
|
|
574
|
+
[_M],
|
|
575
|
+
[0]
|
|
576
|
+
];
|
|
577
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
561
578
|
export var CreateDataCellsFilterRequest$ = [3, n0, _CDCFR,
|
|
562
579
|
0,
|
|
563
580
|
[_TD],
|
|
@@ -890,6 +907,16 @@ export var GetTableObjectsResponse$ = [3, n0, _GTORe,
|
|
|
890
907
|
[_O, _NT],
|
|
891
908
|
[() => PartitionedTableObjectsList, 0]
|
|
892
909
|
];
|
|
910
|
+
export var GetTemporaryDataLocationCredentialsRequest$ = [3, n0, _GTDLCR,
|
|
911
|
+
0,
|
|
912
|
+
[_DS, _AC, _DL, _CS],
|
|
913
|
+
[1, () => AuditContext$, 64 | 0, 0]
|
|
914
|
+
];
|
|
915
|
+
export var GetTemporaryDataLocationCredentialsResponse$ = [3, n0, _GTDLCRe,
|
|
916
|
+
0,
|
|
917
|
+
[_Cr, _ADL, _CS],
|
|
918
|
+
[() => TemporaryCredentials$, 64 | 0, 0]
|
|
919
|
+
];
|
|
893
920
|
export var GetTemporaryGluePartitionCredentialsRequest$ = [3, n0, _GTGPCR,
|
|
894
921
|
0,
|
|
895
922
|
[_TA, _Par, _Pe, _DS, _AC, _SPT],
|
|
@@ -1142,8 +1169,8 @@ export var RedshiftConnect$ = [3, n0, _RC,
|
|
|
1142
1169
|
];
|
|
1143
1170
|
export var RegisterResourceRequest$ = [3, n0, _RRR,
|
|
1144
1171
|
0,
|
|
1145
|
-
[_RAe, _USLR, _RA, _WF, _HAE, _WPA],
|
|
1146
|
-
[0, 2, 0, 2, 2, 2], 1
|
|
1172
|
+
[_RAe, _USLR, _RA, _WF, _HAE, _WPA, _EROA],
|
|
1173
|
+
[0, 2, 0, 2, 2, 2, 0], 1
|
|
1147
1174
|
];
|
|
1148
1175
|
export var RegisterResourceResponse$ = [3, n0, _RRRe,
|
|
1149
1176
|
0,
|
|
@@ -1162,13 +1189,13 @@ export var RemoveLFTagsFromResourceResponse$ = [3, n0, _RLFTFRRe,
|
|
|
1162
1189
|
];
|
|
1163
1190
|
export var Resource$ = [3, n0, _R,
|
|
1164
1191
|
0,
|
|
1165
|
-
[_Ca, _Da, _T, _TWC,
|
|
1192
|
+
[_Ca, _Da, _T, _TWC, _DLa, _DCF, _LFTa, _LFTPa, _LFTEa],
|
|
1166
1193
|
[() => CatalogResource$, () => DatabaseResource$, () => TableResource$, () => TableWithColumnsResource$, () => DataLocationResource$, () => DataCellsFilterResource$, () => LFTagKeyResource$, () => LFTagPolicyResource$, () => LFTagExpressionResource$]
|
|
1167
1194
|
];
|
|
1168
1195
|
export var ResourceInfo$ = [3, n0, _RI,
|
|
1169
1196
|
0,
|
|
1170
|
-
[_RAe, _RA, _LM, _WF, _HAE, _WPA],
|
|
1171
|
-
[0, 0, 4, 2, 2, 2]
|
|
1197
|
+
[_RAe, _RA, _LM, _WF, _HAE, _WPA, _VS, _EROA],
|
|
1198
|
+
[0, 0, 4, 2, 2, 2, 0, 0]
|
|
1172
1199
|
];
|
|
1173
1200
|
export var ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
1174
1201
|
{ [_e]: _c, [_hE]: 400 },
|
|
@@ -1204,7 +1231,7 @@ export var SearchDatabasesByLFTagsRequest$ = [3, n0, _SDBLFTR,
|
|
|
1204
1231
|
];
|
|
1205
1232
|
export var SearchDatabasesByLFTagsResponse$ = [3, n0, _SDBLFTRe,
|
|
1206
1233
|
0,
|
|
1207
|
-
[_NT,
|
|
1234
|
+
[_NT, _DLat],
|
|
1208
1235
|
[0, () => DatabaseLFTagsList]
|
|
1209
1236
|
];
|
|
1210
1237
|
export var SearchTablesByLFTagsRequest$ = [3, n0, _STBLFTR,
|
|
@@ -1278,6 +1305,11 @@ export var TaggedTable$ = [3, n0, _TTa,
|
|
|
1278
1305
|
[_T, _LFTOD, _LFTOT, _LFTOC],
|
|
1279
1306
|
[() => TableResource$, () => LFTagsList, () => LFTagsList, () => ColumnLFTagsList]
|
|
1280
1307
|
];
|
|
1308
|
+
export var TemporaryCredentials$ = [3, n0, _TC,
|
|
1309
|
+
0,
|
|
1310
|
+
[_AKI, _SAK, _ST, _E],
|
|
1311
|
+
[0, 0, 0, 4]
|
|
1312
|
+
];
|
|
1281
1313
|
export var ThrottledException$ = [-3, n0, _TE,
|
|
1282
1314
|
{ [_e]: _c, [_hE]: 429 },
|
|
1283
1315
|
[_M],
|
|
@@ -1349,8 +1381,8 @@ export var UpdateLFTagResponse$ = [3, n0, _ULFTRp,
|
|
|
1349
1381
|
];
|
|
1350
1382
|
export var UpdateResourceRequest$ = [3, n0, _URR,
|
|
1351
1383
|
0,
|
|
1352
|
-
[_RA, _RAe, _WF, _HAE],
|
|
1353
|
-
[0, 0, 2, 2], 2
|
|
1384
|
+
[_RA, _RAe, _WF, _HAE, _EROA],
|
|
1385
|
+
[0, 0, 2, 2, 0], 2
|
|
1354
1386
|
];
|
|
1355
1387
|
export var UpdateResourceResponse$ = [3, n0, _URRp,
|
|
1356
1388
|
0,
|
|
@@ -1600,6 +1632,9 @@ export var GetResourceLFTags$ = [9, n0, _GRLFT,
|
|
|
1600
1632
|
export var GetTableObjects$ = [9, n0, _GTO,
|
|
1601
1633
|
{ [_h]: ["POST", "/GetTableObjects", 200] }, () => GetTableObjectsRequest$, () => GetTableObjectsResponse$
|
|
1602
1634
|
];
|
|
1635
|
+
export var GetTemporaryDataLocationCredentials$ = [9, n0, _GTDLC,
|
|
1636
|
+
{ [_h]: ["POST", "/GetTemporaryDataLocationCredentials", 200] }, () => GetTemporaryDataLocationCredentialsRequest$, () => GetTemporaryDataLocationCredentialsResponse$
|
|
1637
|
+
];
|
|
1603
1638
|
export var GetTemporaryGluePartitionCredentials$ = [9, n0, _GTGPC,
|
|
1604
1639
|
{ [_h]: ["POST", "/GetTemporaryGluePartitionCredentials", 200] }, () => GetTemporaryGluePartitionCredentialsRequest$, () => GetTemporaryGluePartitionCredentialsResponse$
|
|
1605
1640
|
];
|
|
@@ -31,6 +31,7 @@ import { GetQueryStateCommandInput, GetQueryStateCommandOutput } from "./command
|
|
|
31
31
|
import { GetQueryStatisticsCommandInput, GetQueryStatisticsCommandOutput } from "./commands/GetQueryStatisticsCommand";
|
|
32
32
|
import { GetResourceLFTagsCommandInput, GetResourceLFTagsCommandOutput } from "./commands/GetResourceLFTagsCommand";
|
|
33
33
|
import { GetTableObjectsCommandInput, GetTableObjectsCommandOutput } from "./commands/GetTableObjectsCommand";
|
|
34
|
+
import { GetTemporaryDataLocationCredentialsCommandInput, GetTemporaryDataLocationCredentialsCommandOutput } from "./commands/GetTemporaryDataLocationCredentialsCommand";
|
|
34
35
|
import { GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput } from "./commands/GetTemporaryGluePartitionCredentialsCommand";
|
|
35
36
|
import { GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput } from "./commands/GetTemporaryGlueTableCredentialsCommand";
|
|
36
37
|
import { GetWorkUnitResultsCommandInput, GetWorkUnitResultsCommandOutput } from "./commands/GetWorkUnitResultsCommand";
|
|
@@ -260,6 +261,13 @@ export interface LakeFormation {
|
|
|
260
261
|
getTableObjects(args: GetTableObjectsCommandInput, options?: __HttpHandlerOptions): Promise<GetTableObjectsCommandOutput>;
|
|
261
262
|
getTableObjects(args: GetTableObjectsCommandInput, cb: (err: any, data?: GetTableObjectsCommandOutput) => void): void;
|
|
262
263
|
getTableObjects(args: GetTableObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableObjectsCommandOutput) => void): void;
|
|
264
|
+
/**
|
|
265
|
+
* @see {@link GetTemporaryDataLocationCredentialsCommand}
|
|
266
|
+
*/
|
|
267
|
+
getTemporaryDataLocationCredentials(): Promise<GetTemporaryDataLocationCredentialsCommandOutput>;
|
|
268
|
+
getTemporaryDataLocationCredentials(args: GetTemporaryDataLocationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetTemporaryDataLocationCredentialsCommandOutput>;
|
|
269
|
+
getTemporaryDataLocationCredentials(args: GetTemporaryDataLocationCredentialsCommandInput, cb: (err: any, data?: GetTemporaryDataLocationCredentialsCommandOutput) => void): void;
|
|
270
|
+
getTemporaryDataLocationCredentials(args: GetTemporaryDataLocationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemporaryDataLocationCredentialsCommandOutput) => void): void;
|
|
263
271
|
/**
|
|
264
272
|
* @see {@link GetTemporaryGluePartitionCredentialsCommand}
|
|
265
273
|
*/
|
|
@@ -39,6 +39,7 @@ import { GetQueryStateCommandInput, GetQueryStateCommandOutput } from "./command
|
|
|
39
39
|
import { GetQueryStatisticsCommandInput, GetQueryStatisticsCommandOutput } from "./commands/GetQueryStatisticsCommand";
|
|
40
40
|
import { GetResourceLFTagsCommandInput, GetResourceLFTagsCommandOutput } from "./commands/GetResourceLFTagsCommand";
|
|
41
41
|
import { GetTableObjectsCommandInput, GetTableObjectsCommandOutput } from "./commands/GetTableObjectsCommand";
|
|
42
|
+
import { GetTemporaryDataLocationCredentialsCommandInput, GetTemporaryDataLocationCredentialsCommandOutput } from "./commands/GetTemporaryDataLocationCredentialsCommand";
|
|
42
43
|
import { GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput } from "./commands/GetTemporaryGluePartitionCredentialsCommand";
|
|
43
44
|
import { GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput } from "./commands/GetTemporaryGlueTableCredentialsCommand";
|
|
44
45
|
import { GetWorkUnitResultsCommandInput, GetWorkUnitResultsCommandOutput } from "./commands/GetWorkUnitResultsCommand";
|
|
@@ -73,11 +74,11 @@ export { __Client };
|
|
|
73
74
|
/**
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
|
-
export type ServiceInputTypes = AddLFTagsToResourceCommandInput | AssumeDecoratedRoleWithSAMLCommandInput | BatchGrantPermissionsCommandInput | BatchRevokePermissionsCommandInput | CancelTransactionCommandInput | CommitTransactionCommandInput | CreateDataCellsFilterCommandInput | CreateLFTagCommandInput | CreateLFTagExpressionCommandInput | CreateLakeFormationIdentityCenterConfigurationCommandInput | CreateLakeFormationOptInCommandInput | DeleteDataCellsFilterCommandInput | DeleteLFTagCommandInput | DeleteLFTagExpressionCommandInput | DeleteLakeFormationIdentityCenterConfigurationCommandInput | DeleteLakeFormationOptInCommandInput | DeleteObjectsOnCancelCommandInput | DeregisterResourceCommandInput | DescribeLakeFormationIdentityCenterConfigurationCommandInput | DescribeResourceCommandInput | DescribeTransactionCommandInput | ExtendTransactionCommandInput | GetDataCellsFilterCommandInput | GetDataLakePrincipalCommandInput | GetDataLakeSettingsCommandInput | GetEffectivePermissionsForPathCommandInput | GetLFTagCommandInput | GetLFTagExpressionCommandInput | GetQueryStateCommandInput | GetQueryStatisticsCommandInput | GetResourceLFTagsCommandInput | GetTableObjectsCommandInput | GetTemporaryGluePartitionCredentialsCommandInput | GetTemporaryGlueTableCredentialsCommandInput | GetWorkUnitResultsCommandInput | GetWorkUnitsCommandInput | GrantPermissionsCommandInput | ListDataCellsFilterCommandInput | ListLFTagExpressionsCommandInput | ListLFTagsCommandInput | ListLakeFormationOptInsCommandInput | ListPermissionsCommandInput | ListResourcesCommandInput | ListTableStorageOptimizersCommandInput | ListTransactionsCommandInput | PutDataLakeSettingsCommandInput | RegisterResourceCommandInput | RemoveLFTagsFromResourceCommandInput | RevokePermissionsCommandInput | SearchDatabasesByLFTagsCommandInput | SearchTablesByLFTagsCommandInput | StartQueryPlanningCommandInput | StartTransactionCommandInput | UpdateDataCellsFilterCommandInput | UpdateLFTagCommandInput | UpdateLFTagExpressionCommandInput | UpdateLakeFormationIdentityCenterConfigurationCommandInput | UpdateResourceCommandInput | UpdateTableObjectsCommandInput | UpdateTableStorageOptimizerCommandInput;
|
|
77
|
+
export type ServiceInputTypes = AddLFTagsToResourceCommandInput | AssumeDecoratedRoleWithSAMLCommandInput | BatchGrantPermissionsCommandInput | BatchRevokePermissionsCommandInput | CancelTransactionCommandInput | CommitTransactionCommandInput | CreateDataCellsFilterCommandInput | CreateLFTagCommandInput | CreateLFTagExpressionCommandInput | CreateLakeFormationIdentityCenterConfigurationCommandInput | CreateLakeFormationOptInCommandInput | DeleteDataCellsFilterCommandInput | DeleteLFTagCommandInput | DeleteLFTagExpressionCommandInput | DeleteLakeFormationIdentityCenterConfigurationCommandInput | DeleteLakeFormationOptInCommandInput | DeleteObjectsOnCancelCommandInput | DeregisterResourceCommandInput | DescribeLakeFormationIdentityCenterConfigurationCommandInput | DescribeResourceCommandInput | DescribeTransactionCommandInput | ExtendTransactionCommandInput | GetDataCellsFilterCommandInput | GetDataLakePrincipalCommandInput | GetDataLakeSettingsCommandInput | GetEffectivePermissionsForPathCommandInput | GetLFTagCommandInput | GetLFTagExpressionCommandInput | GetQueryStateCommandInput | GetQueryStatisticsCommandInput | GetResourceLFTagsCommandInput | GetTableObjectsCommandInput | GetTemporaryDataLocationCredentialsCommandInput | GetTemporaryGluePartitionCredentialsCommandInput | GetTemporaryGlueTableCredentialsCommandInput | GetWorkUnitResultsCommandInput | GetWorkUnitsCommandInput | GrantPermissionsCommandInput | ListDataCellsFilterCommandInput | ListLFTagExpressionsCommandInput | ListLFTagsCommandInput | ListLakeFormationOptInsCommandInput | ListPermissionsCommandInput | ListResourcesCommandInput | ListTableStorageOptimizersCommandInput | ListTransactionsCommandInput | PutDataLakeSettingsCommandInput | RegisterResourceCommandInput | RemoveLFTagsFromResourceCommandInput | RevokePermissionsCommandInput | SearchDatabasesByLFTagsCommandInput | SearchTablesByLFTagsCommandInput | StartQueryPlanningCommandInput | StartTransactionCommandInput | UpdateDataCellsFilterCommandInput | UpdateLFTagCommandInput | UpdateLFTagExpressionCommandInput | UpdateLakeFormationIdentityCenterConfigurationCommandInput | UpdateResourceCommandInput | UpdateTableObjectsCommandInput | UpdateTableStorageOptimizerCommandInput;
|
|
77
78
|
/**
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
|
-
export type ServiceOutputTypes = AddLFTagsToResourceCommandOutput | AssumeDecoratedRoleWithSAMLCommandOutput | BatchGrantPermissionsCommandOutput | BatchRevokePermissionsCommandOutput | CancelTransactionCommandOutput | CommitTransactionCommandOutput | CreateDataCellsFilterCommandOutput | CreateLFTagCommandOutput | CreateLFTagExpressionCommandOutput | CreateLakeFormationIdentityCenterConfigurationCommandOutput | CreateLakeFormationOptInCommandOutput | DeleteDataCellsFilterCommandOutput | DeleteLFTagCommandOutput | DeleteLFTagExpressionCommandOutput | DeleteLakeFormationIdentityCenterConfigurationCommandOutput | DeleteLakeFormationOptInCommandOutput | DeleteObjectsOnCancelCommandOutput | DeregisterResourceCommandOutput | DescribeLakeFormationIdentityCenterConfigurationCommandOutput | DescribeResourceCommandOutput | DescribeTransactionCommandOutput | ExtendTransactionCommandOutput | GetDataCellsFilterCommandOutput | GetDataLakePrincipalCommandOutput | GetDataLakeSettingsCommandOutput | GetEffectivePermissionsForPathCommandOutput | GetLFTagCommandOutput | GetLFTagExpressionCommandOutput | GetQueryStateCommandOutput | GetQueryStatisticsCommandOutput | GetResourceLFTagsCommandOutput | GetTableObjectsCommandOutput | GetTemporaryGluePartitionCredentialsCommandOutput | GetTemporaryGlueTableCredentialsCommandOutput | GetWorkUnitResultsCommandOutput | GetWorkUnitsCommandOutput | GrantPermissionsCommandOutput | ListDataCellsFilterCommandOutput | ListLFTagExpressionsCommandOutput | ListLFTagsCommandOutput | ListLakeFormationOptInsCommandOutput | ListPermissionsCommandOutput | ListResourcesCommandOutput | ListTableStorageOptimizersCommandOutput | ListTransactionsCommandOutput | PutDataLakeSettingsCommandOutput | RegisterResourceCommandOutput | RemoveLFTagsFromResourceCommandOutput | RevokePermissionsCommandOutput | SearchDatabasesByLFTagsCommandOutput | SearchTablesByLFTagsCommandOutput | StartQueryPlanningCommandOutput | StartTransactionCommandOutput | UpdateDataCellsFilterCommandOutput | UpdateLFTagCommandOutput | UpdateLFTagExpressionCommandOutput | UpdateLakeFormationIdentityCenterConfigurationCommandOutput | UpdateResourceCommandOutput | UpdateTableObjectsCommandOutput | UpdateTableStorageOptimizerCommandOutput;
|
|
81
|
+
export type ServiceOutputTypes = AddLFTagsToResourceCommandOutput | AssumeDecoratedRoleWithSAMLCommandOutput | BatchGrantPermissionsCommandOutput | BatchRevokePermissionsCommandOutput | CancelTransactionCommandOutput | CommitTransactionCommandOutput | CreateDataCellsFilterCommandOutput | CreateLFTagCommandOutput | CreateLFTagExpressionCommandOutput | CreateLakeFormationIdentityCenterConfigurationCommandOutput | CreateLakeFormationOptInCommandOutput | DeleteDataCellsFilterCommandOutput | DeleteLFTagCommandOutput | DeleteLFTagExpressionCommandOutput | DeleteLakeFormationIdentityCenterConfigurationCommandOutput | DeleteLakeFormationOptInCommandOutput | DeleteObjectsOnCancelCommandOutput | DeregisterResourceCommandOutput | DescribeLakeFormationIdentityCenterConfigurationCommandOutput | DescribeResourceCommandOutput | DescribeTransactionCommandOutput | ExtendTransactionCommandOutput | GetDataCellsFilterCommandOutput | GetDataLakePrincipalCommandOutput | GetDataLakeSettingsCommandOutput | GetEffectivePermissionsForPathCommandOutput | GetLFTagCommandOutput | GetLFTagExpressionCommandOutput | GetQueryStateCommandOutput | GetQueryStatisticsCommandOutput | GetResourceLFTagsCommandOutput | GetTableObjectsCommandOutput | GetTemporaryDataLocationCredentialsCommandOutput | GetTemporaryGluePartitionCredentialsCommandOutput | GetTemporaryGlueTableCredentialsCommandOutput | GetWorkUnitResultsCommandOutput | GetWorkUnitsCommandOutput | GrantPermissionsCommandOutput | ListDataCellsFilterCommandOutput | ListLFTagExpressionsCommandOutput | ListLFTagsCommandOutput | ListLakeFormationOptInsCommandOutput | ListPermissionsCommandOutput | ListResourcesCommandOutput | ListTableStorageOptimizersCommandOutput | ListTransactionsCommandOutput | PutDataLakeSettingsCommandOutput | RegisterResourceCommandOutput | RemoveLFTagsFromResourceCommandOutput | RevokePermissionsCommandOutput | SearchDatabasesByLFTagsCommandOutput | SearchTablesByLFTagsCommandOutput | StartQueryPlanningCommandOutput | StartTransactionCommandOutput | UpdateDataCellsFilterCommandOutput | UpdateLFTagCommandOutput | UpdateLFTagExpressionCommandOutput | UpdateLakeFormationIdentityCenterConfigurationCommandOutput | UpdateResourceCommandOutput | UpdateTableObjectsCommandOutput | UpdateTableStorageOptimizerCommandOutput;
|
|
81
82
|
/**
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
@@ -49,6 +49,8 @@ declare const DescribeResourceCommand_base: {
|
|
|
49
49
|
* // WithFederation: true || false,
|
|
50
50
|
* // HybridAccessEnabled: true || false,
|
|
51
51
|
* // WithPrivilegedAccess: true || false,
|
|
52
|
+
* // VerificationStatus: "VERIFIED" || "VERIFICATION_FAILED" || "NOT_VERIFIED",
|
|
53
|
+
* // ExpectedResourceOwnerAccount: "STRING_VALUE",
|
|
52
54
|
* // },
|
|
53
55
|
* // };
|
|
54
56
|
*
|