@aws-sdk/client-opensearch 3.687.0 → 3.691.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 (50) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +186 -3
  3. package/dist-es/OpenSearch.js +6 -0
  4. package/dist-es/commands/AssociatePackagesCommand.js +22 -0
  5. package/dist-es/commands/DissociatePackagesCommand.js +22 -0
  6. package/dist-es/commands/UpdatePackageScopeCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +8 -0
  9. package/dist-es/models/models_1.js +5 -0
  10. package/dist-es/protocols/Aws_restJson1.js +108 -1
  11. package/dist-types/OpenSearch.d.ts +21 -0
  12. package/dist-types/OpenSearchClient.d.ts +5 -2
  13. package/dist-types/commands/AssociatePackageCommand.d.ts +19 -1
  14. package/dist-types/commands/AssociatePackagesCommand.d.ts +127 -0
  15. package/dist-types/commands/CreatePackageCommand.d.ts +33 -2
  16. package/dist-types/commands/DeletePackageCommand.d.ts +18 -1
  17. package/dist-types/commands/DescribePackagesCommand.d.ts +19 -2
  18. package/dist-types/commands/DissociatePackageCommand.d.ts +10 -1
  19. package/dist-types/commands/DissociatePackagesCommand.d.ts +116 -0
  20. package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +6 -0
  21. package/dist-types/commands/ListDomainsForPackageCommand.d.ts +10 -1
  22. package/dist-types/commands/ListPackagesForDomainCommand.d.ts +10 -1
  23. package/dist-types/commands/ListVersionsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
  25. package/dist-types/commands/ListVpcEndpointsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
  27. package/dist-types/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
  28. package/dist-types/commands/RejectInboundConnectionCommand.d.ts +1 -2
  29. package/dist-types/commands/UpdatePackageCommand.d.ts +28 -1
  30. package/dist-types/commands/UpdatePackageScopeCommand.d.ts +94 -0
  31. package/dist-types/commands/index.d.ts +3 -0
  32. package/dist-types/models/models_0.d.ts +834 -778
  33. package/dist-types/models/models_1.d.ts +307 -58
  34. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  35. package/dist-types/ts3.4/OpenSearch.d.ts +51 -0
  36. package/dist-types/ts3.4/OpenSearchClient.d.ts +18 -0
  37. package/dist-types/ts3.4/commands/AssociatePackagesCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/DissociatePackagesCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListVpcEndpointAccessCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/ListVpcEndpointsForDomainCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/PurchaseReservedInstanceOfferingCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/RejectInboundConnectionCommand.d.ts +4 -2
  45. package/dist-types/ts3.4/commands/UpdatePackageScopeCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +663 -635
  48. package/dist-types/ts3.4/models/models_1.d.ts +125 -57
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  50. package/package.json +7 -7
@@ -91,12 +91,12 @@ export interface InboundConnectionStatus {
91
91
  * </ul>
92
92
  * @public
93
93
  */
94
- StatusCode?: InboundConnectionStatusCode;
94
+ StatusCode?: InboundConnectionStatusCode | undefined;
95
95
  /**
96
96
  * <p>Information about the connection.</p>
97
97
  * @public
98
98
  */
99
- Message?: string;
99
+ Message?: string | undefined;
100
100
  }
101
101
  /**
102
102
  * <p>Information about an Amazon OpenSearch Service domain.</p>
@@ -107,7 +107,7 @@ export interface AWSDomainInformation {
107
107
  * <p>The Amazon Web Services account ID of the domain owner.</p>
108
108
  * @public
109
109
  */
110
- OwnerId?: string;
110
+ OwnerId?: string | undefined;
111
111
  /**
112
112
  * <p>Name of the domain.</p>
113
113
  * @public
@@ -117,7 +117,7 @@ export interface AWSDomainInformation {
117
117
  * <p>The Amazon Web Services Region in which the domain is located.</p>
118
118
  * @public
119
119
  */
120
- Region?: string;
120
+ Region?: string | undefined;
121
121
  }
122
122
  /**
123
123
  * <p>Container for information about an OpenSearch Service domain.</p>
@@ -128,7 +128,7 @@ export interface DomainInformationContainer {
128
128
  * <p>Information about an Amazon OpenSearch Service domain.</p>
129
129
  * @public
130
130
  */
131
- AWSDomainInformation?: AWSDomainInformation;
131
+ AWSDomainInformation?: AWSDomainInformation | undefined;
132
132
  }
133
133
  /**
134
134
  * <p>Describes an inbound cross-cluster connection for Amazon OpenSearch Service. For more
@@ -141,27 +141,27 @@ export interface InboundConnection {
141
141
  * <p>Information about the source (local) domain.</p>
142
142
  * @public
143
143
  */
144
- LocalDomainInfo?: DomainInformationContainer;
144
+ LocalDomainInfo?: DomainInformationContainer | undefined;
145
145
  /**
146
146
  * <p>Information about the destination (remote) domain.</p>
147
147
  * @public
148
148
  */
149
- RemoteDomainInfo?: DomainInformationContainer;
149
+ RemoteDomainInfo?: DomainInformationContainer | undefined;
150
150
  /**
151
151
  * <p>The unique identifier of the connection.</p>
152
152
  * @public
153
153
  */
154
- ConnectionId?: string;
154
+ ConnectionId?: string | undefined;
155
155
  /**
156
156
  * <p>The current status of the connection.</p>
157
157
  * @public
158
158
  */
159
- ConnectionStatus?: InboundConnectionStatus;
159
+ ConnectionStatus?: InboundConnectionStatus | undefined;
160
160
  /**
161
161
  * <p>The connection mode.</p>
162
162
  * @public
163
163
  */
164
- ConnectionMode?: ConnectionMode;
164
+ ConnectionMode?: ConnectionMode | undefined;
165
165
  }
166
166
  /**
167
167
  * <p>Contains details about the accepted inbound connection.</p>
@@ -172,7 +172,7 @@ export interface AcceptInboundConnectionResponse {
172
172
  * <p>Information about the accepted inbound connection.</p>
173
173
  * @public
174
174
  */
175
- Connection?: InboundConnection;
175
+ Connection?: InboundConnection | undefined;
176
176
  }
177
177
  /**
178
178
  * <p>An error occured because the client wanted to access an unsupported operation.</p>
@@ -254,7 +254,7 @@ export interface OptionStatus {
254
254
  * <p>The latest version of the entity.</p>
255
255
  * @public
256
256
  */
257
- UpdateVersion?: number;
257
+ UpdateVersion?: number | undefined;
258
258
  /**
259
259
  * <p>The state of the entity.</p>
260
260
  * @public
@@ -264,7 +264,7 @@ export interface OptionStatus {
264
264
  * <p>Indicates whether the entity is being deleted.</p>
265
265
  * @public
266
266
  */
267
- PendingDeletion?: boolean;
267
+ PendingDeletion?: boolean | undefined;
268
268
  }
269
269
  /**
270
270
  * <p>The configured access rules for the domain's search endpoint, and the current status of
@@ -335,7 +335,7 @@ export interface S3GlueDataCatalog {
335
335
  * <p>>The Amazon Resource Name (ARN) for the S3 Glue Data Catalog.</p>
336
336
  * @public
337
337
  */
338
- RoleArn?: string;
338
+ RoleArn?: string | undefined;
339
339
  }
340
340
  /**
341
341
  * <p>The type of data source.</p>
@@ -392,7 +392,7 @@ export interface AddDataSourceRequest {
392
392
  * <p>A description of the data source.</p>
393
393
  * @public
394
394
  */
395
- Description?: string;
395
+ Description?: string | undefined;
396
396
  }
397
397
  /**
398
398
  * <p>The result of an <code>AddDataSource</code> operation.</p>
@@ -403,7 +403,7 @@ export interface AddDataSourceResponse {
403
403
  * <p>A message associated with creation of the data source.</p>
404
404
  * @public
405
405
  */
406
- Message?: string;
406
+ Message?: string | undefined;
407
407
  }
408
408
  /**
409
409
  * <p>An error occurred while processing the request.</p>
@@ -475,12 +475,12 @@ export interface AdditionalLimit {
475
475
  * </ul>
476
476
  * @public
477
477
  */
478
- LimitName?: string;
478
+ LimitName?: string | undefined;
479
479
  /**
480
480
  * <p> The values of the additional instance type limits.</p>
481
481
  * @public
482
482
  */
483
- LimitValues?: string[];
483
+ LimitValues?: string[] | undefined;
484
484
  }
485
485
  /**
486
486
  * <p>A tag (key-value pair) for an Amazon OpenSearch Service resource.</p>
@@ -576,22 +576,22 @@ export interface JWTOptionsOutput {
576
576
  * <p>True if JWT use is enabled.</p>
577
577
  * @public
578
578
  */
579
- Enabled?: boolean;
579
+ Enabled?: boolean | undefined;
580
580
  /**
581
581
  * <p>The key used for matching the JWT subject attribute.</p>
582
582
  * @public
583
583
  */
584
- SubjectKey?: string;
584
+ SubjectKey?: string | undefined;
585
585
  /**
586
586
  * <p>The key used for matching the JWT roles attribute.</p>
587
587
  * @public
588
588
  */
589
- RolesKey?: string;
589
+ RolesKey?: string | undefined;
590
590
  /**
591
591
  * <p>The key used to verify the signature of incoming JWT requests.</p>
592
592
  * @public
593
593
  */
594
- PublicKey?: string;
594
+ PublicKey?: string | undefined;
595
595
  }
596
596
  /**
597
597
  * <p>The SAML identity povider information.</p>
@@ -618,27 +618,27 @@ export interface SAMLOptionsOutput {
618
618
  * <p>True if SAML is enabled.</p>
619
619
  * @public
620
620
  */
621
- Enabled?: boolean;
621
+ Enabled?: boolean | undefined;
622
622
  /**
623
623
  * <p>Describes the SAML identity provider's information.</p>
624
624
  * @public
625
625
  */
626
- Idp?: SAMLIdp;
626
+ Idp?: SAMLIdp | undefined;
627
627
  /**
628
628
  * <p>The key used for matching the SAML subject attribute.</p>
629
629
  * @public
630
630
  */
631
- SubjectKey?: string;
631
+ SubjectKey?: string | undefined;
632
632
  /**
633
633
  * <p>The key used for matching the SAML roles attribute.</p>
634
634
  * @public
635
635
  */
636
- RolesKey?: string;
636
+ RolesKey?: string | undefined;
637
637
  /**
638
638
  * <p>The duration, in minutes, after which a user session becomes inactive.</p>
639
639
  * @public
640
640
  */
641
- SessionTimeoutMinutes?: number;
641
+ SessionTimeoutMinutes?: number | undefined;
642
642
  }
643
643
  /**
644
644
  * <p>Container for fine-grained access control settings.</p>
@@ -649,35 +649,35 @@ export interface AdvancedSecurityOptions {
649
649
  * <p>True if fine-grained access control is enabled.</p>
650
650
  * @public
651
651
  */
652
- Enabled?: boolean;
652
+ Enabled?: boolean | undefined;
653
653
  /**
654
654
  * <p>True if the internal user database is enabled.</p>
655
655
  * @public
656
656
  */
657
- InternalUserDatabaseEnabled?: boolean;
657
+ InternalUserDatabaseEnabled?: boolean | undefined;
658
658
  /**
659
659
  * <p>Container for information about the SAML configuration for OpenSearch Dashboards.</p>
660
660
  * @public
661
661
  */
662
- SAMLOptions?: SAMLOptionsOutput;
662
+ SAMLOptions?: SAMLOptionsOutput | undefined;
663
663
  /**
664
664
  * <p>Container for information about the JWT configuration of the Amazon OpenSearch Service.</p>
665
665
  * @public
666
666
  */
667
- JWTOptions?: JWTOptionsOutput;
667
+ JWTOptions?: JWTOptionsOutput | undefined;
668
668
  /**
669
669
  * <p>Date and time when the migration period will be disabled. Only necessary when <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing">enabling
670
670
  * fine-grained access control on an existing domain</a>.</p>
671
671
  * @public
672
672
  */
673
- AnonymousAuthDisableDate?: Date;
673
+ AnonymousAuthDisableDate?: Date | undefined;
674
674
  /**
675
675
  * <p>True if a 30-day migration period is enabled, during which administrators can create role
676
676
  * mappings. Only necessary when <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing">enabling
677
677
  * fine-grained access control on an existing domain</a>.</p>
678
678
  * @public
679
679
  */
680
- AnonymousAuthEnabled?: boolean;
680
+ AnonymousAuthEnabled?: boolean | undefined;
681
681
  }
682
682
  /**
683
683
  * <p>The JWT authentication and authorization configuration for an Amazon OpenSearch Service domain.</p>
@@ -688,22 +688,22 @@ export interface JWTOptionsInput {
688
688
  * <p>True to enable JWT authentication and authorization for a domain.</p>
689
689
  * @public
690
690
  */
691
- Enabled?: boolean;
691
+ Enabled?: boolean | undefined;
692
692
  /**
693
693
  * <p>Element of the JWT assertion to use for the user name.</p>
694
694
  * @public
695
695
  */
696
- SubjectKey?: string;
696
+ SubjectKey?: string | undefined;
697
697
  /**
698
698
  * <p>Element of the JWT assertion to use for roles.</p>
699
699
  * @public
700
700
  */
701
- RolesKey?: string;
701
+ RolesKey?: string | undefined;
702
702
  /**
703
703
  * <p>Element of the JWT assertion used by the cluster to verify JWT signatures.</p>
704
704
  * @public
705
705
  */
706
- PublicKey?: string;
706
+ PublicKey?: string | undefined;
707
707
  }
708
708
  /**
709
709
  * <p>Credentials for the master user for a domain.</p>
@@ -715,19 +715,19 @@ export interface MasterUserOptions {
715
715
  * <code>InternalUserDatabaseEnabled</code> is <code>false</code>.</p>
716
716
  * @public
717
717
  */
718
- MasterUserARN?: string;
718
+ MasterUserARN?: string | undefined;
719
719
  /**
720
720
  * <p>User name for the master user. Only specify if <code>InternalUserDatabaseEnabled</code> is
721
721
  * <code>true</code>.</p>
722
722
  * @public
723
723
  */
724
- MasterUserName?: string;
724
+ MasterUserName?: string | undefined;
725
725
  /**
726
726
  * <p>Password for the master user. Only specify if <code>InternalUserDatabaseEnabled</code> is
727
727
  * <code>true</code>.</p>
728
728
  * @public
729
729
  */
730
- MasterUserPassword?: string;
730
+ MasterUserPassword?: string | undefined;
731
731
  }
732
732
  /**
733
733
  * <p>The SAML authentication configuration for an Amazon OpenSearch Service domain.</p>
@@ -738,40 +738,40 @@ export interface SAMLOptionsInput {
738
738
  * <p>True to enable SAML authentication for a domain.</p>
739
739
  * @public
740
740
  */
741
- Enabled?: boolean;
741
+ Enabled?: boolean | undefined;
742
742
  /**
743
743
  * <p>The SAML Identity Provider's information.</p>
744
744
  * @public
745
745
  */
746
- Idp?: SAMLIdp;
746
+ Idp?: SAMLIdp | undefined;
747
747
  /**
748
748
  * <p>The SAML master user name, which is stored in the domain's internal user database.</p>
749
749
  * @public
750
750
  */
751
- MasterUserName?: string;
751
+ MasterUserName?: string | undefined;
752
752
  /**
753
753
  * <p>The backend role that the SAML master user is mapped to.</p>
754
754
  * @public
755
755
  */
756
- MasterBackendRole?: string;
756
+ MasterBackendRole?: string | undefined;
757
757
  /**
758
758
  * <p>Element of the SAML assertion to use for the user name. Default is
759
759
  * <code>NameID</code>.</p>
760
760
  * @public
761
761
  */
762
- SubjectKey?: string;
762
+ SubjectKey?: string | undefined;
763
763
  /**
764
764
  * <p>Element of the SAML assertion to use for backend roles. Default is
765
765
  * <code>roles</code>.</p>
766
766
  * @public
767
767
  */
768
- RolesKey?: string;
768
+ RolesKey?: string | undefined;
769
769
  /**
770
770
  * <p>The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440,
771
771
  * and the default value is 60.</p>
772
772
  * @public
773
773
  */
774
- SessionTimeoutMinutes?: number;
774
+ SessionTimeoutMinutes?: number | undefined;
775
775
  }
776
776
  /**
777
777
  * <p>Options for enabling and configuring fine-grained access control. For more information, see
@@ -783,34 +783,34 @@ export interface AdvancedSecurityOptionsInput {
783
783
  * <p>True to enable fine-grained access control.</p>
784
784
  * @public
785
785
  */
786
- Enabled?: boolean;
786
+ Enabled?: boolean | undefined;
787
787
  /**
788
788
  * <p>True to enable the internal user database.</p>
789
789
  * @public
790
790
  */
791
- InternalUserDatabaseEnabled?: boolean;
791
+ InternalUserDatabaseEnabled?: boolean | undefined;
792
792
  /**
793
793
  * <p>Container for information about the master user.</p>
794
794
  * @public
795
795
  */
796
- MasterUserOptions?: MasterUserOptions;
796
+ MasterUserOptions?: MasterUserOptions | undefined;
797
797
  /**
798
798
  * <p>Container for information about the SAML configuration for OpenSearch Dashboards.</p>
799
799
  * @public
800
800
  */
801
- SAMLOptions?: SAMLOptionsInput;
801
+ SAMLOptions?: SAMLOptionsInput | undefined;
802
802
  /**
803
803
  * <p>Container for information about the JWT configuration of the Amazon OpenSearch Service. </p>
804
804
  * @public
805
805
  */
806
- JWTOptions?: JWTOptionsInput;
806
+ JWTOptions?: JWTOptionsInput | undefined;
807
807
  /**
808
808
  * <p>True to enable a 30-day migration period during which administrators can create role
809
809
  * mappings. Only necessary when <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html#fgac-enabling-existing">enabling
810
810
  * fine-grained access control on an existing domain</a>.</p>
811
811
  * @public
812
812
  */
813
- AnonymousAuthEnabled?: boolean;
813
+ AnonymousAuthEnabled?: boolean | undefined;
814
814
  }
815
815
  /**
816
816
  * <p>The status of fine-grained access control settings for a domain.</p>
@@ -849,7 +849,7 @@ export interface NaturalLanguageQueryGenerationOptionsInput {
849
849
  * <p>The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.</p>
850
850
  * @public
851
851
  */
852
- DesiredState?: NaturalLanguageQueryGenerationDesiredState;
852
+ DesiredState?: NaturalLanguageQueryGenerationDesiredState | undefined;
853
853
  }
854
854
  /**
855
855
  * <p>Container for parameters required to enable all machine learning features.</p>
@@ -860,7 +860,7 @@ export interface AIMLOptionsInput {
860
860
  * <p>Container for parameters required for natural language query generation on the specified domain.</p>
861
861
  * @public
862
862
  */
863
- NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsInput;
863
+ NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsInput | undefined;
864
864
  }
865
865
  /**
866
866
  * @public
@@ -888,12 +888,12 @@ export interface NaturalLanguageQueryGenerationOptionsOutput {
888
888
  * <p>The desired state of the natural language query generation feature. Valid values are ENABLED and DISABLED.</p>
889
889
  * @public
890
890
  */
891
- DesiredState?: NaturalLanguageQueryGenerationDesiredState;
891
+ DesiredState?: NaturalLanguageQueryGenerationDesiredState | undefined;
892
892
  /**
893
893
  * <p>The current state of the natural language query generation feature, indicating completion, in progress, or failure.</p>
894
894
  * @public
895
895
  */
896
- CurrentState?: NaturalLanguageQueryGenerationCurrentState;
896
+ CurrentState?: NaturalLanguageQueryGenerationCurrentState | undefined;
897
897
  }
898
898
  /**
899
899
  * <p>Container for parameters representing the state of machine learning features on the specified domain.</p>
@@ -904,7 +904,7 @@ export interface AIMLOptionsOutput {
904
904
  * <p>Container for parameters required for natural language query generation on the specified domain.</p>
905
905
  * @public
906
906
  */
907
- NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsOutput;
907
+ NaturalLanguageQueryGenerationOptions?: NaturalLanguageQueryGenerationOptionsOutput | undefined;
908
908
  }
909
909
  /**
910
910
  * <p>The status of machine learning options on the specified domain.</p>
@@ -915,12 +915,39 @@ export interface AIMLOptionsStatus {
915
915
  * <p>Machine learning options on the specified domain.</p>
916
916
  * @public
917
917
  */
918
- Options?: AIMLOptionsOutput;
918
+ Options?: AIMLOptionsOutput | undefined;
919
919
  /**
920
920
  * <p>Provides the current status of an entity.</p>
921
921
  * @public
922
922
  */
923
- Status?: OptionStatus;
923
+ Status?: OptionStatus | undefined;
924
+ }
925
+ /**
926
+ * <p>The configuration parameters to enable access to the key store required by the package.</p>
927
+ * @public
928
+ */
929
+ export interface KeyStoreAccessOption {
930
+ /**
931
+ * <p>Role ARN to access the KeyStore Key</p>
932
+ * @public
933
+ */
934
+ KeyAccessRoleArn?: string | undefined;
935
+ /**
936
+ * <p>This indicates whether Key Store access is enabled </p>
937
+ * @public
938
+ */
939
+ KeyStoreAccessEnabled: boolean | undefined;
940
+ }
941
+ /**
942
+ * <p>The configuration for associating a package with a domain.</p>
943
+ * @public
944
+ */
945
+ export interface PackageAssociationConfiguration {
946
+ /**
947
+ * <p>The configuration parameters to enable accessing the key store required by the package.</p>
948
+ * @public
949
+ */
950
+ KeyStoreAccessOption?: KeyStoreAccessOption | undefined;
924
951
  }
925
952
  /**
926
953
  * <p>Container for the request parameters to the <code>AssociatePackage</code> operation.</p>
@@ -938,6 +965,16 @@ export interface AssociatePackageRequest {
938
965
  * @public
939
966
  */
940
967
  DomainName: string | undefined;
968
+ /**
969
+ * <p>A list of package IDs that must be associated with the domain before the package specified in the request can be associated.</p>
970
+ * @public
971
+ */
972
+ PrerequisitePackageIDList?: string[] | undefined;
973
+ /**
974
+ * <p>The configuration for associating a package with an Amazon OpenSearch Service domain.</p>
975
+ * @public
976
+ */
977
+ AssociationConfiguration?: PackageAssociationConfiguration | undefined;
941
978
  }
942
979
  /**
943
980
  * @public
@@ -963,18 +1000,20 @@ export interface ErrorDetails {
963
1000
  * <p>The type of error that occurred.</p>
964
1001
  * @public
965
1002
  */
966
- ErrorType?: string;
1003
+ ErrorType?: string | undefined;
967
1004
  /**
968
1005
  * <p>A message describing the error.</p>
969
1006
  * @public
970
1007
  */
971
- ErrorMessage?: string;
1008
+ ErrorMessage?: string | undefined;
972
1009
  }
973
1010
  /**
974
1011
  * @public
975
1012
  * @enum
976
1013
  */
977
1014
  export declare const PackageType: {
1015
+ readonly PACKAGE_CONFIG: "PACKAGE-CONFIG";
1016
+ readonly PACKAGE_LICENSE: "PACKAGE-LICENSE";
978
1017
  readonly TXT_DICTIONARY: "TXT-DICTIONARY";
979
1018
  readonly ZIP_PLUGIN: "ZIP-PLUGIN";
980
1019
  };
@@ -992,48 +1031,58 @@ export interface DomainPackageDetails {
992
1031
  * <p>Internal ID of the package.</p>
993
1032
  * @public
994
1033
  */
995
- PackageID?: string;
1034
+ PackageID?: string | undefined;
996
1035
  /**
997
1036
  * <p>User-specified name of the package.</p>
998
1037
  * @public
999
1038
  */
1000
- PackageName?: string;
1039
+ PackageName?: string | undefined;
1001
1040
  /**
1002
1041
  * <p>The type of package.</p>
1003
1042
  * @public
1004
1043
  */
1005
- PackageType?: PackageType;
1044
+ PackageType?: PackageType | undefined;
1006
1045
  /**
1007
1046
  * <p>Timestamp of the most recent update to the package association status.</p>
1008
1047
  * @public
1009
1048
  */
1010
- LastUpdated?: Date;
1049
+ LastUpdated?: Date | undefined;
1011
1050
  /**
1012
1051
  * <p>Name of the domain that the package is associated with.</p>
1013
1052
  * @public
1014
1053
  */
1015
- DomainName?: string;
1054
+ DomainName?: string | undefined;
1016
1055
  /**
1017
1056
  * <p>State of the association.</p>
1018
1057
  * @public
1019
1058
  */
1020
- DomainPackageStatus?: DomainPackageStatus;
1059
+ DomainPackageStatus?: DomainPackageStatus | undefined;
1021
1060
  /**
1022
1061
  * <p>The current version of the package.</p>
1023
1062
  * @public
1024
1063
  */
1025
- PackageVersion?: string;
1064
+ PackageVersion?: string | undefined;
1065
+ /**
1066
+ * <p>A list of package IDs that must be associated with the domain before or with the package can be associated.</p>
1067
+ * @public
1068
+ */
1069
+ PrerequisitePackageIDList?: string[] | undefined;
1026
1070
  /**
1027
1071
  * <p>The relative path of the package on the OpenSearch Service cluster nodes. This is <code>synonym_path</code>
1028
1072
  * when the package is for synonym files.</p>
1029
1073
  * @public
1030
1074
  */
1031
- ReferencePath?: string;
1075
+ ReferencePath?: string | undefined;
1032
1076
  /**
1033
1077
  * <p>Additional information if the package is in an error state. Null otherwise.</p>
1034
1078
  * @public
1035
1079
  */
1036
- ErrorDetails?: ErrorDetails;
1080
+ ErrorDetails?: ErrorDetails | undefined;
1081
+ /**
1082
+ * <p>The configuration for associating a package with an Amazon OpenSearch Service domain.</p>
1083
+ * @public
1084
+ */
1085
+ AssociationConfiguration?: PackageAssociationConfiguration | undefined;
1037
1086
  }
