@aws-sdk/client-cleanrooms 3.300.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.
Files changed (42) hide show
  1. package/dist-cjs/models/models_0.js +107 -129
  2. package/dist-es/models/models_0.js +107 -129
  3. package/dist-types/commands/BatchGetSchemaCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateCollaborationCommand.d.ts +6 -6
  5. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +12 -12
  6. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +2 -2
  7. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +5 -5
  8. package/dist-types/commands/CreateMembershipCommand.d.ts +2 -2
  9. package/dist-types/commands/DeleteCollaborationCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteMemberCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
  15. package/dist-types/commands/GetCollaborationCommand.d.ts +1 -1
  16. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +1 -1
  17. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +1 -1
  18. package/dist-types/commands/GetConfiguredTableCommand.d.ts +1 -1
  19. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  20. package/dist-types/commands/GetProtectedQueryCommand.d.ts +1 -1
  21. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +1 -1
  22. package/dist-types/commands/GetSchemaCommand.d.ts +1 -1
  23. package/dist-types/commands/ListCollaborationsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +1 -1
  26. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  27. package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +1 -1
  29. package/dist-types/commands/ListSchemasCommand.d.ts +1 -1
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  31. package/dist-types/commands/StartProtectedQueryCommand.d.ts +5 -5
  32. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  33. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  34. package/dist-types/commands/UpdateCollaborationCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +12 -12
  36. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateMembershipCommand.d.ts +1 -1
  39. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +1 -1
  40. package/dist-types/models/models_0.d.ts +217 -107
  41. package/dist-types/ts3.4/models/models_0.d.ts +146 -107
  42. 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 enum AccessDeniedExceptionReason {
4
- INSUFFICIENT_PERMISSIONS = "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 enum AggregateFunctionName {
15
- AVG = "AVG",
16
- COUNT = "COUNT",
17
- COUNT_DISTINCT = "COUNT_DISTINCT",
18
- SUM = "SUM",
19
- SUM_DISTINCT = "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 enum AggregationType {
26
- COUNT_DISTINCT = "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 enum AnalysisMethod {
34
- DIRECT_QUERY = "DIRECT_QUERY",
35
- }
36
- export declare enum JoinRequiredOption {
37
- QUERY_RUNNER = "QUERY_RUNNER",
38
- }
39
- export declare enum ScalarFunctions {
40
- ABS = "ABS",
41
- CAST = "CAST",
42
- CEILING = "CEILING",
43
- COALESCE = "COALESCE",
44
- FLOOR = "FLOOR",
45
- LN = "LN",
46
- LOG = "LOG",
47
- LOWER = "LOWER",
48
- ROUND = "ROUND",
49
- RTRIM = "RTRIM",
50
- SQRT = "SQRT",
51
- TRUNC = "TRUNC",
52
- UPPER = "UPPER",
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 enum AnalysisRuleType {
112
- AGGREGATION = "AGGREGATION",
113
- LIST = "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 enum SchemaType {
137
- TABLE = "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 enum ResourceType {
165
- COLLABORATION = "COLLABORATION",
166
- CONFIGURED_TABLE = "CONFIGURED_TABLE",
167
- CONFIGURED_TABLE_ASSOCIATION = "CONFIGURED_TABLE_ASSOCIATION",
168
- MEMBERSHIP = "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 enum ValidationExceptionReason {
191
- FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
192
- INVALID_CONFIGURATION = "INVALID_CONFIGURATION",
193
- INVALID_QUERY = "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 enum MemberAbility {
205
- CAN_QUERY = "CAN_QUERY",
206
- CAN_RECEIVE_RESULTS = "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 enum CollaborationQueryLogStatus {
220
- DISABLED = "DISABLED",
221
- ENABLED = "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 enum MemberStatus {
234
- ACTIVE = "ACTIVE",
235
- INVITED = "INVITED",
236
- LEFT = "LEFT",
237
- REMOVED = "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 enum ConflictExceptionReason {
271
- ALREADY_EXISTS = "ALREADY_EXISTS",
272
- INVALID_STATE = "INVALID_STATE",
273
- SUBRESOURCES_EXIST = "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 enum FilterableMemberStatus {
310
- ACTIVE = "ACTIVE",
311
- INVITED = "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 enum ConfiguredTableAnalysisRuleType {
479
- AGGREGATION = "AGGREGATION",
480
- LIST = "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 enum MembershipQueryLogStatus {
626
- DISABLED = "DISABLED",
627
- ENABLED = "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 enum MembershipStatus {
635
- ACTIVE = "ACTIVE",
636
- COLLABORATION_DELETED = "COLLABORATION_DELETED",
637
- REMOVED = "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 enum ResultFormat {
699
- CSV = "CSV",
700
- PARQUET = "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 enum ProtectedQueryStatus {
738
- CANCELLED = "CANCELLED",
739
- CANCELLING = "CANCELLING",
740
- FAILED = "FAILED",
741
- STARTED = "STARTED",
742
- SUBMITTED = "SUBMITTED",
743
- SUCCESS = "SUCCESS",
744
- TIMED_OUT = "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 enum ProtectedQueryType {
801
- SQL = "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 enum TargetProtectedQueryStatus {
820
- CANCELLED = "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.300.0",
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.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
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.295.0",
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",