@aws-sdk/client-lakeformation 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/LakeFormationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +260 -3
- package/dist-cjs/protocols/Aws_restJson1.js +548 -1877
- package/dist-es/index.js +1 -0
- package/dist-es/models/LakeFormationServiceException.js +12 -0
- package/dist-es/models/models_0.js +239 -1
- package/dist-es/protocols/Aws_restJson1.js +1079 -2072
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LakeFormationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +129 -56
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LakeFormationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +93 -56
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from LakeFormation service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class LakeFormationServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import {
|
|
2
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Readable } from "stream";
|
|
4
|
+
import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException";
|
|
4
5
|
/**
|
|
5
6
|
* <p>Access to a resource was denied.</p>
|
|
6
7
|
*/
|
|
7
|
-
export
|
|
8
|
-
name: "AccessDeniedException";
|
|
9
|
-
$fault: "client";
|
|
8
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
+
readonly name: "AccessDeniedException";
|
|
10
|
+
readonly $fault: "client";
|
|
10
11
|
/**
|
|
11
12
|
* <p>A message describing the problem.</p>
|
|
12
13
|
*/
|
|
13
14
|
Message?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
19
|
}
|
|
15
20
|
/**
|
|
16
21
|
* <p>A structure containing an LF-tag key-value pair.</p>
|
|
@@ -383,57 +388,77 @@ export declare namespace AddLFTagsToResourceResponse {
|
|
|
383
388
|
/**
|
|
384
389
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
385
390
|
*/
|
|
386
|
-
export
|
|
387
|
-
name: "ConcurrentModificationException";
|
|
388
|
-
$fault: "client";
|
|
391
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
392
|
+
readonly name: "ConcurrentModificationException";
|
|
393
|
+
readonly $fault: "client";
|
|
389
394
|
/**
|
|
390
395
|
* <p>A message describing the problem.</p>
|
|
391
396
|
*/
|
|
392
397
|
Message?: string;
|
|
398
|
+
/**
|
|
399
|
+
* @internal
|
|
400
|
+
*/
|
|
401
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
393
402
|
}
|
|
394
403
|
/**
|
|
395
404
|
* <p>A specified entity does not exist</p>
|
|
396
405
|
*/
|
|
397
|
-
export
|
|
398
|
-
name: "EntityNotFoundException";
|
|
399
|
-
$fault: "client";
|
|
406
|
+
export declare class EntityNotFoundException extends __BaseException {
|
|
407
|
+
readonly name: "EntityNotFoundException";
|
|
408
|
+
readonly $fault: "client";
|
|
400
409
|
/**
|
|
401
410
|
* <p>A message describing the problem.</p>
|
|
402
411
|
*/
|
|
403
412
|
Message?: string;
|
|
413
|
+
/**
|
|
414
|
+
* @internal
|
|
415
|
+
*/
|
|
416
|
+
constructor(opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>);
|
|
404
417
|
}
|
|
405
418
|
/**
|
|
406
419
|
* <p>An internal service error occurred.</p>
|
|
407
420
|
*/
|
|
408
|
-
export
|
|
409
|
-
name: "InternalServiceException";
|
|
410
|
-
$fault: "server";
|
|
421
|
+
export declare class InternalServiceException extends __BaseException {
|
|
422
|
+
readonly name: "InternalServiceException";
|
|
423
|
+
readonly $fault: "server";
|
|
411
424
|
/**
|
|
412
425
|
* <p>A message describing the problem.</p>
|
|
413
426
|
*/
|
|
414
427
|
Message?: string;
|
|
428
|
+
/**
|
|
429
|
+
* @internal
|
|
430
|
+
*/
|
|
431
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
415
432
|
}
|
|
416
433
|
/**
|
|
417
434
|
* <p>The input provided was not valid.</p>
|
|
418
435
|
*/
|
|
419
|
-
export
|
|
420
|
-
name: "InvalidInputException";
|
|
421
|
-
$fault: "client";
|
|
436
|
+
export declare class InvalidInputException extends __BaseException {
|
|
437
|
+
readonly name: "InvalidInputException";
|
|
438
|
+
readonly $fault: "client";
|
|
422
439
|
/**
|
|
423
440
|
* <p>A message describing the problem.</p>
|
|
424
441
|
*/
|
|
425
442
|
Message?: string;
|
|
443
|
+
/**
|
|
444
|
+
* @internal
|
|
445
|
+
*/
|
|
446
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
426
447
|
}
|
|
427
448
|
/**
|
|
428
449
|
* <p>The operation timed out.</p>
|
|
429
450
|
*/
|
|
430
|
-
export
|
|
431
|
-
name: "OperationTimeoutException";
|
|
432
|
-
$fault: "client";
|
|
451
|
+
export declare class OperationTimeoutException extends __BaseException {
|
|
452
|
+
readonly name: "OperationTimeoutException";
|
|
453
|
+
readonly $fault: "client";
|
|
433
454
|
/**
|
|
434
455
|
* <p>A message describing the problem.</p>
|
|
435
456
|
*/
|
|
436
457
|
Message?: string;
|
|
458
|
+
/**
|
|
459
|
+
* @internal
|
|
460
|
+
*/
|
|
461
|
+
constructor(opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>);
|
|
437
462
|
}
|
|
438
463
|
/**
|
|
439
464
|
* <p>A new object to add to the governed table.</p>
|
|
@@ -477,13 +502,17 @@ export declare namespace AllRowsWildcard {
|
|
|
477
502
|
/**
|
|
478
503
|
* <p>A resource to be created or added already exists.</p>
|
|
479
504
|
*/
|
|
480
|
-
export
|
|
481
|
-
name: "AlreadyExistsException";
|
|
482
|
-
$fault: "client";
|
|
505
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
506
|
+
readonly name: "AlreadyExistsException";
|
|
507
|
+
readonly $fault: "client";
|
|
483
508
|
/**
|
|
484
509
|
* <p>A message describing the problem.</p>
|
|
485
510
|
*/
|
|
486
511
|
Message?: string;
|
|
512
|
+
/**
|
|
513
|
+
* @internal
|
|
514
|
+
*/
|
|
515
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
487
516
|
}
|
|
488
517
|
/**
|
|
489
518
|
* <p>A structure used to include auditing information on the privileged API. </p>
|
|
@@ -662,24 +691,32 @@ export declare namespace CancelTransactionResponse {
|
|
|
662
691
|
/**
|
|
663
692
|
* <p>Contains details about an error related to a transaction commit that was in progress.</p>
|
|
664
693
|
*/
|
|
665
|
-
export
|
|
666
|
-
name: "TransactionCommitInProgressException";
|
|
667
|
-
$fault: "client";
|
|
694
|
+
export declare class TransactionCommitInProgressException extends __BaseException {
|
|
695
|
+
readonly name: "TransactionCommitInProgressException";
|
|
696
|
+
readonly $fault: "client";
|
|
668
697
|
/**
|
|
669
698
|
* <p>A message describing the error.</p>
|
|
670
699
|
*/
|
|
671
700
|
Message?: string;
|
|
701
|
+
/**
|
|
702
|
+
* @internal
|
|
703
|
+
*/
|
|
704
|
+
constructor(opts: __ExceptionOptionType<TransactionCommitInProgressException, __BaseException>);
|
|
672
705
|
}
|
|
673
706
|
/**
|
|
674
707
|
* <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
|
|
675
708
|
*/
|
|
676
|
-
export
|
|
677
|
-
name: "TransactionCommittedException";
|
|
678
|
-
$fault: "client";
|
|
709
|
+
export declare class TransactionCommittedException extends __BaseException {
|
|
710
|
+
readonly name: "TransactionCommittedException";
|
|
711
|
+
readonly $fault: "client";
|
|
679
712
|
/**
|
|
680
713
|
* <p>A message describing the error.</p>
|
|
681
714
|
*/
|
|
682
715
|
Message?: string;
|
|
716
|
+
/**
|
|
717
|
+
* @internal
|
|
718
|
+
*/
|
|
719
|
+
constructor(opts: __ExceptionOptionType<TransactionCommittedException, __BaseException>);
|
|
683
720
|
}
|
|
684
721
|
export interface CommitTransactionRequest {
|
|
685
722
|
/**
|
|
@@ -714,13 +751,17 @@ export declare namespace CommitTransactionResponse {
|
|
|
714
751
|
/**
|
|
715
752
|
* <p>Contains details about an error related to a transaction that was cancelled.</p>
|
|
716
753
|
*/
|
|
717
|
-
export
|
|
718
|
-
name: "TransactionCanceledException";
|
|
719
|
-
$fault: "client";
|
|
754
|
+
export declare class TransactionCanceledException extends __BaseException {
|
|
755
|
+
readonly name: "TransactionCanceledException";
|
|
756
|
+
readonly $fault: "client";
|
|
720
757
|
/**
|
|
721
758
|
* <p>A message describing the error.</p>
|
|
722
759
|
*/
|
|
723
760
|
Message?: string;
|
|
761
|
+
/**
|
|
762
|
+
* @internal
|
|
763
|
+
*/
|
|
764
|
+
constructor(opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>);
|
|
724
765
|
}
|
|
725
766
|
/**
|
|
726
767
|
* <p>A PartiQL predicate.</p>
|
|
@@ -806,13 +847,17 @@ export declare namespace CreateDataCellsFilterResponse {
|
|
|
806
847
|
/**
|
|
807
848
|
* <p>A resource numerical limit was exceeded.</p>
|
|
808
849
|
*/
|
|
809
|
-
export
|
|
810
|
-
name: "ResourceNumberLimitExceededException";
|
|
811
|
-
$fault: "client";
|
|
850
|
+
export declare class ResourceNumberLimitExceededException extends __BaseException {
|
|
851
|
+
readonly name: "ResourceNumberLimitExceededException";
|
|
852
|
+
readonly $fault: "client";
|
|
812
853
|
/**
|
|
813
854
|
* <p>A message describing the problem.</p>
|
|
814
855
|
*/
|
|
815
856
|
Message?: string;
|
|
857
|
+
/**
|
|
858
|
+
* @internal
|
|
859
|
+
*/
|
|
860
|
+
constructor(opts: __ExceptionOptionType<ResourceNumberLimitExceededException, __BaseException>);
|
|
816
861
|
}
|
|
817
862
|
export interface CreateLFTagRequest {
|
|
818
863
|
/**
|
|
@@ -957,13 +1002,17 @@ export declare namespace DeleteObjectsOnCancelResponse {
|
|
|
957
1002
|
/**
|
|
958
1003
|
* <p>Contains details about an error related to a resource which is not ready for a transaction.</p>
|
|
959
1004
|
*/
|
|
960
|
-
export
|
|
961
|
-
name: "ResourceNotReadyException";
|
|
962
|
-
$fault: "client";
|
|
1005
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
1006
|
+
readonly name: "ResourceNotReadyException";
|
|
1007
|
+
readonly $fault: "client";
|
|
963
1008
|
/**
|
|
964
1009
|
* <p>A message describing the error.</p>
|
|
965
1010
|
*/
|
|
966
1011
|
Message?: string;
|
|
1012
|
+
/**
|
|
1013
|
+
* @internal
|
|
1014
|
+
*/
|
|
1015
|
+
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
967
1016
|
}
|
|
968
1017
|
export interface DeregisterResourceRequest {
|
|
969
1018
|
/**
|
|
@@ -1385,13 +1434,17 @@ export declare namespace GetQueryStateResponse {
|
|
|
1385
1434
|
/**
|
|
1386
1435
|
* <p>Contains details about an error where the query request expired.</p>
|
|
1387
1436
|
*/
|
|
1388
|
-
export
|
|
1389
|
-
name: "ExpiredException";
|
|
1390
|
-
$fault: "client";
|
|
1437
|
+
export declare class ExpiredException extends __BaseException {
|
|
1438
|
+
readonly name: "ExpiredException";
|
|
1439
|
+
readonly $fault: "client";
|
|
1391
1440
|
/**
|
|
1392
1441
|
* <p>A message describing the error.</p>
|
|
1393
1442
|
*/
|
|
1394
1443
|
Message?: string;
|
|
1444
|
+
/**
|
|
1445
|
+
* @internal
|
|
1446
|
+
*/
|
|
1447
|
+
constructor(opts: __ExceptionOptionType<ExpiredException, __BaseException>);
|
|
1395
1448
|
}
|
|
1396
1449
|
export interface GetQueryStatisticsRequest {
|
|
1397
1450
|
/**
|
|
@@ -1478,27 +1531,35 @@ export declare namespace GetQueryStatisticsResponse {
|
|
|
1478
1531
|
/**
|
|
1479
1532
|
* <p>Contains details about an error related to statistics not being ready.</p>
|
|
1480
1533
|
*/
|
|
1481
|
-
export
|
|
1482
|
-
name: "StatisticsNotReadyYetException";
|
|
1483
|
-
$fault: "client";
|
|
1534
|
+
export declare class StatisticsNotReadyYetException extends __BaseException {
|
|
1535
|
+
readonly name: "StatisticsNotReadyYetException";
|
|
1536
|
+
readonly $fault: "client";
|
|
1484
1537
|
/**
|
|
1485
1538
|
* <p>A message describing the error.</p>
|
|
1486
1539
|
*/
|
|
1487
1540
|
Message?: string;
|
|
1541
|
+
/**
|
|
1542
|
+
* @internal
|
|
1543
|
+
*/
|
|
1544
|
+
constructor(opts: __ExceptionOptionType<StatisticsNotReadyYetException, __BaseException>);
|
|
1488
1545
|
}
|
|
1489
1546
|
/**
|
|
1490
1547
|
* <p>Contains details about an error where the query request was throttled.</p>
|
|
1491
1548
|
*/
|
|
1492
|
-
export
|
|
1493
|
-
name: "ThrottledException";
|
|
1494
|
-
$fault: "client";
|
|
1549
|
+
export declare class ThrottledException extends __BaseException {
|
|
1550
|
+
readonly name: "ThrottledException";
|
|
1551
|
+
readonly $fault: "client";
|
|
1495
1552
|
$retryable: {
|
|
1496
|
-
throttling:
|
|
1553
|
+
throttling: boolean;
|
|
1497
1554
|
};
|
|
1498
1555
|
/**
|
|
1499
1556
|
* <p>A message describing the error.</p>
|
|
1500
1557
|
*/
|
|
1501
1558
|
Message?: string;
|
|
1559
|
+
/**
|
|
1560
|
+
* @internal
|
|
1561
|
+
*/
|
|
1562
|
+
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
1502
1563
|
}
|
|
1503
1564
|
export interface GetResourceLFTagsRequest {
|
|
1504
1565
|
/**
|
|
@@ -1562,13 +1623,17 @@ export declare namespace GetResourceLFTagsResponse {
|
|
|
1562
1623
|
/**
|
|
1563
1624
|
* <p>An encryption operation failed.</p>
|
|
1564
1625
|
*/
|
|
1565
|
-
export
|
|
1566
|
-
name: "GlueEncryptionException";
|
|
1567
|
-
$fault: "client";
|
|
1626
|
+
export declare class GlueEncryptionException extends __BaseException {
|
|
1627
|
+
readonly name: "GlueEncryptionException";
|
|
1628
|
+
readonly $fault: "client";
|
|
1568
1629
|
/**
|
|
1569
1630
|
* <p>A message describing the problem.</p>
|
|
1570
1631
|
*/
|
|
1571
1632
|
Message?: string;
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
constructor(opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>);
|
|
1572
1637
|
}
|
|
1573
1638
|
export interface GetTableObjectsRequest {
|
|
1574
1639
|
/**
|
|
@@ -1757,13 +1822,17 @@ export declare namespace GetTemporaryGluePartitionCredentialsResponse {
|
|
|
1757
1822
|
/**
|
|
1758
1823
|
* <p>The engine does not support filtering data based on the enforced permissions. For example, if you call the <code>GetTemporaryGlueTableCredentials</code> operation with <code>SupportedPermissionType</code> equal to <code>ColumnPermission</code>, but cell-level permissions exist on the table, this exception is thrown.</p>
|
|
1759
1824
|
*/
|
|
1760
|
-
export
|
|
1761
|
-
name: "PermissionTypeMismatchException";
|
|
1762
|
-
$fault: "client";
|
|
1825
|
+
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
1826
|
+
readonly name: "PermissionTypeMismatchException";
|
|
1827
|
+
readonly $fault: "client";
|
|
1763
1828
|
/**
|
|
1764
1829
|
* <p>A message describing the problem.</p>
|
|
1765
1830
|
*/
|
|
1766
1831
|
Message?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* @internal
|
|
1834
|
+
*/
|
|
1835
|
+
constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
|
|
1767
1836
|
}
|
|
1768
1837
|
export interface GetTemporaryGlueTableCredentialsRequest {
|
|
1769
1838
|
/**
|
|
@@ -1921,13 +1990,17 @@ export declare namespace GetWorkUnitsResponse {
|
|
|
1921
1990
|
/**
|
|
1922
1991
|
* <p>Contains details about an error related to work units not being ready.</p>
|
|
1923
1992
|
*/
|
|
1924
|
-
export
|
|
1925
|
-
name: "WorkUnitsNotReadyYetException";
|
|
1926
|
-
$fault: "client";
|
|
1993
|
+
export declare class WorkUnitsNotReadyYetException extends __BaseException {
|
|
1994
|
+
readonly name: "WorkUnitsNotReadyYetException";
|
|
1995
|
+
readonly $fault: "client";
|
|
1927
1996
|
/**
|
|
1928
1997
|
* <p>A message describing the error.</p>
|
|
1929
1998
|
*/
|
|
1930
1999
|
Message?: string;
|
|
2000
|
+
/**
|
|
2001
|
+
* @internal
|
|
2002
|
+
*/
|
|
2003
|
+
constructor(opts: __ExceptionOptionType<WorkUnitsNotReadyYetException, __BaseException>);
|
|
1931
2004
|
}
|
|
1932
2005
|
export interface GrantPermissionsRequest {
|
|
1933
2006
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class LakeFormationServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|