@aws-sdk/client-dataexchange 3.301.0 → 3.306.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.
@@ -8,10 +8,12 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
- export declare enum ServerSideEncryptionTypes {
12
- AES256 = "AES256",
13
- aws_kms = "aws:kms",
14
- }
11
+ export declare const ServerSideEncryptionTypes: {
12
+ readonly AES256: "AES256";
13
+ readonly aws_kms: "aws:kms";
14
+ };
15
+ export type ServerSideEncryptionTypes =
16
+ (typeof ServerSideEncryptionTypes)[keyof typeof ServerSideEncryptionTypes];
15
17
  export interface ExportServerSideEncryption {
16
18
  KmsKeyArn?: string;
17
19
  Type: ServerSideEncryptionTypes | string | undefined;
@@ -27,9 +29,10 @@ export interface AutoExportRevisionToS3RequestDetails {
27
29
  export interface Action {
28
30
  ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
29
31
  }
30
- export declare enum ProtocolType {
31
- REST = "REST",
32
- }
32
+ export declare const ProtocolType: {
33
+ readonly REST: "REST";
34
+ };
35
+ export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
33
36
  export interface ApiGatewayApiAsset {
34
37
  ApiDescription?: string;
35
38
  ApiEndpoint?: string;
@@ -60,10 +63,12 @@ export interface LFResourceDetails {
60
63
  Database?: DatabaseLFTagPolicy;
61
64
  Table?: TableLFTagPolicy;
62
65
  }
63
- export declare enum LFResourceType {
64
- DATABASE = "DATABASE",
65
- TABLE = "TABLE",
66
- }
66
+ export declare const LFResourceType: {
67
+ readonly DATABASE: "DATABASE";
68
+ readonly TABLE: "TABLE";
69
+ };
70
+ export type LFResourceType =
71
+ (typeof LFResourceType)[keyof typeof LFResourceType];
67
72
  export interface LFTagPolicyDetails {
68
73
  CatalogId: string | undefined;
69
74
  ResourceType: LFResourceType | string | undefined;
@@ -72,13 +77,16 @@ export interface LFTagPolicyDetails {
72
77
  export interface LakeFormationDataPermissionDetails {
73
78
  LFTagPolicy?: LFTagPolicyDetails;
74
79
  }
75
- export declare enum LakeFormationDataPermissionType {
76
- LFTagPolicy = "LFTagPolicy",
77
- }
78
- export declare enum LFPermission {
79
- DESCRIBE = "DESCRIBE",
80
- SELECT = "SELECT",
81
- }
80
+ export declare const LakeFormationDataPermissionType: {
81
+ readonly LFTagPolicy: "LFTagPolicy";
82
+ };
83
+ export type LakeFormationDataPermissionType =
84
+ (typeof LakeFormationDataPermissionType)[keyof typeof LakeFormationDataPermissionType];
85
+ export declare const LFPermission: {
86
+ readonly DESCRIBE: "DESCRIBE";
87
+ readonly SELECT: "SELECT";
88
+ };
89
+ export type LFPermission = (typeof LFPermission)[keyof typeof LFPermission];
82
90
  export interface LakeFormationDataPermissionAsset {
83
91
  LakeFormationDataPermissionDetails:
84
92
  | LakeFormationDataPermissionDetails
@@ -114,13 +122,14 @@ export interface AssetDetails {
114
122
  S3DataAccessAsset?: S3DataAccessAsset;
115
123
  LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset;
116
124
  }
117
- export declare enum AssetType {
118
- API_GATEWAY_API = "API_GATEWAY_API",
119
- LAKE_FORMATION_DATA_PERMISSION = "LAKE_FORMATION_DATA_PERMISSION",
120
- REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
121
- S3_DATA_ACCESS = "S3_DATA_ACCESS",
122
- S3_SNAPSHOT = "S3_SNAPSHOT",
123
- }
125
+ export declare const AssetType: {
126
+ readonly API_GATEWAY_API: "API_GATEWAY_API";
127
+ readonly LAKE_FORMATION_DATA_PERMISSION: "LAKE_FORMATION_DATA_PERMISSION";
128
+ readonly REDSHIFT_DATA_SHARE: "REDSHIFT_DATA_SHARE";
129
+ readonly S3_DATA_ACCESS: "S3_DATA_ACCESS";
130
+ readonly S3_SNAPSHOT: "S3_SNAPSHOT";
131
+ };
132
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
124
133
  export interface AssetEntry {
125
134
  Arn: string | undefined;
126
135
  AssetDetails: AssetDetails | undefined;
@@ -140,13 +149,14 @@ export interface AssetSourceEntry {
140
149
  export interface CancelJobRequest {
141
150
  JobId: string | undefined;
142
151
  }
143
- export declare enum ResourceType {
144
- ASSET = "ASSET",
145
- DATA_SET = "DATA_SET",
146
- EVENT_ACTION = "EVENT_ACTION",
147
- JOB = "JOB",
148
- REVISION = "REVISION",
149
- }
152
+ export declare const ResourceType: {
153
+ readonly ASSET: "ASSET";
154
+ readonly DATA_SET: "DATA_SET";
155
+ readonly EVENT_ACTION: "EVENT_ACTION";
156
+ readonly JOB: "JOB";
157
+ readonly REVISION: "REVISION";
158
+ };
159
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
150
160
  export declare class ConflictException extends __BaseException {
151
161
  readonly name: "ConflictException";
152
162
  readonly $fault: "client";
@@ -181,10 +191,12 @@ export declare class ThrottlingException extends __BaseException {
181
191
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
182
192
  );
183
193
  }
184
- export declare enum ExceptionCause {
185
- InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
186
- S3AccessDenied = "S3AccessDenied",
187
- }
194
+ export declare const ExceptionCause: {
195
+ readonly InsufficientS3BucketPolicy: "InsufficientS3BucketPolicy";
196
+ readonly S3AccessDenied: "S3AccessDenied";
197
+ };
198
+ export type ExceptionCause =
199
+ (typeof ExceptionCause)[keyof typeof ExceptionCause];
188
200
  export declare class ValidationException extends __BaseException {
189
201
  readonly name: "ValidationException";
190
202
  readonly $fault: "client";
@@ -194,25 +206,27 @@ export declare class ValidationException extends __BaseException {
194
206
  opts: __ExceptionOptionType<ValidationException, __BaseException>
195
207
  );
196
208
  }
197
- export declare enum Code {
198
- ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
199
- INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
200
- MALWARE_DETECTED = "MALWARE_DETECTED",
201
- MALWARE_SCAN_ENCRYPTED_FILE = "MALWARE_SCAN_ENCRYPTED_FILE",
202
- RESOURCE_NOT_FOUND_EXCEPTION = "RESOURCE_NOT_FOUND_EXCEPTION",
203
- SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
204
- VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION",
205
- }
209
+ export declare const Code: {
210
+ readonly ACCESS_DENIED_EXCEPTION: "ACCESS_DENIED_EXCEPTION";
211
+ readonly INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION";
212
+ readonly MALWARE_DETECTED: "MALWARE_DETECTED";
213
+ readonly MALWARE_SCAN_ENCRYPTED_FILE: "MALWARE_SCAN_ENCRYPTED_FILE";
214
+ readonly RESOURCE_NOT_FOUND_EXCEPTION: "RESOURCE_NOT_FOUND_EXCEPTION";
215
+ readonly SERVICE_QUOTA_EXCEEDED_EXCEPTION: "SERVICE_QUOTA_EXCEEDED_EXCEPTION";
216
+ readonly VALIDATION_EXCEPTION: "VALIDATION_EXCEPTION";
217
+ };
218
+ export type Code = (typeof Code)[keyof typeof Code];
206
219
  export interface CreateDataSetRequest {
207
220
  AssetType: AssetType | string | undefined;
208
221
  Description: string | undefined;
209
222
  Name: string | undefined;
210
223
  Tags?: Record<string, string>;
211
224
  }
212
- export declare enum Origin {
213
- ENTITLED = "ENTITLED",
214
- OWNED = "OWNED",
215
- }
225
+ export declare const Origin: {
226
+ readonly ENTITLED: "ENTITLED";
227
+ readonly OWNED: "OWNED";
228
+ };
229
+ export type Origin = (typeof Origin)[keyof typeof Origin];
216
230
  export interface OriginDetails {
217
231
  ProductId: string | undefined;
218
232
  }
@@ -229,36 +243,37 @@ export interface CreateDataSetResponse {
229
243
  Tags?: Record<string, string>;
230
244
  UpdatedAt?: Date;
231
245
  }
232
- export declare enum LimitName {
233
- AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
234
- Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
235
- Amazon_Redshift_datashare_assets_per_import_job_from_Redshift = "Amazon Redshift datashare assets per import job from Redshift",
236
- Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
237
- Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
238
- Asset_per_export_job_from_Amazon_S3 = "Asset per export job from Amazon S3",
239
- Asset_size_in_GB = "Asset size in GB",
240
- Assets_per_import_job_from_Amazon_S3 = "Assets per import job from Amazon S3",
241
- Assets_per_revision = "Assets per revision",
242
- Auto_export_event_actions_per_data_set = "Auto export event actions per data set",
243
- Concurrent_in_progress_jobs_to_create_Amazon_S3_data_access_assets_from_S3_buckets = "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets",
244
- Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3 = "Concurrent in progress jobs to export assets to Amazon S3",
245
- Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL = "Concurrent in progress jobs to export assets to a signed URL",
246
- Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3 = "Concurrent in progress jobs to export revisions to Amazon S3",
247
- Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares = "Concurrent in progress jobs to import assets from Amazon Redshift datashares",
248
- Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3 = "Concurrent in progress jobs to import assets from Amazon S3",
249
- Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL = "Concurrent in progress jobs to import assets from a signed URL",
250
- Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API = "Concurrent in progress jobs to import assets from an API Gateway API",
251
- Concurrent_in_progress_jobs_to_import_assets_from_an_AWS_Lake_Formation_tag_policy = "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy",
252
- Data_sets_per_account = "Data sets per account",
253
- Data_sets_per_product = "Data sets per product",
254
- Event_actions_per_account = "Event actions per account",
255
- Products_per_account = "Products per account",
256
- Revisions_per_AWS_Lake_Formation_data_permission_data_set = "Revisions per AWS Lake Formation data permission data set",
257
- Revisions_per_Amazon_API_Gateway_API_data_set = "Revisions per Amazon API Gateway API data set",
258
- Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
259
- Revisions_per_Amazon_S3_data_access_data_set = "Revisions per Amazon S3 data access data set",
260
- Revisions_per_data_set = "Revisions per data set",
261
- }
246
+ export declare const LimitName: {
247
+ readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
248
+ readonly Amazon_API_Gateway_API_assets_per_revision: "Amazon API Gateway API assets per revision";
249
+ readonly Amazon_Redshift_datashare_assets_per_import_job_from_Redshift: "Amazon Redshift datashare assets per import job from Redshift";
250
+ readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
251
+ readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
252
+ readonly Asset_per_export_job_from_Amazon_S3: "Asset per export job from Amazon S3";
253
+ readonly Asset_size_in_GB: "Asset size in GB";
254
+ readonly Assets_per_import_job_from_Amazon_S3: "Assets per import job from Amazon S3";
255
+ readonly Assets_per_revision: "Assets per revision";
256
+ readonly Auto_export_event_actions_per_data_set: "Auto export event actions per data set";
257
+ readonly Concurrent_in_progress_jobs_to_create_Amazon_S3_data_access_assets_from_S3_buckets: "Concurrent in progress jobs to create Amazon S3 data access assets from S3 buckets";
258
+ readonly Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3: "Concurrent in progress jobs to export assets to Amazon S3";
259
+ readonly Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL: "Concurrent in progress jobs to export assets to a signed URL";
260
+ readonly Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3: "Concurrent in progress jobs to export revisions to Amazon S3";
261
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares: "Concurrent in progress jobs to import assets from Amazon Redshift datashares";
262
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3: "Concurrent in progress jobs to import assets from Amazon S3";
263
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL: "Concurrent in progress jobs to import assets from a signed URL";
264
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API: "Concurrent in progress jobs to import assets from an API Gateway API";
265
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_an_AWS_Lake_Formation_tag_policy: "Concurrent in progress jobs to import assets from an AWS Lake Formation tag policy";
266
+ readonly Data_sets_per_account: "Data sets per account";
267
+ readonly Data_sets_per_product: "Data sets per product";
268
+ readonly Event_actions_per_account: "Event actions per account";
269
+ readonly Products_per_account: "Products per account";
270
+ readonly Revisions_per_AWS_Lake_Formation_data_permission_data_set: "Revisions per AWS Lake Formation data permission data set";
271
+ readonly Revisions_per_Amazon_API_Gateway_API_data_set: "Revisions per Amazon API Gateway API data set";
272
+ readonly Revisions_per_Amazon_Redshift_datashare_data_set: "Revisions per Amazon Redshift datashare data set";
273
+ readonly Revisions_per_Amazon_S3_data_access_data_set: "Revisions per Amazon S3 data access data set";
274
+ readonly Revisions_per_data_set: "Revisions per data set";
275
+ };
276
+ export type LimitName = (typeof LimitName)[keyof typeof LimitName];
262
277
  export declare class ServiceLimitExceededException extends __BaseException {
263
278
  readonly name: "ServiceLimitExceededException";
264
279
  readonly $fault: "client";
@@ -336,17 +351,21 @@ export interface ImportAssetFromSignedUrlRequestDetails {
336
351
  Md5Hash: string | undefined;
337
352
  RevisionId: string | undefined;
338
353
  }
339
- export declare enum DatabaseLFTagPolicyPermission {
340
- DESCRIBE = "DESCRIBE",
341
- }
354
+ export declare const DatabaseLFTagPolicyPermission: {
355
+ readonly DESCRIBE: "DESCRIBE";
356
+ };
357
+ export type DatabaseLFTagPolicyPermission =
358
+ (typeof DatabaseLFTagPolicyPermission)[keyof typeof DatabaseLFTagPolicyPermission];
342
359
  export interface DatabaseLFTagPolicyAndPermissions {
343
360
  Expression: LFTag[] | undefined;
344
361
  Permissions: (DatabaseLFTagPolicyPermission | string)[] | undefined;
345
362
  }
346
- export declare enum TableTagPolicyLFPermission {
347
- DESCRIBE = "DESCRIBE",
348
- SELECT = "SELECT",
349
- }
363
+ export declare const TableTagPolicyLFPermission: {
364
+ readonly DESCRIBE: "DESCRIBE";
365
+ readonly SELECT: "SELECT";
366
+ };
367
+ export type TableTagPolicyLFPermission =
368
+ (typeof TableTagPolicyLFPermission)[keyof typeof TableTagPolicyLFPermission];
350
369
  export interface TableLFTagPolicyAndPermissions {
351
370
  Expression: LFTag[] | undefined;
352
371
  Permissions: (TableTagPolicyLFPermission | string)[] | undefined;
@@ -383,17 +402,18 @@ export interface RequestDetails {
383
402
  CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketRequestDetails;
384
403
  ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails;
385
404
  }
386
- export declare enum Type {
387
- CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET = "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET",
388
- EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
389
- EXPORT_ASSET_TO_SIGNED_URL = "EXPORT_ASSET_TO_SIGNED_URL",
390
- EXPORT_REVISIONS_TO_S3 = "EXPORT_REVISIONS_TO_S3",
391
- IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY = "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY",
392
- IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES = "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
393
- IMPORT_ASSETS_FROM_S3 = "IMPORT_ASSETS_FROM_S3",
394
- IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
395
- IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL",
396
- }
405
+ export declare const Type: {
406
+ readonly CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET: "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET";
407
+ readonly EXPORT_ASSETS_TO_S3: "EXPORT_ASSETS_TO_S3";
408
+ readonly EXPORT_ASSET_TO_SIGNED_URL: "EXPORT_ASSET_TO_SIGNED_URL";
409
+ readonly EXPORT_REVISIONS_TO_S3: "EXPORT_REVISIONS_TO_S3";
410
+ readonly IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY: "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY";
411
+ readonly IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES: "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES";
412
+ readonly IMPORT_ASSETS_FROM_S3: "IMPORT_ASSETS_FROM_S3";
413
+ readonly IMPORT_ASSET_FROM_API_GATEWAY_API: "IMPORT_ASSET_FROM_API_GATEWAY_API";
414
+ readonly IMPORT_ASSET_FROM_SIGNED_URL: "IMPORT_ASSET_FROM_SIGNED_URL";
415
+ };
416
+ export type Type = (typeof Type)[keyof typeof Type];
397
417
  export interface CreateJobRequest {
398
418
  Details: RequestDetails | undefined;
399
419
  Type: Type | string | undefined;
@@ -479,18 +499,22 @@ export interface Details {
479
499
  ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
480
500
  ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
481
501
  }
482
- export declare enum JobErrorLimitName {
483
- AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
484
- Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
485
- Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
486
- Asset_size_in_GB = "Asset size in GB",
487
- Assets_per_revision = "Assets per revision",
488
- }
489
- export declare enum JobErrorResourceTypes {
490
- ASSET = "ASSET",
491
- DATA_SET = "DATA_SET",
492
- REVISION = "REVISION",
493
- }
502
+ export declare const JobErrorLimitName: {
503
+ readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
504
+ readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
505
+ readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
506
+ readonly Asset_size_in_GB: "Asset size in GB";
507
+ readonly Assets_per_revision: "Assets per revision";
508
+ };
509
+ export type JobErrorLimitName =
510
+ (typeof JobErrorLimitName)[keyof typeof JobErrorLimitName];
511
+ export declare const JobErrorResourceTypes: {
512
+ readonly ASSET: "ASSET";
513
+ readonly DATA_SET: "DATA_SET";
514
+ readonly REVISION: "REVISION";
515
+ };
516
+ export type JobErrorResourceTypes =
517
+ (typeof JobErrorResourceTypes)[keyof typeof JobErrorResourceTypes];
494
518
  export interface JobError {
495
519
  Code: Code | string | undefined;
496
520
  Details?: Details;
@@ -500,14 +524,15 @@ export interface JobError {
500
524
  ResourceId?: string;
501
525
  ResourceType?: JobErrorResourceTypes | string;
502
526
  }
503
- export declare enum State {
504
- CANCELLED = "CANCELLED",
505
- COMPLETED = "COMPLETED",
506
- ERROR = "ERROR",
507
- IN_PROGRESS = "IN_PROGRESS",
508
- TIMED_OUT = "TIMED_OUT",
509
- WAITING = "WAITING",
510
- }
527
+ export declare const State: {
528
+ readonly CANCELLED: "CANCELLED";
529
+ readonly COMPLETED: "COMPLETED";
530
+ readonly ERROR: "ERROR";
531
+ readonly IN_PROGRESS: "IN_PROGRESS";
532
+ readonly TIMED_OUT: "TIMED_OUT";
533
+ readonly WAITING: "WAITING";
534
+ };
535
+ export type State = (typeof State)[keyof typeof State];
511
536
  export interface CreateJobResponse {
512
537
  Arn?: string;
513
538
  CreatedAt?: Date;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-dataexchange",
3
3
  "description": "AWS SDK for JavaScript Dataexchange Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.306.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.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.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.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.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.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.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",