1038
1087
  /**
1039
1088
  * <p>Container for the response returned by the <code>AssociatePackage</code> operation.</p>
@@ -1044,7 +1093,7 @@ export interface AssociatePackageResponse {
1044
1093
  * <p>Information about a package that is associated with a domain.</p>
1045
1094
  * @public
1046
1095
  */
1047
- DomainPackageDetails?: DomainPackageDetails;
1096
+ DomainPackageDetails?: DomainPackageDetails | undefined;
1048
1097
  }
1049
1098
  /**
1050
1099
  * <p>An error occurred because the client attempts to remove a resource that is currently in use.</p>
@@ -1058,6 +1107,53 @@ export declare class ConflictException extends __BaseException {
1058
1107
  */
1059
1108
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1060
1109
  }
1110
+ /**
1111
+ * <p> Details of a package that is associated with a domain.</p>
1112
+ * @public
1113
+ */
1114
+ export interface PackageDetailsForAssociation {
1115
+ /**
1116
+ * <p>Internal ID of the package that you want to associate with a domain.</p>
1117
+ * @public
1118
+ */
1119
+ PackageID: string | undefined;
1120
+ /**
1121
+ * <p>List of package IDs that must be associated with the domain with or before the package can be associated.</p>
1122
+ * @public
1123
+ */
1124
+ PrerequisitePackageIDList?: string[] | undefined;
1125
+ /**
1126
+ * <p>The configuration parameters for associating the package with a domain.</p>
1127
+ * @public
1128
+ */
1129
+ AssociationConfiguration?: PackageAssociationConfiguration | undefined;
1130
+ }
1131
+ /**
1132
+ * @public
1133
+ */
1134
+ export interface AssociatePackagesRequest {
1135
+ /**
1136
+ * <p>A list of packages and their prerequisites to be associated with a domain.</p>
1137
+ * @public
1138
+ */
1139
+ PackageList: PackageDetailsForAssociation[] | undefined;
1140
+ /**
1141
+ * <p>The name of an OpenSearch Service domain. Domain names are unique across the domains owned
1142
+ * by an account within an Amazon Web Services Region.</p>
1143
+ * @public
1144
+ */
1145
+ DomainName: string | undefined;
1146
+ }
1147
+ /**
1148
+ * @public
1149
+ */
1150
+ export interface AssociatePackagesResponse {
1151
+ /**
1152
+ * <p>List of information about packages that are associated with a domain. </p>
1153
+ * @public
1154
+ */
1155
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
1156
+ }
1061
1157
  /**
1062
1158
  * @public
1063
1159
  * @enum
@@ -1082,12 +1178,12 @@ export interface AuthorizeVpcEndpointAccessRequest {
1082
1178
  * <p>The Amazon Web Services account ID to grant access to.</p>
1083
1179
  * @public
1084
1180
  */
1085
- Account?: string;
1181
+ Account?: string | undefined;
1086
1182
  /**
1087
1183
  * <p>The Amazon Web Services service SP to grant access to.</p>
1088
1184
  * @public
1089
1185
  */
1090
- Service?: AWSServicePrincipal;
1186
+ Service?: AWSServicePrincipal | undefined;
1091
1187
  }
1092
1188
  /**
1093
1189
  * @public
@@ -1111,12 +1207,12 @@ export interface AuthorizedPrincipal {
1111
1207
  * <p>The type of principal.</p>
1112
1208
  * @public
1113
1209
  */
1114
- PrincipalType?: PrincipalType;
1210
+ PrincipalType?: PrincipalType | undefined;
1115
1211
  /**
1116
1212
  * <p>The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_principal.html">IAM principal</a> that is allowed access to the domain.</p>
1117
1213
  * @public
1118
1214
  */
1119
- Principal?: string;
1215
+ Principal?: string | undefined;
1120
1216
  }
1121
1217
  /**
1122
1218
  * @public
@@ -1143,7 +1239,7 @@ export interface CancelDomainConfigChangeRequest {
1143
1239
  * <p>When set to <code>True</code>, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.</p>
1144
1240
  * @public
1145
1241
  */
1146
- DryRun?: boolean;
1242
+ DryRun?: boolean | undefined;
1147
1243
  }
1148
1244
  /**
1149
1245
  * <p>A property change that was cancelled for an Amazon OpenSearch Service domain.</p>
@@ -1154,17 +1250,17 @@ export interface CancelledChangeProperty {
1154
1250
  * <p>The name of the property whose change was cancelled.</p>
1155
1251
  * @public
1156
1252
  */
1157
- PropertyName?: string;
1253
+ PropertyName?: string | undefined;
1158
1254
  /**
1159
1255
  * <p>The pending value of the property that was cancelled. This would have been the eventual value of the property if the chance had not been cancelled.</p>
1160
1256
  * @public
1161
1257
  */
1162
- CancelledValue?: string;
1258
+ CancelledValue?: string | undefined;
1163
1259
  /**
1164
1260
  * <p>The current value of the property, after the change was cancelled.</p>
1165
1261
  * @public
1166
1262
  */
1167
- ActiveValue?: string;
1263
+ ActiveValue?: string | undefined;
1168
1264
  }
1169
1265
  /**
1170
1266
  * @public
@@ -1174,17 +1270,17 @@ export interface CancelDomainConfigChangeResponse {
1174
1270
  * <p>The unique identifiers of the changes that were cancelled.</p>
1175
1271
  * @public
1176
1272
  */
1177
- CancelledChangeIds?: string[];
1273
+ CancelledChangeIds?: string[] | undefined;
1178
1274
  /**
1179
1275
  * <p>The domain change properties that were cancelled.</p>
1180
1276
  * @public
1181
1277
  */
1182
- CancelledChangeProperties?: CancelledChangeProperty[];
1278
+ CancelledChangeProperties?: CancelledChangeProperty[] | undefined;
1183
1279
  /**
1184
1280
  * <p>Whether or not the request was a dry run. If <code>True</code>, the changes were not actually cancelled. </p>
1185
1281
  * @public
1186
1282
  */
1187
- DryRun?: boolean;
1283
+ DryRun?: boolean | undefined;
1188
1284
  }
1189
1285
  /**
1190
1286
  * <p>Container for the request parameters to cancel a service software update.</p>
@@ -1224,46 +1320,46 @@ export interface ServiceSoftwareOptions {
1224
1320
  * <p>The current service software version present on the domain.</p>
1225
1321
  * @public
1226
1322
  */
1227
- CurrentVersion?: string;
1323
+ CurrentVersion?: string | undefined;
1228
1324
  /**
1229
1325
  * <p>The new service software version, if one is available.</p>
1230
1326
  * @public
1231
1327
  */
1232
- NewVersion?: string;
1328
+ NewVersion?: string | undefined;
1233
1329
  /**
1234
1330
  * <p>True if you're able to update your service software version. False if you can't update your
1235
1331
  * service software version.</p>
1236
1332
  * @public
1237
1333
  */
1238
- UpdateAvailable?: boolean;
1334
+ UpdateAvailable?: boolean | undefined;
1239
1335
  /**
1240
1336
  * <p> True if you're able to cancel your service software version update. False if you can't
1241
1337
  * cancel your service software update.</p>
1242
1338
  * @public
1243
1339
  */
1244
- Cancellable?: boolean;
1340
+ Cancellable?: boolean | undefined;
1245
1341
  /**
1246
1342
  * <p>The status of your service software update.</p>
1247
1343
  * @public
1248
1344
  */
1249
- UpdateStatus?: DeploymentStatus;
1345
+ UpdateStatus?: DeploymentStatus | undefined;
1250
1346
  /**
1251
1347
  * <p>A description of the service software update status.</p>
1252
1348
  * @public
1253
1349
  */
1254
- Description?: string;
1350
+ Description?: string | undefined;
1255
1351
  /**
1256
1352
  * <p>The timestamp, in Epoch time, until which you can manually request a service software update. After this date,
1257
1353
  * we automatically update your service software.</p>
1258
1354
  * @public
1259
1355
  */
1260
- AutomatedUpdateDate?: Date;
1356
+ AutomatedUpdateDate?: Date | undefined;
1261
1357
  /**
1262
1358
  * <p>True if a service software is never automatically updated. False if a service software is
1263
1359
  * automatically updated after the automated update date.</p>
1264
1360
  * @public
1265
1361
  */
1266
- OptionalDeployment?: boolean;
1362
+ OptionalDeployment?: boolean | undefined;
1267
1363
  }
1268
1364
  /**
1269
1365
  * <p>Container for the response to a <code>CancelServiceSoftwareUpdate</code> operation. Contains
@@ -1275,7 +1371,7 @@ export interface CancelServiceSoftwareUpdateResponse {
1275
1371
  * <p>Container for the state of your domain relative to the latest service software.</p>
1276
1372
  * @public
1277
1373
  */
1278
- ServiceSoftwareOptions?: ServiceSoftwareOptions;
1374
+ ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
1279
1375
  }
1280
1376
  /**
1281
1377
  * @public
@@ -1298,12 +1394,12 @@ export interface AppConfig {
1298
1394
  * <p>Specify the item to configure, such as admin role for the OpenSearch Application.</p>
1299
1395
  * @public
1300
1396
  */
1301
- key?: AppConfigType;
1397
+ key?: AppConfigType | undefined;
1302
1398
  /**
1303
1399
  * <p>Specifies the value to configure for the key, such as an IAM user ARN.</p>
1304
1400
  * @public
1305
1401
  */
1306
- value?: string;
1402
+ value?: string | undefined;
1307
1403
  }
1308
1404
  /**
1309
1405
  * <p>Data sources that are associated with an OpenSearch Application. </p>
@@ -1316,12 +1412,12 @@ export interface DataSource {
1316
1412
  * </p>
1317
1413
  * @public
1318
1414
  */
1319
- dataSourceArn?: string;
1415
+ dataSourceArn?: string | undefined;
1320
1416
  /**
1321
1417
  * <p>Detailed description of a data source.</p>
1322
1418
  * @public
1323
1419
  */
1324
- dataSourceDescription?: string;
1420
+ dataSourceDescription?: string | undefined;
1325
1421
  }
1326
1422
  /**
1327
1423
  * <p>Settings for IAM Identity Center.</p>
@@ -1332,19 +1428,19 @@ export interface IamIdentityCenterOptionsInput {
1332
1428
  * <p>Enable/disable settings for IAM Identity Center.</p>
1333
1429
  * @public
1334
1430
  */
1335
- enabled?: boolean;
1431
+ enabled?: boolean | undefined;
1336
1432
  /**
1337
1433
  * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
1338
1434
  * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
1339
1435
  * </p>
1340
1436
  * @public
1341
1437
  */
1342
- iamIdentityCenterInstanceArn?: string;
1438
+ iamIdentityCenterInstanceArn?: string | undefined;
1343
1439
  /**
1344
1440
  * <p>Amazon Resource Name of IAM Identity Center's application.</p>
1345
1441
  * @public
1346
1442
  */
1347
- iamRoleForIdentityCenterApplicationArn?: string;
1443
+ iamRoleForIdentityCenterApplicationArn?: string | undefined;
1348
1444
  }
1349
1445
  /**
1350
1446
  * @public
@@ -1354,7 +1450,7 @@ export interface CreateApplicationRequest {
1354
1450
  * <p>A unique client idempotency token. It will be auto generated if not provided.</p>
1355
1451
  * @public
1356
1452
  */
1357
- clientToken?: string;
1453
+ clientToken?: string | undefined;
1358
1454
  /**
1359
1455
  * <p>Name of the OpenSearch Appication to create. Application names are unique across the applications
1360
1456
  * owned by an account within an Amazon Web Services Region.</p>
@@ -1365,22 +1461,22 @@ export interface CreateApplicationRequest {
1365
1461
  * <p>Data sources to be associated with the OpenSearch Application.</p>
1366
1462
  * @public
1367
1463
  */
1368
- dataSources?: DataSource[];
1464
+ dataSources?: DataSource[] | undefined;
1369
1465
  /**
1370
1466
  * <p>Settings of IAM Identity Center for the OpenSearch Application.</p>
1371
1467
  * @public
1372
1468
  */
1373
- iamIdentityCenterOptions?: IamIdentityCenterOptionsInput;
1469
+ iamIdentityCenterOptions?: IamIdentityCenterOptionsInput | undefined;
1374
1470
  /**
1375
1471
  * <p>Configurations of the OpenSearch Application, inlcuding admin configuration.</p>
1376
1472
  * @public
1377
1473
  */
1378
- appConfigs?: AppConfig[];
1474
+ appConfigs?: AppConfig[] | undefined;
1379
1475
  /**
1380
1476
  * <p>A list of tags attached to a domain.</p>
1381
1477
  * @public
1382
1478
  */
1383
- tagList?: Tag[];
1479
+ tagList?: Tag[] | undefined;
1384
1480
  }
1385
1481
  /**
1386
1482
  * <p>Settings for IAM Identity Center for an OpenSearch Application.</p>
@@ -1391,26 +1487,26 @@ export interface IamIdentityCenterOptions {
1391
1487
  * <p>IAM Identity Center is enabled for the OpenSearch Application.</p>
1392
1488
  * @public
1393
1489
  */
1394
- enabled?: boolean;
1490
+ enabled?: boolean | undefined;
1395
1491
  /**
1396
1492
  * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
1397
1493
  * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
1398
1494
  * </p>
1399
1495
  * @public
1400
1496
  */
1401
- iamIdentityCenterInstanceArn?: string;
1497
+ iamIdentityCenterInstanceArn?: string | undefined;
1402
1498
  /**
1403
1499
  * <p>Amazon Resource Name of the IAM Identity Center's Application created for the OpenSearch Application after enabling IAM Identity Center.</p>
1404
1500
  * @public
1405
1501
  */
1406
- iamRoleForIdentityCenterApplicationArn?: string;
1502
+ iamRoleForIdentityCenterApplicationArn?: string | undefined;
1407
1503
  /**
1408
1504
  * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
1409
1505
  * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
1410
1506
  * </p>
1411
1507
  * @public
1412
1508
  */
1413
- iamIdentityCenterApplicationArn?: string;
1509
+ iamIdentityCenterApplicationArn?: string | undefined;
1414
1510
  }
1415
1511
  /**
1416
1512
  * @public
@@ -1420,44 +1516,44 @@ export interface CreateApplicationResponse {
1420
1516
  * <p>Unique identifier for the created OpenSearch Application.</p>
1421
1517
  * @public
1422
1518
  */
1423
- id?: string;
1519
+ id?: string | undefined;
1424
1520
  /**
1425
1521
  * <p>Name of the created OpenSearch Application.</p>
1426
1522
  * @public
1427
1523
  */
1428
- name?: string;
1524
+ name?: string | undefined;
1429
1525
  /**
1430
1526
  * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
1431
1527
  * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
1432
1528
  * </p>
1433
1529
  * @public
1434
1530
  */
1435
- arn?: string;
1531
+ arn?: string | undefined;
1436
1532
  /**
1437
1533
  * <p>Data sources associated with the created OpenSearch Application.</p>
1438
1534
  * @public
1439
1535
  */
1440
- dataSources?: DataSource[];
1536
+ dataSources?: DataSource[] | undefined;
1441
1537
  /**
1442
1538
  * <p>Settings of IAM Identity Center for the created OpenSearch Application.</p>
1443
1539
  * @public
1444
1540
  */
1445
- iamIdentityCenterOptions?: IamIdentityCenterOptions;
1541
+ iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
1446
1542
  /**
1447
1543
  * <p>Configurations of the OpenSearch Application, inlcuding admin configuration.</p>
1448
1544
  * @public
1449
1545
  */
1450
- appConfigs?: AppConfig[];
1546
+ appConfigs?: AppConfig[] | undefined;
1451
1547
  /**
1452
1548
  * <p>A list of tags attached to a domain.</p>
1453
1549
  * @public
1454
1550
  */
1455
- tagList?: Tag[];
1551
+ tagList?: Tag[] | undefined;
1456
1552
  /**
1457
1553
  * <p>Timestamp when the OpenSearch Application was created.</p>
1458
1554
  * @public
1459
1555
  */
1460
- createdAt?: Date;
1556
+ createdAt?: Date | undefined;
1461
1557
  }
1462
1558
  /**
1463
1559
  * @public
@@ -1492,12 +1588,12 @@ export interface Duration {
1492
1588
  * <p>Integer to specify the value of a maintenance schedule duration.</p>
1493
1589
  * @public
1494
1590
  */
1495
- Value?: number;
1591
+ Value?: number | undefined;
1496
1592
  /**
1497
1593
  * <p>The unit of measurement for the duration of a maintenance schedule.</p>
1498
1594
  * @public
1499
1595
  */
1500
- Unit?: TimeUnit;
1596
+ Unit?: TimeUnit | undefined;
1501
1597
  }
1502
1598
  /**
1503
1599
  * <note>
@@ -1515,19 +1611,19 @@ export interface AutoTuneMaintenanceSchedule {
1515
1611
  * <p>The Epoch timestamp at which the Auto-Tune maintenance schedule starts.</p>
1516
1612
  * @public
1517
1613
  */
1518
- StartAt?: Date;
1614
+ StartAt?: Date | undefined;
1519
1615
  /**
1520
1616
  * <p>The duration of the maintenance schedule. For example, <code>"Duration": \{"Value": 2,
1521
1617
  * "Unit": "HOURS"\}</code>.</p>
1522
1618
  * @public
1523
1619
  */
1524
- Duration?: Duration;
1620
+ Duration?: Duration | undefined;
1525
1621
  /**
1526
1622
  * <p>A cron expression for a recurring maintenance schedule during which Auto-Tune can deploy
1527
1623
  * changes.</p>
1528
1624
  * @public
1529
1625
  */
1530
- CronExpressionForRecurrence?: string;
1626
+ CronExpressionForRecurrence?: string | undefined;
1531
1627
  }
1532
1628
  /**
1533
1629
  * <p>Options for configuring Auto-Tune. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html">Auto-Tune for Amazon OpenSearch
@@ -1540,17 +1636,17 @@ export interface AutoTuneOptionsInput {
1540
1636
  * <p>Whether Auto-Tune is enabled or disabled.</p>
1541
1637
  * @public
1542
1638
  */
1543
- DesiredState?: AutoTuneDesiredState;
1639
+ DesiredState?: AutoTuneDesiredState | undefined;
1544
1640
  /**
1545
1641
  * <p>A list of maintenance schedules during which Auto-Tune can deploy changes. Maintenance windows are deprecated and have been replaced with <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/off-peak.html">off-peak windows</a>.</p>
1546
1642
  * @public
1547
1643
  */
1548
- MaintenanceSchedules?: AutoTuneMaintenanceSchedule[];
1644
+ MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | undefined;
1549
1645
  /**
1550
1646
  * <p>Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.</p>
1551
1647
  * @public
1552
1648
  */
1553
- UseOffPeakWindow?: boolean;
1649
+ UseOffPeakWindow?: boolean | undefined;
1554
1650
  }
1555
1651
  /**
1556
1652
  * <p>Container for the parameters required to enable cold storage for an OpenSearch Service
@@ -1687,17 +1783,17 @@ export interface NodeConfig {
1687
1783
  * <p>A boolean that indicates whether a particular node type is enabled or not.</p>
1688
1784
  * @public
1689
1785
  */
1690
- Enabled?: boolean;
1786
+ Enabled?: boolean | undefined;
1691
1787
  /**
1692
1788
  * <p>The instance type of a particular node type in the cluster.</p>
1693
1789
  * @public
1694
1790
  */
1695
- Type?: OpenSearchPartitionInstanceType;
1791
+ Type?: OpenSearchPartitionInstanceType | undefined;
1696
1792
  /**
1697
1793
  * <p>The number of nodes of a particular node type in the cluster.</p>
1698
1794
  * @public
1699
1795
  */
1700
- Count?: number;
1796
+ Count?: number | undefined;
1701
1797
  }
1702
1798
  /**
1703
1799
  * @public
@@ -1719,12 +1815,12 @@ export interface NodeOption {
1719
1815
  * <p>Container for node type like coordinating.</p>
1720
1816
  * @public
1721
1817
  */
1722
- NodeType?: NodeOptionsNodeType;
1818
+ NodeType?: NodeOptionsNodeType | undefined;
1723
1819
  /**
1724
1820
  * <p>Container for specifying configuration of any node type.</p>
1725
1821
  * @public
1726
1822
  */
1727
- NodeConfig?: NodeConfig;
1823
+ NodeConfig?: NodeConfig | undefined;
1728
1824
  }
1729
1825
  /**
1730
1826
  * @public
@@ -1750,7 +1846,7 @@ export interface ZoneAwarenessConfig {
1750
1846
  * provisioned within a VPC, this value be equal to number of subnets.</p>
1751
1847
  * @public
1752
1848
  */
1753
- AvailabilityZoneCount?: number;
1849
+ AvailabilityZoneCount?: number | undefined;
1754
1850
  }
1755
1851
  /**
1756
1852
  * <p>Container for the cluster configuration of an OpenSearch Service domain. For more
@@ -1762,71 +1858,71 @@ export interface ClusterConfig {
1762
1858
  * <p>Instance type of data nodes in the cluster.</p>
1763
1859
  * @public
1764
1860
  */
1765
- InstanceType?: OpenSearchPartitionInstanceType;
1861
+ InstanceType?: OpenSearchPartitionInstanceType | undefined;
1766
1862
  /**
1767
1863
  * <p>Number of data nodes in the cluster. This number must be greater than 1, otherwise you
1768
1864
  * receive a validation exception.</p>
1769
1865
  * @public
1770
1866
  */
1771
- InstanceCount?: number;
1867
+ InstanceCount?: number | undefined;
1772
1868
  /**
1773
1869
  * <p>Indicates whether dedicated master nodes are enabled for the cluster.<code>True</code> if
1774
1870
  * the cluster will use a dedicated master node.<code>False</code> if the cluster will not.</p>
1775
1871
  * @public
1776
1872
  */
1777
- DedicatedMasterEnabled?: boolean;
1873
+ DedicatedMasterEnabled?: boolean | undefined;
1778
1874
  /**
1779
1875
  * <p>Indicates whether multiple Availability Zones are enabled. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-multiaz.html">Configuring a multi-AZ domain in Amazon OpenSearch Service</a>.</p>
1780
1876
  * @public
1781
1877
  */
1782
- ZoneAwarenessEnabled?: boolean;
1878
+ ZoneAwarenessEnabled?: boolean | undefined;
1783
1879
  /**
1784
1880
  * <p>Container for zone awareness configuration options. Only required if
1785
1881
  * <code>ZoneAwarenessEnabled</code> is <code>true</code>.</p>
1786
1882
  * @public
1787
1883
  */
1788
- ZoneAwarenessConfig?: ZoneAwarenessConfig;
1884
+ ZoneAwarenessConfig?: ZoneAwarenessConfig | undefined;
1789
1885
  /**
1790
1886
  * <p>OpenSearch Service instance type of the dedicated master nodes in the cluster.</p>
1791
1887
  * @public
1792
1888
  */
1793
- DedicatedMasterType?: OpenSearchPartitionInstanceType;
1889
+ DedicatedMasterType?: OpenSearchPartitionInstanceType | undefined;
1794
1890
  /**
1795
1891
  * <p>Number of dedicated master nodes in the cluster. This number must be greater than 2 and not 4,
1796
1892
  * otherwise you receive a validation exception.</p>
1797
1893
  * @public
1798
1894
  */
1799
- DedicatedMasterCount?: number;
1895
+ DedicatedMasterCount?: number | undefined;
1800
1896
  /**
1801
1897
  * <p>Whether to enable warm storage for the cluster.</p>
1802
1898
  * @public
1803
1899
  */
1804
- WarmEnabled?: boolean;
1900
+ WarmEnabled?: boolean | undefined;
1805
1901
  /**
1806
1902
  * <p>The instance type for the cluster's warm nodes.</p>
1807
1903
  * @public
1808
1904
  */
1809
- WarmType?: OpenSearchWarmPartitionInstanceType;
1905
+ WarmType?: OpenSearchWarmPartitionInstanceType | undefined;
1810
1906
  /**
1811
1907
  * <p>The number of warm nodes in the cluster.</p>
1812
1908
  * @public
1813
1909
  */
1814
- WarmCount?: number;
1910
+ WarmCount?: number | undefined;
1815
1911
  /**
1816
1912
  * <p>Container for cold storage configuration options.</p>
1817
1913
  * @public
1818
1914
  */
1819
- ColdStorageOptions?: ColdStorageOptions;
1915
+ ColdStorageOptions?: ColdStorageOptions | undefined;
1820
1916
  /**
1821
1917
  * <p>A boolean that indicates whether a multi-AZ domain is turned on with a standby AZ. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/managedomains-multiaz.html">Configuring a multi-AZ domain in Amazon OpenSearch Service</a>. </p>
1822
1918
  * @public
1823
1919
  */
1824
- MultiAZWithStandbyEnabled?: boolean;
1920
+ MultiAZWithStandbyEnabled?: boolean | undefined;
1825
1921
  /**
1826
1922
  * <p>List of node options for the domain.</p>
1827
1923
  * @public
1828
1924
  */
1829
- NodeOptions?: NodeOption[];
1925
+ NodeOptions?: NodeOption[] | undefined;
1830
1926
  }
1831
1927
  /**
1832
1928
  * <p>Container for the parameters required to enable Cognito authentication for an OpenSearch
@@ -1839,25 +1935,25 @@ export interface CognitoOptions {
1839
1935
  * <p>Whether to enable or disable Amazon Cognito authentication for OpenSearch Dashboards.</p>
1840
1936
  * @public
1841
1937
  */
1842
- Enabled?: boolean;
1938
+ Enabled?: boolean | undefined;
1843
1939
  /**
1844
1940
  * <p>The Amazon Cognito user pool ID that you want OpenSearch Service to use for OpenSearch
1845
1941
  * Dashboards authentication.</p>
1846
1942
  * @public
1847
1943
  */
