@aws-sdk/client-elasticsearch-service 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.
@@ -12,15 +12,20 @@ export interface AcceptInboundCrossClusterSearchConnectionRequest {
12
12
  }
13
13
  /**
14
14
  * @public
15
+ * @enum
15
16
  */
16
- export declare enum InboundCrossClusterSearchConnectionStatusCode {
17
- APPROVED = "APPROVED",
18
- DELETED = "DELETED",
19
- DELETING = "DELETING",
20
- PENDING_ACCEPTANCE = "PENDING_ACCEPTANCE",
21
- REJECTED = "REJECTED",
22
- REJECTING = "REJECTING"
23
- }
17
+ export declare const InboundCrossClusterSearchConnectionStatusCode: {
18
+ readonly APPROVED: "APPROVED";
19
+ readonly DELETED: "DELETED";
20
+ readonly DELETING: "DELETING";
21
+ readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
22
+ readonly REJECTED: "REJECTED";
23
+ readonly REJECTING: "REJECTING";
24
+ };
25
+ /**
26
+ * @public
27
+ */
28
+ export type InboundCrossClusterSearchConnectionStatusCode = (typeof InboundCrossClusterSearchConnectionStatusCode)[keyof typeof InboundCrossClusterSearchConnectionStatusCode];
24
29
  /**
25
30
  * @public
26
31
  * <p>Specifies the coonection status of an inbound cross-cluster search connection.</p>
@@ -136,12 +141,17 @@ export declare class AccessDeniedException extends __BaseException {
136
141
  }
137
142
  /**
138
143
  * @public
144
+ * @enum
139
145
  */
140
- export declare enum OptionState {
141
- Active = "Active",
142
- Processing = "Processing",
143
- RequiresIndexDocuments = "RequiresIndexDocuments"
144
- }
146
+ export declare const OptionState: {
147
+ readonly Active: "Active";
148
+ readonly Processing: "Processing";
149
+ readonly RequiresIndexDocuments: "RequiresIndexDocuments";
150
+ };
151
+ /**
152
+ * @public
153
+ */
154
+ export type OptionState = (typeof OptionState)[keyof typeof OptionState];
145
155
  /**
146
156
  * @public
147
157
  * <p>Provides the current status of the entity.</p>
@@ -499,14 +509,19 @@ export interface AssociatePackageRequest {
499
509
  }
500
510
  /**
501
511
  * @public
512
+ * @enum
502
513
  */
503
- export declare enum DomainPackageStatus {
504
- ACTIVE = "ACTIVE",
505
- ASSOCIATING = "ASSOCIATING",
506
- ASSOCIATION_FAILED = "ASSOCIATION_FAILED",
507
- DISSOCIATING = "DISSOCIATING",
508
- DISSOCIATION_FAILED = "DISSOCIATION_FAILED"
509
- }
514
+ export declare const DomainPackageStatus: {
515
+ readonly ACTIVE: "ACTIVE";
516
+ readonly ASSOCIATING: "ASSOCIATING";
517
+ readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
518
+ readonly DISSOCIATING: "DISSOCIATING";
519
+ readonly DISSOCIATION_FAILED: "DISSOCIATION_FAILED";
520
+ };
521
+ /**
522
+ * @public
523
+ */
524
+ export type DomainPackageStatus = (typeof DomainPackageStatus)[keyof typeof DomainPackageStatus];
510
525
  /**
511
526
  * @public
512
527
  */
@@ -516,10 +531,15 @@ export interface ErrorDetails {
516
531
  }
517
532
  /**
518
533
  * @public
534
+ * @enum
519
535
  */
520
- export declare enum PackageType {
521
- TXT_DICTIONARY = "TXT-DICTIONARY"
522
- }
536
+ export declare const PackageType: {
537
+ readonly TXT_DICTIONARY: "TXT-DICTIONARY";
538
+ };
539
+ /**
540
+ * @public
541
+ */
542
+ export type PackageType = (typeof PackageType)[keyof typeof PackageType];
523
543
  /**
524
544
  * @public
525
545
  * <p>Information on a package that is associated with a domain.</p>
@@ -604,11 +624,16 @@ export interface AuthorizeVpcEndpointAccessRequest {
604
624
  }
605
625
  /**
606
626
  * @public
627
+ * @enum
607
628
  */
608
- export declare enum PrincipalType {
609
- AWS_ACCOUNT = "AWS_ACCOUNT",
610
- AWS_SERVICE = "AWS_SERVICE"
611
- }
629
+ export declare const PrincipalType: {
630
+ readonly AWS_ACCOUNT: "AWS_ACCOUNT";
631
+ readonly AWS_SERVICE: "AWS_SERVICE";
632
+ };
633
+ /**
634
+ * @public
635
+ */
636
+ export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
612
637
  /**
613
638
  * @public
614
639
  * <p>Information about an account or service that has access to an Amazon
@@ -648,14 +673,19 @@ export interface CancelElasticsearchServiceSoftwareUpdateRequest {
648
673
  }
649
674
  /**
650
675
  * @public
676
+ * @enum
651
677
  */
