@aws-sdk/client-dataexchange 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.
@@ -18,11 +18,16 @@ export declare class AccessDeniedException extends __BaseException {
18
18
  }
19
19
  /**
20
20
  * @public
21
+ * @enum
21
22
  */
22
- export declare enum ServerSideEncryptionTypes {
23
- AES256 = "AES256",
24
- aws_kms = "aws:kms"
25
- }
23
+ export declare const ServerSideEncryptionTypes: {
24
+ readonly AES256: "AES256";
25
+ readonly aws_kms: "aws:kms";
26
+ };
27
+ /**
28
+ * @public
29
+ */
30
+ export type ServerSideEncryptionTypes = (typeof ServerSideEncryptionTypes)[keyof typeof ServerSideEncryptionTypes];
26
31
  /**
27
32
  * @public
28
33
  * <p>Encryption configuration of the export job. Includes the encryption type in addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.</p>
@@ -77,10 +82,15 @@ export interface Action {
77
82
  }
78
83
  /**
79
84
  * @public
85
+ * @enum
80
86
  */
81
- export declare enum ProtocolType {
82
- REST = "REST"
83
- }
87
+ export declare const ProtocolType: {
88
+ readonly REST: "REST";
89
+ };
90
+ /**
91
+ * @public
92
+ */
93
+ export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
84
94
  /**
85
95
  * @public
86
96
  * <p>The API Gateway API that is the asset.</p>
@@ -191,11 +201,16 @@ export interface LFResourceDetails {
191
201
  }
192
202
  /**
193
203
  * @public
204
+ * @enum
194
205
  */
195
- export declare enum LFResourceType {
196
- DATABASE = "DATABASE",
197
- TABLE = "TABLE"
198
- }
206
+ export declare const LFResourceType: {
207
+ readonly DATABASE: "DATABASE";
208
+ readonly TABLE: "TABLE";
209
+ };
210
+ /**
211
+ * @public
212
+ */
213
+ export type LFResourceType = (typeof LFResourceType)[keyof typeof LFResourceType];
199
214
  /**
200
215
  * @public
201
216
  * <p>Details about the LF-tag policy.</p>
@@ -226,17 +241,27 @@ export interface LakeFormationDataPermissionDetails {
226
241
  }
227
242
  /**
228
243
  * @public
244
+ * @enum
229
245
  */
230
- export declare enum LakeFormationDataPermissionType {
231
- LFTagPolicy = "LFTagPolicy"
232
- }
246
+ export declare const LakeFormationDataPermissionType: {
247
+ readonly LFTagPolicy: "LFTagPolicy";
248
+ };
233
249
  /**
234
250
  * @public
235
251
  */
236
- export declare enum LFPermission {
237
- DESCRIBE = "DESCRIBE",
238
- SELECT = "SELECT"
239
- }
252
+ export type LakeFormationDataPermissionType = (typeof LakeFormationDataPermissionType)[keyof typeof LakeFormationDataPermissionType];
253
+ /**
254
+ * @public
255
+ * @enum
256
+ */
257
+ export declare const LFPermission: {
258
+ readonly DESCRIBE: "DESCRIBE";
259
+ readonly SELECT: "SELECT";
260
+ };
261
+ /**
262
+ * @public
263
+ */
264
+ export type LFPermission = (typeof LFPermission)[keyof typeof LFPermission];
240
265
  /**
241
266
  * @public
242
267
  * <p>The AWS Lake Formation data permission asset.</p>
@@ -353,14 +378,19 @@ export interface AssetDetails {
353
378
  }
354
379
  /**
355
380
  * @public
381
+ * @enum
356
382
  */