1848
- UserPoolId?: string;
1944
+ UserPoolId?: string | undefined;
1849
1945
  /**
1850
1946
  * <p>The Amazon Cognito identity pool ID that you want OpenSearch Service to use for OpenSearch
1851
1947
  * Dashboards authentication.</p>
1852
1948
  * @public
1853
1949
  */
1854
- IdentityPoolId?: string;
1950
+ IdentityPoolId?: string | undefined;
1855
1951
  /**
1856
1952
  * <p>The <code>AmazonOpenSearchServiceCognitoAccess</code> role that allows OpenSearch Service to
1857
1953
  * configure your user pool and identity pool.</p>
1858
1954
  * @public
1859
1955
  */
1860
- RoleArn?: string;
1956
+ RoleArn?: string | undefined;
1861
1957
  }
1862
1958
  /**
1863
1959
  * @public
@@ -1881,7 +1977,7 @@ export interface DomainEndpointOptions {
1881
1977
  * <p>True to require that all traffic to the domain arrive over HTTPS.</p>
1882
1978
  * @public
1883
1979
  */
1884
- EnforceHTTPS?: boolean;
1980
+ EnforceHTTPS?: boolean | undefined;
1885
1981
  /**
1886
1982
  * <p>Specify the TLS security policy to apply to the HTTPS endpoint of the domain. The policy can
1887
1983
  * be one of the following values:</p>
@@ -1904,23 +2000,23 @@ export interface DomainEndpointOptions {
1904
2000
  * </ul>
1905
2001
  * @public
1906
2002
  */
1907
- TLSSecurityPolicy?: TLSSecurityPolicy;
2003
+ TLSSecurityPolicy?: TLSSecurityPolicy | undefined;
1908
2004
  /**
1909
2005
  * <p>Whether to enable a custom endpoint for the domain.</p>
1910
2006
  * @public
1911
2007
  */
1912
- CustomEndpointEnabled?: boolean;
2008
+ CustomEndpointEnabled?: boolean | undefined;
1913
2009
  /**
1914
2010
  * <p>The fully qualified URL for the custom endpoint.</p>
1915
2011
  * @public
1916
2012
  */
1917
- CustomEndpoint?: string;
2013
+ CustomEndpoint?: string | undefined;
1918
2014
  /**
1919
2015
  * <p>The ARN for your security certificate, managed in Amazon Web Services Certificate Manager
1920
2016
  * (ACM).</p>
1921
2017
  * @public
1922
2018
  */
1923
- CustomEndpointCertificateArn?: string;
2019
+ CustomEndpointCertificateArn?: string | undefined;
1924
2020
  }
1925
2021
  /**
1926
2022
  * @public
@@ -1947,29 +2043,29 @@ export interface EBSOptions {
1947
2043
  * domain.</p>
1948
2044
  * @public
1949
2045
  */
1950
- EBSEnabled?: boolean;
2046
+ EBSEnabled?: boolean | undefined;
1951
2047
  /**
1952
2048
  * <p>Specifies the type of EBS volumes attached to data nodes.</p>
1953
2049
  * @public
1954
2050
  */
1955
- VolumeType?: VolumeType;
2051
+ VolumeType?: VolumeType | undefined;
1956
2052
  /**
1957
2053
  * <p>Specifies the size (in GiB) of EBS volumes attached to data nodes.</p>
1958
2054
  * @public
1959
2055
  */
1960
- VolumeSize?: number;
2056
+ VolumeSize?: number | undefined;
1961
2057
  /**
1962
2058
  * <p>Specifies the baseline input/output (I/O) performance of EBS volumes attached to data nodes.
1963
2059
  * Applicable only for the <code>gp3</code> and provisioned IOPS EBS volume types.</p>
1964
2060
  * @public
1965
2061
  */
1966
- Iops?: number;
2062
+ Iops?: number | undefined;
1967
2063
  /**
1968
2064
  * <p>Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes. Applicable
1969
2065
  * only for the <code>gp3</code> volume type.</p>
1970
2066
  * @public
1971
2067
  */
1972
- Throughput?: number;
2068
+ Throughput?: number | undefined;
1973
2069
  }
1974
2070
  /**
1975
2071
  * <p>Specifies whether the domain should encrypt data at rest, and if so, the Key Management
@@ -1983,12 +2079,12 @@ export interface EncryptionAtRestOptions {
1983
2079
  * <p>True to enable encryption at rest.</p>
1984
2080
  * @public
1985
2081
  */
1986
- Enabled?: boolean;
2082
+ Enabled?: boolean | undefined;
1987
2083
  /**
1988
2084
  * <p>The KMS key ID. Takes the form <code>1a2a3a4-1a2a-3a4a-5a6a-1a2a3a4a5a6a</code>.</p>
1989
2085
  * @public
1990
2086
  */
1991
- KmsKeyId?: string;
2087
+ KmsKeyId?: string | undefined;
1992
2088
  }
1993
2089
  /**
1994
2090
  * @public
@@ -2024,22 +2120,22 @@ export interface IdentityCenterOptionsInput {
2024
2120
  * <p>True to enable IAM Identity Center for API access in Amazon OpenSearch Service.</p>
2025
2121
  * @public
2026
2122
  */
2027
- EnabledAPIAccess?: boolean;
2123
+ EnabledAPIAccess?: boolean | undefined;
2028
2124
  /**
2029
2125
  * <p>The ARN for IAM Identity Center Instance which will be used for IAM Identity Center Application creation.</p>
2030
2126
  * @public
2031
2127
  */
2032
- IdentityCenterInstanceARN?: string;
2128
+ IdentityCenterInstanceARN?: string | undefined;
2033
2129
  /**
2034
2130
  * <p>Specify the attribute that contains the subject (username, userID, email) of IAM Identity Center.</p>
2035
2131
  * @public
2036
2132
  */
2037
- SubjectKey?: SubjectKeyIdCOption;
2133
+ SubjectKey?: SubjectKeyIdCOption | undefined;
2038
2134
  /**
2039
2135
  * <p>Specify the attribute that contains the backend role (groupName, groupID) of IAM Identity Center</p>
2040
2136
  * @public
2041
2137
  */
2042
- RolesKey?: RolesKeyIdCOption;
2138
+ RolesKey?: RolesKeyIdCOption | undefined;
2043
2139
  }
2044
2140
  /**
2045
2141
  * @public
@@ -2081,12 +2177,12 @@ export interface LogPublishingOption {
2081
2177
  * <p>The Amazon Resource Name (ARN) of the CloudWatch Logs group to publish logs to.</p>
2082
2178
  * @public
2083
2179
  */
2084
- CloudWatchLogsLogGroupArn?: string;
2180
+ CloudWatchLogsLogGroupArn?: string | undefined;
2085
2181
  /**
2086
2182
  * <p>Whether the log should be published.</p>
2087
2183
  * @public
2088
2184
  */
2089
- Enabled?: boolean;
2185
+ Enabled?: boolean | undefined;
2090
2186
  }
2091
2187
  /**
2092
2188
  * <p>Enables or disables node-to-node encryption. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ntn.html">Node-to-node encryption for Amazon OpenSearch Service</a>.</p>
@@ -2097,7 +2193,7 @@ export interface NodeToNodeEncryptionOptions {
2097
2193
  * <p>True to enable node-to-node encryption.</p>
2098
2194
  * @public
2099
2195
  */
2100
- Enabled?: boolean;
2196
+ Enabled?: boolean | undefined;
2101
2197
  }
2102
2198
  /**
2103
2199
  * <p>The desired start time for an <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_OffPeakWindow.html">off-peak maintenance
@@ -2134,7 +2230,7 @@ export interface OffPeakWindow {
2134
2230
  * 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.</p>
2135
2231
  * @public
2136
2232
  */
2137
- WindowStartTime?: WindowStartTime;
2233
+ WindowStartTime?: WindowStartTime | undefined;
2138
2234
  }
2139
2235
  /**
2140
2236
  * <p>Options for a domain's <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_OffPeakWindow.html">off-peak window</a>,
@@ -2149,12 +2245,12 @@ export interface OffPeakWindowOptions {
2149
2245
  * enabled by default. You can't disable the off-peak window after it's enabled for a domain.</p>
2150
2246
  * @public
2151
2247
  */
2152
- Enabled?: boolean;
2248
+ Enabled?: boolean | undefined;
2153
2249
  /**
2154
2250
  * <p>Off-peak window settings for the domain.</p>
2155
2251
  * @public
2156
2252
  */
2157
- OffPeakWindow?: OffPeakWindow;
2253
+ OffPeakWindow?: OffPeakWindow | undefined;
2158
2254
  }
2159
2255
  /**
2160
2256
  * <p>The time, in UTC format, when OpenSearch Service takes a daily automated snapshot of the
@@ -2167,7 +2263,7 @@ export interface SnapshotOptions {
2167
2263
  * specified domain. Default is <code>0</code> hours.</p>
2168
2264
  * @public
2169
2265
  */
2170
- AutomatedSnapshotStartHour?: number;
2266
+ AutomatedSnapshotStartHour?: number | undefined;
2171
2267
  }
2172
2268
  /**
2173
2269
  * <p>Options for configuring service software updates for a domain.</p>
@@ -2178,7 +2274,7 @@ export interface SoftwareUpdateOptions {
2178
2274
  * <p>Whether automatic service software updates are enabled for the domain.</p>
2179
2275
  * @public
2180
2276
  */
2181
- AutoSoftwareUpdateEnabled?: boolean;
2277
+ AutoSoftwareUpdateEnabled?: boolean | undefined;
2182
2278
  }
2183
2279
  /**
2184
2280
  * <p>Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC
@@ -2193,13 +2289,13 @@ export interface VPCOptions {
2193
2289
  * only one.</p>
2194
2290
  * @public
2195
2291
  */
2196
- SubnetIds?: string[];
2292
+ SubnetIds?: string[] | undefined;
2197
2293
  /**
2198
2294
  * <p>The list of security group IDs associated with the VPC endpoints for the domain. If you do
2199
2295
  * not provide a security group ID, OpenSearch Service uses the default security group for the VPC.</p>
2200
2296
  * @public
2201
2297
  */
2202
- SecurityGroupIds?: string[];
2298
+ SecurityGroupIds?: string[] | undefined;
2203
2299
  }
2204
2300
  /**
2205
2301
  * @public
@@ -2218,37 +2314,37 @@ export interface CreateDomainRequest {
2218
2314
  * and managing Amazon OpenSearch Service domains</a>.</p>
2219
2315
  * @public
2220
2316
  */
2221
- EngineVersion?: string;
2317
+ EngineVersion?: string | undefined;
2222
2318
  /**
2223
2319
  * <p>Container for the cluster configuration of a domain.</p>
2224
2320
  * @public
2225
2321
  */
2226
- ClusterConfig?: ClusterConfig;
2322
+ ClusterConfig?: ClusterConfig | undefined;
2227
2323
  /**
2228
2324
  * <p>Container for the parameters required to enable EBS-based storage for an OpenSearch Service
2229
2325
  * domain.</p>
2230
2326
  * @public
2231
2327
  */
2232
- EBSOptions?: EBSOptions;
2328
+ EBSOptions?: EBSOptions | undefined;
2233
2329
  /**
2234
2330
  * <p>Identity and Access Management (IAM) policy document specifying the access policies for the
2235
2331
  * new domain.</p>
2236
2332
  * @public
2237
2333
  */
2238
- AccessPolicies?: string;
2334
+ AccessPolicies?: string | undefined;
2239
2335
  /**
2240
2336
  * <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share
2241
2337
  * domain resources across IPv4 and IPv6 address types, and is the recommended option.
2242
2338
  * If you set your IP address type to dual stack, you can't change your address type later.</p>
2243
2339
  * @public
2244
2340
  */
2245
- IPAddressType?: IPAddressType;
2341
+ IPAddressType?: IPAddressType | undefined;
2246
2342
  /**
2247
2343
  * <p>DEPRECATED. Container for the parameters required to configure automated snapshots of domain
2248
2344
  * indexes.</p>
2249
2345
  * @public
2250
2346
  */
2251
- SnapshotOptions?: SnapshotOptions;
2347
+ SnapshotOptions?: SnapshotOptions | undefined;
2252
2348
  /**
2253
2349
  * <p>Container for the values required to configure VPC access domains. If you don't specify
2254
2350
  * these values, OpenSearch Service creates the domain with a public endpoint. For more information,
@@ -2256,22 +2352,22 @@ export interface CreateDomainRequest {
2256
2352
  * your Amazon OpenSearch Service domains using a VPC</a>.</p>
2257
2353
  * @public
2258
2354
  */
2259
- VPCOptions?: VPCOptions;
2355
+ VPCOptions?: VPCOptions | undefined;
2260
2356
  /**
2261
2357
  * <p>Key-value pairs to configure Amazon Cognito authentication. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/cognito-auth.html">Configuring Amazon Cognito authentication for OpenSearch Dashboards</a>.</p>
2262
2358
  * @public
2263
2359
  */
2264
- CognitoOptions?: CognitoOptions;
2360
+ CognitoOptions?: CognitoOptions | undefined;
2265
2361
  /**
2266
2362
  * <p>Key-value pairs to enable encryption at rest.</p>
2267
2363
  * @public
2268
2364
  */
2269
- EncryptionAtRestOptions?: EncryptionAtRestOptions;
2365
+ EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
2270
2366
  /**
2271
2367
  * <p>Enables node-to-node encryption.</p>
2272
2368
  * @public
2273
2369
  */
2274
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
2370
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
2275
2371
  /**
2276
2372
  * <p>Key-value pairs to specify advanced configuration options. The following key-value pairs are
2277
2373
  * supported:</p>
@@ -2308,38 +2404,38 @@ export interface CreateDomainRequest {
2308
2404
  * <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
2309
2405
  * @public
2310
2406
  */
2311
- AdvancedOptions?: Record<string, string>;
2407
+ AdvancedOptions?: Record<string, string> | undefined;
2312
2408
  /**
2313
2409
  * <p>Key-value pairs to configure log publishing.</p>
2314
2410
  * @public
2315
2411
  */
2316
- LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
2412
+ LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>> | undefined;
2317
2413
  /**
2318
2414
  * <p>Additional options for the domain endpoint, such as whether to require HTTPS for all
2319
2415
  * traffic.</p>
2320
2416
  * @public
2321
2417
  */
2322
- DomainEndpointOptions?: DomainEndpointOptions;
2418
+ DomainEndpointOptions?: DomainEndpointOptions | undefined;
2323
2419
  /**
2324
2420
  * <p>Options for fine-grained access control.</p>
2325
2421
  * @public
2326
2422
  */
2327
- AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
2423
+ AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
2328
2424
  /**
2329
2425
  * <p>Options for IAM Identity Center Option control for the domain.</p>
2330
2426
  * @public
2331
2427
  */
2332
- IdentityCenterOptions?: IdentityCenterOptionsInput;
2428
+ IdentityCenterOptions?: IdentityCenterOptionsInput | undefined;
2333
2429
  /**
2334
2430
  * <p>List of tags to add to the domain upon creation.</p>
2335
2431
  * @public
2336
2432
  */
2337
- TagList?: Tag[];
2433
+ TagList?: Tag[] | undefined;
2338
2434
  /**
2339
2435
  * <p>Options for Auto-Tune.</p>
2340
2436
  * @public
2341
2437
  */
2342
- AutoTuneOptions?: AutoTuneOptionsInput;
2438
+ AutoTuneOptions?: AutoTuneOptionsInput | undefined;
2343
2439
  /**
2344
2440
  * <p>Specifies a daily 10-hour time block during which OpenSearch Service can perform
2345
2441
  * configuration changes on the domain, including service software updates and Auto-Tune
@@ -2347,17 +2443,17 @@ export interface CreateDomainRequest {
2347
2443
  * time of 10:00 P.M. local time (for the Region that the domain is created in) is used.</p>
2348
2444
  * @public
2349
2445
  */
2350
- OffPeakWindowOptions?: OffPeakWindowOptions;
2446
+ OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
2351
2447
  /**
2352
2448
  * <p>Software update options for the domain.</p>
2353
2449
  * @public
2354
2450
  */
2355
- SoftwareUpdateOptions?: SoftwareUpdateOptions;
2451
+ SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
2356
2452
  /**
2357
2453
  * <p>Options for all machine learning features for the specified domain.</p>
2358
2454
  * @public
2359
2455
  */
2360
- AIMLOptions?: AIMLOptionsInput;
2456
+ AIMLOptions?: AIMLOptionsInput | undefined;
2361
2457
  }
2362
2458
  /**
2363
2459
  * @public
@@ -2387,18 +2483,18 @@ export interface AutoTuneOptionsOutput {
2387
2483
  * <p>The current state of Auto-Tune on the domain.</p>
2388
2484
  * @public
2389
2485
  */
2390
- State?: AutoTuneState;
2486
+ State?: AutoTuneState | undefined;
2391
2487
  /**
2392
2488
  * <p>Any errors that occurred while enabling or disabling Auto-Tune.</p>
2393
2489
  * @public
2394
2490
  */
2395
- ErrorMessage?: string;
2491
+ ErrorMessage?: string | undefined;
2396
2492
  /**
2397
2493
  * <p>Whether the domain's off-peak window will be used to deploy Auto-Tune changes rather
2398
2494
  * than a maintenance schedule.</p>
2399
2495
  * @public
2400
2496
  */
2401
- UseOffPeakWindow?: boolean;
2497
+ UseOffPeakWindow?: boolean | undefined;
2402
2498
  }
2403
2499
  /**
2404
2500
  * @public
@@ -2439,32 +2535,32 @@ export interface ChangeProgressDetails {
2439
2535
  * <p>The ID of the configuration change.</p>
2440
2536
  * @public
2441
2537
  */
2442
- ChangeId?: string;
2538
+ ChangeId?: string | undefined;
2443
2539
  /**
2444
2540
  * <p>A message corresponding to the status of the configuration change.</p>
2445
2541
  * @public
2446
2542
  */
2447
- Message?: string;
2543
+ Message?: string | undefined;
2448
2544
  /**
2449
2545
  * <p>The current status of the configuration change.</p>
2450
2546
  * @public
2451
2547
  */
2452
- ConfigChangeStatus?: ConfigChangeStatus;
2548
+ ConfigChangeStatus?: ConfigChangeStatus | undefined;
2453
2549
  /**
2454
2550
  * <p>The IAM principal who initiated the configuration change.</p>
2455
2551
  * @public
2456
2552
  */
2457
- InitiatedBy?: InitiatedBy;
2553
+ InitiatedBy?: InitiatedBy | undefined;
2458
2554
  /**
2459
2555
  * <p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>
2460
2556
  * @public
2461
2557
  */
2462
- StartTime?: Date;
2558
+ StartTime?: Date | undefined;
2463
2559
  /**
2464
2560
  * <p>The last time that the configuration change was updated.</p>
2465
2561
  * @public
2466
2562
  */
2467
- LastUpdatedTime?: Date;
2563
+ LastUpdatedTime?: Date | undefined;
2468
2564
  }
2469
2565
  /**
2470
2566
  * @public
@@ -2492,32 +2588,32 @@ export interface IdentityCenterOptions {
2492
2588
  * <p>True to enable IAM Identity Center for API access in Amazon OpenSearch Service.</p>
2493
2589
  * @public
2494
2590
  */
2495
- EnabledAPIAccess?: boolean;
2591
+ EnabledAPIAccess?: boolean | undefined;
2496
2592
  /**
2497
2593
  * <p>The ARN for IAM Identity Center Instance.</p>
2498
2594
  * @public
2499
2595
  */
2500
- IdentityCenterInstanceARN?: string;
2596
+ IdentityCenterInstanceARN?: string | undefined;
2501
2597
  /**
2502
2598
  * <p>Specify the attribute that contains the subject (username, userID, email) of IAM Identity Center.</p>
2503
2599
  * @public
2504
2600
  */
2505
- SubjectKey?: SubjectKeyIdCOption;
2601
+ SubjectKey?: SubjectKeyIdCOption | undefined;
2506
2602
  /**
2507
2603
  * <p>Specify the attribute that contains the backend role (groupName, groupID) of IAM Identity Center</p>
2508
2604
  * @public
2509
2605
  */
2510
- RolesKey?: RolesKeyIdCOption;
2606
+ RolesKey?: RolesKeyIdCOption | undefined;
2511
2607
  /**
2512
2608
  * <p>The ARN for IAM Identity Center Application which will integrate with Amazon OpenSearch Service.</p>
2513
2609
  * @public
2514
2610
  */
2515
- IdentityCenterApplicationARN?: string;
2611
+ IdentityCenterApplicationARN?: string | undefined;
2516
2612
  /**
2517
2613
  * <p>The ID of IAM Identity Store.</p>
2518
2614
  * @public
2519
2615
  */
2520
- IdentityStoreId?: string;
2616
+ IdentityStoreId?: string | undefined;
2521
2617
  }
2522
2618
  /**
2523
2619
  * @public
@@ -2540,17 +2636,17 @@ export interface ModifyingProperties {
2540
2636
  * <p>The name of the property that is currently being modified.</p>
2541
2637
  * @public
2542
2638
  */
2543
- Name?: string;
2639
+ Name?: string | undefined;
2544
2640
  /**
2545
2641
  * <p>The current value of the domain property that is being modified.</p>
2546
2642
  * @public
2547
2643
  */
2548
- ActiveValue?: string;
2644
+ ActiveValue?: string | undefined;
2549
2645
  /**
2550
2646
  * <p>The value that the property that is currently being modified will eventually have.</p>
2551
2647
  * @public
2552
2648
  */
2553
- PendingValue?: string;
2649
+ PendingValue?: string | undefined;
2554
2650
  /**
2555
2651
  * <p>The type of value that is currently being modified. Properties can have two types:</p>
2556
2652
  * <ul>
@@ -2565,7 +2661,7 @@ export interface ModifyingProperties {
2565
2661
  * </ul>
2566
2662
  * @public
2567
2663
  */
2568
- ValueType?: PropertyValueType;
2664
+ ValueType?: PropertyValueType | undefined;
2569
2665
  }
2570
2666
  /**
2571
2667
  * <p>Information about the subnets and security groups for an Amazon OpenSearch Service domain
@@ -2579,22 +2675,22 @@ export interface VPCDerivedInfo {
2579
2675
  * <p>The ID for your VPC. Amazon VPC generates this value when you create a VPC.</p>
2580
2676
  * @public
2581
2677
  */
2582
- VPCId?: string;
2678
+ VPCId?: string | undefined;
2583
2679
  /**
2584
2680
  * <p>A list of subnet IDs associated with the VPC endpoints for the domain.</p>
2585
2681
  * @public
2586
2682
  */
2587
- SubnetIds?: string[];
2683
+ SubnetIds?: string[] | undefined;
2588
2684
  /**
2589
2685
  * <p>The list of Availability Zones associated with the VPC subnets.</p>
2590
2686
  * @public
2591
2687
  */
2592
- AvailabilityZones?: string[];
2688
+ AvailabilityZones?: string[] | undefined;
2593
2689
  /**
2594
2690
  * <p>The list of security group IDs associated with the VPC endpoints for the domain.</p>
2595
2691
  * @public
2596
2692
  */
2597
- SecurityGroupIds?: string[];
2693
+ SecurityGroupIds?: string[] | undefined;
2598
2694
  }
2599
2695
  /**
2600
2696
  * <p>The current status of an OpenSearch Service domain.</p>
@@ -2623,20 +2719,20 @@ export interface DomainStatus {
2623
2719
  * if domain creation is still in progress.</p>
2624
2720
  * @public
2625
2721
  */
2626
- Created?: boolean;
2722
+ Created?: boolean | undefined;
2627
2723
  /**
2628
2724
  * <p>Deletion status of an OpenSearch Service domain. True if domain deletion is complete. False
2629
2725
  * if domain deletion is still in progress. Once deletion is complete, the status of the domain is
2630
2726
  * no longer returned.</p>
2631
2727
  * @public
2632
2728
  */
2633
- Deleted?: boolean;
2729
+ Deleted?: boolean | undefined;
2634
2730
  /**
2635
2731
  * <p>Domain-specific endpoint used to submit index, search, and data upload requests to the
2636
2732
  * domain.</p>
2637
2733
  * @public
2638
2734
  */
2639
- Endpoint?: string;
2735
+ Endpoint?: string | undefined;
2640
2736
  /**
2641
2737
  * <p>If <code>IPAddressType</code> to set to <code>dualstack</code>, a version 2 domain endpoint is provisioned.
2642
2738
  * This endpoint functions like a normal endpoint, except that it works with both IPv4 and IPv6 IP addresses.
@@ -2644,7 +2740,7 @@ export interface DomainStatus {
2644
2740
  * </p>
2645
2741
  * @public
2646
2742
  */
2647
- EndpointV2?: string;
2743
+ EndpointV2?: string | undefined;
2648
2744
  /**
2649
2745
  * <p>The key-value pair that exists if the OpenSearch Service domain uses VPC endpoints. For example:</p>
2650
2746
  * <ul>
@@ -2663,31 +2759,31 @@ export interface DomainStatus {
2663
2759
  * </ul>
2664
2760
  * @public
2665
2761
  */
2666
- Endpoints?: Record<string, string>;
2762
+ Endpoints?: Record<string, string> | undefined;
2667
2763
  /**
2668
2764
  * <p>The dual stack hosted zone ID for the domain. </p>
2669
2765
  * @public
2670
2766
  */
2671
- DomainEndpointV2HostedZoneId?: string;
2767
+ DomainEndpointV2HostedZoneId?: string | undefined;
2672
2768
  /**
2673
2769
  * <p>The status of the domain configuration. True if OpenSearch Service is processing
2674
2770
  * configuration changes. False if the configuration is active.</p>
2675
2771
  * @public
2676
2772
  */
2677
- Processing?: boolean;
2773
+ Processing?: boolean | undefined;
2678
2774
  /**
2679
2775
  * <p>The status of a domain version upgrade to a new version of OpenSearch or Elasticsearch. True
2680
2776
  * if OpenSearch Service is in the process of a version upgrade. False if the configuration is
2681
2777
  * active.</p>
2682
2778
  * @public
2683
2779
  */