652
- export declare enum DeploymentStatus {
653
- COMPLETED = "COMPLETED",
654
- ELIGIBLE = "ELIGIBLE",
655
- IN_PROGRESS = "IN_PROGRESS",
656
- NOT_ELIGIBLE = "NOT_ELIGIBLE",
657
- PENDING_UPDATE = "PENDING_UPDATE"
658
- }
678
+ export declare const DeploymentStatus: {
679
+ readonly COMPLETED: "COMPLETED";
680
+ readonly ELIGIBLE: "ELIGIBLE";
681
+ readonly IN_PROGRESS: "IN_PROGRESS";
682
+ readonly NOT_ELIGIBLE: "NOT_ELIGIBLE";
683
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
684
+ };
685
+ /**
686
+ * @public
687
+ */
688
+ export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
659
689
  /**
660
690
  * @public
661
691
  * <p>The current options of an Elasticsearch domain service software options.</p>
@@ -706,17 +736,27 @@ export interface CancelElasticsearchServiceSoftwareUpdateResponse {
706
736
  }
707
737
  /**
708
738
  * @public
739
+ * @enum
709
740
  */
710
- export declare enum AutoTuneDesiredState {
711
- DISABLED = "DISABLED",
712
- ENABLED = "ENABLED"
713
- }
741
+ export declare const AutoTuneDesiredState: {
742
+ readonly DISABLED: "DISABLED";
743
+ readonly ENABLED: "ENABLED";
744
+ };
714
745
  /**
715
746
  * @public
716
747
  */
717
- export declare enum TimeUnit {
718
- HOURS = "HOURS"
719
- }
748
+ export type AutoTuneDesiredState = (typeof AutoTuneDesiredState)[keyof typeof AutoTuneDesiredState];
749
+ /**
750
+ * @public
751
+ * @enum
752
+ */
753
+ export declare const TimeUnit: {
754
+ readonly HOURS: "HOURS";
755
+ };
756
+ /**
757
+ * @public
758
+ */
759
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
720
760
  /**
721
761
  * @public
722
762
  * <p>Specifies maintenance schedule duration: duration value and duration unit. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
@@ -787,11 +827,16 @@ export interface CognitoOptions {
787
827
  }
788
828
  /**
789
829
  * @public
830
+ * @enum
790
831
  */
