@aws-sdk/client-lakeformation 3.301.0 → 3.305.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/dist-cjs/models/models_0.js +83 -95
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/models/models_0.js +83 -95
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +1 -1
- package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +1 -1
- package/dist-types/commands/CancelTransactionCommand.d.ts +1 -1
- package/dist-types/commands/CommitTransactionCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/CreateLFTagCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLFTagCommand.d.ts +1 -1
- package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterResourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeResourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransactionCommand.d.ts +1 -1
- package/dist-types/commands/ExtendTransactionCommand.d.ts +1 -1
- package/dist-types/commands/GetDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +1 -1
- package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +1 -1
- package/dist-types/commands/GetLFTagCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/GetTableObjectsCommand.d.ts +1 -1
- package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GrantPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +1 -1
- package/dist-types/commands/RegisterResourceCommand.d.ts +2 -1
- package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +1 -1
- package/dist-types/commands/RevokePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLFTagCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTableObjectsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +156 -84
- package/dist-types/ts3.4/models/models_0.d.ts +107 -83
- package/package.json +36 -36
|
@@ -38,10 +38,11 @@ export interface LFTag {
|
|
|
38
38
|
TagKey: string | undefined;
|
|
39
39
|
TagValues: string[] | undefined;
|
|
40
40
|
}
|
|
41
|
-
export declare
|
|
42
|
-
DATABASE
|
|
43
|
-
TABLE
|
|
44
|
-
}
|
|
41
|
+
export declare const ResourceType: {
|
|
42
|
+
readonly DATABASE: "DATABASE";
|
|
43
|
+
readonly TABLE: "TABLE";
|
|
44
|
+
};
|
|
45
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
45
46
|
export interface LFTagPolicyResource {
|
|
46
47
|
CatalogId?: string;
|
|
47
48
|
ResourceType: ResourceType | string | undefined;
|
|
@@ -163,20 +164,21 @@ export interface AssumeDecoratedRoleWithSAMLResponse {
|
|
|
163
164
|
export interface AuditContext {
|
|
164
165
|
AdditionalAuditContext?: string;
|
|
165
166
|
}
|
|
166
|
-
export declare
|
|
167
|
-
ALL
|
|
168
|
-
ALTER
|
|
169
|
-
ASSOCIATE
|
|
170
|
-
CREATE_DATABASE
|
|
171
|
-
CREATE_TABLE
|
|
172
|
-
CREATE_TAG
|
|
173
|
-
DATA_LOCATION_ACCESS
|
|
174
|
-
DELETE
|
|
175
|
-
DESCRIBE
|
|
176
|
-
DROP
|
|
177
|
-
INSERT
|
|
178
|
-
SELECT
|
|
179
|
-
}
|
|
167
|
+
export declare const Permission: {
|
|
168
|
+
readonly ALL: "ALL";
|
|
169
|
+
readonly ALTER: "ALTER";
|
|
170
|
+
readonly ASSOCIATE: "ASSOCIATE";
|
|
171
|
+
readonly CREATE_DATABASE: "CREATE_DATABASE";
|
|
172
|
+
readonly CREATE_TABLE: "CREATE_TABLE";
|
|
173
|
+
readonly CREATE_TAG: "CREATE_TAG";
|
|
174
|
+
readonly DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS";
|
|
175
|
+
readonly DELETE: "DELETE";
|
|
176
|
+
readonly DESCRIBE: "DESCRIBE";
|
|
177
|
+
readonly DROP: "DROP";
|
|
178
|
+
readonly INSERT: "INSERT";
|
|
179
|
+
readonly SELECT: "SELECT";
|
|
180
|
+
};
|
|
181
|
+
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
180
182
|
export interface DataLakePrincipal {
|
|
181
183
|
DataLakePrincipalIdentifier?: string;
|
|
182
184
|
}
|
|
@@ -231,12 +233,14 @@ export declare class TransactionCommittedException extends __BaseException {
|
|
|
231
233
|
export interface CommitTransactionRequest {
|
|
232
234
|
TransactionId: string | undefined;
|
|
233
235
|
}
|
|
234
|
-
export declare
|
|
235
|
-
ABORTED
|
|
236
|
-
ACTIVE
|
|
237
|
-
COMMITTED
|
|
238
|
-
COMMIT_IN_PROGRESS
|
|
239
|
-
}
|
|
236
|
+
export declare const TransactionStatus: {
|
|
237
|
+
readonly ABORTED: "ABORTED";
|
|
238
|
+
readonly ACTIVE: "ACTIVE";
|
|
239
|
+
readonly COMMITTED: "COMMITTED";
|
|
240
|
+
readonly COMMIT_IN_PROGRESS: "COMMIT_IN_PROGRESS";
|
|
241
|
+
};
|
|
242
|
+
export type TransactionStatus =
|
|
243
|
+
(typeof TransactionStatus)[keyof typeof TransactionStatus];
|
|
240
244
|
export interface CommitTransactionResponse {
|
|
241
245
|
TransactionStatus?: TransactionStatus | string;
|
|
242
246
|
}
|
|
@@ -326,6 +330,7 @@ export interface ResourceInfo {
|
|
|
326
330
|
ResourceArn?: string;
|
|
327
331
|
RoleArn?: string;
|
|
328
332
|
LastModified?: Date;
|
|
333
|
+
WithFederation?: boolean;
|
|
329
334
|
}
|
|
330
335
|
export interface DescribeResourceResponse {
|
|
331
336
|
ResourceInfo?: ResourceInfo;
|
|
@@ -407,13 +412,15 @@ export interface GetLFTagResponse {
|
|
|
407
412
|
export interface GetQueryStateRequest {
|
|
408
413
|
QueryId: string | undefined;
|
|
409
414
|
}
|
|
410
|
-
export declare
|
|
411
|
-
ERROR
|
|
412
|
-
EXPIRED
|
|
413
|
-
FINISHED
|
|
414
|
-
PENDING
|
|
415
|
-
WORKUNITS_AVAILABLE
|
|
416
|
-
}
|
|
415
|
+
export declare const QueryStateString: {
|
|
416
|
+
readonly ERROR: "ERROR";
|
|
417
|
+
readonly EXPIRED: "EXPIRED";
|
|
418
|
+
readonly FINISHED: "FINISHED";
|
|
419
|
+
readonly PENDING: "PENDING";
|
|
420
|
+
readonly WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE";
|
|
421
|
+
};
|
|
422
|
+
export type QueryStateString =
|
|
423
|
+
(typeof QueryStateString)[keyof typeof QueryStateString];
|
|
417
424
|
export interface GetQueryStateResponse {
|
|
418
425
|
Error?: string;
|
|
419
426
|
State: QueryStateString | string | undefined;
|
|
@@ -508,10 +515,12 @@ export interface GetTableObjectsResponse {
|
|
|
508
515
|
export interface PartitionValueList {
|
|
509
516
|
Values: string[] | undefined;
|
|
510
517
|
}
|
|
511
|
-
export declare
|
|
512
|
-
CELL_FILTER_PERMISSION
|
|
513
|
-
COLUMN_PERMISSION
|
|
514
|
-
}
|
|
518
|
+
export declare const PermissionType: {
|
|
519
|
+
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
520
|
+
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
521
|
+
};
|
|
522
|
+
export type PermissionType =
|
|
523
|
+
(typeof PermissionType)[keyof typeof PermissionType];
|
|
515
524
|
export interface GetTemporaryGluePartitionCredentialsRequest {
|
|
516
525
|
TableArn: string | undefined;
|
|
517
526
|
Partition: PartitionValueList | undefined;
|
|
@@ -598,10 +607,12 @@ export interface ListDataCellsFilterResponse {
|
|
|
598
607
|
DataCellsFilters?: DataCellsFilter[];
|
|
599
608
|
NextToken?: string;
|
|
600
609
|
}
|
|
601
|
-
export declare
|
|
602
|
-
ALL
|
|
603
|
-
FOREIGN
|
|
604
|
-
}
|
|
610
|
+
export declare const ResourceShareType: {
|
|
611
|
+
readonly ALL: "ALL";
|
|
612
|
+
readonly FOREIGN: "FOREIGN";
|
|
613
|
+
};
|
|
614
|
+
export type ResourceShareType =
|
|
615
|
+
(typeof ResourceShareType)[keyof typeof ResourceShareType];
|
|
605
616
|
export interface ListLFTagsRequest {
|
|
606
617
|
CatalogId?: string;
|
|
607
618
|
ResourceShareType?: ResourceShareType | string;
|
|
@@ -612,16 +623,18 @@ export interface ListLFTagsResponse {
|
|
|
612
623
|
LFTags?: LFTagPair[];
|
|
613
624
|
NextToken?: string;
|
|
614
625
|
}
|
|
615
|
-
export declare
|
|
616
|
-
CATALOG
|
|
617
|
-
DATABASE
|
|
618
|
-
DATA_LOCATION
|
|
619
|
-
LF_TAG
|
|
620
|
-
LF_TAG_POLICY
|
|
621
|
-
LF_TAG_POLICY_DATABASE
|
|
622
|
-
LF_TAG_POLICY_TABLE
|
|
623
|
-
TABLE
|
|
624
|
-
}
|
|
626
|
+
export declare const DataLakeResourceType: {
|
|
627
|
+
readonly CATALOG: "CATALOG";
|
|
628
|
+
readonly DATABASE: "DATABASE";
|
|
629
|
+
readonly DATA_LOCATION: "DATA_LOCATION";
|
|
630
|
+
readonly LF_TAG: "LF_TAG";
|
|
631
|
+
readonly LF_TAG_POLICY: "LF_TAG_POLICY";
|
|
632
|
+
readonly LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE";
|
|
633
|
+
readonly LF_TAG_POLICY_TABLE: "LF_TAG_POLICY_TABLE";
|
|
634
|
+
readonly TABLE: "TABLE";
|
|
635
|
+
};
|
|
636
|
+
export type DataLakeResourceType =
|
|
637
|
+
(typeof DataLakeResourceType)[keyof typeof DataLakeResourceType];
|
|
625
638
|
export interface ListPermissionsRequest {
|
|
626
639
|
CatalogId?: string;
|
|
627
640
|
Principal?: DataLakePrincipal;
|
|
@@ -635,24 +648,28 @@ export interface ListPermissionsResponse {
|
|
|
635
648
|
PrincipalResourcePermissions?: PrincipalResourcePermissions[];
|
|
636
649
|
NextToken?: string;
|
|
637
650
|
}
|
|
638
|
-
export declare
|
|
639
|
-
BEGINS_WITH
|
|
640
|
-
BETWEEN
|
|
641
|
-
CONTAINS
|
|
642
|
-
EQ
|
|
643
|
-
GE
|
|
644
|
-
GT
|
|
645
|
-
IN
|
|
646
|
-
LE
|
|
647
|
-
LT
|
|
648
|
-
NE
|
|
649
|
-
NOT_CONTAINS
|
|
650
|
-
}
|
|
651
|
-
export
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
651
|
+
export declare const ComparisonOperator: {
|
|
652
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
653
|
+
readonly BETWEEN: "BETWEEN";
|
|
654
|
+
readonly CONTAINS: "CONTAINS";
|
|
655
|
+
readonly EQ: "EQ";
|
|
656
|
+
readonly GE: "GE";
|
|
657
|
+
readonly GT: "GT";
|
|
658
|
+
readonly IN: "IN";
|
|
659
|
+
readonly LE: "LE";
|
|
660
|
+
readonly LT: "LT";
|
|
661
|
+
readonly NE: "NE";
|
|
662
|
+
readonly NOT_CONTAINS: "NOT_CONTAINS";
|
|
663
|
+
};
|
|
664
|
+
export type ComparisonOperator =
|
|
665
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
666
|
+
export declare const FieldNameString: {
|
|
667
|
+
readonly LAST_MODIFIED: "LAST_MODIFIED";
|
|
668
|
+
readonly RESOURCE_ARN: "RESOURCE_ARN";
|
|
669
|
+
readonly ROLE_ARN: "ROLE_ARN";
|
|
670
|
+
};
|
|
671
|
+
export type FieldNameString =
|
|
672
|
+
(typeof FieldNameString)[keyof typeof FieldNameString];
|
|
656
673
|
export interface FilterCondition {
|
|
657
674
|
Field?: FieldNameString | string;
|
|
658
675
|
ComparisonOperator?: ComparisonOperator | string;
|
|
@@ -667,11 +684,12 @@ export interface ListResourcesResponse {
|
|
|
667
684
|
ResourceInfoList?: ResourceInfo[];
|
|
668
685
|
NextToken?: string;
|
|
669
686
|
}
|
|
670
|
-
export declare
|
|
671
|
-
COMPACTION
|
|
672
|
-
GARBAGE_COLLECTION
|
|
673
|
-
GENERIC
|
|
674
|
-
}
|
|
687
|
+
export declare const OptimizerType: {
|
|
688
|
+
readonly COMPACTION: "COMPACTION";
|
|
689
|
+
readonly GARBAGE_COLLECTION: "GARBAGE_COLLECTION";
|
|
690
|
+
readonly GENERIC: "ALL";
|
|
691
|
+
};
|
|
692
|
+
export type OptimizerType = (typeof OptimizerType)[keyof typeof OptimizerType];
|
|
675
693
|
export interface ListTableStorageOptimizersRequest {
|
|
676
694
|
CatalogId?: string;
|
|
677
695
|
DatabaseName: string | undefined;
|
|
@@ -691,13 +709,15 @@ export interface ListTableStorageOptimizersResponse {
|
|
|
691
709
|
StorageOptimizerList?: StorageOptimizer[];
|
|
692
710
|
NextToken?: string;
|
|
693
711
|
}
|
|
694
|
-
export declare
|
|
695
|
-
ABORTED
|
|
696
|
-
ACTIVE
|
|
697
|
-
ALL
|
|
698
|
-
COMMITTED
|
|
699
|
-
COMPLETED
|
|
700
|
-
}
|
|
712
|
+
export declare const TransactionStatusFilter: {
|
|
713
|
+
readonly ABORTED: "ABORTED";
|
|
714
|
+
readonly ACTIVE: "ACTIVE";
|
|
715
|
+
readonly ALL: "ALL";
|
|
716
|
+
readonly COMMITTED: "COMMITTED";
|
|
717
|
+
readonly COMPLETED: "COMPLETED";
|
|
718
|
+
};
|
|
719
|
+
export type TransactionStatusFilter =
|
|
720
|
+
(typeof TransactionStatusFilter)[keyof typeof TransactionStatusFilter];
|
|
701
721
|
export interface ListTransactionsRequest {
|
|
702
722
|
CatalogId?: string;
|
|
703
723
|
StatusFilter?: TransactionStatusFilter | string;
|
|
@@ -717,6 +737,7 @@ export interface RegisterResourceRequest {
|
|
|
717
737
|
ResourceArn: string | undefined;
|
|
718
738
|
UseServiceLinkedRole?: boolean;
|
|
719
739
|
RoleArn?: string;
|
|
740
|
+
WithFederation?: boolean;
|
|
720
741
|
}
|
|
721
742
|
export interface RegisterResourceResponse {}
|
|
722
743
|
export interface RemoveLFTagsFromResourceRequest {
|
|
@@ -779,10 +800,12 @@ export interface StartQueryPlanningRequest {
|
|
|
779
800
|
export interface StartQueryPlanningResponse {
|
|
780
801
|
QueryId: string | undefined;
|
|
781
802
|
}
|
|
782
|
-
export declare
|
|
783
|
-
READ_AND_WRITE
|
|
784
|
-
READ_ONLY
|
|
785
|
-
}
|
|
803
|
+
export declare const TransactionType: {
|
|
804
|
+
readonly READ_AND_WRITE: "READ_AND_WRITE";
|
|
805
|
+
readonly READ_ONLY: "READ_ONLY";
|
|
806
|
+
};
|
|
807
|
+
export type TransactionType =
|
|
808
|
+
(typeof TransactionType)[keyof typeof TransactionType];
|
|
786
809
|
export interface StartTransactionRequest {
|
|
787
810
|
TransactionType?: TransactionType | string;
|
|
788
811
|
}
|
|
@@ -803,6 +826,7 @@ export interface UpdateLFTagResponse {}
|
|
|
803
826
|
export interface UpdateResourceRequest {
|
|
804
827
|
RoleArn: string | undefined;
|
|
805
828
|
ResourceArn: string | undefined;
|
|
829
|
+
WithFederation?: boolean;
|
|
806
830
|
}
|
|
807
831
|
export interface UpdateResourceResponse {}
|
|
808
832
|
export interface DeleteObjectInput {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lakeformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.305.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,44 +21,44 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-stream-browser": "3.
|
|
54
|
-
"@aws-sdk/util-stream-node": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
56
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
57
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-stream-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-stream-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
56
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
57
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"concurrently": "7.0.0",
|