2684
- UpgradeProcessing?: boolean;
2780
+ UpgradeProcessing?: boolean | undefined;
2685
2781
  /**
2686
2782
  * <p>Version of OpenSearch or Elasticsearch that the domain is running, in the format
2687
2783
  * <code>Elasticsearch_X.Y</code> or <code>OpenSearch_X.Y</code>.</p>
2688
2784
  * @public
2689
2785
  */
2690
- EngineVersion?: string;
2786
+ EngineVersion?: string | undefined;
2691
2787
  /**
2692
2788
  * <p>Container for the cluster configuration of the domain.</p>
2693
2789
  * @public
@@ -2697,111 +2793,111 @@ export interface DomainStatus {
2697
2793
  * <p>Container for EBS-based storage settings for the domain.</p>
2698
2794
  * @public
2699
2795
  */
2700
- EBSOptions?: EBSOptions;
2796
+ EBSOptions?: EBSOptions | undefined;
2701
2797
  /**
2702
2798
  * <p>Identity and Access Management (IAM) policy document specifying the access policies for the
2703
2799
  * domain.</p>
2704
2800
  * @public
2705
2801
  */
2706
- AccessPolicies?: string;
2802
+ AccessPolicies?: string | undefined;
2707
2803
  /**
2708
2804
  * <p>The type of IP addresses supported by the endpoint for the domain.</p>
2709
2805
  * @public
2710
2806
  */
2711
- IPAddressType?: IPAddressType;
2807
+ IPAddressType?: IPAddressType | undefined;
2712
2808
  /**
2713
2809
  * <p>DEPRECATED. Container for parameters required to configure automated snapshots of domain
2714
2810
  * indexes.</p>
2715
2811
  * @public
2716
2812
  */
2717
- SnapshotOptions?: SnapshotOptions;
2813
+ SnapshotOptions?: SnapshotOptions | undefined;
2718
2814
  /**
2719
2815
  * <p>The VPC configuration for the domain.</p>
2720
2816
  * @public
2721
2817
  */
2722
- VPCOptions?: VPCDerivedInfo;
2818
+ VPCOptions?: VPCDerivedInfo | undefined;
2723
2819
  /**
2724
2820
  * <p>Key-value pairs to configure Amazon Cognito authentication for OpenSearch Dashboards.</p>
2725
2821
  * @public
2726
2822
  */
2727
- CognitoOptions?: CognitoOptions;
2823
+ CognitoOptions?: CognitoOptions | undefined;
2728
2824
  /**
2729
2825
  * <p>Encryption at rest settings for the domain.</p>
2730
2826
  * @public
2731
2827
  */
2732
- EncryptionAtRestOptions?: EncryptionAtRestOptions;
2828
+ EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
2733
2829
  /**
2734
2830
  * <p>Whether node-to-node encryption is enabled or disabled.</p>
2735
2831
  * @public
2736
2832
  */
2737
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
2833
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
2738
2834
  /**
2739
2835
  * <p>Key-value pairs that specify advanced configuration options.</p>
2740
2836
  * @public
2741
2837
  */
2742
- AdvancedOptions?: Record<string, string>;
2838
+ AdvancedOptions?: Record<string, string> | undefined;
2743
2839
  /**
2744
2840
  * <p>Log publishing options for the domain.</p>
2745
2841
  * @public
2746
2842
  */
2747
- LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
2843
+ LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>> | undefined;
2748
2844
  /**
2749
2845
  * <p>The current status of the domain's service software.</p>
2750
2846
  * @public
2751
2847
  */
2752
- ServiceSoftwareOptions?: ServiceSoftwareOptions;
2848
+ ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
2753
2849
  /**
2754
2850
  * <p>Additional options for the domain endpoint, such as whether to require HTTPS for all
2755
2851
  * traffic.</p>
2756
2852
  * @public
2757
2853
  */
2758
- DomainEndpointOptions?: DomainEndpointOptions;
2854
+ DomainEndpointOptions?: DomainEndpointOptions | undefined;
2759
2855
  /**
2760
2856
  * <p>Settings for fine-grained access control.</p>
2761
2857
  * @public
2762
2858
  */
2763
- AdvancedSecurityOptions?: AdvancedSecurityOptions;
2859
+ AdvancedSecurityOptions?: AdvancedSecurityOptions | undefined;
2764
2860
  /**
2765
2861
  * <p>Container for IAM Identity Center Option control for the domain.</p>
2766
2862
  * @public
2767
2863
  */
2768
- IdentityCenterOptions?: IdentityCenterOptions;
2864
+ IdentityCenterOptions?: IdentityCenterOptions | undefined;
2769
2865
  /**
2770
2866
  * <p>Auto-Tune settings for the domain.</p>
2771
2867
  * @public
2772
2868
  */
2773
- AutoTuneOptions?: AutoTuneOptionsOutput;
2869
+ AutoTuneOptions?: AutoTuneOptionsOutput | undefined;
2774
2870
  /**
2775
2871
  * <p>Information about a configuration change happening on the domain.</p>
2776
2872
  * @public
2777
2873
  */
2778
- ChangeProgressDetails?: ChangeProgressDetails;
2874
+ ChangeProgressDetails?: ChangeProgressDetails | undefined;
2779
2875
  /**
2780
2876
  * <p>Options that specify a custom 10-hour window during which OpenSearch Service can perform
2781
2877
  * configuration changes on the domain.</p>
2782
2878
  * @public
2783
2879
  */
2784
- OffPeakWindowOptions?: OffPeakWindowOptions;
2880
+ OffPeakWindowOptions?: OffPeakWindowOptions | undefined;
2785
2881
  /**
2786
2882
  * <p>Service software update options for the domain.</p>
2787
2883
  * @public
2788
2884
  */
2789
- SoftwareUpdateOptions?: SoftwareUpdateOptions;
2885
+ SoftwareUpdateOptions?: SoftwareUpdateOptions | undefined;
2790
2886
  /**
2791
2887
  * <p>The status of any changes that are currently in progress for the domain.</p>
2792
2888
  * @public
2793
2889
  */
2794
- DomainProcessingStatus?: DomainProcessingStatusType;
2890
+ DomainProcessingStatus?: DomainProcessingStatusType | undefined;
2795
2891
  /**
2796
2892
  * <p>Information about the domain properties that are currently being modified.</p>
2797
2893
  * @public
2798
2894
  */
2799
- ModifyingProperties?: ModifyingProperties[];
2895
+ ModifyingProperties?: ModifyingProperties[] | undefined;
2800
2896
  /**
2801
2897
  * <p>Container for parameters required to enable all machine learning features.</p>
2802
2898
  * @public
2803
2899
  */
2804
- AIMLOptions?: AIMLOptionsOutput;
2900
+ AIMLOptions?: AIMLOptionsOutput | undefined;
2805
2901
  }
2806
2902
  /**
2807
2903
  * <p>The result of a <code>CreateDomain</code> operation. Contains the status of the newly
@@ -2813,7 +2909,7 @@ export interface CreateDomainResponse {
2813
2909
  * <p>The status of the newly created domain.</p>
2814
2910
  * @public
2815
2911
  */
2816
- DomainStatus?: DomainStatus;
2912
+ DomainStatus?: DomainStatus | undefined;
2817
2913
  }
2818
2914
  /**
2819
2915
  * <p>An exception for trying to create or access a sub-resource that's either invalid or not supported.</p>
@@ -2862,7 +2958,7 @@ export interface CrossClusterSearchConnectionProperties {
2862
2958
  * queries return partial results despite failures on one or more remote clusters.</p>
2863
2959
  * @public
2864
2960
  */
2865
- SkipUnavailable?: SkipUnavailableStatus;
2961
+ SkipUnavailable?: SkipUnavailableStatus | undefined;
2866
2962
  }
2867
2963
  /**
2868
2964
  * <p>The connection properties of an outbound connection.</p>
@@ -2876,12 +2972,12 @@ export interface ConnectionProperties {
2876
2972
  * <p>The endpoint of the remote domain. Applicable for VPC_ENDPOINT connection mode.</p>
2877
2973
  * @public
2878
2974
  */
2879
- Endpoint?: string;
2975
+ Endpoint?: string | undefined;
2880
2976
  /**
2881
2977
  * <p>The connection properties for cross cluster search.</p>
2882
2978
  * @public
2883
2979
  */
2884
- CrossClusterSearch?: CrossClusterSearchConnectionProperties;
2980
+ CrossClusterSearch?: CrossClusterSearchConnectionProperties | undefined;
2885
2981
  }
2886
2982
  /**
2887
2983
  * <p>Container for the parameters to the <code>CreateOutboundConnection</code> operation.</p>
@@ -2907,12 +3003,12 @@ export interface CreateOutboundConnectionRequest {
2907
3003
  * <p>The connection mode.</p>
2908
3004
  * @public
2909
3005
  */
2910
- ConnectionMode?: ConnectionMode;
3006
+ ConnectionMode?: ConnectionMode | undefined;
2911
3007
  /**
2912
3008
  * <p>The <code>ConnectionProperties</code> for the outbound connection.</p>
2913
3009
  * @public
2914
3010
  */
2915
- ConnectionProperties?: ConnectionProperties;
3011
+ ConnectionProperties?: ConnectionProperties | undefined;
2916
3012
  }
2917
3013
  /**
2918
3014
  * @public
@@ -2992,12 +3088,12 @@ export interface OutboundConnectionStatus {
2992
3088
  * </ul>
2993
3089
  * @public
2994
3090
  */
2995
- StatusCode?: OutboundConnectionStatusCode;
3091
+ StatusCode?: OutboundConnectionStatusCode | undefined;
2996
3092
  /**
2997
3093
  * <p>Verbose information for the outbound connection.</p>
2998
3094
  * @public
2999
3095
  */
3000
- Message?: string;
3096
+ Message?: string | undefined;
3001
3097
  }
3002
3098
  /**
3003
3099
  * <p>The result of a <code>CreateOutboundConnection</code> request. Contains details about the
@@ -3009,38 +3105,93 @@ export interface CreateOutboundConnectionResponse {
3009
3105
  * <p>Information about the source (local) domain.</p>
3010
3106
  * @public
3011
3107
  */
3012
- LocalDomainInfo?: DomainInformationContainer;
3108
+ LocalDomainInfo?: DomainInformationContainer | undefined;
3013
3109
  /**
3014
3110
  * <p>Information about the destination (remote) domain.</p>
3015
3111
  * @public
3016
3112
  */
3017
- RemoteDomainInfo?: DomainInformationContainer;
3113
+ RemoteDomainInfo?: DomainInformationContainer | undefined;
3018
3114
  /**
3019
3115
  * <p>Name of the connection.</p>
3020
3116
  * @public
3021
3117
  */
3022
- ConnectionAlias?: string;
3118
+ ConnectionAlias?: string | undefined;
3023
3119
  /**
3024
3120
  * <p>The status of the connection.</p>
3025
3121
  * @public
3026
3122
  */
3027
- ConnectionStatus?: OutboundConnectionStatus;
3123
+ ConnectionStatus?: OutboundConnectionStatus | undefined;
3028
3124
  /**
3029
3125
  * <p>The unique identifier for the created outbound connection, which is used for subsequent
3030
3126
  * operations on the connection.</p>
3031
3127
  * @public
3032
3128
  */
3033
- ConnectionId?: string;
3129
+ ConnectionId?: string | undefined;
3034
3130
  /**
3035
3131
  * <p>The connection mode.</p>
3036
3132
  * @public
3037
3133
  */
3038
- ConnectionMode?: ConnectionMode;
3134
+ ConnectionMode?: ConnectionMode | undefined;
3039
3135
  /**
3040
3136
  * <p>The <code>ConnectionProperties</code> for the newly created connection.</p>
3041
3137
  * @public
3042
3138
  */
3043
- ConnectionProperties?: ConnectionProperties;
3139
+ ConnectionProperties?: ConnectionProperties | undefined;
3140
+ }
3141
+ /**
3142
+ * @public
3143
+ * @enum
3144
+ */
3145
+ export declare const RequirementLevel: {
3146
+ readonly NONE: "NONE";
3147
+ readonly OPTIONAL: "OPTIONAL";
3148
+ readonly REQUIRED: "REQUIRED";
3149
+ };
3150
+ /**
3151
+ * @public
3152
+ */
3153
+ export type RequirementLevel = (typeof RequirementLevel)[keyof typeof RequirementLevel];
3154
+ /**
3155
+ * <p> The configuration parameters for a package.</p>
3156
+ * @public
3157
+ */
3158
+ export interface PackageConfiguration {
3159
+ /**
3160
+ * <p>The license requirements for the package.</p>
3161
+ * @public
3162
+ */
3163
+ LicenseRequirement: RequirementLevel | undefined;
3164
+ /**
3165
+ * <p>The relative file path for the license associated with the package.</p>
3166
+ * @public
3167
+ */
3168
+ LicenseFilepath?: string | undefined;
3169
+ /**
3170
+ * <p>The configuration requirements for the package.</p>
3171
+ * @public
3172
+ */
3173
+ ConfigurationRequirement: RequirementLevel | undefined;
3174
+ /**
3175
+ * <p>This indicates whether a B/G deployment is required for updating the configuration that the plugin is prerequisite for.</p>
3176
+ * @public
3177
+ */
3178
+ RequiresRestartForConfigurationUpdate?: boolean | undefined;
3179
+ }
3180
+ /**
3181
+ * <p>Encryption options for a package.</p>
3182
+ * @public
3183
+ */
3184
+ export interface PackageEncryptionOptions {
3185
+ /**
3186
+ * <p> KMS key ID for encrypting the package.</p>
3187
+ * @public
3188
+ */
3189
+ KmsKeyIdentifier?: string | undefined;
3190
+ /**
3191
+ * <p>This indicates whether encryption is enabled for the package.</p>
3192
+ * @public
3193
+ */
3194
+ EncryptionEnabled: boolean | undefined;
3044
3195
  }
3045
3196
  /**
3046
3197
  * <p>The Amazon S3 location to import the package from.</p>
@@ -3051,12 +3202,25 @@ export interface PackageSource {
3051
3202
  * <p>The name of the Amazon S3 bucket containing the package.</p>
3052
3203
  * @public
3053
3204
  */
3054
- S3BucketName?: string;
3205
+ S3BucketName?: string | undefined;
3055
3206
  /**
3056
3207
  * <p>Key (file name) of the package.</p>
3057
3208
  * @public
3058
3209
  */
3059
- S3Key?: string;
3210
+ S3Key?: string | undefined;
3211
+ }
3212
+ /**
3213
+ * <p>The vending options for a package to determine if the package can be used by other users.
3214
+ * </p>
3215
+ * @public
3216
+ */
3217
+ export interface PackageVendingOptions {
3218
+ /**
3219
+ * <p>This indicates whether vending is enabled for the package to determine if package can be used by other users.
3220
+ * </p>
3221
+ * @public
3222
+ */
3223
+ VendingEnabled: boolean | undefined;
3060
3224
  }
3061
3225
  /**
3062
3226
  * <p>Container for request parameters to the <code>CreatePackage</code> operation.</p>
@@ -3077,12 +3241,33 @@ export interface CreatePackageRequest {
3077
3241
  * <p>Description of the package.</p>
3078
3242
  * @public
3079
3243
  */
3080
- PackageDescription?: string;
3244
+ PackageDescription?: string | undefined;
3081
3245
  /**
3082
3246
  * <p>The Amazon S3 location from which to import the package.</p>
3083
3247
  * @public
3084
3248
  */
3085
3249
  PackageSource: PackageSource | undefined;
3250
+ /**
3251
+ * <p> The configuration parameters for the package being created.</p>
3252
+ * @public
3253
+ */
3254
+ PackageConfiguration?: PackageConfiguration | undefined;
3255
+ /**
3256
+ * <p>The version of the Amazon OpenSearch Service engine for which is compatible with the package. This can only be specified for package type <code>ZIP-PLUGIN</code>
3257
+ * </p>
3258
+ * @public
3259
+ */
3260
+ EngineVersion?: string | undefined;
3261
+ /**
3262
+ * <p> The vending options for the package being created. They determine if the package can be vended to other users.</p>
3263
+ * @public
3264
+ */
3265
+ PackageVendingOptions?: PackageVendingOptions | undefined;
3266
+ /**
3267
+ * <p>The encryption parameters for the package being created.</p>
3268
+ * @public
3269
+ */
3270
+ PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
3086
3271
  }
3087
3272
  /**
3088
3273
  * <p>Basic information about the plugin.</p>
@@ -3093,27 +3278,27 @@ export interface PluginProperties {
3093
3278
  * <p>The name of the plugin.</p>
3094
3279
  * @public
3095
3280
  */
3096
- Name?: string;
3281
+ Name?: string | undefined;
3097
3282
  /**
3098
3283
  * <p>The description of the plugin.</p>
3099
3284
  * @public
3100
3285
  */
3101
- Description?: string;
3286
+ Description?: string | undefined;
3102
3287
  /**
3103
3288
  * <p>The version of the plugin.</p>
3104
3289
  * @public
3105
3290
  */
3106
- Version?: string;
3291
+ Version?: string | undefined;
3107
3292
  /**
3108
3293
  * <p>The name of the class to load.</p>
3109
3294
  * @public
3110
3295
  */
3111
- ClassName?: string;
3296
+ ClassName?: string | undefined;
3112
3297
  /**
3113
3298
  * <p>The uncompressed size of the plugin.</p>
3114
3299
  * @public
3115
3300
  */
3116
- UncompressedSizeInBytes?: number;
3301
+ UncompressedSizeInBytes?: number | undefined;
3117
3302
  }
3118
3303
  /**
3119
3304
  * @public
@@ -3142,58 +3327,83 @@ export interface PackageDetails {
3142
3327
  * <p>The unique identifier of the package.</p>
3143
3328
  * @public
3144
3329
  */
3145
- PackageID?: string;
3330
+ PackageID?: string | undefined;
3146
3331
  /**
3147
3332
  * <p>The user-specified name of the package.</p>
3148
3333
  * @public
3149
3334
  */
3150
- PackageName?: string;
3335
+ PackageName?: string | undefined;
3151
3336
  /**
3152
3337
  * <p>The type of package.</p>
3153
3338
  * @public
3154
3339
  */
3155
- PackageType?: PackageType;
3340
+ PackageType?: PackageType | undefined;
3156
3341
  /**
3157
3342
  * <p>User-specified description of the package.</p>
3158
3343
  * @public
3159
3344
  */
3160
- PackageDescription?: string;
3345
+ PackageDescription?: string | undefined;
3161
3346
  /**
3162
3347
  * <p>The current status of the package. The available options are <code>AVAILABLE</code>, <code>COPYING</code>, <code>COPY_FAILED</code>, <code>VALIDATNG</code>, <code>VALIDATION_FAILED</code>, <code>DELETING</code>, and <code>DELETE_FAILED</code>.</p>
3163
3348
  * @public
3164
3349
  */
3165
- PackageStatus?: PackageStatus;
3350
+ PackageStatus?: PackageStatus | undefined;
3166
3351
  /**
3167
3352
  * <p>The timestamp when the package was created.</p>
3168
3353
  * @public
3169
3354
  */
3170
- CreatedAt?: Date;
3355
+ CreatedAt?: Date | undefined;
3171
3356
  /**
3172
3357
  * <p>Date and time when the package was last updated.</p>
3173
3358
  * @public
3174
3359
  */
3175
- LastUpdatedAt?: Date;
3360
+ LastUpdatedAt?: Date | undefined;
3176
3361
  /**
3177
3362
  * <p>The package version.</p>
3178
3363
  * @public
3179
3364
  */
3180
- AvailablePackageVersion?: string;
3365
+ AvailablePackageVersion?: string | undefined;
3181
3366
  /**
3182
3367
  * <p>Additional information if the package is in an error state. Null otherwise.</p>
3183
3368
  * @public
3184
3369
  */
3185
- ErrorDetails?: ErrorDetails;
3370
+ ErrorDetails?: ErrorDetails | undefined;
3186
3371
  /**
3187
3372
  * <p>Version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or OpenSearch_X.Y.
3188
3373
  * Defaults to the latest version of OpenSearch.</p>
3189
3374
  * @public
3190
3375
  */
3191
- EngineVersion?: string;
3376
+ EngineVersion?: string | undefined;
3192
3377
  /**
3193
3378
  * <p>If the package is a <code>ZIP-PLUGIN</code> package, additional information about plugin properties.</p>
3194
3379
  * @public
3195
3380
  */
3196
- AvailablePluginProperties?: PluginProperties;
3381
+ AvailablePluginProperties?: PluginProperties | undefined;
3382
+ /**
3383
+ * <p>This represents the available configuration parameters for the package.</p>
3384
+ * @public
3385
+ */
3386
+ AvailablePackageConfiguration?: PackageConfiguration | undefined;
3387
+ /**
3388
+ * <p> A list of users who are allowed to view and associate the package. This field is only visible to the owner of a package.</p>
3389
+ * @public
3390
+ */
3391
+ AllowListedUserList?: string[] | undefined;
3392
+ /**
3393
+ * <p>The owner of the package who is allowed to create/update a package and add users to the package scope.</p>
3394
+ * @public
3395
+ */
3396
+ PackageOwner?: string | undefined;
3397
+ /**
3398
+ * <p>Package Vending Options for a package.</p>
3399
+ * @public
3400
+ */
3401
+ PackageVendingOptions?: PackageVendingOptions | undefined;
3402
+ /**
3403
+ * <p>Package Encryption Options for a package.</p>
3404
+ * @public
3405
+ */
3406
+ PackageEncryptionOptions?: PackageEncryptionOptions | undefined;
3197
3407
  }
3198
3408
  /**
3199
3409
  * <p>Container for the response returned by the <code>CreatePackage</code> operation.</p>
@@ -3204,7 +3414,7 @@ export interface CreatePackageResponse {
3204
3414
  * <p>Basic information about an OpenSearch Service package.</p>
3205
3415
  * @public
3206
3416
  */
3207
- PackageDetails?: PackageDetails;
3417
+ PackageDetails?: PackageDetails | undefined;
3208
3418
  }
3209
3419
  /**
3210
3420
  * @public
@@ -3224,7 +3434,7 @@ export interface CreateVpcEndpointRequest {
3224
3434
  * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
3225
3435
  * @public
3226
3436
  */
3227
- ClientToken?: string;
3437
+ ClientToken?: string | undefined;
3228
3438
  }
3229
3439
  /**
3230
3440
  * @public
@@ -3253,33 +3463,33 @@ export interface VpcEndpoint {
3253
3463
  * <p>The unique identifier of the endpoint.</p>
3254
3464
  * @public
3255
3465
  */
3256
- VpcEndpointId?: string;
3466
+ VpcEndpointId?: string | undefined;
3257
3467
  /**
3258
3468
  * <p>The creator of the endpoint.</p>
3259
3469
  * @public
3260
3470
  */
3261
- VpcEndpointOwner?: string;
3471
+ VpcEndpointOwner?: string | undefined;
3262
3472
  /**
3263
3473
  * <p>The Amazon Resource Name (ARN) of the domain associated with the endpoint.</p>
3264
3474
  * @public
3265
3475
  */
3266
- DomainArn?: string;
3476
+ DomainArn?: string | undefined;
3267
3477
  /**
3268
3478
  * <p>Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC
3269
3479
  * endpoint.</p>
3270
3480
  * @public
3271
3481
  */
3272
- VpcOptions?: VPCDerivedInfo;
3482
+ VpcOptions?: VPCDerivedInfo | undefined;
3273
3483
  /**
3274
3484
  * <p>The current status of the endpoint.</p>
3275
3485
  * @public
3276
3486
  */
3277
- Status?: VpcEndpointStatus;
3487
+ Status?: VpcEndpointStatus | undefined;
3278
3488
  /**
3279
3489
  * <p>The connection endpoint ID for connecting to the domain.</p>
3280
3490
  * @public
3281
3491
  */
3282
- Endpoint?: string;
3492
+ Endpoint?: string | undefined;
3283
3493
  }
3284
3494
  /**
3285
3495
  * @public
@@ -3332,7 +3542,7 @@ export interface DeleteDataSourceResponse {
3332
3542
  * <p>A message associated with deletion of the data source.</p>
3333
3543
  * @public
3334
3544
  */
3335
- Message?: string;
3545
+ Message?: string | undefined;
3336
3546
  }
3337
3547
  /**
3338
3548
  * <p>Container for the parameters to the <code>DeleteDomain</code> operation.</p>
@@ -3355,7 +3565,7 @@ export interface DeleteDomainResponse {
3355
3565
  * <p>The status of the domain being deleted.</p>
3356
3566
  * @public
3357
3567
  */
3358
- DomainStatus?: DomainStatus;
3568
+ DomainStatus?: DomainStatus | undefined;
3359
3569
  }
3360
3570
  /**
3361
3571
  * <p>Container for the parameters to the <code>DeleteInboundConnection</code> operation.</p>
@@ -3378,7 +3588,7 @@ export interface DeleteInboundConnectionResponse {
3378
3588
  * <p>The deleted inbound connection.</p>
3379
3589
  * @public
3380
3590
  */
3381
- Connection?: InboundConnection;
3591
+ Connection?: InboundConnection | undefined;
3382
3592
  }
3383
3593
  /**
3384
3594
  * <p>Container for the parameters to the <code>DeleteOutboundConnection</code> operation.</p>
@@ -3400,37 +3610,37 @@ export interface OutboundConnection {
3400
3610
  * <p>Information about the source (local) domain.</p>
3401
3611
  * @public
3402
3612
  */
3403
- LocalDomainInfo?: DomainInformationContainer;
3613
+ LocalDomainInfo?: DomainInformationContainer | undefined;
3404
3614
  /**
3405
3615
  * <p>Information about the destination (remote) domain.</p>
3406
3616
  * @public
3407
3617
  */