791
- export declare enum TLSSecurityPolicy {
792
- POLICY_MIN_TLS_1_0_2019_07 = "Policy-Min-TLS-1-0-2019-07",
793
- POLICY_MIN_TLS_1_2_2019_07 = "Policy-Min-TLS-1-2-2019-07"
794
- }
832
+ export declare const TLSSecurityPolicy: {
833
+ readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
834
+ readonly POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07";
835
+ };
836
+ /**
837
+ * @public
838
+ */
839
+ export type TLSSecurityPolicy = (typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
795
840
  /**
796
841
  * @public
797
842
  * <p>Options to configure endpoint for the Elasticsearch domain.</p>
@@ -826,13 +871,18 @@ export interface DomainEndpointOptions {
826
871
  }
827
872
  /**
828
873
  * @public
874
+ * @enum
829
875
  */
830
- export declare enum VolumeType {
831
- gp2 = "gp2",
832
- gp3 = "gp3",
833
- io1 = "io1",
834
- standard = "standard"
835
- }
876
+ export declare const VolumeType: {
877
+ readonly gp2: "gp2";
878
+ readonly gp3: "gp3";
879
+ readonly io1: "io1";
880
+ readonly standard: "standard";
881
+ };
882
+ /**
883
+ * @public
884
+ */
885
+ export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
836
886
  /**
837
887
  * @public
838
888
  * <p>Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs" target="_blank"> Configuring EBS-based Storage</a>.</p>
@@ -871,74 +921,84 @@ export interface ColdStorageOptions {
871
921
  }
872
922
  /**
873
923
  * @public
874
- */
875
- export declare enum ESPartitionInstanceType {
876
- c4_2xlarge_elasticsearch = "c4.2xlarge.elasticsearch",
877
- c4_4xlarge_elasticsearch = "c4.4xlarge.elasticsearch",
878
- c4_8xlarge_elasticsearch = "c4.8xlarge.elasticsearch",
879
- c4_large_elasticsearch = "c4.large.elasticsearch",
880
- c4_xlarge_elasticsearch = "c4.xlarge.elasticsearch",
881
- c5_18xlarge_elasticsearch = "c5.18xlarge.elasticsearch",
882
- c5_2xlarge_elasticsearch = "c5.2xlarge.elasticsearch",
883
- c5_4xlarge_elasticsearch = "c5.4xlarge.elasticsearch",
884
- c5_9xlarge_elasticsearch = "c5.9xlarge.elasticsearch",
885
- c5_large_elasticsearch = "c5.large.elasticsearch",
886
- c5_xlarge_elasticsearch = "c5.xlarge.elasticsearch",
887
- d2_2xlarge_elasticsearch = "d2.2xlarge.elasticsearch",
888
- d2_4xlarge_elasticsearch = "d2.4xlarge.elasticsearch",
889
- d2_8xlarge_elasticsearch = "d2.8xlarge.elasticsearch",
890
- d2_xlarge_elasticsearch = "d2.xlarge.elasticsearch",
891
- i2_2xlarge_elasticsearch = "i2.2xlarge.elasticsearch",
892
- i2_xlarge_elasticsearch = "i2.xlarge.elasticsearch",
893
- i3_16xlarge_elasticsearch = "i3.16xlarge.elasticsearch",
894
- i3_2xlarge_elasticsearch = "i3.2xlarge.elasticsearch",
895
- i3_4xlarge_elasticsearch = "i3.4xlarge.elasticsearch",
896
- i3_8xlarge_elasticsearch = "i3.8xlarge.elasticsearch",
897
- i3_large_elasticsearch = "i3.large.elasticsearch",
898
- i3_xlarge_elasticsearch = "i3.xlarge.elasticsearch",
899
- m3_2xlarge_elasticsearch = "m3.2xlarge.elasticsearch",
900
- m3_large_elasticsearch = "m3.large.elasticsearch",
901
- m3_medium_elasticsearch = "m3.medium.elasticsearch",
902
- m3_xlarge_elasticsearch = "m3.xlarge.elasticsearch",
903
- m4_10xlarge_elasticsearch = "m4.10xlarge.elasticsearch",
904
- m4_2xlarge_elasticsearch = "m4.2xlarge.elasticsearch",
905
- m4_4xlarge_elasticsearch = "m4.4xlarge.elasticsearch",
906
- m4_large_elasticsearch = "m4.large.elasticsearch",
907
- m4_xlarge_elasticsearch = "m4.xlarge.elasticsearch",
908
- m5_12xlarge_elasticsearch = "m5.12xlarge.elasticsearch",
909
- m5_2xlarge_elasticsearch = "m5.2xlarge.elasticsearch",
910
- m5_4xlarge_elasticsearch = "m5.4xlarge.elasticsearch",
911
- m5_large_elasticsearch = "m5.large.elasticsearch",
912
- m5_xlarge_elasticsearch = "m5.xlarge.elasticsearch",
913
- r3_2xlarge_elasticsearch = "r3.2xlarge.elasticsearch",
914
- r3_4xlarge_elasticsearch = "r3.4xlarge.elasticsearch",
915
- r3_8xlarge_elasticsearch = "r3.8xlarge.elasticsearch",
916
- r3_large_elasticsearch = "r3.large.elasticsearch",
917
- r3_xlarge_elasticsearch = "r3.xlarge.elasticsearch",
918
- r4_16xlarge_elasticsearch = "r4.16xlarge.elasticsearch",
919
- r4_2xlarge_elasticsearch = "r4.2xlarge.elasticsearch",
920
- r4_4xlarge_elasticsearch = "r4.4xlarge.elasticsearch",
921
- r4_8xlarge_elasticsearch = "r4.8xlarge.elasticsearch",
922
- r4_large_elasticsearch = "r4.large.elasticsearch",
923
- r4_xlarge_elasticsearch = "r4.xlarge.elasticsearch",
924
- r5_12xlarge_elasticsearch = "r5.12xlarge.elasticsearch",
925
- r5_2xlarge_elasticsearch = "r5.2xlarge.elasticsearch",
926
- r5_4xlarge_elasticsearch = "r5.4xlarge.elasticsearch",
927
- r5_large_elasticsearch = "r5.large.elasticsearch",
928
- r5_xlarge_elasticsearch = "r5.xlarge.elasticsearch",
929
- t2_medium_elasticsearch = "t2.medium.elasticsearch",
930
- t2_micro_elasticsearch = "t2.micro.elasticsearch",
931
- t2_small_elasticsearch = "t2.small.elasticsearch",
932
- ultrawarm1_large_elasticsearch = "ultrawarm1.large.elasticsearch",
933
- ultrawarm1_medium_elasticsearch = "ultrawarm1.medium.elasticsearch"
934
- }
935
- /**
936
- * @public
937
- */
938
- export declare enum ESWarmPartitionInstanceType {
939
- ultrawarm1_large_elasticsearch = "ultrawarm1.large.elasticsearch",
940
- ultrawarm1_medium_elasticsearch = "ultrawarm1.medium.elasticsearch"
941
- }
924
+ * @enum
925
+ */
926
+ export declare const ESPartitionInstanceType: {
927
+ readonly c4_2xlarge_elasticsearch: "c4.2xlarge.elasticsearch";
928
+ readonly c4_4xlarge_elasticsearch: "c4.4xlarge.elasticsearch";
929
+ readonly c4_8xlarge_elasticsearch: "c4.8xlarge.elasticsearch";
930
+ readonly c4_large_elasticsearch: "c4.large.elasticsearch";
931
+ readonly c4_xlarge_elasticsearch: "c4.xlarge.elasticsearch";
932
+ readonly c5_18xlarge_elasticsearch: "c5.18xlarge.elasticsearch";
933
+ readonly c5_2xlarge_elasticsearch: "c5.2xlarge.elasticsearch";
934
+ readonly c5_4xlarge_elasticsearch: "c5.4xlarge.elasticsearch";
935
+ readonly c5_9xlarge_elasticsearch: "c5.9xlarge.elasticsearch";
936
+ readonly c5_large_elasticsearch: "c5.large.elasticsearch";
937
+ readonly c5_xlarge_elasticsearch: "c5.xlarge.elasticsearch";
938
+ readonly d2_2xlarge_elasticsearch: "d2.2xlarge.elasticsearch";
939
+ readonly d2_4xlarge_elasticsearch: "d2.4xlarge.elasticsearch";
940
+ readonly d2_8xlarge_elasticsearch: "d2.8xlarge.elasticsearch";
941
+ readonly d2_xlarge_elasticsearch: "d2.xlarge.elasticsearch";
942
+ readonly i2_2xlarge_elasticsearch: "i2.2xlarge.elasticsearch";
943
+ readonly i2_xlarge_elasticsearch: "i2.xlarge.elasticsearch";
944
+ readonly i3_16xlarge_elasticsearch: "i3.16xlarge.elasticsearch";
945
+ readonly i3_2xlarge_elasticsearch: "i3.2xlarge.elasticsearch";
946
+ readonly i3_4xlarge_elasticsearch: "i3.4xlarge.elasticsearch";
947
+ readonly i3_8xlarge_elasticsearch: "i3.8xlarge.elasticsearch";
948
+ readonly i3_large_elasticsearch: "i3.large.elasticsearch";
949
+ readonly i3_xlarge_elasticsearch: "i3.xlarge.elasticsearch";
950
+ readonly m3_2xlarge_elasticsearch: "m3.2xlarge.elasticsearch";
951
+ readonly m3_large_elasticsearch: "m3.large.elasticsearch";
952
+ readonly m3_medium_elasticsearch: "m3.medium.elasticsearch";
953
+ readonly m3_xlarge_elasticsearch: "m3.xlarge.elasticsearch";
954
+ readonly m4_10xlarge_elasticsearch: "m4.10xlarge.elasticsearch";
955
+ readonly m4_2xlarge_elasticsearch: "m4.2xlarge.elasticsearch";
956
+ readonly m4_4xlarge_elasticsearch: "m4.4xlarge.elasticsearch";
957
+ readonly m4_large_elasticsearch: "m4.large.elasticsearch";
958
+ readonly m4_xlarge_elasticsearch: "m4.xlarge.elasticsearch";
959
+ readonly m5_12xlarge_elasticsearch: "m5.12xlarge.elasticsearch";
960
+ readonly m5_2xlarge_elasticsearch: "m5.2xlarge.elasticsearch";
961
+ readonly m5_4xlarge_elasticsearch: "m5.4xlarge.elasticsearch";
962
+ readonly m5_large_elasticsearch: "m5.large.elasticsearch";
963
+ readonly m5_xlarge_elasticsearch: "m5.xlarge.elasticsearch";
964
+ readonly r3_2xlarge_elasticsearch: "r3.2xlarge.elasticsearch";
965
+ readonly r3_4xlarge_elasticsearch: "r3.4xlarge.elasticsearch";
966
+ readonly r3_8xlarge_elasticsearch: "r3.8xlarge.elasticsearch";
967
+ readonly r3_large_elasticsearch: "r3.large.elasticsearch";
968
+ readonly r3_xlarge_elasticsearch: "r3.xlarge.elasticsearch";
969
+ readonly r4_16xlarge_elasticsearch: "r4.16xlarge.elasticsearch";
970
+ readonly r4_2xlarge_elasticsearch: "r4.2xlarge.elasticsearch";
971
+ readonly r4_4xlarge_elasticsearch: "r4.4xlarge.elasticsearch";
972
+ readonly r4_8xlarge_elasticsearch: "r4.8xlarge.elasticsearch";
973
+ readonly r4_large_elasticsearch: "r4.large.elasticsearch";
974
+ readonly r4_xlarge_elasticsearch: "r4.xlarge.elasticsearch";
975
+ readonly r5_12xlarge_elasticsearch: "r5.12xlarge.elasticsearch";
976
+ readonly r5_2xlarge_elasticsearch: "r5.2xlarge.elasticsearch";
977
+ readonly r5_4xlarge_elasticsearch: "r5.4xlarge.elasticsearch";
978
+ readonly r5_large_elasticsearch: "r5.large.elasticsearch";
979
+ readonly r5_xlarge_elasticsearch: "r5.xlarge.elasticsearch";
980
+ readonly t2_medium_elasticsearch: "t2.medium.elasticsearch";
981
+ readonly t2_micro_elasticsearch: "t2.micro.elasticsearch";
982
+ readonly t2_small_elasticsearch: "t2.small.elasticsearch";
983
+ readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
984
+ readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
985
+ };
986
+ /**
987
+ * @public
988
+ */
989
+ export type ESPartitionInstanceType = (typeof ESPartitionInstanceType)[keyof typeof ESPartitionInstanceType];
990
+ /**
991
+ * @public
992
+ * @enum
993
+ */
994
+ export declare const ESWarmPartitionInstanceType: {
995
+ readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
996
+ readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
997
+ };
998
+ /**
999
+ * @public
1000
+ */
1001
+ export type ESWarmPartitionInstanceType = (typeof ESWarmPartitionInstanceType)[keyof typeof ESWarmPartitionInstanceType];
942
1002
  /**
943
1003
  * @public
944
1004
  * <p>Specifies the zone awareness configuration for the domain cluster, such as the number of availability zones.</p>
@@ -1015,13 +1075,18 @@ export interface EncryptionAtRestOptions {
1015
1075
  }
1016
1076
  /**
1017
1077
  * @public
1078
+ * @enum
1018
1079
  */
1019
- export declare enum LogType {
1020
- AUDIT_LOGS = "AUDIT_LOGS",
1021
- ES_APPLICATION_LOGS = "ES_APPLICATION_LOGS",
1022
- INDEX_SLOW_LOGS = "INDEX_SLOW_LOGS",
1023
- SEARCH_SLOW_LOGS = "SEARCH_SLOW_LOGS"
1024
- }
1080
+ export declare const LogType: {
1081
+ readonly AUDIT_LOGS: "AUDIT_LOGS";
1082
+ readonly ES_APPLICATION_LOGS: "ES_APPLICATION_LOGS";
1083
+ readonly INDEX_SLOW_LOGS: "INDEX_SLOW_LOGS";
1084
+ readonly SEARCH_SLOW_LOGS: "SEARCH_SLOW_LOGS";
1085
+ };
1086
+ /**
1087
+ * @public
1088
+ */
1089
+ export type LogType = (typeof LogType)[keyof typeof LogType];
1025
1090
  /**
1026
1091
  * @public
1027
1092
  * <p>Log Publishing option that is set for given domain.
@@ -1149,18 +1214,23 @@ export interface CreateElasticsearchDomainRequest {
1149
1214
  }
1150
1215
  /**
1151
1216
  * @public
1217
+ * @enum
1152
1218
  */
1153
- export declare enum AutoTuneState {
1154
- DISABLED = "DISABLED",
1155
- DISABLED_AND_ROLLBACK_COMPLETE = "DISABLED_AND_ROLLBACK_COMPLETE",
1156
- DISABLED_AND_ROLLBACK_ERROR = "DISABLED_AND_ROLLBACK_ERROR",
1157
- DISABLED_AND_ROLLBACK_IN_PROGRESS = "DISABLED_AND_ROLLBACK_IN_PROGRESS",
1158
- DISABLED_AND_ROLLBACK_SCHEDULED = "DISABLED_AND_ROLLBACK_SCHEDULED",
1159
- DISABLE_IN_PROGRESS = "DISABLE_IN_PROGRESS",
1160
- ENABLED = "ENABLED",
1161
- ENABLE_IN_PROGRESS = "ENABLE_IN_PROGRESS",
1162
- ERROR = "ERROR"
1163
- }
1219
+ export declare const AutoTuneState: {
1220
+ readonly DISABLED: "DISABLED";
1221
+ readonly DISABLED_AND_ROLLBACK_COMPLETE: "DISABLED_AND_ROLLBACK_COMPLETE";
1222
+ readonly DISABLED_AND_ROLLBACK_ERROR: "DISABLED_AND_ROLLBACK_ERROR";
1223
+ readonly DISABLED_AND_ROLLBACK_IN_PROGRESS: "DISABLED_AND_ROLLBACK_IN_PROGRESS";
1224
+ readonly DISABLED_AND_ROLLBACK_SCHEDULED: "DISABLED_AND_ROLLBACK_SCHEDULED";
1225
+ readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
1226
+ readonly ENABLED: "ENABLED";
1227
+ readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
1228
+ readonly ERROR: "ERROR";
1229
+ };
1230
+ /**
1231
+ * @public
1232
+ */
1233
+ export type AutoTuneState = (typeof AutoTuneState)[keyof typeof AutoTuneState];
1164
1234
  /**
1165
1235
  * @public
1166
1236
  * <p>Specifies the Auto-Tune options: the Auto-Tune desired state for the domain and list of maintenance schedules.</p>
@@ -1368,17 +1438,22 @@ export interface CreateOutboundCrossClusterSearchConnectionRequest {
1368
1438
  }
1369
1439
  /**
1370
1440
  * @public
1441
+ * @enum
1371
1442
  */
1372
- export declare enum OutboundCrossClusterSearchConnectionStatusCode {
1373
- ACTIVE = "ACTIVE",
1374
- DELETED = "DELETED",
1375
- DELETING = "DELETING",
1376
- PENDING_ACCEPTANCE = "PENDING_ACCEPTANCE",
1377
- PROVISIONING = "PROVISIONING",
1378
- REJECTED = "REJECTED",
1379
- VALIDATING = "VALIDATING",
1380
- VALIDATION_FAILED = "VALIDATION_FAILED"
1381
- }
1443
+ export declare const OutboundCrossClusterSearchConnectionStatusCode: {
1444
+ readonly ACTIVE: "ACTIVE";
1445
+ readonly DELETED: "DELETED";
1446
+ readonly DELETING: "DELETING";
1447
+ readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
1448
+ readonly PROVISIONING: "PROVISIONING";
1449
+ readonly REJECTED: "REJECTED";
1450
+ readonly VALIDATING: "VALIDATING";
1451
+ readonly VALIDATION_FAILED: "VALIDATION_FAILED";
1452
+ };
1453
+ /**
1454
+ * @public
1455
+ */
1456
+ export type OutboundCrossClusterSearchConnectionStatusCode = (typeof OutboundCrossClusterSearchConnectionStatusCode)[keyof typeof OutboundCrossClusterSearchConnectionStatusCode];
1382
1457
  /**
1383
1458
  * @public
1384
1459
  * <p>Specifies the connection status of an outbound cross-cluster search connection.</p>
@@ -1473,17 +1548,22 @@ export interface CreatePackageRequest {
1473
1548
  }
1474
1549
  /**
1475
1550
  * @public
1551
+ * @enum
1476
1552
  */
1477
- export declare enum PackageStatus {
1478
- AVAILABLE = "AVAILABLE",
1479
- COPYING = "COPYING",
1480
- COPY_FAILED = "COPY_FAILED",
1481
- DELETED = "DELETED",
1482
- DELETE_FAILED = "DELETE_FAILED",
1483
- DELETING = "DELETING",
1484
- VALIDATING = "VALIDATING",
1485
- VALIDATION_FAILED = "VALIDATION_FAILED"
1486
- }
1553
+ export declare const PackageStatus: {
1554
+ readonly AVAILABLE: "AVAILABLE";
1555
+ readonly COPYING: "COPYING";
1556
+ readonly COPY_FAILED: "COPY_FAILED";
1557
+ readonly DELETED: "DELETED";
1558
+ readonly DELETE_FAILED: "DELETE_FAILED";
1559
+ readonly DELETING: "DELETING";
1560
+ readonly VALIDATING: "VALIDATING";
1561
+ readonly VALIDATION_FAILED: "VALIDATION_FAILED";
1562
+ };
1563
+ /**
1564
+ * @public
1565
+ */
1566
+ export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];
1487
1567
  /**
1488
1568
  * @public
1489
1569
  * <p>Basic information about a package.</p>
@@ -1556,16 +1636,21 @@ export interface CreateVpcEndpointRequest {
1556
1636
  }
1557
1637
  /**
1558
1638
  * @public
1639
+ * @enum
1559
1640
  */