357
- export declare enum AssetType {
358
- API_GATEWAY_API = "API_GATEWAY_API",
359
- LAKE_FORMATION_DATA_PERMISSION = "LAKE_FORMATION_DATA_PERMISSION",
360
- REDSHIFT_DATA_SHARE = "REDSHIFT_DATA_SHARE",
361
- S3_DATA_ACCESS = "S3_DATA_ACCESS",
362
- S3_SNAPSHOT = "S3_SNAPSHOT"
363
- }
383
+ export declare const AssetType: {
384
+ readonly API_GATEWAY_API: "API_GATEWAY_API";
385
+ readonly LAKE_FORMATION_DATA_PERMISSION: "LAKE_FORMATION_DATA_PERMISSION";
386
+ readonly REDSHIFT_DATA_SHARE: "REDSHIFT_DATA_SHARE";
387
+ readonly S3_DATA_ACCESS: "S3_DATA_ACCESS";
388
+ readonly S3_SNAPSHOT: "S3_SNAPSHOT";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
364
394
  /**
365
395
  * @public
366
396
  * <p>An asset in AWS Data Exchange is a piece of data (Amazon S3 object) or a means of
@@ -445,14 +475,19 @@ export interface CancelJobRequest {
445
475
  }
446
476
  /**
447
477
  * @public
478
+ * @enum
448
479
  */
449
- export declare enum ResourceType {
450
- ASSET = "ASSET",
451
- DATA_SET = "DATA_SET",
452
- EVENT_ACTION = "EVENT_ACTION",
453
- JOB = "JOB",
454
- REVISION = "REVISION"
455
- }
480
+ export declare const ResourceType: {
481
+ readonly ASSET: "ASSET";
482
+ readonly DATA_SET: "DATA_SET";
483
+ readonly EVENT_ACTION: "EVENT_ACTION";
484
+ readonly JOB: "JOB";
485
+ readonly REVISION: "REVISION";
486
+ };
487
+ /**
488
+ * @public
489
+ */
490
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
456
491
  /**
457
492
  * @public
458
493
  * <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
@@ -535,11 +570,16 @@ export declare class ThrottlingException extends __BaseException {
535
570
  }
536
571
  /**
537
572
  * @public
573
+ * @enum
538
574
  */
539
- export declare enum ExceptionCause {
540
- InsufficientS3BucketPolicy = "InsufficientS3BucketPolicy",
541
- S3AccessDenied = "S3AccessDenied"
542
- }
575
+ export declare const ExceptionCause: {
576
+ readonly InsufficientS3BucketPolicy: "InsufficientS3BucketPolicy";
577
+ readonly S3AccessDenied: "S3AccessDenied";
578
+ };
579
+ /**
580
+ * @public
581
+ */
582
+ export type ExceptionCause = (typeof ExceptionCause)[keyof typeof ExceptionCause];
543
583
  /**
544
584
  * @public
545
585
  * <p>The request was invalid.</p>
@@ -562,16 +602,21 @@ export declare class ValidationException extends __BaseException {
562
602
  }
563
603
  /**
564
604
  * @public
605
+ * @enum
565
606
  */
566
- export declare enum Code {
567
- ACCESS_DENIED_EXCEPTION = "ACCESS_DENIED_EXCEPTION",
568
- INTERNAL_SERVER_EXCEPTION = "INTERNAL_SERVER_EXCEPTION",
569
- MALWARE_DETECTED = "MALWARE_DETECTED",
570
- MALWARE_SCAN_ENCRYPTED_FILE = "MALWARE_SCAN_ENCRYPTED_FILE",
571
- RESOURCE_NOT_FOUND_EXCEPTION = "RESOURCE_NOT_FOUND_EXCEPTION",
572
- SERVICE_QUOTA_EXCEEDED_EXCEPTION = "SERVICE_QUOTA_EXCEEDED_EXCEPTION",
573
- VALIDATION_EXCEPTION = "VALIDATION_EXCEPTION"
574
- }
607
+ export declare const Code: {
608
+ readonly ACCESS_DENIED_EXCEPTION: "ACCESS_DENIED_EXCEPTION";
609
+ readonly INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION";
610
+ readonly MALWARE_DETECTED: "MALWARE_DETECTED";
611
+ readonly MALWARE_SCAN_ENCRYPTED_FILE: "MALWARE_SCAN_ENCRYPTED_FILE";
612
+ readonly RESOURCE_NOT_FOUND_EXCEPTION: "RESOURCE_NOT_FOUND_EXCEPTION";
613
+ readonly SERVICE_QUOTA_EXCEEDED_EXCEPTION: "SERVICE_QUOTA_EXCEEDED_EXCEPTION";
614
+ readonly VALIDATION_EXCEPTION: "VALIDATION_EXCEPTION";
615
+ };
616
+ /**
617
+ * @public
618
+ */
619
+ export type Code = (typeof Code)[keyof typeof Code];
575
620
  /**
576
621
  * @public
577
622
  */
@@ -595,11 +640,16 @@ export interface CreateDataSetRequest {
595
640
  }
596
641
  /**
597
642
  * @public
643
+ * @enum
598
644
  */
599
- export declare enum Origin {
600
- ENTITLED = "ENTITLED",
601
- OWNED = "OWNED"
602
- }
645
+ export declare const Origin: {
646
+ readonly ENTITLED: "ENTITLED";
647
+ readonly OWNED: "OWNED";
648
+ };
649
+ /**
650
+ * @public
651
+ */
652
+ export type Origin = (typeof Origin)[keyof typeof Origin];
603
653
  /**
604
654
  * @public
605
655
  * <p>Details about the origin of the data set.</p>
@@ -661,37 +711,42 @@ export interface CreateDataSetResponse {
661
711
  }
662
712
  /**
663
713
  * @public
664
- */
665
- export declare enum LimitName {
666
- AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
667
- Amazon_API_Gateway_API_assets_per_revision = "Amazon API Gateway API assets per revision",
668
- Amazon_Redshift_datashare_assets_per_import_job_from_Redshift = "Amazon Redshift datashare assets per import job from Redshift",
669
- Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
670
- Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
671
- Asset_per_export_job_from_Amazon_S3 = "Asset per export job from Amazon S3",
672
- Asset_size_in_GB = "Asset size in GB",
673
- Assets_per_import_job_from_Amazon_S3 = "Assets per import job from Amazon S3",
674
- Assets_per_revision = "Assets per revision",
675
- Auto_export_event_actions_per_data_set = "Auto export event actions per data set",
676
- 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",
677
- Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3 = "Concurrent in progress jobs to export assets to Amazon S3",
678
- Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL = "Concurrent in progress jobs to export assets to a signed URL",
679
- Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3 = "Concurrent in progress jobs to export revisions to Amazon S3",
680
- Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares = "Concurrent in progress jobs to import assets from Amazon Redshift datashares",
681
- Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3 = "Concurrent in progress jobs to import assets from Amazon S3",
682
- Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL = "Concurrent in progress jobs to import assets from a signed URL",
683
- Concurrent_in_progress_jobs_to_import_assets_from_an_API_Gateway_API = "Concurrent in progress jobs to import assets from an API Gateway API",
684
- 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",
685
- Data_sets_per_account = "Data sets per account",
686
- Data_sets_per_product = "Data sets per product",
687
- Event_actions_per_account = "Event actions per account",
688
- Products_per_account = "Products per account",
689
- Revisions_per_AWS_Lake_Formation_data_permission_data_set = "Revisions per AWS Lake Formation data permission data set",
690
- Revisions_per_Amazon_API_Gateway_API_data_set = "Revisions per Amazon API Gateway API data set",
691
- Revisions_per_Amazon_Redshift_datashare_data_set = "Revisions per Amazon Redshift datashare data set",
692
- Revisions_per_Amazon_S3_data_access_data_set = "Revisions per Amazon S3 data access data set",
693
- Revisions_per_data_set = "Revisions per data set"
694
- }
714
+ * @enum
715
+ */
716
+ export declare const LimitName: {
717
+ readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
718
+ readonly Amazon_API_Gateway_API_assets_per_revision: "Amazon API Gateway API assets per revision";
719
+ readonly Amazon_Redshift_datashare_assets_per_import_job_from_Redshift: "Amazon Redshift datashare assets per import job from Redshift";
720
+ readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
721
+ readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
722
+ readonly Asset_per_export_job_from_Amazon_S3: "Asset per export job from Amazon S3";
723
+ readonly Asset_size_in_GB: "Asset size in GB";
724
+ readonly Assets_per_import_job_from_Amazon_S3: "Assets per import job from Amazon S3";
725
+ readonly Assets_per_revision: "Assets per revision";
726
+ readonly Auto_export_event_actions_per_data_set: "Auto export event actions per data set";
727
+ 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";
728
+ readonly Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3: "Concurrent in progress jobs to export assets to Amazon S3";
729
+ readonly Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL: "Concurrent in progress jobs to export assets to a signed URL";
730
+ readonly Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3: "Concurrent in progress jobs to export revisions to Amazon S3";
731
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares: "Concurrent in progress jobs to import assets from Amazon Redshift datashares";
732
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3: "Concurrent in progress jobs to import assets from Amazon S3";
733
+ readonly Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL: "Concurrent in progress jobs to import assets from a signed URL";
734
+ 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";
735
+ 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";
736
+ readonly Data_sets_per_account: "Data sets per account";
737
+ readonly Data_sets_per_product: "Data sets per product";
738
+ readonly Event_actions_per_account: "Event actions per account";
739
+ readonly Products_per_account: "Products per account";
740
+ readonly Revisions_per_AWS_Lake_Formation_data_permission_data_set: "Revisions per AWS Lake Formation data permission data set";
741
+ readonly Revisions_per_Amazon_API_Gateway_API_data_set: "Revisions per Amazon API Gateway API data set";
742
+ readonly Revisions_per_Amazon_Redshift_datashare_data_set: "Revisions per Amazon Redshift datashare data set";
743
+ readonly Revisions_per_Amazon_S3_data_access_data_set: "Revisions per Amazon S3 data access data set";
744
+ readonly Revisions_per_data_set: "Revisions per data set";
745
+ };
746
+ /**
747
+ * @public
748
+ */
749
+ export type LimitName = (typeof LimitName)[keyof typeof LimitName];
695
750
  /**
696
751
  * @public
697
752
  * <p>The request has exceeded the quotas imposed by the service.</p>
@@ -961,10 +1016,15 @@ export interface ImportAssetFromSignedUrlRequestDetails {
961
1016
  }
962
1017
  /**
963
1018
  * @public
1019
+ * @enum
964
1020
  */
965
- export declare enum DatabaseLFTagPolicyPermission {
966
- DESCRIBE = "DESCRIBE"
967
- }
1021
+ export declare const DatabaseLFTagPolicyPermission: {
1022
+ readonly DESCRIBE: "DESCRIBE";
1023
+ };
1024
+ /**
1025
+ * @public
1026
+ */
1027
+ export type DatabaseLFTagPolicyPermission = (typeof DatabaseLFTagPolicyPermission)[keyof typeof DatabaseLFTagPolicyPermission];
968
1028
  /**
969
1029
  * @public
970
1030
  * <p>The LF-tag policy and permissions for database resources.</p>
@@ -981,11 +1041,16 @@ export interface DatabaseLFTagPolicyAndPermissions {
981
1041
  }
982
1042
  /**
983
1043
  * @public
1044
+ * @enum
984
1045
  */
985
- export declare enum TableTagPolicyLFPermission {
986
- DESCRIBE = "DESCRIBE",
987
- SELECT = "SELECT"
988
- }
1046
+ export declare const TableTagPolicyLFPermission: {
1047
+ readonly DESCRIBE: "DESCRIBE";
1048
+ readonly SELECT: "SELECT";
1049
+ };
1050
+ /**
1051
+ * @public
1052
+ */
1053
+ export type TableTagPolicyLFPermission = (typeof TableTagPolicyLFPermission)[keyof typeof TableTagPolicyLFPermission];
989
1054
  /**
990
1055
  * @public
991
1056
  * <p>The LF-tag policy and permissions that apply to table resources.</p>
@@ -1120,18 +1185,23 @@ export interface RequestDetails {
1120
1185
  }
1121
1186
  /**
1122
1187
  * @public
1188
+ * @enum
1123
1189
  */
1124
- export declare enum Type {
1125
- CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET = "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET",
1126
- EXPORT_ASSETS_TO_S3 = "EXPORT_ASSETS_TO_S3",
1127
- EXPORT_ASSET_TO_SIGNED_URL = "EXPORT_ASSET_TO_SIGNED_URL",
1128
- EXPORT_REVISIONS_TO_S3 = "EXPORT_REVISIONS_TO_S3",
1129
- IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY = "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY",
1130
- IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES = "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
1131
- IMPORT_ASSETS_FROM_S3 = "IMPORT_ASSETS_FROM_S3",
1132
- IMPORT_ASSET_FROM_API_GATEWAY_API = "IMPORT_ASSET_FROM_API_GATEWAY_API",
1133
- IMPORT_ASSET_FROM_SIGNED_URL = "IMPORT_ASSET_FROM_SIGNED_URL"
1134
- }
1190
+ export declare const Type: {
1191
+ readonly CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET: "CREATE_S3_DATA_ACCESS_FROM_S3_BUCKET";
1192
+ readonly EXPORT_ASSETS_TO_S3: "EXPORT_ASSETS_TO_S3";
1193
+ readonly EXPORT_ASSET_TO_SIGNED_URL: "EXPORT_ASSET_TO_SIGNED_URL";
1194
+ readonly EXPORT_REVISIONS_TO_S3: "EXPORT_REVISIONS_TO_S3";
1195
+ readonly IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY: "IMPORT_ASSETS_FROM_LAKE_FORMATION_TAG_POLICY";
1196
+ readonly IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES: "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES";
1197
+ readonly IMPORT_ASSETS_FROM_S3: "IMPORT_ASSETS_FROM_S3";
1198
+ readonly IMPORT_ASSET_FROM_API_GATEWAY_API: "IMPORT_ASSET_FROM_API_GATEWAY_API";
1199
+ readonly IMPORT_ASSET_FROM_SIGNED_URL: "IMPORT_ASSET_FROM_SIGNED_URL";
1200
+ };
1201
+ /**
1202
+ * @public
1203
+ */
1204
+ export type Type = (typeof Type)[keyof typeof Type];
1135
1205
  /**
1136
1206
  * @public
1137
1207
  */
@@ -1447,22 +1517,32 @@ export interface Details {
1447
1517
  }
1448
1518
  /**
1449
1519
  * @public
1520
+ * @enum
1450
1521
  */
1451
- export declare enum JobErrorLimitName {
1452
- AWS_Lake_Formation_data_permission_assets_per_revision = "AWS Lake Formation data permission assets per revision",
1453
- Amazon_Redshift_datashare_assets_per_revision = "Amazon Redshift datashare assets per revision",
1454
- Amazon_S3_data_access_assets_per_revision = "Amazon S3 data access assets per revision",
1455
- Asset_size_in_GB = "Asset size in GB",
1456
- Assets_per_revision = "Assets per revision"
1457
- }
1522
+ export declare const JobErrorLimitName: {
1523
+ readonly AWS_Lake_Formation_data_permission_assets_per_revision: "AWS Lake Formation data permission assets per revision";
1524
+ readonly Amazon_Redshift_datashare_assets_per_revision: "Amazon Redshift datashare assets per revision";
1525
+ readonly Amazon_S3_data_access_assets_per_revision: "Amazon S3 data access assets per revision";
1526
+ readonly Asset_size_in_GB: "Asset size in GB";
1527
+ readonly Assets_per_revision: "Assets per revision";
1528
+ };
1458
1529
  /**
1459
1530
  * @public
1460
1531
  */
1461
- export declare enum JobErrorResourceTypes {
1462
- ASSET = "ASSET",
1463
- DATA_SET = "DATA_SET",
1464
- REVISION = "REVISION"
1465
- }
1532
+ export type JobErrorLimitName = (typeof JobErrorLimitName)[keyof typeof JobErrorLimitName];
1533
+ /**
1534
+ * @public
1535
+ * @enum
1536
+ */
1537
+ export declare const JobErrorResourceTypes: {
1538
+ readonly ASSET: "ASSET";
1539
+ readonly DATA_SET: "DATA_SET";
1540
+ readonly REVISION: "REVISION";
1541
+ };
1542
+ /**
1543
+ * @public
1544
+ */
1545
+ export type JobErrorResourceTypes = (typeof JobErrorResourceTypes)[keyof typeof JobErrorResourceTypes];
1466
1546
  /**
1467
1547
  * @public
1468
1548
  * <p>An error that occurred with the job request.</p>
@@ -1499,15 +1579,20 @@ export interface JobError {
1499
1579
  }
1500
1580
  /**
1501
1581
  * @public
1582
+ * @enum
1502
1583
  */
1503
- export declare enum State {
1504
- CANCELLED = "CANCELLED",
1505
- COMPLETED = "COMPLETED",
1506
- ERROR = "ERROR",
1507
- IN_PROGRESS = "IN_PROGRESS",
1508
- TIMED_OUT = "TIMED_OUT",
1509
- WAITING = "WAITING"
1510
- }
1584
+ export declare const State: {
1585
+ readonly CANCELLED: "CANCELLED";
1586
+ readonly COMPLETED: "COMPLETED";
1587
+ readonly ERROR: "ERROR";
1588
+ readonly IN_PROGRESS: "IN_PROGRESS";
1589
+ readonly TIMED_OUT: "TIMED_OUT";
1590
+ readonly WAITING: "WAITING";
1591
+ };
1592
+ /**
1593
+ * @public
1594
+ */
1595
+ export type State = (typeof State)[keyof typeof State];
1511
1596
  /**
1512
1597
  * @public
1513
1598
  */