3408
- RemoteDomainInfo?: DomainInformationContainer;
3618
+ RemoteDomainInfo?: DomainInformationContainer | undefined;
3409
3619
  /**
3410
3620
  * <p>Unique identifier of the connection.</p>
3411
3621
  * @public
3412
3622
  */
3413
- ConnectionId?: string;
3623
+ ConnectionId?: string | undefined;
3414
3624
  /**
3415
3625
  * <p>Name of the connection.</p>
3416
3626
  * @public
3417
3627
  */
3418
- ConnectionAlias?: string;
3628
+ ConnectionAlias?: string | undefined;
3419
3629
  /**
3420
3630
  * <p>Status of the connection.</p>
3421
3631
  * @public
3422
3632
  */
3423
- ConnectionStatus?: OutboundConnectionStatus;
3633
+ ConnectionStatus?: OutboundConnectionStatus | undefined;
3424
3634
  /**
3425
3635
  * <p>The connection mode.</p>
3426
3636
  * @public
3427
3637
  */
3428
- ConnectionMode?: ConnectionMode;
3638
+ ConnectionMode?: ConnectionMode | undefined;
3429
3639
  /**
3430
3640
  * <p>Properties for the outbound connection.</p>
3431
3641
  * @public
3432
3642
  */
3433
- ConnectionProperties?: ConnectionProperties;
3643
+ ConnectionProperties?: ConnectionProperties | undefined;
3434
3644
  }
3435
3645
  /**
3436
3646
  * <p>Details about the deleted outbound connection.</p>
@@ -3441,7 +3651,7 @@ export interface DeleteOutboundConnectionResponse {
3441
3651
  * <p>The deleted inbound connection.</p>
3442
3652
  * @public
3443
3653
  */
3444
- Connection?: OutboundConnection;
3654
+ Connection?: OutboundConnection | undefined;
3445
3655
  }
3446
3656
  /**
3447
3657
  * <p>Deletes a package from OpenSearch Service. The package can't be associated with any
@@ -3464,7 +3674,7 @@ export interface DeletePackageResponse {
3464
3674
  * <p> Information about the deleted package.</p>
3465
3675
  * @public
3466
3676
  */
3467
- PackageDetails?: PackageDetails;
3677
+ PackageDetails?: PackageDetails | undefined;
3468
3678
  }
3469
3679
  /**
3470
3680
  * @public
@@ -3485,22 +3695,22 @@ export interface VpcEndpointSummary {
3485
3695
  * <p>The unique identifier of the endpoint.</p>
3486
3696
  * @public
3487
3697
  */
3488
- VpcEndpointId?: string;
3698
+ VpcEndpointId?: string | undefined;
3489
3699
  /**
3490
3700
  * <p>The creator of the endpoint.</p>
3491
3701
  * @public
3492
3702
  */
3493
- VpcEndpointOwner?: string;
3703
+ VpcEndpointOwner?: string | undefined;
3494
3704
  /**
3495
3705
  * <p>The Amazon Resource Name (ARN) of the domain associated with the endpoint.</p>
3496
3706
  * @public
3497
3707
  */
3498
- DomainArn?: string;
3708
+ DomainArn?: string | undefined;
3499
3709
  /**
3500
3710
  * <p>The current status of the endpoint.</p>
3501
3711
  * @public
3502
3712
  */
3503
- Status?: VpcEndpointStatus;
3713
+ Status?: VpcEndpointStatus | undefined;
3504
3714
  }
3505
3715
  /**
3506
3716
  * @public
@@ -3550,14 +3760,14 @@ export interface DescribeDomainAutoTunesRequest {
3550
3760
  * <code>nextToken</code> to get the next page of results.</p>
3551
3761
  * @public
3552
3762
  */
3553
- MaxResults?: number;
3763
+ MaxResults?: number | undefined;
3554
3764
  /**
3555
3765
  * <p>If your initial <code>DescribeDomainAutoTunes</code> operation returns a
3556
3766
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
3557
3767
  * <code>DescribeDomainAutoTunes</code> operations, which returns results in the next page.</p>
3558
3768
  * @public
3559
3769
  */
3560
- NextToken?: string;
3770
+ NextToken?: string | undefined;
3561
3771
  }
3562
3772
  /**
3563
3773
  * @public
@@ -3594,23 +3804,23 @@ export interface ScheduledAutoTuneDetails {
3594
3804
  * <p>The date and time when the Auto-Tune action is scheduled for the domain.</p>
3595
3805
  * @public
3596
3806
  */
3597
- Date?: Date;
3807
+ Date?: Date | undefined;
3598
3808
  /**
3599
3809
  * <p>The type of Auto-Tune action.</p>
3600
3810
  * @public
3601
3811
  */
3602
- ActionType?: ScheduledAutoTuneActionType;
3812
+ ActionType?: ScheduledAutoTuneActionType | undefined;
3603
3813
  /**
3604
3814
  * <p>A description of the Auto-Tune action.</p>
3605
3815
  * @public
3606
3816
  */
3607
- Action?: string;
3817
+ Action?: string | undefined;
3608
3818
  /**
3609
3819
  * <p>The severity of the Auto-Tune action. Valid values are <code>LOW</code>,
3610
3820
  * <code>MEDIUM</code>, and <code>HIGH</code>.</p>
3611
3821
  * @public
3612
3822
  */
3613
- Severity?: ScheduledAutoTuneSeverityType;
3823
+ Severity?: ScheduledAutoTuneSeverityType | undefined;
3614
3824
  }
3615
3825
  /**
3616
3826
  * <p>Specifies details about a scheduled Auto-Tune action. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html">Auto-Tune for
@@ -3622,7 +3832,7 @@ export interface AutoTuneDetails {
3622
3832
  * <p>Container for details about a scheduled Auto-Tune action.</p>
3623
3833
  * @public
3624
3834
  */
3625
- ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails;
3835
+ ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails | undefined;
3626
3836
  }
3627
3837
  /**
3628
3838
  * @public
@@ -3645,12 +3855,12 @@ export interface AutoTune {
3645
3855
  * <p>The type of Auto-Tune action.</p>
3646
3856
  * @public
3647
3857
  */
3648
- AutoTuneType?: AutoTuneType;
3858
+ AutoTuneType?: AutoTuneType | undefined;
3649
3859
  /**
3650
3860
  * <p>Details about an Auto-Tune action.</p>
3651
3861
  * @public
3652
3862
  */
3653
- AutoTuneDetails?: AutoTuneDetails;
3863
+ AutoTuneDetails?: AutoTuneDetails | undefined;
3654
3864
  }
3655
3865
  /**
3656
3866
  * <p>The result of a <code>DescribeDomainAutoTunes</code> request.</p>
@@ -3661,14 +3871,14 @@ export interface DescribeDomainAutoTunesResponse {
3661
3871
  * <p>The list of setting adjustments that Auto-Tune has made to the domain.</p>
3662
3872
  * @public
3663
3873
  */
3664
- AutoTunes?: AutoTune[];
3874
+ AutoTunes?: AutoTune[] | undefined;
3665
3875
  /**
3666
3876
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
3667
3877
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
3668
3878
  * returned token to retrieve the next page.</p>
3669
3879
  * @public
3670
3880
  */
3671
- NextToken?: string;
3881
+ NextToken?: string | undefined;
3672
3882
  }
3673
3883
  /**
3674
3884
  * <p>Container for the parameters to the <code>DescribeDomainChangeProgress</code>
@@ -3686,7 +3896,7 @@ export interface DescribeDomainChangeProgressRequest {
3686
3896
  * request returns information about the most recent configuration change.</p>
3687
3897
  * @public
3688
3898
  */
3689
- ChangeId?: string;
3899
+ ChangeId?: string | undefined;
3690
3900
  }
3691
3901
  /**
3692
3902
  * <p>Progress details for each stage of a domain update.</p>
@@ -3697,22 +3907,22 @@ export interface ChangeProgressStage {
3697
3907
  * <p>The name of the stage.</p>
3698
3908
  * @public
3699
3909
  */
3700
- Name?: string;
3910
+ Name?: string | undefined;
3701
3911
  /**
3702
3912
  * <p>The status of the stage.</p>
3703
3913
  * @public
3704
3914
  */
3705
- Status?: string;
3915
+ Status?: string | undefined;
3706
3916
  /**
3707
3917
  * <p>The description of the stage.</p>
3708
3918
  * @public
3709
3919
  */
3710
- Description?: string;
3920
+ Description?: string | undefined;
3711
3921
  /**
3712
3922
  * <p>The most recent updated timestamp of the stage.</p>
3713
3923
  * @public
3714
3924
  */
3715
- LastUpdated?: Date;
3925
+ LastUpdated?: Date | undefined;
3716
3926
  }
3717
3927
  /**
3718
3928
  * @public
@@ -3737,52 +3947,52 @@ export interface ChangeProgressStatusDetails {
3737
3947
  * <p>The unique change identifier associated with a specific domain configuration change.</p>
3738
3948
  * @public
3739
3949
  */
3740
- ChangeId?: string;
3950
+ ChangeId?: string | undefined;
3741
3951
  /**
3742
3952
  * <p>The time at which the configuration change is made on the domain.</p>
3743
3953
  * @public
3744
3954
  */
3745
- StartTime?: Date;
3955
+ StartTime?: Date | undefined;
3746
3956
  /**
3747
3957
  * <p>The overall status of the domain configuration change.</p>
3748
3958
  * @public
3749
3959
  */
3750
- Status?: OverallChangeStatus;
3960
+ Status?: OverallChangeStatus | undefined;
3751
3961
  /**
3752
3962
  * <p>The list of properties in the domain configuration change that are still pending.</p>
3753
3963
  * @public
3754
3964
  */
3755
- PendingProperties?: string[];
3965
+ PendingProperties?: string[] | undefined;
3756
3966
  /**
3757
3967
  * <p>The list of properties in the domain configuration change that have completed.</p>
3758
3968
  * @public
3759
3969
  */
3760
- CompletedProperties?: string[];
3970
+ CompletedProperties?: string[] | undefined;
3761
3971
  /**
3762
3972
  * <p>The total number of stages required for the configuration change.</p>
3763
3973
  * @public
3764
3974
  */
3765
- TotalNumberOfStages?: number;
3975
+ TotalNumberOfStages?: number | undefined;
3766
3976
  /**
3767
3977
  * <p>The specific stages that the domain is going through to perform the configuration change.</p>
3768
3978
  * @public
3769
3979
  */
3770
- ChangeProgressStages?: ChangeProgressStage[];
3980
+ ChangeProgressStages?: ChangeProgressStage[] | undefined;
3771
3981
  /**
3772
3982
  * <p>The last time that the status of the configuration change was updated.</p>
3773
3983
  * @public
3774
3984
  */
3775
- LastUpdatedTime?: Date;
3985
+ LastUpdatedTime?: Date | undefined;
3776
3986
  /**
3777
3987
  * <p>The current status of the configuration change.</p>
3778
3988
  * @public
3779
3989
  */
3780
- ConfigChangeStatus?: ConfigChangeStatus;
3990
+ ConfigChangeStatus?: ConfigChangeStatus | undefined;
3781
3991
  /**
3782
3992
  * <p>The IAM principal who initiated the configuration change.</p>
3783
3993
  * @public
3784
3994
  */
3785
- InitiatedBy?: InitiatedBy;
3995
+ InitiatedBy?: InitiatedBy | undefined;
3786
3996
  }
3787
3997
  /**
3788
3998
  * <p>The result of a <code>DescribeDomainChangeProgress</code> request. Contains progress
@@ -3794,7 +4004,7 @@ export interface DescribeDomainChangeProgressResponse {
3794
4004
  * <p>Container for information about the stages of a configuration change happening on a domain.</p>
3795
4005
  * @public
3796
4006
  */
3797
- ChangeProgressStatus?: ChangeProgressStatusDetails;
4007
+ ChangeProgressStatus?: ChangeProgressStatusDetails | undefined;
3798
4008
  }
3799
4009
  /**
3800
4010
  * <p>Container for the parameters to the <code>DescribeDomainConfig</code> operation.</p>
@@ -3829,7 +4039,7 @@ export interface AutoTuneOptions {
3829
4039
  * <p>Whether Auto-Tune is enabled or disabled.</p>
3830
4040
  * @public
3831
4041
  */
3832
- DesiredState?: AutoTuneDesiredState;
4042
+ DesiredState?: AutoTuneDesiredState | undefined;
3833
4043
  /**
3834
4044
  * <p>When disabling Auto-Tune, specify <code>NO_ROLLBACK</code> to retain all prior Auto-Tune
3835
4045
  * settings or <code>DEFAULT_ROLLBACK</code> to revert to the OpenSearch Service defaults. If you
@@ -3837,20 +4047,20 @@ export interface AutoTuneOptions {
3837
4047
  * request. Otherwise, OpenSearch Service is unable to perform the rollback.</p>
3838
4048
  * @public
3839
4049
  */
3840
- RollbackOnDisable?: RollbackOnDisable;
4050
+ RollbackOnDisable?: RollbackOnDisable | undefined;
3841
4051
  /**
3842
4052
  * <p>DEPRECATED. Use <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/off-peak.html">off-peak window</a>
3843
4053
  * instead.</p>
3844
4054
  * <p>A list of maintenance schedules during which Auto-Tune can deploy changes.</p>
3845
4055
  * @public
3846
4056
  */
3847
- MaintenanceSchedules?: AutoTuneMaintenanceSchedule[];
4057
+ MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | undefined;
3848
4058
  /**
3849
4059
  * <p>Whether to use the domain's <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_OffPeakWindow.html">off-peak window</a> to
3850
4060
  * deploy configuration changes on the domain rather than a maintenance schedule.</p>
3851
4061
  * @public
3852
4062
  */
3853
- UseOffPeakWindow?: boolean;
4063
+ UseOffPeakWindow?: boolean | undefined;
3854
4064
  }
3855
4065
  /**
3856
4066
  * <p>The current status of Auto-Tune for the domain. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html">Auto-Tune for
@@ -3872,7 +4082,7 @@ export interface AutoTuneStatus {
3872
4082
  * <p>The latest version of the Auto-Tune options.</p>
3873
4083
  * @public
3874
4084
  */
3875
- UpdateVersion?: number;
4085
+ UpdateVersion?: number | undefined;
3876
4086
  /**
3877
4087
  * <p>The current state of Auto-Tune on the domain.</p>
3878
4088
  * @public
@@ -3882,12 +4092,12 @@ export interface AutoTuneStatus {
3882
4092
  * <p>Any errors that occurred while enabling or disabling Auto-Tune.</p>
3883
4093
  * @public
3884
4094
  */
3885
- ErrorMessage?: string;
4095
+ ErrorMessage?: string | undefined;
3886
4096
  /**
3887
4097
  * <p>Indicates whether the domain is being deleted.</p>
3888
4098
  * @public
3889
4099
  */
3890
- PendingDeletion?: boolean;
4100
+ PendingDeletion?: boolean | undefined;
3891
4101
  }
3892
4102
  /**
3893
4103
  * <p>The Auto-Tune status for the domain.</p>
@@ -3898,12 +4108,12 @@ export interface AutoTuneOptionsStatus {
3898
4108
  * <p>Auto-Tune settings for updating a domain.</p>
3899
4109
  * @public
3900
4110
  */
3901
- Options?: AutoTuneOptions;
4111
+ Options?: AutoTuneOptions | undefined;
3902
4112
  /**
3903
4113
  * <p>The current status of Auto-Tune for a domain.</p>
3904
4114
  * @public
3905
4115
  */
3906
- Status?: AutoTuneStatus;
4116
+ Status?: AutoTuneStatus | undefined;
3907
4117
  }
3908
4118
  /**
3909
4119
  * <p>The cluster configuration status for a domain.</p>
@@ -4043,12 +4253,12 @@ export interface LogPublishingOptionsStatus {
4043
4253
  * <p>The log publishing options configured for the domain.</p>
4044
4254
  * @public
4045
4255
  */
4046
- Options?: Partial<Record<LogType, LogPublishingOption>>;
4256
+ Options?: Partial<Record<LogType, LogPublishingOption>> | undefined;
4047
4257
  /**
4048
4258
  * <p>The status of the log publishing options for the domain.</p>
4049
4259
  * @public
4050
4260
  */
4051
- Status?: OptionStatus;
4261
+ Status?: OptionStatus | undefined;
4052
4262
  }
4053
4263
  /**
4054
4264
  * <p>Status of the node-to-node encryption options for the specified domain.</p>
@@ -4076,12 +4286,12 @@ export interface OffPeakWindowOptionsStatus {
4076
4286
  * <p>The domain's off-peak window configuration.</p>
4077
4287
  * @public
4078
4288
  */
4079
- Options?: OffPeakWindowOptions;
4289
+ Options?: OffPeakWindowOptions | undefined;
4080
4290
  /**
4081
4291
  * <p>The current status of off-peak window options.</p>
4082
4292
  * @public
4083
4293
  */
4084
- Status?: OptionStatus;
4294
+ Status?: OptionStatus | undefined;
4085
4295
  }
4086
4296
  /**
4087
4297
  * <p>Container for information about a daily automated snapshot for an OpenSearch Service
@@ -4109,12 +4319,12 @@ export interface SoftwareUpdateOptionsStatus {
4109
4319
  * <p>The service software update options for a domain.</p>
4110
4320
  * @public
4111
4321
  */
4112
- Options?: SoftwareUpdateOptions;
4322
+ Options?: SoftwareUpdateOptions | undefined;
4113
4323
  /**
4114
4324
  * <p>The status of service software update options, including creation date and last updated date.</p>
4115
4325
  * @public
4116
4326
  */
4117
- Status?: OptionStatus;
4327
+ Status?: OptionStatus | undefined;
4118
4328
  }
4119
4329
  /**
4120
4330
  * <p>Status of the VPC options for a specified domain.</p>
@@ -4141,112 +4351,112 @@ export interface DomainConfig {
4141
4351
  * <p>The OpenSearch or Elasticsearch version that the domain is running.</p>
4142
4352
  * @public
4143
4353
  */
4144
- EngineVersion?: VersionStatus;
4354
+ EngineVersion?: VersionStatus | undefined;
4145
4355
  /**
4146
4356
  * <p>Container for the cluster configuration of a the domain.</p>
4147
4357
  * @public
4148
4358
  */
4149
- ClusterConfig?: ClusterConfigStatus;
4359
+ ClusterConfig?: ClusterConfigStatus | undefined;
4150
4360
  /**
4151
4361
  * <p>Container for EBS options configured for the domain.</p>
4152
4362
  * @public
4153
4363
  */
4154
- EBSOptions?: EBSOptionsStatus;
4364
+ EBSOptions?: EBSOptionsStatus | undefined;
4155
4365
  /**
4156
4366
  * <p>Specifies the access policies for the domain.</p>
4157
4367
  * @public
4158
4368
  */
4159
- AccessPolicies?: AccessPoliciesStatus;
4369
+ AccessPolicies?: AccessPoliciesStatus | undefined;
4160
4370
  /**
4161
4371
  * <p>Choose either dual stack or IPv4 as your IP address type.
4162
4372
  * Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option.
4163
4373
  * If you set your IP address type to dual stack, you can't change your address type later.</p>
4164
4374
  * @public
4165
4375
  */
4166
- IPAddressType?: IPAddressTypeStatus;
4376
+ IPAddressType?: IPAddressTypeStatus | undefined;
4167
4377
  /**
4168
4378
  * <p>DEPRECATED. Container for parameters required to configure automated snapshots of domain
4169
4379
  * indexes.</p>
4170
4380
  * @public
4171
4381
  */
4172
- SnapshotOptions?: SnapshotOptionsStatus;
4382
+ SnapshotOptions?: SnapshotOptionsStatus | undefined;
4173
4383
  /**
4174
4384
  * <p>The current VPC options for the domain and the status of any updates to their
4175
4385
  * configuration.</p>
4176
4386
  * @public
4177
4387
  */
4178
- VPCOptions?: VPCDerivedInfoStatus;
4388
+ VPCOptions?: VPCDerivedInfoStatus | undefined;
4179
4389
  /**
4180
4390
  * <p>Container for Amazon Cognito options for the domain.</p>
4181
4391
  * @public
4182
4392
  */
4183
- CognitoOptions?: CognitoOptionsStatus;
4393
+ CognitoOptions?: CognitoOptionsStatus | undefined;
4184
4394
  /**
4185
4395
  * <p>Key-value pairs to enable encryption at rest.</p>
4186
4396
  * @public
4187
4397
  */
4188
- EncryptionAtRestOptions?: EncryptionAtRestOptionsStatus;
4398
+ EncryptionAtRestOptions?: EncryptionAtRestOptionsStatus | undefined;
4189
4399
  /**
4190
4400
  * <p>Whether node-to-node encryption is enabled or disabled.</p>
4191
4401
  * @public
4192
4402
  */
4193
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptionsStatus;
4403
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptionsStatus | undefined;
4194
4404
  /**
4195
4405
  * <p>Key-value pairs to specify advanced configuration options. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced options</a>.</p>
4196
4406
  * @public
4197
4407
  */
4198
- AdvancedOptions?: AdvancedOptionsStatus;
4408
+ AdvancedOptions?: AdvancedOptionsStatus | undefined;
4199
4409
  /**
4200
4410
  * <p>Key-value pairs to configure log publishing.</p>
4201
4411
  * @public
4202
4412
  */
4203
- LogPublishingOptions?: LogPublishingOptionsStatus;
4413
+ LogPublishingOptions?: LogPublishingOptionsStatus | undefined;
4204
4414
  /**
4205
4415
  * <p>Additional options for the domain endpoint, such as whether to require HTTPS for all
4206
4416
  * traffic.</p>
4207
4417
  * @public
4208
4418
  */
4209
- DomainEndpointOptions?: DomainEndpointOptionsStatus;
4419
+ DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
4210
4420
  /**
4211
4421
  * <p>Container for fine-grained access control settings for the domain.</p>
4212
4422
  * @public
4213
4423
  */
4214
- AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus;
4424
+ AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus | undefined;
4215
4425
  /**
4216
4426
  * <p>Container for IAM Identity Center Option control for the domain.</p>
4217
4427
  * @public
4218
4428
  */
4219
- IdentityCenterOptions?: IdentityCenterOptionsStatus;
4429
+ IdentityCenterOptions?: IdentityCenterOptionsStatus | undefined;
4220
4430
  /**
4221
4431
  * <p>Container for Auto-Tune settings for the domain.</p>
4222
4432
  * @public
4223
4433
  */
4224
- AutoTuneOptions?: AutoTuneOptionsStatus;
4434
+ AutoTuneOptions?: AutoTuneOptionsStatus | undefined;
4225
4435
  /**
4226
4436
  * <p>Container for information about the progress of an existing configuration change.</p>
4227
4437
  * @public
4228
4438
  */
4229
- ChangeProgressDetails?: ChangeProgressDetails;
4439
+ ChangeProgressDetails?: ChangeProgressDetails | undefined;
4230
4440
  /**
4231
4441
  * <p>Container for off-peak window options for the domain.</p>
4232
4442
  * @public
4233
4443
  */
4234
- OffPeakWindowOptions?: OffPeakWindowOptionsStatus;
4444
+ OffPeakWindowOptions?: OffPeakWindowOptionsStatus | undefined;
4235
4445
  /**
4236
4446
  * <p>Software update options for the domain.</p>
4237
4447
  * @public
4238
4448
  */
4239
- SoftwareUpdateOptions?: SoftwareUpdateOptionsStatus;
4449
+ SoftwareUpdateOptions?: SoftwareUpdateOptionsStatus | undefined;
4240
4450
  /**
4241
4451
  * <p>Information about the domain properties that are currently being modified.</p>
4242
4452
  * @public
4243
4453
  */
4244
- ModifyingProperties?: ModifyingProperties[];
4454
+ ModifyingProperties?: ModifyingProperties[] | undefined;
4245
4455
  /**
4246
4456
  * <p>Container for parameters required to enable all machine learning features.</p>
4247
4457
  * @public
4248
4458
  */
4249
- AIMLOptions?: AIMLOptionsStatus;
4459
+ AIMLOptions?: AIMLOptionsStatus | undefined;
4250
4460
  }
4251
4461
  /**
4252
4462
  * <p>Contains the configuration information of the requested domain.</p>
@@ -4319,7 +4529,7 @@ export interface AvailabilityZoneInfo {
4319
4529
  * <p>The name of the Availability Zone.</p>
4320
4530
  * @public
4321
4531
  */
4322
- AvailabilityZoneName?: string;
4532
+ AvailabilityZoneName?: string | undefined;
4323
4533
  /**
4324
4534
  * <p>The current state of the Availability Zone. Current options are <code>Active</code> and <code>StandBy</code>.</p>
4325
4535
  * <ul>
@@ -4338,27 +4548,27 @@ export interface AvailabilityZoneInfo {
4338
4548
  * </ul>
4339
4549
  * @public
4340
4550
  */
4341
- ZoneStatus?: ZoneStatus;
4551
+ ZoneStatus?: ZoneStatus | undefined;
4342
4552
  /**
4343
4553
  * <p>The total number of data nodes configured in the Availability Zone.</p>
4344
4554
  * @public
4345
4555
  */
4346
- ConfiguredDataNodeCount?: string;
4556
+ ConfiguredDataNodeCount?: string | undefined;
4347
4557
  /**
4348
4558
  * <p>The number of data nodes active in the Availability Zone.</p>
4349
4559
  * @public
4350
4560
  */
4351
- AvailableDataNodeCount?: string;
4561
+ AvailableDataNodeCount?: string | undefined;
4352
4562
  /**
4353
4563
  * <p>The total number of primary and replica shards in the Availability Zone.</p>
4354
4564
  * @public
4355
4565
  */
4356
- TotalShards?: string;
4566
+ TotalShards?: string | undefined;
4357
4567
  /**
4358
4568
  * <p>The total number of primary and replica shards that aren't allocated to any of the nodes in the Availability Zone.</p>
4359
4569
  * @public
4360
4570
  */
4361
- TotalUnAssignedShards?: string;
4571
+ TotalUnAssignedShards?: string | undefined;
4362
4572
  }