1560
- export declare enum VpcEndpointStatus {
1561
- ACTIVE = "ACTIVE",
1562
- CREATE_FAILED = "CREATE_FAILED",
1563
- CREATING = "CREATING",
1564
- DELETE_FAILED = "DELETE_FAILED",
1565
- DELETING = "DELETING",
1566
- UPDATE_FAILED = "UPDATE_FAILED",
1567
- UPDATING = "UPDATING"
1568
- }
1641
+ export declare const VpcEndpointStatus: {
1642
+ readonly ACTIVE: "ACTIVE";
1643
+ readonly CREATE_FAILED: "CREATE_FAILED";
1644
+ readonly CREATING: "CREATING";
1645
+ readonly DELETE_FAILED: "DELETE_FAILED";
1646
+ readonly DELETING: "DELETING";
1647
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
1648
+ readonly UPDATING: "UPDATING";
1649
+ };
1650
+ /**
1651
+ * @public
1652
+ */
1653
+ export type VpcEndpointStatus = (typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
1569
1654
  /**
1570
1655
  * @public
1571
1656
  * <p>The connection endpoint for connecting to an Amazon OpenSearch Service domain through a
@@ -1789,19 +1874,29 @@ export interface DescribeDomainAutoTunesRequest {
1789
1874
  }
1790
1875
  /**
1791
1876
  * @public
1877
+ * @enum
1792
1878
  */
1793
- export declare enum ScheduledAutoTuneActionType {
1794
- JVM_HEAP_SIZE_TUNING = "JVM_HEAP_SIZE_TUNING",
1795
- JVM_YOUNG_GEN_TUNING = "JVM_YOUNG_GEN_TUNING"
1796
- }
1879
+ export declare const ScheduledAutoTuneActionType: {
1880
+ readonly JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING";
1881
+ readonly JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING";
1882
+ };
1797
1883
  /**
1798
1884
  * @public
1799
1885
  */
1800
- export declare enum ScheduledAutoTuneSeverityType {
1801
- HIGH = "HIGH",
1802
- LOW = "LOW",
1803
- MEDIUM = "MEDIUM"
1804
- }
1886
+ export type ScheduledAutoTuneActionType = (typeof ScheduledAutoTuneActionType)[keyof typeof ScheduledAutoTuneActionType];
1887
+ /**
1888
+ * @public
1889
+ * @enum
1890
+ */
1891
+ export declare const ScheduledAutoTuneSeverityType: {
1892
+ readonly HIGH: "HIGH";
1893
+ readonly LOW: "LOW";
1894
+ readonly MEDIUM: "MEDIUM";
1895
+ };
1896
+ /**
1897
+ * @public
1898
+ */
1899
+ export type ScheduledAutoTuneSeverityType = (typeof ScheduledAutoTuneSeverityType)[keyof typeof ScheduledAutoTuneSeverityType];
1805
1900
  /**
1806
1901
  * @public
1807
1902
  * <p>Specifies details of the scheduled Auto-Tune action. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information. </p>
@@ -1836,10 +1931,15 @@ export interface AutoTuneDetails {
1836
1931
  }
1837
1932
  /**
1838
1933
  * @public
1934
+ * @enum
1839
1935
  */
1840
- export declare enum AutoTuneType {
1841
- SCHEDULED_ACTION = "SCHEDULED_ACTION"
1842
- }
1936
+ export declare const AutoTuneType: {
1937
+ readonly SCHEDULED_ACTION: "SCHEDULED_ACTION";
1938
+ };
1939
+ /**
1940
+ * @public
1941
+ */
1942
+ export type AutoTuneType = (typeof AutoTuneType)[keyof typeof AutoTuneType];
1843
1943
  /**
1844
1944
  * @public
1845
1945
  * <p>Specifies Auto-Tune type and Auto-Tune action details. </p>
@@ -1910,13 +2010,18 @@ export interface ChangeProgressStage {
1910
2010
  }
1911
2011
  /**
1912
2012
  * @public
2013
+ * @enum
1913
2014
  */
1914
- export declare enum OverallChangeStatus {
1915
- COMPLETED = "COMPLETED",
1916
- FAILED = "FAILED",
1917
- PENDING = "PENDING",
1918
- PROCESSING = "PROCESSING"
1919
- }
2015
+ export declare const OverallChangeStatus: {
2016
+ readonly COMPLETED: "COMPLETED";
2017
+ readonly FAILED: "FAILED";
2018
+ readonly PENDING: "PENDING";
2019
+ readonly PROCESSING: "PROCESSING";
2020
+ };
2021
+ /**
2022
+ * @public
2023
+ */
2024
+ export type OverallChangeStatus = (typeof OverallChangeStatus)[keyof typeof OverallChangeStatus];
1920
2025
  /**
1921
2026
  * @public
1922
2027
  * <p>The progress details of a specific domain configuration change.</p>
@@ -1996,11 +2101,16 @@ export interface DescribeElasticsearchDomainConfigRequest {
1996
2101
  }
1997
2102
  /**
1998
2103
  * @public
2104
+ * @enum
1999
2105
  */
2000
- export declare enum RollbackOnDisable {
2001
- DEFAULT_ROLLBACK = "DEFAULT_ROLLBACK",
2002
- NO_ROLLBACK = "NO_ROLLBACK"
2003
- }
2106
+ export declare const RollbackOnDisable: {
2107
+ readonly DEFAULT_ROLLBACK: "DEFAULT_ROLLBACK";
2108
+ readonly NO_ROLLBACK: "NO_ROLLBACK";
2109
+ };
2110
+ /**
2111
+ * @public
2112
+ */
2113
+ export type RollbackOnDisable = (typeof RollbackOnDisable)[keyof typeof RollbackOnDisable];
2004
2114
  /**
2005
2115
  * @public
2006
2116
  * <p>Specifies the Auto-Tune options: the Auto-Tune desired state for the domain, rollback state when disabling Auto-Tune options and list of maintenance schedules.</p>
@@ -2649,12 +2759,17 @@ export interface DescribeOutboundCrossClusterSearchConnectionsResponse {
2649
2759
  }
2650
2760
  /**
2651
2761
  * @public
2762
+ * @enum
2652
2763
  */
2653
- export declare enum DescribePackagesFilterName {
2654
- PackageID = "PackageID",
2655
- PackageName = "PackageName",
2656
- PackageStatus = "PackageStatus"
2657
- }
2764
+ export declare const DescribePackagesFilterName: {
2765
+ readonly PackageID: "PackageID";
2766
+ readonly PackageName: "PackageName";
2767
+ readonly PackageStatus: "PackageStatus";
2768
+ };
2769
+ /**
2770
+ * @public
2771
+ */
2772
+ export type DescribePackagesFilterName = (typeof DescribePackagesFilterName)[keyof typeof DescribePackagesFilterName];
2658
2773
  /**
2659
2774
  * @public
2660
2775
  * <p>Filter to apply in <code>DescribePackage</code> response.</p>
@@ -2731,12 +2846,17 @@ export interface DescribeReservedElasticsearchInstanceOfferingsRequest {
2731
2846
  }
2732
2847
  /**
2733
2848
  * @public
2849
+ * @enum
2734
2850
  */
2735
- export declare enum ReservedElasticsearchInstancePaymentOption {
2736
- ALL_UPFRONT = "ALL_UPFRONT",
2737
- NO_UPFRONT = "NO_UPFRONT",
2738
- PARTIAL_UPFRONT = "PARTIAL_UPFRONT"
2739
- }
2851
+ export declare const ReservedElasticsearchInstancePaymentOption: {
2852
+ readonly ALL_UPFRONT: "ALL_UPFRONT";
2853
+ readonly NO_UPFRONT: "NO_UPFRONT";
2854
+ readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
2855
+ };
2856
+ /**
2857
+ * @public
2858
+ */
2859
+ export type ReservedElasticsearchInstancePaymentOption = (typeof ReservedElasticsearchInstancePaymentOption)[keyof typeof ReservedElasticsearchInstancePaymentOption];
2740
2860
  /**
2741
2861
  * @public
2742
2862
  * <p>Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.</p>
@@ -2906,11 +3026,16 @@ export interface DescribeVpcEndpointsRequest {
2906
3026
  }
2907
3027
  /**
2908
3028
  * @public
3029
+ * @enum
2909
3030
  */
2910
- export declare enum VpcEndpointErrorCode {
2911
- ENDPOINT_NOT_FOUND = "ENDPOINT_NOT_FOUND",
2912
- SERVER_ERROR = "SERVER_ERROR"
2913
- }
3031
+ export declare const VpcEndpointErrorCode: {
3032
+ readonly ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND";
3033
+ readonly SERVER_ERROR: "SERVER_ERROR";
3034
+ };
3035
+ /**
3036
+ * @public
3037
+ */
3038
+ export type VpcEndpointErrorCode = (typeof VpcEndpointErrorCode)[keyof typeof VpcEndpointErrorCode];
2914
3039
  /**
2915
3040
  * @public
2916
3041
  * <p>Error information when attempting to describe an Amazon OpenSearch Service-managed VPC
@@ -3135,21 +3260,31 @@ export interface GetUpgradeHistoryRequest {
3135
3260
  }
3136
3261
  /**
3137
3262
  * @public
3263
+ * @enum
3138
3264
  */
3139
- export declare enum UpgradeStep {
3140
- PRE_UPGRADE_CHECK = "PRE_UPGRADE_CHECK",
3141
- SNAPSHOT = "SNAPSHOT",
3142
- UPGRADE = "UPGRADE"
3143
- }
3265
+ export declare const UpgradeStep: {
3266
+ readonly PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK";
3267
+ readonly SNAPSHOT: "SNAPSHOT";
3268
+ readonly UPGRADE: "UPGRADE";
3269
+ };
3144
3270
  /**
3145
3271
  * @public
3146
3272
  */
3147
- export declare enum UpgradeStatus {
3148
- FAILED = "FAILED",
3149
- IN_PROGRESS = "IN_PROGRESS",
3150
- SUCCEEDED = "SUCCEEDED",
3151
- SUCCEEDED_WITH_ISSUES = "SUCCEEDED_WITH_ISSUES"
3152
- }
3273
+ export type UpgradeStep = (typeof UpgradeStep)[keyof typeof UpgradeStep];
3274
+ /**
3275
+ * @public
3276
+ * @enum
3277
+ */
3278
+ export declare const UpgradeStatus: {
3279
+ readonly FAILED: "FAILED";
3280
+ readonly IN_PROGRESS: "IN_PROGRESS";
3281
+ readonly SUCCEEDED: "SUCCEEDED";
3282
+ readonly SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES";
3283
+ };
3284
+ /**
3285
+ * @public
3286
+ */
3287
+ export type UpgradeStatus = (typeof UpgradeStatus)[keyof typeof UpgradeStatus];
3153
3288
  /**
3154
3289
  * @public
3155
3290
  * <p>Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.</p>
@@ -3314,11 +3449,16 @@ export interface GetUpgradeStatusResponse {
3314
3449
  }
3315
3450
  /**
3316
3451
  * @public
3452
+ * @enum
3317
3453
  */
3318
- export declare enum EngineType {
3319
- Elasticsearch = "Elasticsearch",
3320
- OpenSearch = "OpenSearch"
3321
- }
3454
+ export declare const EngineType: {
3455
+ readonly Elasticsearch: "Elasticsearch";
3456
+ readonly OpenSearch: "OpenSearch";
3457
+ };
3458
+ /**
3459
+ * @public
3460
+ */
3461
+ export type EngineType = (typeof EngineType)[keyof typeof EngineType];
3322
3462
  /**
3323
3463
  * @public
3324
3464
  * <p> Container for the parameters to the <code><a>ListDomainNames</a></code> operation.</p>