@aws-sdk/client-cleanrooms 3.301.0 → 3.303.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 +107 -129
- package/dist-es/models/models_0.js +107 -129
- package/dist-types/models/models_0.d.ts +217 -107
- package/dist-types/ts3.4/models/models_0.d.ts +146 -107
- package/package.json +34 -34
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
INSUFFICIENT_PERMISSIONS
|
|
5
|
-
}
|
|
3
|
+
export declare const AccessDeniedExceptionReason: {
|
|
4
|
+
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
5
|
+
};
|
|
6
|
+
export type AccessDeniedExceptionReason =
|
|
7
|
+
(typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
6
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
7
9
|
readonly name: "AccessDeniedException";
|
|
8
10
|
readonly $fault: "client";
|
|
@@ -11,46 +13,56 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
11
13
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
12
14
|
);
|
|
13
15
|
}
|
|
14
|
-
export declare
|
|
15
|
-
AVG
|
|
16
|
-
COUNT
|
|
17
|
-
COUNT_DISTINCT
|
|
18
|
-
SUM
|
|
19
|
-
SUM_DISTINCT
|
|
20
|
-
}
|
|
16
|
+
export declare const AggregateFunctionName: {
|
|
17
|
+
readonly AVG: "AVG";
|
|
18
|
+
readonly COUNT: "COUNT";
|
|
19
|
+
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
20
|
+
readonly SUM: "SUM";
|
|
21
|
+
readonly SUM_DISTINCT: "SUM_DISTINCT";
|
|
22
|
+
};
|
|
23
|
+
export type AggregateFunctionName =
|
|
24
|
+
(typeof AggregateFunctionName)[keyof typeof AggregateFunctionName];
|
|
21
25
|
export interface AggregateColumn {
|
|
22
26
|
columnNames: string[] | undefined;
|
|
23
27
|
function: AggregateFunctionName | string | undefined;
|
|
24
28
|
}
|
|
25
|
-
export declare
|
|
26
|
-
COUNT_DISTINCT
|
|
27
|
-
}
|
|
29
|
+
export declare const AggregationType: {
|
|
30
|
+
readonly COUNT_DISTINCT: "COUNT_DISTINCT";
|
|
31
|
+
};
|
|
32
|
+
export type AggregationType =
|
|
33
|
+
(typeof AggregationType)[keyof typeof AggregationType];
|
|
28
34
|
export interface AggregationConstraint {
|
|
29
35
|
columnName: string | undefined;
|
|
30
36
|
minimum: number | undefined;
|
|
31
37
|
type: AggregationType | string | undefined;
|
|
32
38
|
}
|
|
33
|
-
export declare
|
|
34
|
-
DIRECT_QUERY
|
|
35
|
-
}
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
39
|
+
export declare const AnalysisMethod: {
|
|
40
|
+
readonly DIRECT_QUERY: "DIRECT_QUERY";
|
|
41
|
+
};
|
|
42
|
+
export type AnalysisMethod =
|
|
43
|
+
(typeof AnalysisMethod)[keyof typeof AnalysisMethod];
|
|
44
|
+
export declare const JoinRequiredOption: {
|
|
45
|
+
readonly QUERY_RUNNER: "QUERY_RUNNER";
|
|
46
|
+
};
|
|
47
|
+
export type JoinRequiredOption =
|
|
48
|
+
(typeof JoinRequiredOption)[keyof typeof JoinRequiredOption];
|
|
49
|
+
export declare const ScalarFunctions: {
|
|
50
|
+
readonly ABS: "ABS";
|
|
51
|
+
readonly CAST: "CAST";
|
|
52
|
+
readonly CEILING: "CEILING";
|
|
53
|
+
readonly COALESCE: "COALESCE";
|
|
54
|
+
readonly FLOOR: "FLOOR";
|
|
55
|
+
readonly LN: "LN";
|
|
56
|
+
readonly LOG: "LOG";
|
|
57
|
+
readonly LOWER: "LOWER";
|
|
58
|
+
readonly ROUND: "ROUND";
|
|
59
|
+
readonly RTRIM: "RTRIM";
|
|
60
|
+
readonly SQRT: "SQRT";
|
|
61
|
+
readonly TRUNC: "TRUNC";
|
|
62
|
+
readonly UPPER: "UPPER";
|
|
63
|
+
};
|
|
64
|
+
export type ScalarFunctions =
|
|
65
|
+
(typeof ScalarFunctions)[keyof typeof ScalarFunctions];
|
|
54
66
|
export interface AnalysisRuleAggregation {
|
|
55
67
|
aggregateColumns: AggregateColumn[] | undefined;
|
|
56
68
|
joinColumns: string[] | undefined;
|
|
@@ -108,10 +120,12 @@ export declare namespace AnalysisRulePolicy {
|
|
|
108
120
|
}
|
|
109
121
|
const visit: <T>(value: AnalysisRulePolicy, visitor: Visitor<T>) => T;
|
|
110
122
|
}
|
|
111
|
-
export declare
|
|
112
|
-
AGGREGATION
|
|
113
|
-
LIST
|
|
114
|
-
}
|
|
123
|
+
export declare const AnalysisRuleType: {
|
|
124
|
+
readonly AGGREGATION: "AGGREGATION";
|
|
125
|
+
readonly LIST: "LIST";
|
|
126
|
+
};
|
|
127
|
+
export type AnalysisRuleType =
|
|
128
|
+
(typeof AnalysisRuleType)[keyof typeof AnalysisRuleType];
|
|
115
129
|
export interface AnalysisRule {
|
|
116
130
|
collaborationId: string | undefined;
|
|
117
131
|
type: AnalysisRuleType | string | undefined;
|
|
@@ -133,9 +147,10 @@ export interface Column {
|
|
|
133
147
|
name: string | undefined;
|
|
134
148
|
type: string | undefined;
|
|
135
149
|
}
|
|
136
|
-
export declare
|
|
137
|
-
TABLE
|
|
138
|
-
}
|
|
150
|
+
export declare const SchemaType: {
|
|
151
|
+
readonly TABLE: "TABLE";
|
|
152
|
+
};
|
|
153
|
+
export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
|
|
139
154
|
export interface Schema {
|
|
140
155
|
columns: Column[] | undefined;
|
|
141
156
|
partitionKeys: Column[] | undefined;
|
|
@@ -161,12 +176,13 @@ export declare class InternalServerException extends __BaseException {
|
|
|
161
176
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
162
177
|
);
|
|
163
178
|
}
|
|
164
|
-
export declare
|
|
165
|
-
COLLABORATION
|
|
166
|
-
CONFIGURED_TABLE
|
|
167
|
-
CONFIGURED_TABLE_ASSOCIATION
|
|
168
|
-
MEMBERSHIP
|
|
169
|
-
}
|
|
179
|
+
export declare const ResourceType: {
|
|
180
|
+
readonly COLLABORATION: "COLLABORATION";
|
|
181
|
+
readonly CONFIGURED_TABLE: "CONFIGURED_TABLE";
|
|
182
|
+
readonly CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION";
|
|
183
|
+
readonly MEMBERSHIP: "MEMBERSHIP";
|
|
184
|
+
};
|
|
185
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
170
186
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
171
187
|
readonly name: "ResourceNotFoundException";
|
|
172
188
|
readonly $fault: "client";
|
|
@@ -187,11 +203,13 @@ export interface ValidationExceptionField {
|
|
|
187
203
|
name: string | undefined;
|
|
188
204
|
message: string | undefined;
|
|
189
205
|
}
|
|
190
|
-
export declare
|
|
191
|
-
FIELD_VALIDATION_FAILED
|
|
192
|
-
INVALID_CONFIGURATION
|
|
193
|
-
INVALID_QUERY
|
|
194
|
-
}
|
|
206
|
+
export declare const ValidationExceptionReason: {
|
|
207
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
208
|
+
readonly INVALID_CONFIGURATION: "INVALID_CONFIGURATION";
|
|
209
|
+
readonly INVALID_QUERY: "INVALID_QUERY";
|
|
210
|
+
};
|
|
211
|
+
export type ValidationExceptionReason =
|
|
212
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
195
213
|
export declare class ValidationException extends __BaseException {
|
|
196
214
|
readonly name: "ValidationException";
|
|
197
215
|
readonly $fault: "client";
|
|
@@ -201,10 +219,11 @@ export declare class ValidationException extends __BaseException {
|
|
|
201
219
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
202
220
|
);
|
|
203
221
|
}
|
|
204
|
-
export declare
|
|
205
|
-
CAN_QUERY
|
|
206
|
-
CAN_RECEIVE_RESULTS
|
|
207
|
-
}
|
|
222
|
+
export declare const MemberAbility: {
|
|
223
|
+
readonly CAN_QUERY: "CAN_QUERY";
|
|
224
|
+
readonly CAN_RECEIVE_RESULTS: "CAN_RECEIVE_RESULTS";
|
|
225
|
+
};
|
|
226
|
+
export type MemberAbility = (typeof MemberAbility)[keyof typeof MemberAbility];
|
|
208
227
|
export interface DataEncryptionMetadata {
|
|
209
228
|
allowCleartext: boolean | undefined;
|
|
210
229
|
allowDuplicates: boolean | undefined;
|
|
@@ -216,10 +235,12 @@ export interface MemberSpecification {
|
|
|
216
235
|
memberAbilities: (MemberAbility | string)[] | undefined;
|
|
217
236
|
displayName: string | undefined;
|
|
218
237
|
}
|
|
219
|
-
export declare
|
|
220
|
-
DISABLED
|
|
221
|
-
ENABLED
|
|
222
|
-
}
|
|
238
|
+
export declare const CollaborationQueryLogStatus: {
|
|
239
|
+
readonly DISABLED: "DISABLED";
|
|
240
|
+
readonly ENABLED: "ENABLED";
|
|
241
|
+
};
|
|
242
|
+
export type CollaborationQueryLogStatus =
|
|
243
|
+
(typeof CollaborationQueryLogStatus)[keyof typeof CollaborationQueryLogStatus];
|
|
223
244
|
export interface CreateCollaborationInput {
|
|
224
245
|
members: MemberSpecification[] | undefined;
|
|
225
246
|
name: string | undefined;
|
|
@@ -230,12 +251,13 @@ export interface CreateCollaborationInput {
|
|
|
230
251
|
queryLogStatus: CollaborationQueryLogStatus | string | undefined;
|
|
231
252
|
tags?: Record<string, string>;
|
|
232
253
|
}
|
|
233
|
-
export declare
|
|
234
|
-
ACTIVE
|
|
235
|
-
INVITED
|
|
236
|
-
LEFT
|
|
237
|
-
REMOVED
|
|
238
|
-
}
|
|
254
|
+
export declare const MemberStatus: {
|
|
255
|
+
readonly ACTIVE: "ACTIVE";
|
|
256
|
+
readonly INVITED: "INVITED";
|
|
257
|
+
readonly LEFT: "LEFT";
|
|
258
|
+
readonly REMOVED: "REMOVED";
|
|
259
|
+
};
|
|
260
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
239
261
|
export interface Collaboration {
|
|
240
262
|
id: string | undefined;
|
|
241
263
|
arn: string | undefined;
|
|
@@ -267,11 +289,13 @@ export interface DeleteCollaborationInput {
|
|
|
267
289
|
collaborationIdentifier: string | undefined;
|
|
268
290
|
}
|
|
269
291
|
export interface DeleteCollaborationOutput {}
|
|
270
|
-
export declare
|
|
271
|
-
ALREADY_EXISTS
|
|
272
|
-
INVALID_STATE
|
|
273
|
-
SUBRESOURCES_EXIST
|
|
274
|
-
}
|
|
292
|
+
export declare const ConflictExceptionReason: {
|
|
293
|
+
readonly ALREADY_EXISTS: "ALREADY_EXISTS";
|
|
294
|
+
readonly INVALID_STATE: "INVALID_STATE";
|
|
295
|
+
readonly SUBRESOURCES_EXIST: "SUBRESOURCES_EXIST";
|
|
296
|
+
};
|
|
297
|
+
export type ConflictExceptionReason =
|
|
298
|
+
(typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
275
299
|
export declare class ConflictException extends __BaseException {
|
|
276
300
|
readonly name: "ConflictException";
|
|
277
301
|
readonly $fault: "client";
|
|
@@ -306,10 +330,12 @@ export interface GetSchemaAnalysisRuleInput {
|
|
|
306
330
|
export interface GetSchemaAnalysisRuleOutput {
|
|
307
331
|
analysisRule: AnalysisRule | undefined;
|
|
308
332
|
}
|
|
309
|
-
export declare
|
|
310
|
-
ACTIVE
|
|
311
|
-
INVITED
|
|
312
|
-
}
|
|
333
|
+
export declare const FilterableMemberStatus: {
|
|
334
|
+
readonly ACTIVE: "ACTIVE";
|
|
335
|
+
readonly INVITED: "INVITED";
|
|
336
|
+
};
|
|
337
|
+
export type FilterableMemberStatus =
|
|
338
|
+
(typeof FilterableMemberStatus)[keyof typeof FilterableMemberStatus];
|
|
313
339
|
export interface ListCollaborationsInput {
|
|
314
340
|
nextToken?: string;
|
|
315
341
|
maxResults?: number;
|
|
@@ -475,10 +501,12 @@ export interface CreateConfiguredTableInput {
|
|
|
475
501
|
analysisMethod: AnalysisMethod | string | undefined;
|
|
476
502
|
tags?: Record<string, string>;
|
|
477
503
|
}
|
|
478
|
-
export declare
|
|
479
|
-
AGGREGATION
|
|
480
|
-
LIST
|
|
481
|
-
}
|
|
504
|
+
export declare const ConfiguredTableAnalysisRuleType: {
|
|
505
|
+
readonly AGGREGATION: "AGGREGATION";
|
|
506
|
+
readonly LIST: "LIST";
|
|
507
|
+
};
|
|
508
|
+
export type ConfiguredTableAnalysisRuleType =
|
|
509
|
+
(typeof ConfiguredTableAnalysisRuleType)[keyof typeof ConfiguredTableAnalysisRuleType];
|
|
482
510
|
export interface ConfiguredTable {
|
|
483
511
|
id: string | undefined;
|
|
484
512
|
arn: string | undefined;
|
|
@@ -622,20 +650,24 @@ export interface ListTagsForResourceInput {
|
|
|
622
650
|
export interface ListTagsForResourceOutput {
|
|
623
651
|
tags: Record<string, string> | undefined;
|
|
624
652
|
}
|
|
625
|
-
export declare
|
|
626
|
-
DISABLED
|
|
627
|
-
ENABLED
|
|
628
|
-
}
|
|
653
|
+
export declare const MembershipQueryLogStatus: {
|
|
654
|
+
readonly DISABLED: "DISABLED";
|
|
655
|
+
readonly ENABLED: "ENABLED";
|
|
656
|
+
};
|
|
657
|
+
export type MembershipQueryLogStatus =
|
|
658
|
+
(typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
|
|
629
659
|
export interface CreateMembershipInput {
|
|
630
660
|
collaborationIdentifier: string | undefined;
|
|
631
661
|
queryLogStatus: MembershipQueryLogStatus | string | undefined;
|
|
632
662
|
tags?: Record<string, string>;
|
|
633
663
|
}
|
|
634
|
-
export declare
|
|
635
|
-
ACTIVE
|
|
636
|
-
COLLABORATION_DELETED
|
|
637
|
-
REMOVED
|
|
638
|
-
}
|
|
664
|
+
export declare const MembershipStatus: {
|
|
665
|
+
readonly ACTIVE: "ACTIVE";
|
|
666
|
+
readonly COLLABORATION_DELETED: "COLLABORATION_DELETED";
|
|
667
|
+
readonly REMOVED: "REMOVED";
|
|
668
|
+
};
|
|
669
|
+
export type MembershipStatus =
|
|
670
|
+
(typeof MembershipStatus)[keyof typeof MembershipStatus];
|
|
639
671
|
export interface Membership {
|
|
640
672
|
id: string | undefined;
|
|
641
673
|
arn: string | undefined;
|
|
@@ -695,10 +727,11 @@ export declare namespace ProtectedQueryOutput {
|
|
|
695
727
|
export interface ProtectedQueryResult {
|
|
696
728
|
output: ProtectedQueryOutput | undefined;
|
|
697
729
|
}
|
|
698
|
-
export declare
|
|
699
|
-
CSV
|
|
700
|
-
PARQUET
|
|
701
|
-
}
|
|
730
|
+
export declare const ResultFormat: {
|
|
731
|
+
readonly CSV: "CSV";
|
|
732
|
+
readonly PARQUET: "PARQUET";
|
|
733
|
+
};
|
|
734
|
+
export type ResultFormat = (typeof ResultFormat)[keyof typeof ResultFormat];
|
|
702
735
|
export interface ProtectedQueryS3OutputConfiguration {
|
|
703
736
|
resultFormat: ResultFormat | string | undefined;
|
|
704
737
|
bucket: string | undefined;
|
|
@@ -734,15 +767,17 @@ export interface ProtectedQuerySQLParameters {
|
|
|
734
767
|
export interface ProtectedQueryStatistics {
|
|
735
768
|
totalDurationInMillis?: number;
|
|
736
769
|
}
|
|
737
|
-
export declare
|
|
738
|
-
CANCELLED
|
|
739
|
-
CANCELLING
|
|
740
|
-
FAILED
|
|
741
|
-
STARTED
|
|
742
|
-
SUBMITTED
|
|
743
|
-
SUCCESS
|
|
744
|
-
TIMED_OUT
|
|
745
|
-
}
|
|
770
|
+
export declare const ProtectedQueryStatus: {
|
|
771
|
+
readonly CANCELLED: "CANCELLED";
|
|
772
|
+
readonly CANCELLING: "CANCELLING";
|
|
773
|
+
readonly FAILED: "FAILED";
|
|
774
|
+
readonly STARTED: "STARTED";
|
|
775
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
776
|
+
readonly SUCCESS: "SUCCESS";
|
|
777
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
778
|
+
};
|
|
779
|
+
export type ProtectedQueryStatus =
|
|
780
|
+
(typeof ProtectedQueryStatus)[keyof typeof ProtectedQueryStatus];
|
|
746
781
|
export interface ProtectedQuery {
|
|
747
782
|
id: string | undefined;
|
|
748
783
|
membershipId: string | undefined;
|
|
@@ -797,9 +832,11 @@ export interface ListProtectedQueriesOutput {
|
|
|
797
832
|
nextToken?: string;
|
|
798
833
|
protectedQueries: ProtectedQuerySummary[] | undefined;
|
|
799
834
|
}
|
|
800
|
-
export declare
|
|
801
|
-
SQL
|
|
802
|
-
}
|
|
835
|
+
export declare const ProtectedQueryType: {
|
|
836
|
+
readonly SQL: "SQL";
|
|
837
|
+
};
|
|
838
|
+
export type ProtectedQueryType =
|
|
839
|
+
(typeof ProtectedQueryType)[keyof typeof ProtectedQueryType];
|
|
803
840
|
export interface StartProtectedQueryInput {
|
|
804
841
|
type: ProtectedQueryType | string | undefined;
|
|
805
842
|
membershipIdentifier: string | undefined;
|
|
@@ -816,9 +853,11 @@ export interface UpdateMembershipInput {
|
|
|
816
853
|
export interface UpdateMembershipOutput {
|
|
817
854
|
membership: Membership | undefined;
|
|
818
855
|
}
|
|
819
|
-
export declare
|
|
820
|
-
CANCELLED
|
|
821
|
-
}
|
|
856
|
+
export declare const TargetProtectedQueryStatus: {
|
|
857
|
+
readonly CANCELLED: "CANCELLED";
|
|
858
|
+
};
|
|
859
|
+
export type TargetProtectedQueryStatus =
|
|
860
|
+
(typeof TargetProtectedQueryStatus)[keyof typeof TargetProtectedQueryStatus];
|
|
822
861
|
export interface UpdateProtectedQueryInput {
|
|
823
862
|
membershipIdentifier: string | undefined;
|
|
824
863
|
protectedQueryIdentifier: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanrooms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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,42 +21,42 @@
|
|
|
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-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@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-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|