4363
4573
  /**
4364
4574
  * <p>Information about the active domain environment.</p>
@@ -4369,7 +4579,7 @@ export interface EnvironmentInfo {
4369
4579
  * <p> A list of <code>AvailabilityZoneInfo</code> for the domain.</p>
4370
4580
  * @public
4371
4581
  */
4372
- AvailabilityZoneInformation?: AvailabilityZoneInfo[];
4582
+ AvailabilityZoneInformation?: AvailabilityZoneInfo[] | undefined;
4373
4583
  }
4374
4584
  /**
4375
4585
  * @public
@@ -4402,43 +4612,43 @@ export interface DescribeDomainHealthResponse {
4402
4612
  * </ul>
4403
4613
  * @public
4404
4614
  */
4405
- DomainState?: DomainState;
4615
+ DomainState?: DomainState | undefined;
4406
4616
  /**
4407
4617
  * <p>The number of Availability Zones configured for the domain. If the service is unable to fetch this information, it will return <code>NotAvailable</code>.</p>
4408
4618
  * @public
4409
4619
  */
4410
- AvailabilityZoneCount?: string;
4620
+ AvailabilityZoneCount?: string | undefined;
4411
4621
  /**
4412
4622
  * <p>The number of active Availability Zones configured for the domain. If the service is unable to fetch this information, it will return <code>NotAvailable</code>.</p>
4413
4623
  * @public
4414
4624
  */
4415
- ActiveAvailabilityZoneCount?: string;
4625
+ ActiveAvailabilityZoneCount?: string | undefined;
4416
4626
  /**
4417
4627
  * <p>The number of standby Availability Zones configured for the domain. If the service is unable to fetch this information, it will return <code>NotAvailable</code>.</p>
4418
4628
  * @public
4419
4629
  */
4420
- StandByAvailabilityZoneCount?: string;
4630
+ StandByAvailabilityZoneCount?: string | undefined;
4421
4631
  /**
4422
4632
  * <p>The number of data nodes configured for the domain. If the service is unable to fetch this information, it will return <code>NotAvailable</code>.</p>
4423
4633
  * @public
4424
4634
  */
4425
- DataNodeCount?: string;
4635
+ DataNodeCount?: string | undefined;
4426
4636
  /**
4427
4637
  * <p>A boolean that indicates if dedicated master nodes are activated for the domain.</p>
4428
4638
  * @public
4429
4639
  */
4430
- DedicatedMaster?: boolean;
4640
+ DedicatedMaster?: boolean | undefined;
4431
4641
  /**
4432
4642
  * <p>The number of nodes that can be elected as a master node. If dedicated master nodes is turned on, this value is the number of dedicated master nodes configured for the domain.
4433
4643
  * If the service is unable to fetch this information, it will return <code>NotAvailable</code>.</p>
4434
4644
  * @public
4435
4645
  */
4436
- MasterEligibleNodeCount?: string;
4646
+ MasterEligibleNodeCount?: string | undefined;
4437
4647
  /**
4438
4648
  * <p>The number of warm nodes configured for the domain.</p>
4439
4649
  * @public
4440
4650
  */
4441
- WarmNodeCount?: string;
4651
+ WarmNodeCount?: string | undefined;
4442
4652
  /**
4443
4653
  * <p>Indicates whether the domain has an elected master node.</p>
4444
4654
  * <ul>
@@ -4453,7 +4663,7 @@ export interface DescribeDomainHealthResponse {
4453
4663
  * </ul>
4454
4664
  * @public
4455
4665
  */
4456
- MasterNode?: MasterNodeStatus;
4666
+ MasterNode?: MasterNodeStatus | undefined;
4457
4667
  /**
4458
4668
  * <p>The current health status of your cluster.</p>
4459
4669
  * <ul>
@@ -4476,22 +4686,22 @@ export interface DescribeDomainHealthResponse {
4476
4686
  * </ul>
4477
4687
  * @public
4478
4688
  */
4479
- ClusterHealth?: DomainHealth;
4689
+ ClusterHealth?: DomainHealth | undefined;
4480
4690
  /**
4481
4691
  * <p>The total number of primary and replica shards for the domain.</p>
4482
4692
  * @public
4483
4693
  */
4484
- TotalShards?: string;
4694
+ TotalShards?: string | undefined;
4485
4695
  /**
4486
4696
  * <p>The total number of primary and replica shards not allocated to any of the nodes for the cluster.</p>
4487
4697
  * @public
4488
4698
  */
4489
- TotalUnAssignedShards?: string;
4699
+ TotalUnAssignedShards?: string | undefined;
4490
4700
  /**
4491
4701
  * <p>A list of <code>EnvironmentInfo</code> for the domain. </p>
4492
4702
  * @public
4493
4703
  */
4494
- EnvironmentInformation?: EnvironmentInfo[];
4704
+ EnvironmentInformation?: EnvironmentInfo[] | undefined;
4495
4705
  }
4496
4706
  /**
4497
4707
  * <p>Container for the parameters to the <code>DescribeDomainNodes</code>
@@ -4540,43 +4750,43 @@ export interface DomainNodesStatus {
4540
4750
  * <p>The ID of the node.</p>
4541
4751
  * @public
4542
4752
  */
4543
- NodeId?: string;
4753
+ NodeId?: string | undefined;
4544
4754
  /**
4545
4755
  * <p>Indicates whether the nodes is a data, master, or ultrawarm node.</p>
4546
4756
  * @public
4547
4757
  */
4548
- NodeType?: NodeType;
4758
+ NodeType?: NodeType | undefined;
4549
4759
  /**
4550
4760
  * <p>The Availability Zone of the node.</p>
4551
4761
  * @public
4552
4762
  */
4553
- AvailabilityZone?: string;
4763
+ AvailabilityZone?: string | undefined;
4554
4764
  /**
4555
4765
  * <p>The instance type information of the node.</p>
4556
4766
  * @public
4557
4767
  */
4558
- InstanceType?: OpenSearchPartitionInstanceType;
4768
+ InstanceType?: OpenSearchPartitionInstanceType | undefined;
4559
4769
  /**
4560
4770
  * <p>Indicates if the node is active or in standby.</p>
4561
4771
  * @public
4562
4772
  */
4563
- NodeStatus?: NodeStatus;
4773
+ NodeStatus?: NodeStatus | undefined;
4564
4774
  /**
4565
4775
  * <p>Indicates if the node has EBS or instance storage. </p>
4566
4776
  * @public
4567
4777
  */
4568
- StorageType?: string;
4778
+ StorageType?: string | undefined;
4569
4779
  /**
4570
4780
  * <p>If the nodes has EBS storage, indicates if the volume type is GP2 or GP3. Only applicable
4571
4781
  * for data nodes. </p>
4572
4782
  * @public
4573
4783
  */
4574
- StorageVolumeType?: VolumeType;
4784
+ StorageVolumeType?: VolumeType | undefined;
4575
4785
  /**
4576
4786
  * <p>The storage size of the node, in GiB.</p>
4577
4787
  * @public
4578
4788
  */
4579
- StorageSize?: string;
4789
+ StorageSize?: string | undefined;
4580
4790
  }
4581
4791
  /**
4582
4792
  * <p>The result of a <code>DescribeDomainNodes</code> request. Contains information about the nodes on the requested domain. </p>
@@ -4588,7 +4798,7 @@ export interface DescribeDomainNodesResponse {
4588
4798
  * details about the all nodes on the requested domain.</p>
4589
4799
  * @public
4590
4800
  */
4591
- DomainNodesStatusList?: DomainNodesStatus[];
4801
+ DomainNodesStatusList?: DomainNodesStatus[] | undefined;
4592
4802
  }
4593
4803
  /**
4594
4804
  * <p>Container for the parameters to the <code>DescribeDomains</code> operation.</p>
@@ -4626,13 +4836,13 @@ export interface DescribeDryRunProgressRequest {
4626
4836
  * <p>The unique identifier of the dry run.</p>
4627
4837
  * @public
4628
4838
  */
4629
- DryRunId?: string;
4839
+ DryRunId?: string | undefined;
4630
4840
  /**
4631
4841
  * <p>Whether to include the configuration of the dry run in the response. The configuration
4632
4842
  * specifies the updates that you're planning to make on the domain.</p>
4633
4843
  * @public
4634
4844
  */
4635
- LoadDryRunConfig?: boolean;
4845
+ LoadDryRunConfig?: boolean | undefined;
4636
4846
  }
4637
4847
  /**
4638
4848
  * <p>A validation failure that occurred as the result of a pre-update validation check (verbose
@@ -4644,12 +4854,12 @@ export interface ValidationFailure {
4644
4854
  * <p>The error code of the failure.</p>
4645
4855
  * @public
4646
4856
  */
4647
- Code?: string;
4857
+ Code?: string | undefined;
4648
4858
  /**
4649
4859
  * <p>A message corresponding to the failure.</p>
4650
4860
  * @public
4651
4861
  */
4652
- Message?: string;
4862
+ Message?: string | undefined;
4653
4863
  }
4654
4864
  /**
4655
4865
  * <p>Information about the progress of a pre-upgrade dry run analysis.</p>
@@ -4680,7 +4890,7 @@ export interface DryRunProgressStatus {
4680
4890
  * <p>Any validation failures that occurred as a result of the dry run.</p>
4681
4891
  * @public
4682
4892
  */
4683
- ValidationFailures?: ValidationFailure[];
4893
+ ValidationFailures?: ValidationFailure[] | undefined;
4684
4894
  }
4685
4895
  /**
4686
4896
  * <p>Results of a dry run performed in an update domain request.</p>
@@ -4713,12 +4923,12 @@ export interface DryRunResults {
4713
4923
  * </ul>
4714
4924
  * @public
4715
4925
  */
4716
- DeploymentType?: string;
4926
+ DeploymentType?: string | undefined;
4717
4927
  /**
4718
4928
  * <p>A message corresponding to the deployment type.</p>
4719
4929
  * @public
4720
4930
  */
4721
- Message?: string;
4931
+ Message?: string | undefined;
4722
4932
  }
4723
4933
  /**
4724
4934
  * @public
@@ -4728,17 +4938,17 @@ export interface DescribeDryRunProgressResponse {
4728
4938
  * <p>The current status of the dry run, including any validation errors.</p>
4729
4939
  * @public
4730
4940
  */
4731
- DryRunProgressStatus?: DryRunProgressStatus;
4941
+ DryRunProgressStatus?: DryRunProgressStatus | undefined;
4732
4942
  /**
4733
4943
  * <p>Details about the changes you're planning to make on the domain.</p>
4734
4944
  * @public
4735
4945
  */
4736
- DryRunConfig?: DomainStatus;
4946
+ DryRunConfig?: DomainStatus | undefined;
4737
4947
  /**
4738
4948
  * <p>The results of the dry run. </p>
4739
4949
  * @public
4740
4950
  */
4741
- DryRunResults?: DryRunResults;
4951
+ DryRunResults?: DryRunResults | undefined;
4742
4952
  }
4743
4953
  /**
4744
4954
  * <p>A filter used to limit results when describing inbound or outbound cross-cluster
@@ -4751,12 +4961,12 @@ export interface Filter {
4751
4961
  * <p>The name of the filter.</p>
4752
4962
  * @public
4753
4963
  */
4754
- Name?: string;
4964
+ Name?: string | undefined;
4755
4965
  /**
4756
4966
  * <p>One or more values for the filter.</p>
4757
4967
  * @public
4758
4968
  */
4759
- Values?: string[];
4969
+ Values?: string[] | undefined;
4760
4970
  }
4761
4971
  /**
4762
4972
  * <p>Container for the parameters to the <code>DescribeInboundConnections</code> operation.</p>
@@ -4767,13 +4977,13 @@ export interface DescribeInboundConnectionsRequest {
4767
4977
  * <p> A list of filters used to match properties for inbound cross-cluster connections.</p>
4768
4978
  * @public
4769
4979
  */
4770
- Filters?: Filter[];
4980
+ Filters?: Filter[] | undefined;
4771
4981
  /**
4772
4982
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
4773
4983
  * <code>nextToken</code> to get the next page of results.</p>
4774
4984
  * @public
4775
4985
  */
4776
- MaxResults?: number;
4986
+ MaxResults?: number | undefined;
4777
4987
  /**
4778
4988
  * <p>If your initial <code>DescribeInboundConnections</code> operation returns a
4779
4989
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
@@ -4781,7 +4991,7 @@ export interface DescribeInboundConnectionsRequest {
4781
4991
  * page.</p>
4782
4992
  * @public
4783
4993
  */
4784
- NextToken?: string;
4994
+ NextToken?: string | undefined;
4785
4995
  }
4786
4996
  /**
4787
4997
  * <p>Contains a list of connections matching the filter criteria.</p>
@@ -4792,14 +5002,14 @@ export interface DescribeInboundConnectionsResponse {
4792
5002
  * <p>List of inbound connections.</p>
4793
5003
  * @public
4794
5004
  */
4795
- Connections?: InboundConnection[];
5005
+ Connections?: InboundConnection[] | undefined;
4796
5006
  /**
4797
5007
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
4798
5008
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
4799
5009
  * returned token to retrieve the next page.</p>
4800
5010
  * @public
4801
5011
  */
4802
- NextToken?: string;
5012
+ NextToken?: string | undefined;
4803
5013
  }
4804
5014
  /**
4805
5015
  * <p>Request processing failed because you provided an invalid pagination token.</p>
@@ -4822,7 +5032,7 @@ export interface DescribeInstanceTypeLimitsRequest {
4822
5032
  * <p>The name of the domain. Only specify if you need the limits for an existing domain.</p>
4823
5033
  * @public
4824
5034
  */
4825
- DomainName?: string;
5035
+ DomainName?: string | undefined;
4826
5036
  /**
4827
5037
  * <p>The OpenSearch Service instance type for which you need limit information.</p>
4828
5038
  * @public
@@ -4845,12 +5055,12 @@ export interface InstanceCountLimits {
4845
5055
  * <p>The maximum allowed number of instances.</p>
4846
5056
  * @public
4847
5057
  */
4848
- MinimumInstanceCount?: number;
5058
+ MinimumInstanceCount?: number | undefined;
4849
5059
  /**
4850
5060
  * <p>The minimum allowed number of instances.</p>
4851
5061
  * @public
4852
5062
  */
4853
- MaximumInstanceCount?: number;
5063
+ MaximumInstanceCount?: number | undefined;
4854
5064
  }
4855
5065
  /**
4856
5066
  * <p>Instance-related attributes that are available for a given instance type.</p>
@@ -4861,7 +5071,7 @@ export interface InstanceLimits {
4861
5071
  * <p>Limits on the number of instances that can be created for a given instance type.</p>
4862
5072
  * @public
4863
5073
  */
4864
- InstanceCountLimits?: InstanceCountLimits;
5074
+ InstanceCountLimits?: InstanceCountLimits | undefined;
4865
5075
  }
4866
5076
  /**
4867
5077
  * <p>Limits that are applicable for the given Amazon OpenSearch Service storage type.</p>
@@ -4905,12 +5115,12 @@ export interface StorageTypeLimit {
4905
5115
  * </ul>
4906
5116
  * @public
4907
5117
  */
4908
- LimitName?: string;
5118
+ LimitName?: string | undefined;
4909
5119
  /**
4910
5120
  * <p>The limit values.</p>
4911
5121
  * @public
4912
5122
  */
4913
- LimitValues?: string[];
5123
+ LimitValues?: string[] | undefined;
4914
5124
  }
4915
5125
  /**
4916
5126
  * <p>A list of storage types for an Amazon OpenSearch Service domain that are available for a
@@ -4922,17 +5132,17 @@ export interface StorageType {
4922
5132
  * <p>The name of the storage type.</p>
4923
5133
  * @public
4924
5134
  */
4925
- StorageTypeName?: string;
5135
+ StorageTypeName?: string | undefined;
4926
5136
  /**
4927
5137
  * <p>The storage sub-type, such as <code>gp3</code> or <code>io1</code>.</p>
4928
5138
  * @public
4929
5139
  */
4930
- StorageSubTypeName?: string;
5140
+ StorageSubTypeName?: string | undefined;
4931
5141
  /**
4932
5142
  * <p>Limits that are applicable for the given storage type.</p>
4933
5143
  * @public
4934
5144
  */
4935
- StorageTypeLimits?: StorageTypeLimit[];
5145
+ StorageTypeLimits?: StorageTypeLimit[] | undefined;
4936
5146
  }
4937
5147
  /**
4938
5148
  * <p>Limits for a given instance type and for each of its roles.</p>
@@ -4943,18 +5153,18 @@ export interface Limits {
4943
5153
  * <p>Storage-related attributes that are available for a given instance type.</p>
4944
5154
  * @public
4945
5155
  */
4946
- StorageTypes?: StorageType[];
5156
+ StorageTypes?: StorageType[] | undefined;
4947
5157
  /**
4948
5158
  * <p>The limits for a given instance type.</p>
4949
5159
  * @public
4950
5160
  */
4951
- InstanceLimits?: InstanceLimits;
5161
+ InstanceLimits?: InstanceLimits | undefined;
4952
5162
  /**
4953
5163
  * <p>List of additional limits that are specific to a given instance type for each of its
4954
5164
  * instance roles.</p>
4955
5165
  * @public
4956
5166
  */
4957
- AdditionalLimits?: AdditionalLimit[];
5167
+ AdditionalLimits?: AdditionalLimit[] | undefined;
4958
5168
  }
4959
5169
  /**
4960
5170
  * <p>Container for the parameters received from the <code>DescribeInstanceTypeLimits</code>
@@ -4967,7 +5177,7 @@ export interface DescribeInstanceTypeLimitsResponse {
4967
5177
  * nodes.<code>master</code> refers to dedicated master nodes.</p>
4968
5178
  * @public
4969
5179
  */
4970
- LimitsByRole?: Record<string, Limits>;
5180
+ LimitsByRole?: Record<string, Limits> | undefined;
4971
5181
  }
4972
5182
  /**
4973
5183
  * <p>Container for the parameters to the <code>DescribeOutboundConnections</code> operation.</p>
@@ -4978,13 +5188,13 @@ export interface DescribeOutboundConnectionsRequest {
4978
5188
  * <p>List of filter names and values that you can use for requests.</p>
4979
5189
  * @public
4980
5190
  */
4981
- Filters?: Filter[];
5191
+ Filters?: Filter[] | undefined;
4982
5192
  /**
4983
5193
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
4984
5194
  * <code>nextToken</code> to get the next page of results.</p>
4985
5195
  * @public
4986
5196
  */
4987
- MaxResults?: number;
5197
+ MaxResults?: number | undefined;
4988
5198
  /**
4989
5199
  * <p>If your initial <code>DescribeOutboundConnections</code> operation returns a
4990
5200
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
@@ -4992,7 +5202,7 @@ export interface DescribeOutboundConnectionsRequest {
4992
5202
  * page.</p>
4993
5203
  * @public
4994
5204
  */
4995
- NextToken?: string;
5205
+ NextToken?: string | undefined;
4996
5206
  }
4997
5207
  /**
4998
5208
  * <p>Contains a list of connections matching the filter criteria.</p>
@@ -5003,14 +5213,14 @@ export interface DescribeOutboundConnectionsResponse {
5003
5213
  * <p>List of outbound connections that match the filter criteria.</p>
5004
5214
  * @public
5005
5215
  */
5006
- Connections?: OutboundConnection[];
5216
+ Connections?: OutboundConnection[] | undefined;
5007
5217
  /**
5008
5218
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
5009
5219
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
5010
5220
  * returned token to retrieve the next page.</p>
5011
5221
  * @public
5012
5222
  */
5013
- NextToken?: string;
5223
+ NextToken?: string | undefined;
5014
5224
  }
5015
5225
  /**
5016
5226
  * @public
@@ -5020,6 +5230,7 @@ export declare const DescribePackagesFilterName: {
5020
5230
  readonly EngineVersion: "EngineVersion";
5021
5231
  readonly PackageID: "PackageID";
5022
5232
  readonly PackageName: "PackageName";
5233
+ readonly PackageOwner: "PackageOwner";
5023
5234
  readonly PackageStatus: "PackageStatus";
5024
5235
  readonly PackageType: "PackageType";
5025
5236
  };
@@ -5036,12 +5247,12 @@ export interface DescribePackagesFilter {
5036
5247
  * <p>Any field from <code>PackageDetails</code>.</p>
5037
5248
  * @public
5038
5249
  */
5039
- Name?: DescribePackagesFilterName;
5250
+ Name?: DescribePackagesFilterName | undefined;
5040
5251
  /**
5041
5252
  * <p>A non-empty list of values for the specified filter field.</p>
5042
5253
  * @public
5043
5254
  */
5044
- Value?: string[];
5255
+ Value?: string[] | undefined;
5045
5256
  }
5046
5257
  /**
5047
5258
  * <p>Container for the request parameters to the <code>DescribePackage</code> operation.</p>
@@ -5052,20 +5263,20 @@ export interface DescribePackagesRequest {
5052
5263
  * <p>Only returns packages that match the <code>DescribePackagesFilterList</code> values.</p>
5053
5264
  * @public
5054
5265
  */
5055
- Filters?: DescribePackagesFilter[];
5266
+ Filters?: DescribePackagesFilter[] | undefined;
5056
5267
  /**
5057
5268
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
5058
5269
  * <code>nextToken</code> to get the next page of results.</p>
5059
5270
  * @public
5060
5271
  */
5061
- MaxResults?: number;
5272
+ MaxResults?: number | undefined;
5062
5273
  /**
5063
5274
  * <p>If your initial <code>DescribePackageFilters</code> operation returns a
5064
5275
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
5065
5276
  * <code>DescribePackageFilters</code> operations, which returns results in the next page.</p>
5066
5277
  * @public
5067
5278
  */
5068
- NextToken?: string;
5279
+ NextToken?: string | undefined;
5069
5280
  }
5070
5281
  /**
5071
5282
  * <p>Container for the response returned by the <code>DescribePackages</code> operation.</p>
@@ -5076,14 +5287,14 @@ export interface DescribePackagesResponse {
5076
5287
  * <p>Basic information about a package.</p>
5077
5288
  * @public
5078
5289
  */
5079
- PackageDetailsList?: PackageDetails[];
5290
+ PackageDetailsList?: PackageDetails[] | undefined;
5080
5291
  /**
5081
5292
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
5082
5293
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
5083
5294
  * returned token to retrieve the next page.</p>
5084
5295
  * @public
5085
5296
  */
5086
- NextToken?: string;
5297
+ NextToken?: string | undefined;
5087
5298
  }
5088
5299
  /**
5089
5300
  * <p>Container for the request parameters to a <code>DescribeReservedInstanceOfferings</code>
@@ -5096,13 +5307,13 @@ export interface DescribeReservedInstanceOfferingsRequest {
5096
5307
  * instance types that match the specified reservation identifier.</p>
5097
5308
  * @public
5098
5309
  */
5099
- ReservedInstanceOfferingId?: string;
5310
+ ReservedInstanceOfferingId?: string | undefined;
5100
5311
  /**
5101
5312
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
5102
5313
  * <code>nextToken</code> to get the next page of results.</p>
5103
5314
  * @public
5104
5315
  */
5105
- MaxResults?: number;
5316
+ MaxResults?: number | undefined;
5106
5317
  /**
5107
5318
  * <p>If your initial <code>DescribeReservedInstanceOfferings</code> operation returns a
5108
5319
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
@@ -5110,7 +5321,7 @@ export interface DescribeReservedInstanceOfferingsRequest {
5110
5321
  * page.</p>
5111
5322
  * @public
5112
5323
  */
5113
- NextToken?: string;
5324
+ NextToken?: string | undefined;
5114
5325
  }
5115
5326
  /**
5116
5327
  * @public
@@ -5135,12 +5346,12 @@ export interface RecurringCharge {
5135
5346
  * <p>The monetary amount of the recurring charge.</p>
5136
5347
  * @public
5137
5348
  */
5138
- RecurringChargeAmount?: number;
5349
+ RecurringChargeAmount?: number | undefined;
5139
5350
  /**
5140
5351
  * <p>The frequency of the recurring charge.</p>
5141
5352
  * @public
5142
5353
  */
5143
- RecurringChargeFrequency?: string;
5354
+ RecurringChargeFrequency?: string | undefined;
5144
5355
  }
5145
5356
  /**
5146
5357
  * <p>Details of an OpenSearch Reserved Instance offering.</p>
@@ -5151,44 +5362,44 @@ export interface ReservedInstanceOffering {
5151
5362
  * <p>The unique identifier of the Reserved Instance offering.</p>
5152
5363
  * @public
5153
5364
  */
5154
- ReservedInstanceOfferingId?: string;
5365
+ ReservedInstanceOfferingId?: string | undefined;
5155
5366
  /**
5156
5367
  * <p>The OpenSearch instance type offered by the Reserved Instance offering.</p>
5157
5368
  * @public
5158
5369
  */
5159
- InstanceType?: OpenSearchPartitionInstanceType;
5370
+ InstanceType?: OpenSearchPartitionInstanceType | undefined;
5160
5371
  /**
5161
5372
  * <p>The duration, in seconds, for which the offering will reserve the OpenSearch instance.</p>
5162
5373
  * @public
5163
5374
  */
5164
- Duration?: number;
5375
+ Duration?: number | undefined;
5165
5376
  /**
5166
5377
  * <p>The upfront fixed charge you will pay to purchase the specific Reserved Instance
5167
5378
  * offering.</p>
5168
5379
  * @public
5169
5380
  */
5170
- FixedPrice?: number;
5381
+ FixedPrice?: number | undefined;
5171
5382
  /**
5172
5383
  * <p>The hourly rate at which you're charged for the domain using this Reserved Instance.</p>
5173
5384
  * @public
5174
5385
  */
5175
- UsagePrice?: number;
5386
+ UsagePrice?: number | undefined;
5176
5387
  /**
5177
5388
  * <p>The currency code for the Reserved Instance offering.</p>
5178
5389
  * @public
5179
5390
  */
5180
- CurrencyCode?: string;
5391
+ CurrencyCode?: string | undefined;
5181
5392
  /**
5182
5393
  * <p>Payment option for the Reserved Instance offering</p>
5183
5394
  * @public
5184
5395
  */
5185
- PaymentOption?: ReservedInstancePaymentOption;
5396
+ PaymentOption?: ReservedInstancePaymentOption | undefined;
5186
5397
  /**
5187
5398
  * <p>The recurring charge to your account, regardless of whether you creates any domains using
5188
5399
  * the offering.</p>
5189
5400
  * @public
5190
5401
  */
5191
- RecurringCharges?: RecurringCharge[];
5402
+ RecurringCharges?: RecurringCharge[] | undefined;
5192
5403
  }
5193
5404
  /**
5194
5405
  * <p>Container for results of a <code>DescribeReservedInstanceOfferings</code> request.</p>
@@ -5201,12 +5412,12 @@ export interface DescribeReservedInstanceOfferingsResponse {
5201
5412
  * returned token to retrieve the next page.</p>
5202
5413
  * @public
5203
5414
  */
5204
- NextToken?: string;
5415
+ NextToken?: string | undefined;
5205
5416
  /**
5206
5417
  * <p>List of Reserved Instance offerings.</p>
5207
5418
  * @public
5208
5419
  */
5209
- ReservedInstanceOfferings?: ReservedInstanceOffering[];
5420
+ ReservedInstanceOfferings?: ReservedInstanceOffering[] | undefined;
5210
5421
  }
5211
5422
  /**
5212
5423
  * <p>Container for the request parameters to the <code>DescribeReservedInstances</code>
@@ -5219,13 +5430,13 @@ export interface DescribeReservedInstancesRequest {
5219
5430
  * specified reserved OpenSearch instance ID.</p>
5220
5431
  * @public
5221
5432
  */
5222
- ReservedInstanceId?: string;
5433
+ ReservedInstanceId?: string | undefined;
5223
5434
  /**
5224
5435
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
5225
5436
  * <code>nextToken</code> to get the next page of results.</p>
5226
5437
  * @public
5227
5438
  */
5228
- MaxResults?: number;
5439
+ MaxResults?: number | undefined;
5229
5440
  /**
5230
5441
  * <p>If your initial <code>DescribeReservedInstances</code> operation returns a
5231
5442
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
@@ -5233,7 +5444,7 @@ export interface DescribeReservedInstancesRequest {
5233
5444
  * page.</p>
5234
5445
  * @public
5235
5446
  */
5236
- NextToken?: string;
5447
+ NextToken?: string | undefined;
5237
5448
  }
5238
5449
  /**
5239
5450
  * <p>Details of an OpenSearch Reserved Instance.</p>
@@ -5244,74 +5455,74 @@ export interface ReservedInstance {
5244
5455
  * <p>The customer-specified identifier to track this reservation.</p>
5245
5456
  * @public
5246
5457
  */
5247
- ReservationName?: string;
5458
+ ReservationName?: string | undefined;
5248
5459
  /**
5249
5460
  * <p>The unique identifier for the reservation.</p>
5250
5461
  * @public
5251
5462
  */
5252
- ReservedInstanceId?: string;
5463
+ ReservedInstanceId?: string | undefined;
5253
5464
  /**
5254
5465
  * <p>The unique identifier of the billing subscription.</p>
5255
5466
  * @public
5256
5467
  */
5257
- BillingSubscriptionId?: number;
5468
+ BillingSubscriptionId?: number | undefined;
5258
5469
  /**
5259
5470
  * <p>The unique identifier of the Reserved Instance offering.</p>
5260
5471
  * @public
5261
5472
  */
5262
- ReservedInstanceOfferingId?: string;
5473
+ ReservedInstanceOfferingId?: string | undefined;
5263
5474
  /**
5264
5475
  * <p>The OpenSearch instance type offered by theReserved Instance offering.</p>
5265
5476
  * @public
5266
5477
  */
5267
- InstanceType?: OpenSearchPartitionInstanceType;
5478
+ InstanceType?: OpenSearchPartitionInstanceType | undefined;
5268
5479
  /**
5269
5480
  * <p>The date and time when the reservation was purchased.</p>
5270
5481
  * @public
5271
5482
  */
5272
- StartTime?: Date;
5483
+ StartTime?: Date | undefined;
5273
5484
  /**
5274
5485
  * <p>The duration, in seconds, for which the OpenSearch instance is reserved.</p>
5275
5486
  * @public
5276
5487
  */
5277
- Duration?: number;
5488
+ Duration?: number | undefined;
5278
5489
  /**
5279
5490
  * <p>The upfront fixed charge you will paid to purchase the specific Reserved Instance
5280
5491
  * offering.</p>
5281
5492
  * @public
5282
5493
  */
5283
- FixedPrice?: number;
5494
+ FixedPrice?: number | undefined;
5284
5495
  /**
5285
5496
  * <p>The hourly rate at which you're charged for the domain using this Reserved Instance.</p>
5286
5497
  * @public
5287
5498
  */
5288
- UsagePrice?: number;
5499
+ UsagePrice?: number | undefined;
5289
5500
  /**
5290
5501
  * <p>The currency code for the offering.</p>
5291
5502
  * @public
5292
5503
  */
5293
- CurrencyCode?: string;
5504
+ CurrencyCode?: string | undefined;
5294
5505
  /**
5295
5506
  * <p>The number of OpenSearch instances that have been reserved.</p>
5296
5507
  * @public
5297
5508
  */
5298
- InstanceCount?: number;
5509
+ InstanceCount?: number | undefined;
5299
5510
  /**
5300
5511
  * <p>The state of the Reserved Instance.</p>
5301
5512
  * @public
5302
5513
  */
5303
- State?: string;
5514
+ State?: string | undefined;
5304
5515
  /**
5305
5516
  * <p>The payment option as defined in the Reserved Instance offering.</p>
5306
5517
  * @public
5307
5518
  */
5308
- PaymentOption?: ReservedInstancePaymentOption;
5519
+ PaymentOption?: ReservedInstancePaymentOption | undefined;
5309
5520
  /**
5310
5521
  * <p>The recurring charge to your account, regardless of whether you create any domains using the
5311
5522
  * Reserved Instance offering.</p>
5312
5523
  * @public
5313
5524
  */
5314
- RecurringCharges?: RecurringCharge[];
5525
+ RecurringCharges?: RecurringCharge[] | undefined;
5315
5526
  }
5316
5527
  /**
5317
5528
  * <p>Container for results from <code>DescribeReservedInstances</code>
@@ -5325,12 +5536,12 @@ export interface DescribeReservedInstancesResponse {
5325
5536
  * returned token to retrieve the next page.</p>
5326
5537
  * @public
5327
5538
  */
5328
- NextToken?: string;
5539
+ NextToken?: string | undefined;
5329
5540
  /**
5330
5541
  * <p>List of Reserved Instances in the current Region.</p>
5331
5542
  * @public
5332
5543
  */
5333
- ReservedInstances?: ReservedInstance[];
5544
+ ReservedInstances?: ReservedInstance[] | undefined;
5334
5545
  }
5335
5546
  /**
5336
5547
  * @public
@@ -5364,17 +5575,17 @@ export interface VpcEndpointError {
5364
5575
  * <p>The unique identifier of the endpoint.</p>
5365
5576
  * @public
5366
5577
  */
5367
- VpcEndpointId?: string;
5578
+ VpcEndpointId?: string | undefined;
5368
5579
  /**
5369
5580
  * <p>The code associated with the error.</p>
5370
5581
  * @public
5371
5582
  */
5372
- ErrorCode?: VpcEndpointErrorCode;
5583
+ ErrorCode?: VpcEndpointErrorCode | undefined;
5373
5584
  /**
5374
5585
  * <p>A message describing the error.</p>
5375
5586
  * @public
5376
5587
  */
5377
- ErrorMessage?: string;
5588
+ ErrorMessage?: string | undefined;
5378
5589
  }
5379
5590
  /**
5380
5591
  * @public
@@ -5417,7 +5628,33 @@ export interface DissociatePackageResponse {
5417
5628
  * <p> Information about a package that has been dissociated from the domain.</p>
5418
5629
  * @public
5419
5630
  */
5420
- DomainPackageDetails?: DomainPackageDetails;
5631
+ DomainPackageDetails?: DomainPackageDetails | undefined;
5632
+ }
5633
+ /**
5634
+ * @public
5635
+ */
5636
+ export interface DissociatePackagesRequest {
5637
+ /**
5638
+ * <p>A list of package IDs to be dissociated from a domain.</p>
5639
+ * @public
5640
+ */
5641
+ PackageList: string[] | undefined;
5642
+ /**
5643
+ * <p>The name of an OpenSearch Service domain. Domain names are unique across the domains owned
5644
+ * by an account within an Amazon Web Services Region.</p>
5645
+ * @public
5646
+ */
5647
+ DomainName: string | undefined;
5648
+ }
5649
+ /**
5650
+ * @public
5651
+ */
5652
+ export interface DissociatePackagesResponse {
5653
+ /**
5654
+ * <p>A list of package details for the packages that were dissociated from the domain.</p>
5655
+ * @public
5656
+ */
5657
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
5421
5658
  }
5422
5659
  /**
5423
5660
  * @public
@@ -5452,54 +5689,54 @@ export interface GetApplicationResponse {
5452
5689
  * <p>Unique identifier of the checked OpenSearch Application.</p>
5453
5690
  * @public
5454
5691
  */
5455
- id?: string;
5692
+ id?: string | undefined;
5456
5693
  /**
5457
5694
  * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
5458
5695
  * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
5459
5696
  * </p>
5460
5697
  * @public
5461
5698
  */
5462
- arn?: string;
5699
+ arn?: string | undefined;
5463
5700
  /**
5464
5701
  * <p>Name of the checked OpenSearch Application.</p>
5465
5702
  * @public
5466
5703
  */
5467
- name?: string;
5704
+ name?: string | undefined;
5468
5705
  /**
5469
5706
  * <p>Endpoint URL of the checked OpenSearch Application.</p>
5470
5707
  * @public
5471
5708
  */
5472
- endpoint?: string;
5709
+ endpoint?: string | undefined;
5473
5710
  /**
5474
5711
  * <p>Current status of the checked OpenSearch Application. Possible values are <code>CREATING</code>, <code>UPDATING</code>, <code>DELETING</code>, <code>FAILED</code>, <code>ACTIVE</code>, and <code>DELETED</code>.</p>
5475
5712
  * @public
5476
5713
  */
5477
- status?: ApplicationStatus;
5714
+ status?: ApplicationStatus | undefined;
5478
5715
  /**
5479
5716
  * <p>IAM Identity Center settings for the checked OpenSearch Application.</p>
5480
5717
  * @public
5481
5718
  */
5482
- iamIdentityCenterOptions?: IamIdentityCenterOptions;
5719
+ iamIdentityCenterOptions?: IamIdentityCenterOptions | undefined;
5483
5720
  /**
5484
5721
  * <p>Associated data sources to the checked OpenSearch Application.</p>
5485
5722
  * @public
5486
5723
  */
5487
- dataSources?: DataSource[];
5724
+ dataSources?: DataSource[] | undefined;
5488
5725
  /**
5489
5726
  * <p>App configurations of the checked OpenSearch Application.</p>
5490
5727
  * @public
5491
5728
  */
5492
- appConfigs?: AppConfig[];
5729
+ appConfigs?: AppConfig[] | undefined;
5493
5730
  /**
5494
5731
  * <p>Timestamp at which the checked OpenSearch Application was created.</p>
5495
5732
  * @public
5496
5733
  */
5497
- createdAt?: Date;
5734
+ createdAt?: Date | undefined;
5498
5735
  /**
5499
5736
  * <p>Timestamp at which the checked OpenSearch Application was last updated.</p>
5500
5737
  * @public
5501
5738
  */
5502
- lastUpdatedAt?: Date;
5739
+ lastUpdatedAt?: Date | undefined;
5503
5740
  }
5504
5741
  /**
5505
5742
  * <p>Container for the request parameters to <code>GetCompatibleVersions</code> operation.</p>
@@ -5511,7 +5748,7 @@ export interface GetCompatibleVersionsRequest {
5511
5748
  * domain.</p>
5512
5749
  * @public
5513
5750
  */
5514
- DomainName?: string;
5751
+ DomainName?: string | undefined;
5515
5752
  }
5516
5753
  /**
5517
5754
  * <p>A map of OpenSearch or Elasticsearch versions and the versions you can upgrade them
@@ -5523,12 +5760,12 @@ export interface CompatibleVersionsMap {
5523
5760
  * <p>The current version that the OpenSearch Service domain is running.</p>
5524
5761
  * @public
5525
5762
  */
5526
- SourceVersion?: string;
5763
+ SourceVersion?: string | undefined;
5527
5764
  /**
5528
5765
  * <p>The possible versions that you can upgrade the domain to.</p>
5529
5766
  * @public
5530
5767
  */
5531
- TargetVersions?: string[];
5768
+ TargetVersions?: string[] | undefined;
5532
5769
  }
5533
5770
  /**
5534
5771
  * <p>Container for the response returned by the <code>GetCompatibleVersions</code> operation.</p>
@@ -5540,7 +5777,7 @@ export interface GetCompatibleVersionsResponse {
5540
5777
  * to.</p>
5541
5778
  * @public
5542
5779
  */
5543
- CompatibleVersions?: CompatibleVersionsMap[];
5780
+ CompatibleVersions?: CompatibleVersionsMap[] | undefined;
5544
5781
  }
5545
5782
  /**
5546
5783
  * <p>Container for the parameters to the <code>GetDataSource</code>
@@ -5580,22 +5817,22 @@ export interface GetDataSourceResponse {
5580
5817
  * <p>The type of data source.</p>
5581
5818
  * @public
5582
5819
  */
5583
- DataSourceType?: DataSourceType;
5820
+ DataSourceType?: DataSourceType | undefined;
5584
5821
  /**
5585
5822
  * <p>The name of the data source.</p>
5586
5823
  * @public
5587
5824
  */
5588
- Name?: string;
5825
+ Name?: string | undefined;
5589
5826
  /**
5590
5827
  * <p>A description of the data source.</p>
5591
5828
  * @public
5592
5829
  */
5593
- Description?: string;
5830
+ Description?: string | undefined;
5594
5831
  /**
5595
5832
  * <p>The status of the data source.</p>
5596
5833
  * @public
5597
5834
  */
5598
- Status?: DataSourceStatus;
5835
+ Status?: DataSourceStatus | undefined;
5599
5836
  }
5600
5837
  /**
5601
5838
  * <p>Container for the parameters to the <code>GetDomainMaintenanceStatus</code>
@@ -5651,32 +5888,32 @@ export interface GetDomainMaintenanceStatusResponse {
5651
5888
  * <p>The status of the maintenance action.</p>
5652
5889
  * @public
5653
5890
  */
5654
- Status?: MaintenanceStatus;
5891
+ Status?: MaintenanceStatus | undefined;
5655
5892
  /**
5656
5893
  * <p>The status message of the maintenance action.</p>
5657
5894
  * @public
5658
5895
  */
5659
- StatusMessage?: string;
5896
+ StatusMessage?: string | undefined;
5660
5897
  /**
5661
5898
  * <p>The node ID of the maintenance action.</p>
5662
5899
  * @public
5663
5900
  */
5664
- NodeId?: string;
5901
+ NodeId?: string | undefined;
5665
5902
  /**
5666
5903
  * <p>The action name.</p>
5667
5904
  * @public
5668
5905
  */
5669
- Action?: MaintenanceType;
5906
+ Action?: MaintenanceType | undefined;
5670
5907
  /**
5671
5908
  * <p>The time at which the action was created.</p>
5672
5909
  * @public
5673
5910
  */
5674
- CreatedAt?: Date;
5911
+ CreatedAt?: Date | undefined;
5675
5912
  /**
5676
5913
  * <p>The time at which the action was updated.</p>
5677
5914
  * @public
5678
5915
  */
5679
- UpdatedAt?: Date;
5916
+ UpdatedAt?: Date | undefined;
5680
5917
  }
5681
5918
  /**
5682
5919
  * <p>Container for the request parameters to the <code>GetPackageVersionHistory</code> operation.</p>
@@ -5693,7 +5930,7 @@ export interface GetPackageVersionHistoryRequest {
5693
5930
  * <code>nextToken</code> to get the next page of results.</p>
5694
5931
  * @public
5695
5932
  */
5696
- MaxResults?: number;
5933
+ MaxResults?: number | undefined;
5697
5934
  /**
5698
5935
  * <p>If your initial <code>GetPackageVersionHistory</code> operation returns a
5699
5936
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
@@ -5701,7 +5938,7 @@ export interface GetPackageVersionHistoryRequest {
5701
5938
  * </p>
5702
5939
  * @public
5703
5940
  */
5704
- NextToken?: string;
5941
+ NextToken?: string | undefined;
5705
5942
  }
5706
5943
  /**
5707
5944
  * <p>Details about a package version.</p>
@@ -5712,22 +5949,27 @@ export interface PackageVersionHistory {
5712
5949
  * <p>The package version.</p>
5713
5950
  * @public
5714
5951
  */
5715
- PackageVersion?: string;
5952
+ PackageVersion?: string | undefined;
5716
5953
  /**
5717
5954
  * <p>A message associated with the package version when it was uploaded.</p>
5718
5955
  * @public
5719
5956
  */
5720
- CommitMessage?: string;
5957
+ CommitMessage?: string | undefined;
5721
5958
  /**
5722
5959
  * <p>The date and time when the package was created.</p>
5723
5960
  * @public
5724
5961
  */
5725
- CreatedAt?: Date;
5962
+ CreatedAt?: Date | undefined;
5726
5963
  /**
5727
5964
  * <p>Additional information about plugin properties if the package is a <code>ZIP-PLUGIN</code> package.</p>
5728
5965
  * @public
5729
5966
  */
5730
- PluginProperties?: PluginProperties;
5967
+ PluginProperties?: PluginProperties | undefined;
5968
+ /**
5969
+ * <p>The configuration details for a specific version of a package.</p>
5970
+ * @public
5971
+ */
5972
+ PackageConfiguration?: PackageConfiguration | undefined;
5731
5973
  }
5732
5974
  /**
5733
5975
  * <p>Container for response returned by <code>GetPackageVersionHistory</code> operation.</p>
@@ -5738,19 +5980,19 @@ export interface GetPackageVersionHistoryResponse {
5738
5980
  * <p>The unique identifier of the package.</p>
5739
5981
  * @public
5740
5982
  */
5741
- PackageID?: string;
5983
+ PackageID?: string | undefined;
5742
5984
  /**
5743
5985
  * <p>A list of package versions, along with their creation time and commit message.</p>
5744
5986
  * @public
5745
5987
  */
5746
- PackageVersionHistoryList?: PackageVersionHistory[];
5988
+ PackageVersionHistoryList?: PackageVersionHistory[] | undefined;
5747
5989
  /**
5748
5990
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
5749
5991
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
5750
5992
  * returned token to retrieve the next page.</p>
5751
5993
  * @public
5752
5994
  */
5753
- NextToken?: string;
5995
+ NextToken?: string | undefined;
5754
5996
  }
5755
5997
  /**
5756
5998
  * <p>Container for the request parameters to the <code>GetUpgradeHistory</code> operation.</p>
@@ -5767,14 +6009,14 @@ export interface GetUpgradeHistoryRequest {
5767
6009
  * <code>nextToken</code> to get the next page of results.</p>
5768
6010
  * @public
5769
6011
  */
5770
- MaxResults?: number;
6012
+ MaxResults?: number | undefined;
5771
6013
  /**
5772
6014
  * <p>If your initial <code>GetUpgradeHistory</code> operation returns a <code>nextToken</code>,
5773
6015
  * you can include the returned <code>nextToken</code> in subsequent <code>GetUpgradeHistory</code>
5774
6016
  * operations, which returns results in the next page.</p>
5775
6017
  * @public
5776
6018
  */
5777
- NextToken?: string;
6019
+ NextToken?: string | undefined;
5778
6020
  }
5779
6021
  /**
5780
6022
  * @public
@@ -5823,7 +6065,7 @@ export interface UpgradeStepItem {
5823
6065
  * </ul>
5824
6066
  * @public
5825
6067
  */
5826
- UpgradeStep?: UpgradeStep;
6068
+ UpgradeStep?: UpgradeStep | undefined;
5827
6069
  /**
5828
6070
  * <p> The current status of the upgrade. The status can take one of the following values: </p>
5829
6071
  * <ul>
@@ -5842,17 +6084,17 @@ export interface UpgradeStepItem {
5842
6084
  * </ul>
5843
6085
  * @public
5844
6086
  */
5845
- UpgradeStepStatus?: UpgradeStatus;
6087
+ UpgradeStepStatus?: UpgradeStatus | undefined;
5846
6088
  /**
5847
6089
  * <p>A list of strings containing detailed information about the errors encountered in a particular step.</p>
5848
6090
  * @public
5849
6091
  */
5850
- Issues?: string[];
6092
+ Issues?: string[] | undefined;
5851
6093
  /**
5852
6094
  * <p>The floating point value representing the progress percentage of a particular step.</p>
5853
6095
  * @public
5854
6096
  */
5855
- ProgressPercent?: number;
6097
+ ProgressPercent?: number | undefined;
5856
6098
  }
5857
6099
  /**
5858
6100
  * <p>History of the last 10 upgrades and upgrade eligibility checks for an Amazon OpenSearch
@@ -5864,13 +6106,13 @@ export interface UpgradeHistory {
5864
6106
  * <p>A string that describes the upgrade.</p>
5865
6107
  * @public
5866
6108
  */
5867
- UpgradeName?: string;
6109
+ UpgradeName?: string | undefined;
5868
6110
  /**
5869
6111
  * <p>UTC timestamp at which the upgrade API call was made, in the format
5870
6112
  * <code>yyyy-MM-ddTHH:mm:ssZ</code>.</p>
5871
6113
  * @public
5872
6114
  */
5873
- StartTimestamp?: Date;
6115
+ StartTimestamp?: Date | undefined;
5874
6116
  /**
5875
6117
  * <p> The current status of the upgrade. The status can take one of the following values: </p>
5876
6118
  * <ul>
@@ -5889,12 +6131,12 @@ export interface UpgradeHistory {
5889
6131
  * </ul>
5890
6132
  * @public
5891
6133
  */
5892
- UpgradeStatus?: UpgradeStatus;
6134
+ UpgradeStatus?: UpgradeStatus | undefined;
5893
6135
  /**
5894
6136
  * <p>A list of each step performed as part of a specific upgrade or upgrade eligibility check.</p>
5895
6137
  * @public
5896
6138
  */
5897
- StepsList?: UpgradeStepItem[];
6139
+ StepsList?: UpgradeStepItem[] | undefined;
5898
6140
  }
5899
6141
  /**
5900
6142
  * <p>Container for the response returned by the <code>GetUpgradeHistory</code> operation.</p>
@@ -5906,14 +6148,14 @@ export interface GetUpgradeHistoryResponse {
5906
6148
  * domain.</p>
5907
6149
  * @public
5908
6150
  */
5909
- UpgradeHistories?: UpgradeHistory[];
6151
+ UpgradeHistories?: UpgradeHistory[] | undefined;
5910
6152
  /**
5911
6153
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
5912
6154
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
5913
6155
  * returned token to retrieve the next page.</p>
5914
6156
  * @public
5915
6157
  */
5916
- NextToken?: string;
6158
+ NextToken?: string | undefined;
5917
6159
  }
5918
6160
  /**
5919
6161
  * <p>Container for the request parameters to the <code>GetUpgradeStatus</code> operation.</p>
@@ -5935,17 +6177,17 @@ export interface GetUpgradeStatusResponse {
5935
6177
  * <p>One of three steps that an upgrade or upgrade eligibility check goes through.</p>
5936
6178
  * @public
5937
6179
  */
5938
- UpgradeStep?: UpgradeStep;
6180
+ UpgradeStep?: UpgradeStep | undefined;
5939
6181
  /**
5940
6182
  * <p>The status of the current step that an upgrade is on.</p>
5941
6183
  * @public
5942
6184
  */
5943
- StepStatus?: UpgradeStatus;
6185
+ StepStatus?: UpgradeStatus | undefined;
5944
6186
  /**
5945
6187
  * <p>A string that describes the update.</p>
5946
6188
  * @public
5947
6189
  */
5948
- UpgradeName?: string;
6190
+ UpgradeName?: string | undefined;
5949
6191
  }
5950
6192
  /**
5951
6193
  * @public
@@ -5957,18 +6199,18 @@ export interface ListApplicationsRequest {
5957
6199
  * returned token to retrieve the next page.</p>
5958
6200
  * @public
5959
6201
  */
5960
- nextToken?: string;
6202
+ nextToken?: string | undefined;
5961
6203
  /**
5962
6204
  * <p>OpenSearch Application Status can be used as filters for the listing request. Possible values are <code>CREATING</code>, <code>UPDATING</code>, <code>DELETING</code>, <code>FAILED</code>, <code>ACTIVE</code>, and <code>DELETED</code>.</p>
5963
6205
  * @public
5964
6206
  */
5965
- statuses?: ApplicationStatus[];
6207
+ statuses?: ApplicationStatus[] | undefined;
5966
6208
  /**
5967
6209
  * <p>An optional parameter that specifies the maximum number of results to return for a given
5968
6210
  * request.</p>
5969
6211
  * @public
5970
6212
  */
5971
- maxResults?: number;
6213
+ maxResults?: number | undefined;
5972
6214
  }
5973
6215
  /**
5974
6216
  * <p>Basic information of the OpenSearch Application.</p>
@@ -5979,39 +6221,39 @@ export interface ApplicationSummary {
5979
6221
  * <p>Unique identifier for an OpenSearch application.</p>
5980
6222
  * @public
5981
6223
  */
5982
- id?: string;
6224
+ id?: string | undefined;
5983
6225
  /**
5984
6226
  * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
5985
6227
  * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
5986
6228
  * </p>
5987
6229
  * @public
5988
6230
  */
5989
- arn?: string;
6231
+ arn?: string | undefined;
5990
6232
  /**
5991
6233
  * <p>Name of an OpenSearch Application.</p>
5992
6234
  * @public
5993
6235
  */
5994
- name?: string;
6236
+ name?: string | undefined;
5995
6237
  /**
5996
6238
  * <p>Endpoint URL of an OpenSearch Application.</p>
5997
6239
  * @public
5998
6240
  */
5999
- endpoint?: string;
6241
+ endpoint?: string | undefined;
6000
6242
  /**
6001
6243
  * <p>Status of an OpenSearch Application. Possible values are <code>CREATING</code>, <code>UPDATING</code>,<code> DELETING</code>, <code>FAILED</code>, <code>ACTIVE</code>, and <code>DELETED</code>.</p>
6002
6244
  * @public
6003
6245
  */
6004
- status?: ApplicationStatus;
6246
+ status?: ApplicationStatus | undefined;
6005
6247
  /**
6006
6248
  * <p>Timestamp at which an OpenSearch Application was created.</p>
6007
6249
  * @public
6008
6250
  */
6009
- createdAt?: Date;
6251
+ createdAt?: Date | undefined;
6010
6252
  /**
6011
6253
  * <p>Timestamp at which an OpenSearch Application was last updated.</p>
6012
6254
  * @public
6013
6255
  */
6014
- lastUpdatedAt?: Date;
6256
+ lastUpdatedAt?: Date | undefined;
6015
6257
  }
6016
6258
  /**
6017
6259
  * @public
@@ -6021,14 +6263,14 @@ export interface ListApplicationsResponse {
6021
6263
  * <p>Summary of the OpenSearch Applications, including ID, ARN, name, endpoint, status, create time and last update time.</p>
6022
6264
  * @public
6023
6265
  */
6024
- ApplicationSummaries?: ApplicationSummary[];
6266
+ ApplicationSummaries?: ApplicationSummary[] | undefined;
6025
6267
  /**
6026
6268
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6027
6269
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6028
6270
  * returned token to retrieve the next page.</p>
6029
6271
  * @public
6030
6272
  */
6031
- nextToken?: string;
6273
+ nextToken?: string | undefined;
6032
6274
  }
6033
6275
  /**
6034
6276
  * <p>Container for the parameters to the <code>ListDataSources</code>
@@ -6051,22 +6293,22 @@ export interface DataSourceDetails {
6051
6293
  * <p>The type of data source.</p>
6052
6294
  * @public
6053
6295
  */
6054
- DataSourceType?: DataSourceType;
6296
+ DataSourceType?: DataSourceType | undefined;
6055
6297
  /**
6056
6298
  * <p>The name of the data source.</p>
6057
6299
  * @public
6058
6300
  */
6059
- Name?: string;
6301
+ Name?: string | undefined;
6060
6302
  /**
6061
6303
  * <p>A description of the data source.</p>
6062
6304
  * @public
6063
6305
  */
6064
- Description?: string;
6306
+ Description?: string | undefined;
6065
6307
  /**
6066
6308
  * <p>The status of the data source.</p>
6067
6309
  * @public
6068
6310
  */
6069
- Status?: DataSourceStatus;
6311
+ Status?: DataSourceStatus | undefined;
6070
6312
  }
6071
6313
  /**
6072
6314
  * <p>The result of a <code>ListDataSources</code> operation.</p>
@@ -6077,7 +6319,7 @@ export interface ListDataSourcesResponse {
6077
6319
  * <p>A list of data sources associated with specified domain.</p>
6078
6320
  * @public
6079
6321
  */
6080
- DataSources?: DataSourceDetails[];
6322
+ DataSources?: DataSourceDetails[] | undefined;
6081
6323
  }
6082
6324
  /**
6083
6325
  * <p>Container for the parameters to the <code>ListDomainMaintenances</code>
@@ -6094,25 +6336,25 @@ export interface ListDomainMaintenancesRequest {
6094
6336
  * <p>The name of the action.</p>
6095
6337
  * @public
6096
6338
  */
6097
- Action?: MaintenanceType;
6339
+ Action?: MaintenanceType | undefined;
6098
6340
  /**
6099
6341
  * <p>The status of the action.</p>
6100
6342
  * @public
6101
6343
  */
6102
- Status?: MaintenanceStatus;
6344
+ Status?: MaintenanceStatus | undefined;
6103
6345
  /**
6104
6346
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
6105
6347
  * <code>nextToken</code> to get the next page of results.</p>
6106
6348
  * @public
6107
6349
  */
6108
- MaxResults?: number;
6350
+ MaxResults?: number | undefined;
6109
6351
  /**
6110
6352
  * <p>If your initial <code>ListDomainMaintenances</code> operation returns a
6111
6353
  * <code>nextToken</code>, include the returned <code>nextToken</code> in subsequent
6112
6354
  * <code>ListDomainMaintenances</code> operations, which returns results in the next page.</p>
6113
6355
  * @public
6114
6356
  */
6115
- NextToken?: string;
6357
+ NextToken?: string | undefined;
6116
6358
  }
6117
6359
  /**
6118
6360
  * <p>Container for the domain maintenance details.</p>
@@ -6123,42 +6365,42 @@ export interface DomainMaintenanceDetails {
6123
6365
  * <p>The ID of the requested action.</p>
6124
6366
  * @public
6125
6367
  */
6126
- MaintenanceId?: string;
6368
+ MaintenanceId?: string | undefined;
6127
6369
  /**
6128
6370
  * <p>The name of the domain.</p>
6129
6371
  * @public
6130
6372
  */
6131
- DomainName?: string;
6373
+ DomainName?: string | undefined;
6132
6374
  /**
6133
6375
  * <p>The name of the action.</p>
6134
6376
  * @public
6135
6377
  */
6136
- Action?: MaintenanceType;
6378
+ Action?: MaintenanceType | undefined;
6137
6379
  /**
6138
6380
  * <p>The ID of the data node.</p>
6139
6381
  * @public
6140
6382
  */
6141
- NodeId?: string;
6383
+ NodeId?: string | undefined;
6142
6384
  /**
6143
6385
  * <p>The status of the action.</p>
6144
6386
  * @public
6145
6387
  */
6146
- Status?: MaintenanceStatus;
6388
+ Status?: MaintenanceStatus | undefined;
6147
6389
  /**
6148
6390
  * <p>The status message for the action.</p>
6149
6391
  * @public
6150
6392
  */
6151
- StatusMessage?: string;
6393
+ StatusMessage?: string | undefined;
6152
6394
  /**
6153
6395
  * <p>The time at which the action was created.</p>
6154
6396
  * @public
6155
6397
  */
6156
- CreatedAt?: Date;
6398
+ CreatedAt?: Date | undefined;
6157
6399
  /**
6158
6400
  * <p>The time at which the action was updated.</p>
6159
6401
  * @public
6160
6402
  */
6161
- UpdatedAt?: Date;
6403
+ UpdatedAt?: Date | undefined;
6162
6404
  }
6163
6405
  /**
6164
6406
  * <p>The result of a <code>ListDomainMaintenances</code> request that contains information about the requested actions. </p>
@@ -6169,14 +6411,14 @@ export interface ListDomainMaintenancesResponse {
6169
6411
  * <p>A list of the submitted maintenance actions.</p>
6170
6412
  * @public
6171
6413
  */
6172
- DomainMaintenances?: DomainMaintenanceDetails[];
6414
+ DomainMaintenances?: DomainMaintenanceDetails[] | undefined;
6173
6415
  /**
6174
6416
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6175
6417
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6176
6418
  * returned token to retrieve the next page.</p>
6177
6419
  * @public
6178
6420
  */
6179
- NextToken?: string;
6421
+ NextToken?: string | undefined;
6180
6422
  }
6181
6423
  /**
6182
6424
  * @public
@@ -6199,7 +6441,7 @@ export interface ListDomainNamesRequest {
6199
6441
  * <p>Filters the output by domain engine type.</p>
6200
6442
  * @public
6201
6443
  */
6202
- EngineType?: EngineType;
6444
+ EngineType?: EngineType | undefined;
6203
6445
  }
6204
6446
  /**
6205
6447
  * <p>Information about an OpenSearch Service domain.</p>
@@ -6210,13 +6452,13 @@ export interface DomainInfo {
6210
6452
  * <p>Name of the domain.</p>
6211
6453
  * @public
6212
6454
  */
6213
- DomainName?: string;
6455
+ DomainName?: string | undefined;
6214
6456
  /**
6215
6457
  * <p>The type of search engine that the domain is running.<code>OpenSearch</code> for an
6216
6458
  * OpenSearch engine, or <code>Elasticsearch</code> for a legacy Elasticsearch OSS engine.</p>
6217
6459
  * @public
6218
6460
  */
6219
- EngineType?: EngineType;
6461
+ EngineType?: EngineType | undefined;
6220
6462
  }
6221
6463
  /**
6222
6464
  * <p>The results of a <code>ListDomainNames</code> operation. Contains the names of all domains
@@ -6229,7 +6471,7 @@ export interface ListDomainNamesResponse {
6229
6471
  * engine types.</p>
6230
6472
  * @public
6231
6473
  */
6232
- DomainNames?: DomainInfo[];
6474
+ DomainNames?: DomainInfo[] | undefined;
6233
6475
  }
6234
6476
  /**
6235
6477
  * <p>Container for the request parameters to the <code>ListDomainsForPackage</code> operation.</p>
@@ -6246,14 +6488,14 @@ export interface ListDomainsForPackageRequest {
6246
6488
  * <code>nextToken</code> to get the next page of results.</p>
6247
6489
  * @public
6248
6490
  */
6249
- MaxResults?: number;
6491
+ MaxResults?: number | undefined;
6250
6492
  /**
6251
6493
  * <p>If your initial <code>ListDomainsForPackage</code> operation returns a
6252
6494
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
6253
6495
  * <code>ListDomainsForPackage</code> operations, which returns results in the next page.</p>
6254
6496
  * @public
6255
6497
  */
6256
- NextToken?: string;
6498
+ NextToken?: string | undefined;
6257
6499
  }
6258
6500
  /**
6259
6501
  * <p>Container for the response parameters to the <code>ListDomainsForPackage</code> operation.</p>
@@ -6264,14 +6506,14 @@ export interface ListDomainsForPackageResponse {
6264
6506
  * <p>Information about all domains associated with a package.</p>
6265
6507
  * @public
6266
6508
  */
6267
- DomainPackageDetailsList?: DomainPackageDetails[];
6509
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
6268
6510
  /**
6269
6511
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6270
6512
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6271
6513
  * returned token to retrieve the next page.</p>
6272
6514
  * @public
6273
6515
  */
6274
- NextToken?: string;
6516
+ NextToken?: string | undefined;
6275
6517
  }
6276
6518
  /**
6277
6519
  * @public
@@ -6287,30 +6529,30 @@ export interface ListInstanceTypeDetailsRequest {
6287
6529
  * <p>The name of the domain.</p>
6288
6530
  * @public
6289
6531
  */
6290
- DomainName?: string;
6532
+ DomainName?: string | undefined;
6291
6533
  /**
6292
6534
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
6293
6535
  * <code>nextToken</code> to get the next page of results.</p>
6294
6536
  * @public
6295
6537
  */
6296
- MaxResults?: number;
6538
+ MaxResults?: number | undefined;
6297
6539
  /**
6298
6540
  * <p>If your initial <code>ListInstanceTypeDetails</code> operation returns a
6299
6541
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
6300
6542
  * <code>ListInstanceTypeDetails</code> operations, which returns results in the next page.</p>
6301
6543
  * @public
6302
6544
  */
6303
- NextToken?: string;
6545
+ NextToken?: string | undefined;
6304
6546
  /**
6305
6547
  * <p>An optional parameter that specifies the Availability Zones for the domain.</p>
6306
6548
  * @public
6307
6549
  */
6308
- RetrieveAZs?: boolean;
6550
+ RetrieveAZs?: boolean | undefined;
6309
6551
  /**
6310
6552
  * <p>An optional parameter that lists information for a given instance type.</p>
6311
6553
  * @public
6312
6554
  */
6313
- InstanceType?: string;
6555
+ InstanceType?: string | undefined;
6314
6556
  }
6315
6557
  /**
6316
6558
  * <p>Lists all instance types and available features for a given OpenSearch or Elasticsearch
@@ -6322,44 +6564,44 @@ export interface InstanceTypeDetails {
6322
6564
  * <p>The instance type.</p>
6323
6565
  * @public
6324
6566
  */
6325
- InstanceType?: OpenSearchPartitionInstanceType;
6567
+ InstanceType?: OpenSearchPartitionInstanceType | undefined;
6326
6568
  /**
6327
6569
  * <p>Whether encryption at rest and node-to-node encryption are supported for the instance
6328
6570
  * type.</p>
6329
6571
  * @public
6330
6572
  */
6331
- EncryptionEnabled?: boolean;
6573
+ EncryptionEnabled?: boolean | undefined;
6332
6574
  /**
6333
6575
  * <p>Whether Amazon Cognito access is supported for the instance type.</p>
6334
6576
  * @public
6335
6577
  */
6336
- CognitoEnabled?: boolean;
6578
+ CognitoEnabled?: boolean | undefined;
6337
6579
  /**
6338
6580
  * <p>Whether logging is supported for the instance type.</p>
6339
6581
  * @public
6340
6582
  */
6341
- AppLogsEnabled?: boolean;
6583
+ AppLogsEnabled?: boolean | undefined;
6342
6584
  /**
6343
6585
  * <p>Whether fine-grained access control is supported for the instance type.</p>
6344
6586
  * @public
6345
6587
  */
6346
- AdvancedSecurityEnabled?: boolean;
6588
+ AdvancedSecurityEnabled?: boolean | undefined;
6347
6589
  /**
6348
6590
  * <p>Whether UltraWarm is supported for the instance type.</p>
6349
6591
  * @public
6350
6592
  */
6351
- WarmEnabled?: boolean;
6593
+ WarmEnabled?: boolean | undefined;
6352
6594
  /**
6353
6595
  * <p>Whether the instance acts as a data node, a dedicated master node, or an UltraWarm
6354
6596
  * node.</p>
6355
6597
  * @public
6356
6598
  */
6357
- InstanceRole?: string[];
6599
+ InstanceRole?: string[] | undefined;
6358
6600
  /**
6359
6601
  * <p>The supported Availability Zones for the instance type.</p>
6360
6602
  * @public
6361
6603
  */
6362
- AvailabilityZones?: string[];
6604
+ AvailabilityZones?: string[] | undefined;
6363
6605
  }
6364
6606
  /**
6365
6607
  * @public
@@ -6370,14 +6612,14 @@ export interface ListInstanceTypeDetailsResponse {
6370
6612
  * version.</p>
6371
6613
  * @public
6372
6614
  */
6373
- InstanceTypeDetails?: InstanceTypeDetails[];
6615
+ InstanceTypeDetails?: InstanceTypeDetails[] | undefined;
6374
6616
  /**
6375
6617
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6376
6618
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6377
6619
  * returned token to retrieve the next page.</p>
6378
6620
  * @public
6379
6621
  */
6380
- NextToken?: string;
6622
+ NextToken?: string | undefined;
6381
6623
  }
6382
6624
  /**
6383
6625
  * <p>Container for the request parameters to the <code>ListPackagesForDomain</code> operation.</p>
@@ -6394,14 +6636,14 @@ export interface ListPackagesForDomainRequest {
6394
6636
  * <code>nextToken</code> to get the next page of results.</p>
6395
6637
  * @public
6396
6638
  */
6397
- MaxResults?: number;
6639
+ MaxResults?: number | undefined;
6398
6640
  /**
6399
6641
  * <p>If your initial <code>ListPackagesForDomain</code> operation returns a
6400
6642
  * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
6401
6643
  * <code>ListPackagesForDomain</code> operations, which returns results in the next page.</p>
6402
6644
  * @public
6403
6645
  */
6404
- NextToken?: string;
6646
+ NextToken?: string | undefined;
6405
6647
  }
6406
6648
  /**
6407
6649
  * <p>Container for the response parameters to the <code>ListPackagesForDomain</code> operation.</p>
@@ -6412,14 +6654,14 @@ export interface ListPackagesForDomainResponse {
6412
6654
  * <p>List of all packages associated with a domain.</p>
6413
6655
  * @public
6414
6656
  */
6415
- DomainPackageDetailsList?: DomainPackageDetails[];
6657
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
6416
6658
  /**
6417
6659
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6418
6660
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6419
6661
  * returned token to retrieve the next page.</p>
6420
6662
  * @public
6421
6663
  */
6422
- NextToken?: string;
6664
+ NextToken?: string | undefined;
6423
6665
  }
6424
6666
  /**
6425
6667
  * @public
@@ -6435,14 +6677,14 @@ export interface ListScheduledActionsRequest {
6435
6677
  * <code>nextToken</code> to get the next page of results.</p>
6436
6678
  * @public
6437
6679
  */
6438
- MaxResults?: number;
6680
+ MaxResults?: number | undefined;
6439
6681
  /**
6440
6682
  * <p>If your initial <code>ListScheduledActions</code> operation returns a <code>nextToken</code>, you
6441
6683
  * can include the returned <code>nextToken</code> in subsequent <code>ListScheduledActions</code>
6442
6684
  * operations, which returns results in the next page.</p>
6443
6685
  * @public
6444
6686
  */
6445
- NextToken?: string;
6687
+ NextToken?: string | undefined;
6446
6688
  }
6447
6689
  /**
6448
6690
  * @public
@@ -6488,27 +6730,27 @@ export interface ScheduledAction {
6488
6730
  * <p>A description of the action to be taken.</p>
6489
6731
  * @public
6490
6732
  */
6491
- Description?: string;
6733
+ Description?: string | undefined;
6492
6734
  /**
6493
6735
  * <p>Whether the action was scheduled manually (<code>CUSTOMER</code>, or by OpenSearch Service automatically (<code>SYSTEM</code>).</p>
6494
6736
  * @public
6495
6737
  */
6496
- ScheduledBy?: ScheduledBy;
6738
+ ScheduledBy?: ScheduledBy | undefined;
6497
6739
  /**
6498
6740
  * <p>The current status of the scheduled action.</p>
6499
6741
  * @public
6500
6742
  */
6501
- Status?: ActionStatus;
6743
+ Status?: ActionStatus | undefined;
6502
6744
  /**
6503
6745
  * <p>Whether the action is required or optional.</p>
6504
6746
  * @public
6505
6747
  */
6506
- Mandatory?: boolean;
6748
+ Mandatory?: boolean | undefined;
6507
6749
  /**
6508
6750
  * <p>Whether or not the scheduled action is cancellable.</p>
6509
6751
  * @public
6510
6752
  */
6511
- Cancellable?: boolean;
6753
+ Cancellable?: boolean | undefined;
6512
6754
  }
6513
6755
  /**
6514
6756
  * @public
@@ -6518,14 +6760,14 @@ export interface ListScheduledActionsResponse {
6518
6760
  * <p>A list of actions that are scheduled for the domain.</p>
6519
6761
  * @public
6520
6762
  */
6521
- ScheduledActions?: ScheduledAction[];
6763
+ ScheduledActions?: ScheduledAction[] | undefined;
6522
6764
  /**
6523
6765
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6524
6766
  * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6525
6767
  * returned token to retrieve the next page.</p>
6526
6768
  * @public
6527
6769
  */
6528
- NextToken?: string;
6770
+ NextToken?: string | undefined;
6529
6771
  }
6530
6772
  /**
6531
6773
  * <p>Container for the parameters to the <code>ListTags</code> operation.</p>
@@ -6547,193 +6789,7 @@ export interface ListTagsResponse {
6547
6789
  * <p>List of resource tags associated with the specified domain.</p>
6548
6790
  * @public
6549
6791
  */
6550
- TagList?: Tag[];
6551
- }
6552
- /**
6553
- * <p>Container for the request parameters to the <code>ListVersions</code> operation.</p>
6554
- * @public
6555
- */
6556
- export interface ListVersionsRequest {
6557
- /**
6558
- * <p>An optional parameter that specifies the maximum number of results to return. You can use
6559
- * <code>nextToken</code> to get the next page of results.</p>
6560
- * @public
6561
- */
6562
- MaxResults?: number;
6563
- /**
6564
- * <p>If your initial <code>ListVersions</code> operation returns a <code>nextToken</code>, you
6565
- * can include the returned <code>nextToken</code> in subsequent <code>ListVersions</code>
6566
- * operations, which returns results in the next page.</p>
6567
- * @public
6568
- */
6569
- NextToken?: string;
6570
- }
6571
- /**
6572
- * <p>Container for the parameters for response received from the <code>ListVersions</code>
6573
- * operation.</p>
6574
- * @public
6575
- */
6576
- export interface ListVersionsResponse {
6577
- /**
6578
- * <p>A list of all versions of OpenSearch and Elasticsearch that Amazon OpenSearch Service
6579
- * supports.</p>
6580
- * @public
6581
- */
6582
- Versions?: string[];
6583
- /**
6584
- * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6585
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6586
- * returned token to retrieve the next page.</p>
6587
- * @public
6588
- */
6589
- NextToken?: string;
6590
- }
6591
- /**
6592
- * @public
6593
- */
6594
- export interface ListVpcEndpointAccessRequest {
6595
- /**
6596
- * <p>The name of the OpenSearch Service domain to retrieve access information for.</p>
6597
- * @public
6598
- */
6599
- DomainName: string | undefined;
6600
- /**
6601
- * <p>If your initial <code>ListVpcEndpointAccess</code> operation returns a
6602
- * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
6603
- * <code>ListVpcEndpointAccess</code> operations, which returns results in the next page.</p>
6604
- * @public
6605
- */
6606
- NextToken?: string;
6607
- }
6608
- /**
6609
- * @public
6610
- */
6611
- export interface ListVpcEndpointAccessResponse {
6612
- /**
6613
- * <p>A list of <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_principal.html">IAM principals</a>
6614
- * that can currently access the domain.</p>
6615
- * @public
6616
- */
6617
- AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
6618
- /**
6619
- * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6620
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6621
- * returned token to retrieve the next page.</p>
6622
- * @public
6623
- */
6624
- NextToken: string | undefined;
6625
- }
6626
- /**
6627
- * @public
6628
- */
6629
- export interface ListVpcEndpointsRequest {
6630
- /**
6631
- * <p>If your initial <code>ListVpcEndpoints</code> operation returns a <code>nextToken</code>,
6632
- * you can include the returned <code>nextToken</code> in subsequent <code>ListVpcEndpoints</code>
6633
- * operations, which returns results in the next page.</p>
6634
- * @public
6635
- */
6636
- NextToken?: string;
6637
- }
6638
- /**
6639
- * @public
6640
- */
6641
- export interface ListVpcEndpointsResponse {
6642
- /**
6643
- * <p>Information about each endpoint.</p>
6644
- * @public
6645
- */
6646
- VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
6647
- /**
6648
- * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6649
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6650
- * returned token to retrieve the next page.</p>
6651
- * @public
6652
- */
6653
- NextToken: string | undefined;
6654
- }
6655
- /**
6656
- * @public
6657
- */
6658
- export interface ListVpcEndpointsForDomainRequest {
6659
- /**
6660
- * <p>The name of the domain to list associated VPC endpoints for.</p>
6661
- * @public
6662
- */
6663
- DomainName: string | undefined;
6664
- /**
6665
- * <p>If your initial <code>ListEndpointsForDomain</code> operation returns a
6666
- * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
6667
- * <code>ListEndpointsForDomain</code> operations, which returns results in the next page.</p>
6668
- * @public
6669
- */
6670
- NextToken?: string;
6671
- }
6672
- /**
6673
- * @public
6674
- */
6675
- export interface ListVpcEndpointsForDomainResponse {
6676
- /**
6677
- * <p>Information about each endpoint associated with the domain.</p>
6678
- * @public
6679
- */
6680
- VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
6681
- /**
6682
- * <p>When <code>nextToken</code> is returned, there are more results available. The value of
6683
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
6684
- * returned token to retrieve the next page.</p>
6685
- * @public
6686
- */
6687
- NextToken: string | undefined;
6688
- }
6689
- /**
6690
- * <p>Container for request parameters to the <code>PurchaseReservedInstanceOffering</code>
6691
- * operation.</p>
6692
- * @public
6693
- */
6694
- export interface PurchaseReservedInstanceOfferingRequest {
6695
- /**
6696
- * <p>The ID of the Reserved Instance offering to purchase.</p>
6697
- * @public
6698
- */
6699
- ReservedInstanceOfferingId: string | undefined;
6700
- /**
6701
- * <p>A customer-specified identifier to track this reservation.</p>
6702
- * @public
6703
- */
6704
- ReservationName: string | undefined;
6705
- /**
6706
- * <p>The number of OpenSearch instances to reserve.</p>
6707
- * @public
6708
- */
6709
- InstanceCount?: number;
6710
- }
6711
- /**
6712
- * <p>Represents the output of a <code>PurchaseReservedInstanceOffering</code> operation.</p>
6713
- * @public
6714
- */
6715
- export interface PurchaseReservedInstanceOfferingResponse {
6716
- /**
6717
- * <p>The ID of the Reserved Instance offering that was purchased.</p>
6718
- * @public
6719
- */
6720
- ReservedInstanceId?: string;
6721
- /**
6722
- * <p>The customer-specified identifier used to track this reservation.</p>
6723
- * @public
6724
- */
6725
- ReservationName?: string;
6726
- }
6727
- /**
6728
- * <p>Container for the request parameters to the <code>RejectInboundConnection</code> operation.</p>
6729
- * @public
6730
- */
6731
- export interface RejectInboundConnectionRequest {
6732
- /**
6733
- * <p>The unique identifier of the inbound connection to reject.</p>
6734
- * @public
6735
- */
6736
- ConnectionId: string | undefined;
6792
+ TagList?: Tag[] | undefined;
6737
6793
  }
6738
6794
  /**
6739
6795
  * @internal