@aws-sdk/client-elasticsearch-service 3.687.0 → 3.692.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.
@@ -44,24 +44,24 @@ export interface InboundCrossClusterSearchConnectionStatus {
44
44
  * </ul>
45
45
  * @public
46
46
  */
47
- StatusCode?: InboundCrossClusterSearchConnectionStatusCode;
47
+ StatusCode?: InboundCrossClusterSearchConnectionStatusCode | undefined;
48
48
  /**
49
49
  * <p>Specifies verbose information for the inbound connection status.</p>
50
50
  * @public
51
51
  */
52
- Message?: string;
52
+ Message?: string | undefined;
53
53
  }
54
54
  /**
55
55
  * @public
56
56
  */
57
57
  export interface DomainInformation {
58
- OwnerId?: string;
58
+ OwnerId?: string | undefined;
59
59
  /**
60
60
  * <p>The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).</p>
61
61
  * @public
62
62
  */
63
63
  DomainName: string | undefined;
64
- Region?: string;
64
+ Region?: string | undefined;
65
65
  }
66
66
  /**
67
67
  * <p>Specifies details of an inbound connection.</p>
@@ -72,22 +72,22 @@ export interface InboundCrossClusterSearchConnection {
72
72
  * <p>Specifies the <code><a>DomainInformation</a></code> for the source Elasticsearch domain.</p>
73
73
  * @public
74
74
  */
75
- SourceDomainInfo?: DomainInformation;
75
+ SourceDomainInfo?: DomainInformation | undefined;
76
76
  /**
77
77
  * <p>Specifies the <code><a>DomainInformation</a></code> for the destination Elasticsearch domain.</p>
78
78
  * @public
79
79
  */
80
- DestinationDomainInfo?: DomainInformation;
80
+ DestinationDomainInfo?: DomainInformation | undefined;
81
81
  /**
82
82
  * <p>Specifies the connection id for the inbound cross-cluster search connection.</p>
83
83
  * @public
84
84
  */
85
- CrossClusterSearchConnectionId?: string;
85
+ CrossClusterSearchConnectionId?: string | undefined;
86
86
  /**
87
87
  * <p>Specifies the <code><a>InboundCrossClusterSearchConnectionStatus</a></code> for the outbound connection.</p>
88
88
  * @public
89
89
  */
90
- ConnectionStatus?: InboundCrossClusterSearchConnectionStatus;
90
+ ConnectionStatus?: InboundCrossClusterSearchConnectionStatus | undefined;
91
91
  }
92
92
  /**
93
93
  * <p>The result of a <code><a>AcceptInboundCrossClusterSearchConnection</a></code> operation. Contains details of accepted inbound connection.</p>
@@ -98,7 +98,7 @@ export interface AcceptInboundCrossClusterSearchConnectionResponse {
98
98
  * <p>Specifies the <code><a>InboundCrossClusterSearchConnection</a></code> of accepted inbound connection. </p>
99
99
  * @public
100
100
  */
101
- CrossClusterSearchConnection?: InboundCrossClusterSearchConnection;
101
+ CrossClusterSearchConnection?: InboundCrossClusterSearchConnection | undefined;
102
102
  }
103
103
  /**
104
104
  * <p>An error occured because the client wanted to access a not supported operation. Gives http status code of 409.</p>
@@ -180,7 +180,7 @@ export interface OptionStatus {
180
180
  * <p>Specifies the latest version for the entity.</p>
181
181
  * @public
182
182
  */
183
- UpdateVersion?: number;
183
+ UpdateVersion?: number | undefined;
184
184
  /**
185
185
  * <p>Provides the <code>OptionState</code> for the Elasticsearch domain.</p>
186
186
  * @public
@@ -190,7 +190,7 @@ export interface OptionStatus {
190
190
  * <p>Indicates whether the Elasticsearch domain is being deleted.</p>
191
191
  * @public
192
192
  */
193
- PendingDeletion?: boolean;
193
+ PendingDeletion?: boolean | undefined;
194
194
  }
195
195
  /**
196
196
  * <p>The configured access rules for the domain's document and search endpoints, and the current status of those rules.</p>
@@ -249,7 +249,7 @@ export interface AdditionalLimit {
249
249
  * </p>
250
250
  * @public
251
251
  */
252
- LimitName?: string;
252
+ LimitName?: string | undefined;
253
253
  /**
254
254
  * <p>
255
255
  * Value for given
@@ -260,7 +260,7 @@ export interface AdditionalLimit {
260
260
  * </p>
261
261
  * @public
262
262
  */
263
- LimitValues?: string[];
263
+ LimitValues?: string[] | undefined;
264
264
  }
265
265
  /**
266
266
  * <p>Specifies a key value pair for a resource tag.</p>
@@ -378,27 +378,27 @@ export interface SAMLOptionsOutput {
378
378
  * <p>True if SAML is enabled.</p>
379
379
  * @public
380
380
  */
381
- Enabled?: boolean;
381
+ Enabled?: boolean | undefined;
382
382
  /**
383
383
  * <p>Describes the SAML Identity Provider's information.</p>
384
384
  * @public
385
385
  */
386
- Idp?: SAMLIdp;
386
+ Idp?: SAMLIdp | undefined;
387
387
  /**
388
388
  * <p>The key used for matching the SAML Subject attribute.</p>
389
389
  * @public
390
390
  */
391
- SubjectKey?: string;
391
+ SubjectKey?: string | undefined;
392
392
  /**
393
393
  * <p>The key used for matching the SAML Roles attribute.</p>
394
394
  * @public
395
395
  */
396
- RolesKey?: string;
396
+ RolesKey?: string | undefined;
397
397
  /**
398
398
  * <p>The duration, in minutes, after which a user session becomes inactive.</p>
399
399
  * @public
400
400
  */
401
- SessionTimeoutMinutes?: number;
401
+ SessionTimeoutMinutes?: number | undefined;
402
402
  }
403
403
  /**
404
404
  * <p>Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled.</p>
@@ -409,27 +409,27 @@ export interface AdvancedSecurityOptions {
409
409
  * <p>True if advanced security is enabled.</p>
410
410
  * @public
411
411
  */
412
- Enabled?: boolean;
412
+ Enabled?: boolean | undefined;
413
413
  /**
414
414
  * <p>True if the internal user database is enabled.</p>
415
415
  * @public
416
416
  */
417
- InternalUserDatabaseEnabled?: boolean;
417
+ InternalUserDatabaseEnabled?: boolean | undefined;
418
418
  /**
419
419
  * <p>Describes the SAML application configured for a domain.</p>
420
420
  * @public
421
421
  */
422
- SAMLOptions?: SAMLOptionsOutput;
422
+ SAMLOptions?: SAMLOptionsOutput | undefined;
423
423
  /**
424
424
  * <p>Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.</p>
425
425
  * @public
426
426
  */
427
- AnonymousAuthDisableDate?: Date;
427
+ AnonymousAuthDisableDate?: Date | undefined;
428
428
  /**
429
429
  * <p>True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.</p>
430
430
  * @public
431
431
  */
432
- AnonymousAuthEnabled?: boolean;
432
+ AnonymousAuthEnabled?: boolean | undefined;
433
433
  }
434
434
  /**
435
435
  * <p>Credentials for the master user: username and password, ARN, or both.</p>
@@ -440,17 +440,17 @@ export interface MasterUserOptions {
440
440
  * <p>ARN for the master user (if IAM is enabled).</p>
441
441
  * @public
442
442
  */
443
- MasterUserARN?: string;
443
+ MasterUserARN?: string | undefined;
444
444
  /**
445
445
  * <p>The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.</p>
446
446
  * @public
447
447
  */
448
- MasterUserName?: string;
448
+ MasterUserName?: string | undefined;
449
449
  /**
450
450
  * <p>The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.</p>
451
451
  * @public
452
452
  */
453
- MasterUserPassword?: string;
453
+ MasterUserPassword?: string | undefined;
454
454
  }
455
455
  /**
456
456
  * <p>Specifies the SAML application configuration for the domain.</p>
@@ -461,37 +461,37 @@ export interface SAMLOptionsInput {
461
461
  * <p>True if SAML is enabled.</p>
462
462
  * @public
463
463
  */
464
- Enabled?: boolean;
464
+ Enabled?: boolean | undefined;
465
465
  /**
466
466
  * <p>Specifies the SAML Identity Provider's information.</p>
467
467
  * @public
468
468
  */
469
- Idp?: SAMLIdp;
469
+ Idp?: SAMLIdp | undefined;
470
470
  /**
471
471
  * <p>The SAML master username, which is stored in the Amazon Elasticsearch Service domain's internal database.</p>
472
472
  * @public
473
473
  */
474
- MasterUserName?: string;
474
+ MasterUserName?: string | undefined;
475
475
  /**
476
476
  * <p>The backend role to which the SAML master user is mapped to.</p>
477
477
  * @public
478
478
  */
479
- MasterBackendRole?: string;
479
+ MasterBackendRole?: string | undefined;
480
480
  /**
481
481
  * <p>The key to use for matching the SAML Subject attribute.</p>
482
482
  * @public
483
483
  */
484
- SubjectKey?: string;
484
+ SubjectKey?: string | undefined;
485
485
  /**
486
486
  * <p>The key to use for matching the SAML Roles attribute.</p>
487
487
  * @public
488
488
  */
489
- RolesKey?: string;
489
+ RolesKey?: string | undefined;
490
490
  /**
491
491
  * <p>The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.</p>
492
492
  * @public
493
493
  */
494
- SessionTimeoutMinutes?: number;
494
+ SessionTimeoutMinutes?: number | undefined;
495
495
  }
496
496
  /**
497
497
  * <p>Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled, master username and password (if internal database is enabled), and master user ARN (if IAM is enabled).</p>
@@ -502,27 +502,27 @@ export interface AdvancedSecurityOptionsInput {
502
502
  * <p>True if advanced security is enabled.</p>
503
503
  * @public
504
504
  */
505
- Enabled?: boolean;
505
+ Enabled?: boolean | undefined;
506
506
  /**
507
507
  * <p>True if the internal user database is enabled.</p>
508
508
  * @public
509
509
  */
510
- InternalUserDatabaseEnabled?: boolean;
510
+ InternalUserDatabaseEnabled?: boolean | undefined;
511
511
  /**
512
512
  * <p>Credentials for the master user: username and password, ARN, or both.</p>
513
513
  * @public
514
514
  */
515
- MasterUserOptions?: MasterUserOptions;
515
+ MasterUserOptions?: MasterUserOptions | undefined;
516
516
  /**
517
517
  * <p>Specifies the SAML application configuration for the domain.</p>
518
518
  * @public
519
519
  */
520
- SAMLOptions?: SAMLOptionsInput;
520
+ SAMLOptions?: SAMLOptionsInput | undefined;
521
521
  /**
522
522
  * <p>True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.</p>
523
523
  * @public
524
524
  */
525
- AnonymousAuthEnabled?: boolean;
525
+ AnonymousAuthEnabled?: boolean | undefined;
526
526
  }
527
527
  /**
528
528
  * <p> Specifies the status of advanced security options for the specified Elasticsearch domain.</p>
@@ -581,8 +581,8 @@ export type DomainPackageStatus = (typeof DomainPackageStatus)[keyof typeof Doma
581
581
  * @public
582
582
  */
583
583
  export interface ErrorDetails {
584
- ErrorType?: string;
585
- ErrorMessage?: string;
584
+ ErrorType?: string | undefined;
585
+ ErrorMessage?: string | undefined;
586
586
  }
587
587
  /**
588
588
  * @public
@@ -604,43 +604,43 @@ export interface DomainPackageDetails {
604
604
  * <p>Internal ID of the package.</p>
605
605
  * @public
606
606
  */
607
- PackageID?: string;
607
+ PackageID?: string | undefined;
608
608
  /**
609
609
  * <p>User specified name of the package.</p>
610
610
  * @public
611
611
  */
612
- PackageName?: string;
612
+ PackageName?: string | undefined;
613
613
  /**
614
614
  * <p>Currently supports only TXT-DICTIONARY.</p>
615
615
  * @public
616
616
  */
617
- PackageType?: PackageType;
617
+ PackageType?: PackageType | undefined;
618
618
  /**
619
619
  * <p>Timestamp of the most-recent update to the association status.</p>
620
620
  * @public
621
621
  */
622
- LastUpdated?: Date;
622
+ LastUpdated?: Date | undefined;
623
623
  /**
624
624
  * <p>Name of the domain you've associated a package with.</p>
625
625
  * @public
626
626
  */
627
- DomainName?: string;
627
+ DomainName?: string | undefined;
628
628
  /**
629
629
  * <p>State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.</p>
630
630
  * @public
631
631
  */
632
- DomainPackageStatus?: DomainPackageStatus;
633
- PackageVersion?: string;
632
+ DomainPackageStatus?: DomainPackageStatus | undefined;
633
+ PackageVersion?: string | undefined;
634
634
  /**
635
635
  * <p>The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.</p>
636
636
  * @public
637
637
  */
638
- ReferencePath?: string;
638
+ ReferencePath?: string | undefined;
639
639
  /**
640
640
  * <p>Additional information if the package is in an error state. Null otherwise.</p>
641
641
  * @public
642
642
  */
643
- ErrorDetails?: ErrorDetails;
643
+ ErrorDetails?: ErrorDetails | undefined;
644
644
  }
645
645
  /**
646
646
  * <p>
@@ -657,7 +657,7 @@ export interface AssociatePackageResponse {
657
657
  * <p><code>DomainPackageDetails</code></p>
658
658
  * @public
659
659
  */
660
- DomainPackageDetails?: DomainPackageDetails;
660
+ DomainPackageDetails?: DomainPackageDetails | undefined;
661
661
  }
662
662
  /**
663
663
  * <p>An error occurred because the client attempts to remove a resource that is currently in use. Returns HTTP status code 409.</p>
@@ -710,12 +710,12 @@ export interface AuthorizedPrincipal {
710
710
  * <p>The type of principal.</p>
711
711
  * @public
712
712
  */
713
- PrincipalType?: PrincipalType;
713
+ PrincipalType?: PrincipalType | undefined;
714
714
  /**
715
715
  * <p>The IAM principal that is allowed access to the domain.</p>
716
716
  * @public
717
717
  */
718
- Principal?: string;
718
+ Principal?: string | undefined;
719
719
  }
720
720
  /**
721
721
  * <p>Container for response parameters to the <code><a>AuthorizeVpcEndpointAccess</a></code> operation.
@@ -744,7 +744,7 @@ export interface CancelDomainConfigChangeRequest {
744
744
  * <p>When set to <b>True</b>, returns the list of change IDs and properties that will be cancelled without actually cancelling the change.</p>
745
745
  * @public
746
746
  */
747
- DryRun?: boolean;
747
+ DryRun?: boolean | undefined;
748
748
  }
749
749
  /**
750
750
  * <p>A property change that was cancelled for an Amazon OpenSearch Service domain.</p>
@@ -755,17 +755,17 @@ export interface CancelledChangeProperty {
755
755
  * <p>The name of the property whose change was cancelled.</p>
756
756
  * @public
757
757
  */
758
- PropertyName?: string;
758
+ PropertyName?: string | undefined;
759
759
  /**
760
760
  * <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>
761
761
  * @public
762
762
  */
763
- CancelledValue?: string;
763
+ CancelledValue?: string | undefined;
764
764
  /**
765
765
  * <p>The current value of the property, after the change was cancelled.</p>
766
766
  * @public
767
767
  */
768
- ActiveValue?: string;
768
+ ActiveValue?: string | undefined;
769
769
  }
770
770
  /**
771
771
  * <p>Contains the details of the cancelled domain config change.</p>
@@ -776,17 +776,17 @@ export interface CancelDomainConfigChangeResponse {
776
776
  * <p>Whether or not the request was a dry run. If <b>True</b>, the changes were not actually cancelled.</p>
777
777
  * @public
778
778
  */
779
- DryRun?: boolean;
779
+ DryRun?: boolean | undefined;
780
780
  /**
781
781
  * <p>The unique identifiers of the changes that were cancelled.</p>
782
782
  * @public
783
783
  */
784
- CancelledChangeIds?: string[];
784
+ CancelledChangeIds?: string[] | undefined;
785
785
  /**
786
786
  * <p>The domain change properties that were cancelled.</p>
787
787
  * @public
788
788
  */
789
- CancelledChangeProperties?: CancelledChangeProperty[];
789
+ CancelledChangeProperties?: CancelledChangeProperty[] | undefined;
790
790
  }
791
791
  /**
792
792
  * <p>Container for the parameters to the <code><a>CancelElasticsearchServiceSoftwareUpdate</a></code> operation. Specifies the name of the Elasticsearch domain that you wish to cancel a service software update on.</p>
@@ -823,42 +823,42 @@ export interface ServiceSoftwareOptions {
823
823
  * <p>The current service software version that is present on the domain.</p>
824
824
  * @public
825
825
  */
826
- CurrentVersion?: string;
826
+ CurrentVersion?: string | undefined;
827
827
  /**
828
828
  * <p>The new service software version if one is available.</p>
829
829
  * @public
830
830
  */
831
- NewVersion?: string;
831
+ NewVersion?: string | undefined;
832
832
  /**
833
833
  * <p><code>True</code> if you are able to update you service software version. <code>False</code> if you are not able to update your service software version. </p>
834
834
  * @public
835
835
  */
836
- UpdateAvailable?: boolean;
836
+ UpdateAvailable?: boolean | undefined;
837
837
  /**
838
838
  * <p><code>True</code> if you are able to cancel your service software version update. <code>False</code> if you are not able to cancel your service software version. </p>
839
839
  * @public
840
840
  */
841
- Cancellable?: boolean;
841
+ Cancellable?: boolean | undefined;
842
842
  /**
843
843
  * <p>The status of your service software update. This field can take the following values: <code>ELIGIBLE</code>, <code>PENDING_UPDATE</code>, <code>IN_PROGRESS</code>, <code>COMPLETED</code>, and <code>NOT_ELIGIBLE</code>.</p>
844
844
  * @public
845
845
  */
846
- UpdateStatus?: DeploymentStatus;
846
+ UpdateStatus?: DeploymentStatus | undefined;
847
847
  /**
848
848
  * <p>The description of the <code>UpdateStatus</code>.</p>
849
849
  * @public
850
850
  */
851
- Description?: string;
851
+ Description?: string | undefined;
852
852
  /**
853
853
  * <p>Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.</p>
854
854
  * @public
855
855
  */
856
- AutomatedUpdateDate?: Date;
856
+ AutomatedUpdateDate?: Date | undefined;
857
857
  /**
858
858
  * <p><code>True</code> if a service software is never automatically updated. <code>False</code> if a service software is automatically updated after <code>AutomatedUpdateDate</code>. </p>
859
859
  * @public
860
860
  */
861
- OptionalDeployment?: boolean;
861
+ OptionalDeployment?: boolean | undefined;
862
862
  }
863
863
  /**
864
864
  * <p>The result of a <code>CancelElasticsearchServiceSoftwareUpdate</code> operation. Contains the status of the update.</p>
@@ -869,7 +869,7 @@ export interface CancelElasticsearchServiceSoftwareUpdateResponse {
869
869
  * <p>The current status of the Elasticsearch service software update.</p>
870
870
  * @public
871
871
  */
872
- ServiceSoftwareOptions?: ServiceSoftwareOptions;
872
+ ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
873
873
  }
874
874
  /**
875
875
  * @public
@@ -903,12 +903,12 @@ export interface Duration {
903
903
  * <p> Integer to specify the value of a maintenance schedule duration. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
904
904
  * @public
905
905
  */
906
- Value?: number;
906
+ Value?: number | undefined;
907
907
  /**
908
908
  * <p>Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
909
909
  * @public
910
910
  */
911
- Unit?: TimeUnit;
911
+ Unit?: TimeUnit | undefined;
912
912
  }
913
913
  /**
914
914
  * <p>Specifies Auto-Tune maitenance schedule. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
@@ -919,17 +919,17 @@ export interface AutoTuneMaintenanceSchedule {
919
919
  * <p>Specifies timestamp at which Auto-Tune maintenance schedule start. </p>
920
920
  * @public
921
921
  */
922
- StartAt?: Date;
922
+ StartAt?: Date | undefined;
923
923
  /**
924
924
  * <p>Specifies maintenance schedule duration: duration value and duration unit. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
925
925
  * @public
926
926
  */
927
- Duration?: Duration;
927
+ Duration?: Duration | undefined;
928
928
  /**
929
929
  * <p>Specifies cron expression for a recurring maintenance schedule. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
930
930
  * @public
931
931
  */
932
- CronExpressionForRecurrence?: string;
932
+ CronExpressionForRecurrence?: string | undefined;
933
933
  }
934
934
  /**
935
935
  * <p>Specifies the Auto-Tune options: the Auto-Tune desired state for the domain and list of maintenance schedules.</p>
@@ -940,12 +940,12 @@ export interface AutoTuneOptionsInput {
940
940
  * <p>Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED. </p>
941
941
  * @public
942
942
  */
943
- DesiredState?: AutoTuneDesiredState;
943
+ DesiredState?: AutoTuneDesiredState | undefined;
944
944
  /**
945
945
  * <p>Specifies list of maitenance schedules. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
946
946
  * @public
947
947
  */
948
- MaintenanceSchedules?: AutoTuneMaintenanceSchedule[];
948
+ MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | undefined;
949
949
  }
950
950
  /**
951
951
  * <p>Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html" target="_blank">Amazon Cognito Authentication for Kibana</a>.</p>
@@ -956,22 +956,22 @@ export interface CognitoOptions {
956
956
  * <p>Specifies the option to enable Cognito for Kibana authentication.</p>
957
957
  * @public
958
958
  */
959
- Enabled?: boolean;
959
+ Enabled?: boolean | undefined;
960
960
  /**
961
961
  * <p>Specifies the Cognito user pool ID for Kibana authentication.</p>
962
962
  * @public
963
963
  */
964
- UserPoolId?: string;
964
+ UserPoolId?: string | undefined;
965
965
  /**
966
966
  * <p>Specifies the Cognito identity pool ID for Kibana authentication.</p>
967
967
  * @public
968
968
  */
969
- IdentityPoolId?: string;
969
+ IdentityPoolId?: string | undefined;
970
970
  /**
971
971
  * <p>Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.</p>
972
972
  * @public
973
973
  */
974
- RoleArn?: string;
974
+ RoleArn?: string | undefined;
975
975
  }
976
976
  /**
977
977
  * @public
@@ -995,7 +995,7 @@ export interface DomainEndpointOptions {
995
995
  * <p>Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.</p>
996
996
  * @public
997
997
  */
998
- EnforceHTTPS?: boolean;
998
+ EnforceHTTPS?: boolean | undefined;
999
999
  /**
1000
1000
  * <p>Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.
1001
1001
  * <br></br> It can be one of the following values:
@@ -1007,22 +1007,22 @@ export interface DomainEndpointOptions {
1007
1007
  * </p>
1008
1008
  * @public
1009
1009
  */
1010
- TLSSecurityPolicy?: TLSSecurityPolicy;
1010
+ TLSSecurityPolicy?: TLSSecurityPolicy | undefined;
1011
1011
  /**
1012
1012
  * <p>Specify if custom endpoint should be enabled for the Elasticsearch domain.</p>
1013
1013
  * @public
1014
1014
  */
1015
- CustomEndpointEnabled?: boolean;
1015
+ CustomEndpointEnabled?: boolean | undefined;
1016
1016
  /**
1017
1017
  * <p>Specify the fully qualified domain for your custom endpoint.</p>
1018
1018
  * @public
1019
1019
  */
1020
- CustomEndpoint?: string;
1020
+ CustomEndpoint?: string | undefined;
1021
1021
  /**
1022
1022
  * <p>Specify ACM certificate ARN for your custom endpoint.</p>
1023
1023
  * @public
1024
1024
  */
1025
- CustomEndpointCertificateArn?: string;
1025
+ CustomEndpointCertificateArn?: string | undefined;
1026
1026
  }
1027
1027
  /**
1028
1028
  * @public
@@ -1047,27 +1047,27 @@ export interface EBSOptions {
1047
1047
  * <p>Specifies whether EBS-based storage is enabled.</p>
1048
1048
  * @public
1049
1049
  */
1050
- EBSEnabled?: boolean;
1050
+ EBSEnabled?: boolean | undefined;
1051
1051
  /**
1052
1052
  * <p> Specifies the volume type for EBS-based storage.</p>
1053
1053
  * @public
1054
1054
  */
1055
- VolumeType?: VolumeType;
1055
+ VolumeType?: VolumeType | undefined;
1056
1056
  /**
1057
1057
  * <p> Integer to specify the size of an EBS volume.</p>
1058
1058
  * @public
1059
1059
  */
1060
- VolumeSize?: number;
1060
+ VolumeSize?: number | undefined;
1061
1061
  /**
1062
1062
  * <p>Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).</p>
1063
1063
  * @public
1064
1064
  */
1065
- Iops?: number;
1065
+ Iops?: number | undefined;
1066
1066
  /**
1067
1067
  * <p>Specifies the Throughput for GP3 EBS volume (SSD).</p>
1068
1068
  * @public
1069
1069
  */
1070
- Throughput?: number;
1070
+ Throughput?: number | undefined;
1071
1071
  }
1072
1072
  /**
1073
1073
  * <p>Specifies the configuration for cold storage options such as enabled</p>
@@ -1169,7 +1169,7 @@ export interface ZoneAwarenessConfig {
1169
1169
  * <p>An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled</p>
1170
1170
  * @public
1171
1171
  */
1172
- AvailabilityZoneCount?: number;
1172
+ AvailabilityZoneCount?: number | undefined;
1173
1173
  }
1174
1174
  /**
1175
1175
  * <p>Specifies the configuration for the domain cluster, such as the type and number of instances.</p>
@@ -1180,57 +1180,57 @@ export interface ElasticsearchClusterConfig {
1180
1180
  * <p>The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.</p>
1181
1181
  * @public
1182
1182
  */
1183
- InstanceType?: ESPartitionInstanceType;
1183
+ InstanceType?: ESPartitionInstanceType | undefined;
1184
1184
  /**
1185
1185
  * <p>The number of instances in the specified domain cluster.</p>
1186
1186
  * @public
1187
1187
  */
1188
- InstanceCount?: number;
1188
+ InstanceCount?: number | undefined;
1189
1189
  /**
1190
1190
  * <p>A boolean value to indicate whether a dedicated master node is enabled. See <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-managedomains.html#es-managedomains-dedicatedmasternodes" target="_blank">About Dedicated Master Nodes</a> for more information.</p>
1191
1191
  * @public
1192
1192
  */
1193
- DedicatedMasterEnabled?: boolean;
1193
+ DedicatedMasterEnabled?: boolean | undefined;
1194
1194
  /**
1195
1195
  * <p>A boolean value to indicate whether zone awareness is enabled. See <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-managedomains.html#es-managedomains-zoneawareness" target="_blank">About Zone Awareness</a> for more information.</p>
1196
1196
  * @public
1197
1197
  */
1198
- ZoneAwarenessEnabled?: boolean;
1198
+ ZoneAwarenessEnabled?: boolean | undefined;
1199
1199
  /**
1200
1200
  * <p>Specifies the zone awareness configuration for a domain when zone awareness is enabled.</p>
1201
1201
  * @public
1202
1202
  */
1203
- ZoneAwarenessConfig?: ZoneAwarenessConfig;
1203
+ ZoneAwarenessConfig?: ZoneAwarenessConfig | undefined;
1204
1204
  /**
1205
1205
  * <p>The instance type for a dedicated master node.</p>
1206
1206
  * @public
1207
1207
  */
1208
- DedicatedMasterType?: ESPartitionInstanceType;
1208
+ DedicatedMasterType?: ESPartitionInstanceType | undefined;
1209
1209
  /**
1210
1210
  * <p>Total number of dedicated master nodes, active and on standby, for the cluster.</p>
1211
1211
  * @public
1212
1212
  */
1213
- DedicatedMasterCount?: number;
1213
+ DedicatedMasterCount?: number | undefined;
1214
1214
  /**
1215
1215
  * <p>True to enable warm storage.</p>
1216
1216
  * @public
1217
1217
  */
1218
- WarmEnabled?: boolean;
1218
+ WarmEnabled?: boolean | undefined;
1219
1219
  /**
1220
1220
  * <p>The instance type for the Elasticsearch cluster's warm nodes.</p>
1221
1221
  * @public
1222
1222
  */
1223
- WarmType?: ESWarmPartitionInstanceType;
1223
+ WarmType?: ESWarmPartitionInstanceType | undefined;
1224
1224
  /**
1225
1225
  * <p>The number of warm nodes in the cluster.</p>
1226
1226
  * @public
1227
1227
  */
1228
- WarmCount?: number;
1228
+ WarmCount?: number | undefined;
1229
1229
  /**
1230
1230
  * <p>Specifies the <code>ColdStorageOptions</code> config for Elasticsearch Domain</p>
1231
1231
  * @public
1232
1232
  */
1233
- ColdStorageOptions?: ColdStorageOptions;
1233
+ ColdStorageOptions?: ColdStorageOptions | undefined;
1234
1234
  }
1235
1235
  /**
1236
1236
  * <p>Specifies the Encryption At Rest Options.</p>
@@ -1241,12 +1241,12 @@ export interface EncryptionAtRestOptions {
1241
1241
  * <p>Specifies the option to enable Encryption At Rest.</p>
1242
1242
  * @public
1243
1243
  */
1244
- Enabled?: boolean;
1244
+ Enabled?: boolean | undefined;
1245
1245
  /**
1246
1246
  * <p> Specifies the KMS Key ID for Encryption At Rest options.</p>
1247
1247
  * @public
1248
1248
  */
1249
- KmsKeyId?: string;
1249
+ KmsKeyId?: string | undefined;
1250
1250
  }
1251
1251
  /**
1252
1252
  * @public
@@ -1277,12 +1277,12 @@ export interface LogPublishingOption {
1277
1277
  * <p>ARN of the Cloudwatch log group to which log needs to be published.</p>
1278
1278
  * @public
1279
1279
  */
1280
- CloudWatchLogsLogGroupArn?: string;
1280
+ CloudWatchLogsLogGroupArn?: string | undefined;
1281
1281
  /**
1282
1282
  * <p> Specifies whether given log publishing option is enabled or not.</p>
1283
1283
  * @public
1284
1284
  */
1285
- Enabled?: boolean;
1285
+ Enabled?: boolean | undefined;
1286
1286
  }
1287
1287
  /**
1288
1288
  * <p>Specifies the node-to-node encryption options.</p>
@@ -1293,7 +1293,7 @@ export interface NodeToNodeEncryptionOptions {
1293
1293
  * <p>Specify true to enable node-to-node encryption.</p>
1294
1294
  * @public
1295
1295
  */
1296
- Enabled?: boolean;
1296
+ Enabled?: boolean | undefined;
1297
1297
  }
1298
1298
  /**
1299
1299
  * <p>Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is <code>0</code> hours.</p>
@@ -1304,7 +1304,7 @@ export interface SnapshotOptions {
1304
1304
  * <p>Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is <code>0</code> hours.</p>
1305
1305
  * @public
1306
1306
  */
1307
- AutomatedSnapshotStartHour?: number;
1307
+ AutomatedSnapshotStartHour?: number | undefined;
1308
1308
  }
1309
1309
  /**
1310
1310
  * <p>Options to specify the subnets and security groups for VPC endpoint. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html" target="_blank"> VPC Endpoints for Amazon Elasticsearch Service Domains</a>.</p>
@@ -1315,12 +1315,12 @@ export interface VPCOptions {
1315
1315
  * <p>Specifies the subnets for VPC endpoint.</p>
1316
1316
  * @public
1317
1317
  */
1318
- SubnetIds?: string[];
1318
+ SubnetIds?: string[] | undefined;
1319
1319
  /**
1320
1320
  * <p>Specifies the security groups for VPC endpoint.</p>
1321
1321
  * @public
1322
1322
  */
1323
- SecurityGroupIds?: string[];
1323
+ SecurityGroupIds?: string[] | undefined;
1324
1324
  }
1325
1325
  /**
1326
1326
  * @public
@@ -1336,78 +1336,78 @@ export interface CreateElasticsearchDomainRequest {
1336
1336
  * see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomains" target="_blank">Creating Elasticsearch Domains</a> in the <i>Amazon Elasticsearch Service Developer Guide</i>.</p>
1337
1337
  * @public
1338
1338
  */
1339
- ElasticsearchVersion?: string;
1339
+ ElasticsearchVersion?: string | undefined;
1340
1340
  /**
1341
1341
  * <p>Configuration options for an Elasticsearch domain. Specifies the instance type and number of instances in the domain cluster. </p>
1342
1342
  * @public
1343
1343
  */
1344
- ElasticsearchClusterConfig?: ElasticsearchClusterConfig;
1344
+ ElasticsearchClusterConfig?: ElasticsearchClusterConfig | undefined;
1345
1345
  /**
1346
1346
  * <p>Options to enable, disable and specify the type and size of EBS storage volumes. </p>
1347
1347
  * @public
1348
1348
  */
1349
- EBSOptions?: EBSOptions;
1349
+ EBSOptions?: EBSOptions | undefined;
1350
1350
  /**
1351
1351
  * <p> IAM access policy as a JSON-formatted string.</p>
1352
1352
  * @public
1353
1353
  */
1354
- AccessPolicies?: string;
1354
+ AccessPolicies?: string | undefined;
1355
1355
  /**
1356
1356
  * <p>Option to set time, in UTC format, of the daily automated snapshot. Default value is 0 hours. </p>
1357
1357
  * @public
1358
1358
  */
1359
- SnapshotOptions?: SnapshotOptions;
1359
+ SnapshotOptions?: SnapshotOptions | undefined;
1360
1360
  /**
1361
1361
  * <p>Options to specify the subnets and security groups for VPC endpoint. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-creating-vpc" target="_blank">Creating a VPC</a> in <i>VPC Endpoints for Amazon Elasticsearch Service Domains</i></p>
1362
1362
  * @public
1363
1363
  */
1364
- VPCOptions?: VPCOptions;
1364
+ VPCOptions?: VPCOptions | undefined;
1365
1365
  /**
1366
1366
  * <p>Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html" target="_blank">Amazon Cognito Authentication for Kibana</a>.</p>
1367
1367
  * @public
1368
1368
  */
1369
- CognitoOptions?: CognitoOptions;
1369
+ CognitoOptions?: CognitoOptions | undefined;
1370
1370
  /**
1371
1371
  * <p>Specifies the Encryption At Rest Options.</p>
1372
1372
  * @public
1373
1373
  */
1374
- EncryptionAtRestOptions?: EncryptionAtRestOptions;
1374
+ EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
1375
1375
  /**
1376
1376
  * <p>Specifies the NodeToNodeEncryptionOptions.</p>
1377
1377
  * @public
1378
1378
  */
1379
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
1379
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
1380
1380
  /**
1381
1381
  * <p> Option to allow references to indices in an HTTP request body. Must be <code>false</code> when configuring access to individual sub-resources. By default, the value is <code>true</code>.
1382
1382
  * See <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-advanced-options" target="_blank">Configuration Advanced Options</a> for more information.</p>
1383
1383
  * @public
1384
1384
  */
1385
- AdvancedOptions?: Record<string, string>;
1385
+ AdvancedOptions?: Record<string, string> | undefined;
1386
1386
  /**
1387
1387
  * <p>Map of <code>LogType</code> and <code>LogPublishingOption</code>, each containing options to publish a given type of Elasticsearch log.</p>
1388
1388
  * @public
1389
1389
  */
1390
- LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
1390
+ LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>> | undefined;
1391
1391
  /**
1392
1392
  * <p>Options to specify configuration that will be applied to the domain endpoint.</p>
1393
1393
  * @public
1394
1394
  */
1395
- DomainEndpointOptions?: DomainEndpointOptions;
1395
+ DomainEndpointOptions?: DomainEndpointOptions | undefined;
1396
1396
  /**
1397
1397
  * <p>Specifies advanced security options.</p>
1398
1398
  * @public
1399
1399
  */
1400
- AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
1400
+ AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
1401
1401
  /**
1402
1402
  * <p>Specifies Auto-Tune options.</p>
1403
1403
  * @public
1404
1404
  */
1405
- AutoTuneOptions?: AutoTuneOptionsInput;
1405
+ AutoTuneOptions?: AutoTuneOptionsInput | undefined;
1406
1406
  /**
1407
1407
  * <p>A list of <code>Tag</code> added during domain creation.</p>
1408
1408
  * @public
1409
1409
  */
1410
- TagList?: Tag[];
1410
+ TagList?: Tag[] | undefined;
1411
1411
  }
1412
1412
  /**
1413
1413
  * @public
@@ -1437,12 +1437,12 @@ export interface AutoTuneOptionsOutput {
1437
1437
  * <p>Specifies the <code>AutoTuneState</code> for the Elasticsearch domain.</p>
1438
1438
  * @public
1439
1439
  */
1440
- State?: AutoTuneState;
1440
+ State?: AutoTuneState | undefined;
1441
1441
  /**
1442
1442
  * <p>Specifies the error message while enabling or disabling the Auto-Tune.</p>
1443
1443
  * @public
1444
1444
  */
1445
- ErrorMessage?: string;
1445
+ ErrorMessage?: string | undefined;
1446
1446
  }
1447
1447
  /**
1448
1448
  * @public
@@ -1483,32 +1483,32 @@ export interface ChangeProgressDetails {
1483
1483
  * <p>The unique change identifier associated with a specific domain configuration change.</p>
1484
1484
  * @public
1485
1485
  */
1486
- ChangeId?: string;
1486
+ ChangeId?: string | undefined;
1487
1487
  /**
1488
1488
  * <p>Contains an optional message associated with the domain configuration change.</p>
1489
1489
  * @public
1490
1490
  */
1491
- Message?: string;
1491
+ Message?: string | undefined;
1492
1492
  /**
1493
1493
  * <p>The current status of the configuration change.</p>
1494
1494
  * @public
1495
1495
  */
1496
- ConfigChangeStatus?: ConfigChangeStatus;
1496
+ ConfigChangeStatus?: ConfigChangeStatus | undefined;
1497
1497
  /**
1498
1498
  * <p>The time that the configuration change was initiated, in Universal Coordinated Time (UTC).</p>
1499
1499
  * @public
1500
1500
  */
1501
- StartTime?: Date;
1501
+ StartTime?: Date | undefined;
1502
1502
  /**
1503
1503
  * <p>The last time that the configuration change was updated.</p>
1504
1504
  * @public
1505
1505
  */
1506
- LastUpdatedTime?: Date;
1506
+ LastUpdatedTime?: Date | undefined;
1507
1507
  /**
1508
1508
  * <p>The IAM principal who initiated the configuration change.</p>
1509
1509
  * @public
1510
1510
  */
1511
- InitiatedBy?: InitiatedBy;
1511
+ InitiatedBy?: InitiatedBy | undefined;
1512
1512
  }
1513
1513
  /**
1514
1514
  * @public
@@ -1548,17 +1548,17 @@ export interface ModifyingProperties {
1548
1548
  * <p>The name of the property that is currently being modified.</p>
1549
1549
  * @public
1550
1550
  */
1551
- Name?: string;
1551
+ Name?: string | undefined;
1552
1552
  /**
1553
1553
  * <p>The current value of the domain property that is being modified.</p>
1554
1554
  * @public
1555
1555
  */
1556
- ActiveValue?: string;
1556
+ ActiveValue?: string | undefined;
1557
1557
  /**
1558
1558
  * <p>The value that the property that is currently being modified will eventually have.</p>
1559
1559
  * @public
1560
1560
  */
1561
- PendingValue?: string;
1561
+ PendingValue?: string | undefined;
1562
1562
  /**
1563
1563
  * <p>The type of value that is currently being modified. Properties can have two types:</p>
1564
1564
  * <ul>
@@ -1567,7 +1567,7 @@ export interface ModifyingProperties {
1567
1567
  * </ul>
1568
1568
  * @public
1569
1569
  */
1570
- ValueType?: PropertyValueType;
1570
+ ValueType?: PropertyValueType | undefined;
1571
1571
  }
1572
1572
  /**
1573
1573
  * <p>Options to specify the subnets and security groups for VPC endpoint. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html" target="_blank"> VPC Endpoints for Amazon Elasticsearch Service Domains</a>.</p>
@@ -1578,22 +1578,22 @@ export interface VPCDerivedInfo {
1578
1578
  * <p>The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.</p>
1579
1579
  * @public
1580
1580
  */
1581
- VPCId?: string;
1581
+ VPCId?: string | undefined;
1582
1582
  /**
1583
1583
  * <p>Specifies the subnets for VPC endpoint.</p>
1584
1584
  * @public
1585
1585
  */
1586
- SubnetIds?: string[];
1586
+ SubnetIds?: string[] | undefined;
1587
1587
  /**
1588
1588
  * <p>The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.</p>
1589
1589
  * @public
1590
1590
  */
1591
- AvailabilityZones?: string[];
1591
+ AvailabilityZones?: string[] | undefined;
1592
1592
  /**
1593
1593
  * <p>Specifies the security groups for VPC endpoint.</p>
1594
1594
  * @public
1595
1595
  */
1596
- SecurityGroupIds?: string[];
1596
+ SecurityGroupIds?: string[] | undefined;
1597
1597
  }
1598
1598
  /**
1599
1599
  * <p>The current status of an Elasticsearch domain.</p>
@@ -1619,33 +1619,33 @@ export interface ElasticsearchDomainStatus {
1619
1619
  * <p>The domain creation status. <code>True</code> if the creation of an Elasticsearch domain is complete. <code>False</code> if domain creation is still in progress.</p>
1620
1620
  * @public
1621
1621
  */
1622
- Created?: boolean;
1622
+ Created?: boolean | undefined;
1623
1623
  /**
1624
1624
  * <p>The domain deletion status. <code>True</code> if a delete request has been received for the domain but resource cleanup is still in progress. <code>False</code> if the domain has not been deleted. Once domain deletion is complete, the status of the domain is no longer returned.</p>
1625
1625
  * @public
1626
1626
  */
1627
- Deleted?: boolean;
1627
+ Deleted?: boolean | undefined;
1628
1628
  /**
1629
1629
  * <p>The Elasticsearch domain endpoint that you use to submit index and search requests.</p>
1630
1630
  * @public
1631
1631
  */
1632
- Endpoint?: string;
1632
+ Endpoint?: string | undefined;
1633
1633
  /**
1634
1634
  * <p>Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example <code>key, value</code>: <code>'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'</code>.</p>
1635
1635
  * @public
1636
1636
  */
1637
- Endpoints?: Record<string, string>;
1637
+ Endpoints?: Record<string, string> | undefined;
1638
1638
  /**
1639
1639
  * <p>The status of the Elasticsearch domain configuration. <code>True</code> if Amazon Elasticsearch Service is processing configuration changes. <code>False</code> if the configuration is active.</p>
1640
1640
  * @public
1641
1641
  */
1642
- Processing?: boolean;
1642
+ Processing?: boolean | undefined;
1643
1643
  /**
1644
1644
  * <p>The status of an Elasticsearch domain version upgrade. <code>True</code> if Amazon Elasticsearch Service is undergoing a version upgrade. <code>False</code> if the configuration is active.</p>
1645
1645
  * @public
1646
1646
  */
1647
- UpgradeProcessing?: boolean;
1648
- ElasticsearchVersion?: string;
1647
+ UpgradeProcessing?: boolean | undefined;
1648
+ ElasticsearchVersion?: string | undefined;
1649
1649
  /**
1650
1650
  * <p>The type and number of instances in the domain cluster.</p>
1651
1651
  * @public
@@ -1655,82 +1655,82 @@ export interface ElasticsearchDomainStatus {
1655
1655
  * <p>The <code>EBSOptions</code> for the specified domain. See <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs" target="_blank">Configuring EBS-based Storage</a> for more information.</p>
1656
1656
  * @public
1657
1657
  */
1658
- EBSOptions?: EBSOptions;
1658
+ EBSOptions?: EBSOptions | undefined;
1659
1659
  /**
1660
1660
  * <p> IAM access policy as a JSON-formatted string.</p>
1661
1661
  * @public
1662
1662
  */
1663
- AccessPolicies?: string;
1663
+ AccessPolicies?: string | undefined;
1664
1664
  /**
1665
1665
  * <p>Specifies the status of the <code>SnapshotOptions</code></p>
1666
1666
  * @public
1667
1667
  */
1668
- SnapshotOptions?: SnapshotOptions;
1668
+ SnapshotOptions?: SnapshotOptions | undefined;
1669
1669
  /**
1670
1670
  * <p>The <code>VPCOptions</code> for the specified domain. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html" target="_blank">VPC Endpoints for Amazon Elasticsearch Service Domains</a>.</p>
1671
1671
  * @public
1672
1672
  */
1673
- VPCOptions?: VPCDerivedInfo;
1673
+ VPCOptions?: VPCDerivedInfo | undefined;
1674
1674
  /**
1675
1675
  * <p>The <code>CognitoOptions</code> for the specified domain. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html" target="_blank">Amazon Cognito Authentication for Kibana</a>.</p>
1676
1676
  * @public
1677
1677
  */
1678
- CognitoOptions?: CognitoOptions;
1678
+ CognitoOptions?: CognitoOptions | undefined;
1679
1679
  /**
1680
1680
  * <p> Specifies the status of the <code>EncryptionAtRestOptions</code>.</p>
1681
1681
  * @public
1682
1682
  */
1683
- EncryptionAtRestOptions?: EncryptionAtRestOptions;
1683
+ EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
1684
1684
  /**
1685
1685
  * <p>Specifies the status of the <code>NodeToNodeEncryptionOptions</code>.</p>
1686
1686
  * @public
1687
1687
  */
1688
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
1688
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
1689
1689
  /**
1690
1690
  * <p>Specifies the status of the <code>AdvancedOptions</code></p>
1691
1691
  * @public
1692
1692
  */
1693
- AdvancedOptions?: Record<string, string>;
1693
+ AdvancedOptions?: Record<string, string> | undefined;
1694
1694
  /**
1695
1695
  * <p>Log publishing options for the given domain.</p>
1696
1696
  * @public
1697
1697
  */
1698
- LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
1698
+ LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>> | undefined;
1699
1699
  /**
1700
1700
  * <p>The current status of the Elasticsearch domain's service software.</p>
1701
1701
  * @public
1702
1702
  */
1703
- ServiceSoftwareOptions?: ServiceSoftwareOptions;
1703
+ ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
1704
1704
  /**
1705
1705
  * <p>The current status of the Elasticsearch domain's endpoint options.</p>
1706
1706
  * @public
1707
1707
  */
1708
- DomainEndpointOptions?: DomainEndpointOptions;
1708
+ DomainEndpointOptions?: DomainEndpointOptions | undefined;
1709
1709
  /**
1710
1710
  * <p>The current status of the Elasticsearch domain's advanced security options.</p>
1711
1711
  * @public
1712
1712
  */
1713
- AdvancedSecurityOptions?: AdvancedSecurityOptions;
1713
+ AdvancedSecurityOptions?: AdvancedSecurityOptions | undefined;
1714
1714
  /**
1715
1715
  * <p>The current status of the Elasticsearch domain's Auto-Tune options.</p>
1716
1716
  * @public
1717
1717
  */
1718
- AutoTuneOptions?: AutoTuneOptionsOutput;
1718
+ AutoTuneOptions?: AutoTuneOptionsOutput | undefined;
1719
1719
  /**
1720
1720
  * <p>Specifies change details of the domain configuration change.</p>
1721
1721
  * @public
1722
1722
  */
1723
- ChangeProgressDetails?: ChangeProgressDetails;
1723
+ ChangeProgressDetails?: ChangeProgressDetails | undefined;
1724
1724
  /**
1725
1725
  * <p>The status of any changes that are currently in progress for the domain.</p>
1726
1726
  * @public
1727
1727
  */
1728
- DomainProcessingStatus?: DomainProcessingStatusType;
1728
+ DomainProcessingStatus?: DomainProcessingStatusType | undefined;
1729
1729
  /**
1730
1730
  * <p>Information about the domain properties that are currently being modified.</p>
1731
1731
  * @public
1732
1732
  */
1733
- ModifyingProperties?: ModifyingProperties[];
1733
+ ModifyingProperties?: ModifyingProperties[] | undefined;
1734
1734
  }
1735
1735
  /**
1736
1736
  * <p>The result of a <code>CreateElasticsearchDomain</code> operation. Contains the status of the newly created Elasticsearch domain.</p>
@@ -1741,7 +1741,7 @@ export interface CreateElasticsearchDomainResponse {
1741
1741
  * <p>The status of the newly created Elasticsearch domain. </p>
1742
1742
  * @public
1743
1743
  */
1744
- DomainStatus?: ElasticsearchDomainStatus;
1744
+ DomainStatus?: ElasticsearchDomainStatus | undefined;
1745
1745
  }
1746
1746
  /**
1747
1747
  * <p>An exception for trying to create or access sub-resource that is either invalid or not supported. Gives http status code of 409.</p>
@@ -1825,12 +1825,12 @@ export interface OutboundCrossClusterSearchConnectionStatus {
1825
1825
  * </ul>
1826
1826
  * @public
1827
1827
  */
1828
- StatusCode?: OutboundCrossClusterSearchConnectionStatusCode;
1828
+ StatusCode?: OutboundCrossClusterSearchConnectionStatusCode | undefined;
1829
1829
  /**
1830
1830
  * <p>Specifies verbose information for the outbound connection status.</p>
1831
1831
  * @public
1832
1832
  */
1833
- Message?: string;
1833
+ Message?: string | undefined;
1834
1834
  }
1835
1835
  /**
1836
1836
  * <p>The result of a <code><a>CreateOutboundCrossClusterSearchConnection</a></code> request. Contains the details of the newly created cross-cluster search connection.</p>
@@ -1841,27 +1841,27 @@ export interface CreateOutboundCrossClusterSearchConnectionResponse {
1841
1841
  * <p>Specifies the <code><a>DomainInformation</a></code> for the source Elasticsearch domain.</p>
1842
1842
  * @public
1843
1843
  */
1844
- SourceDomainInfo?: DomainInformation;
1844
+ SourceDomainInfo?: DomainInformation | undefined;
1845
1845
  /**
1846
1846
  * <p>Specifies the <code><a>DomainInformation</a></code> for the destination Elasticsearch domain.</p>
1847
1847
  * @public
1848
1848
  */
1849
- DestinationDomainInfo?: DomainInformation;
1849
+ DestinationDomainInfo?: DomainInformation | undefined;
1850
1850
  /**
1851
1851
  * <p>Specifies the connection alias provided during the create connection request.</p>
1852
1852
  * @public
1853
1853
  */
1854
- ConnectionAlias?: string;
1854
+ ConnectionAlias?: string | undefined;
1855
1855
  /**
1856
1856
  * <p>Specifies the <code><a>OutboundCrossClusterSearchConnectionStatus</a></code> for the newly created connection.</p>
1857
1857
  * @public
1858
1858
  */
1859
- ConnectionStatus?: OutboundCrossClusterSearchConnectionStatus;
1859
+ ConnectionStatus?: OutboundCrossClusterSearchConnectionStatus | undefined;
1860
1860
  /**
1861
1861
  * <p>Unique id for the created outbound connection, which is used for subsequent operations on connection.</p>
1862
1862
  * @public
1863
1863
  */
1864
- CrossClusterSearchConnectionId?: string;
1864
+ CrossClusterSearchConnectionId?: string | undefined;
1865
1865
  }
1866
1866
  /**
1867
1867
  * <p>The S3 location for importing the package specified as <code>S3BucketName</code> and <code>S3Key</code></p>
@@ -1872,12 +1872,12 @@ export interface PackageSource {
1872
1872
  * <p>Name of the bucket containing the package.</p>
1873
1873
  * @public
1874
1874
  */
1875
- S3BucketName?: string;
1875
+ S3BucketName?: string | undefined;
1876
1876
  /**
1877
1877
  * <p>Key (file name) of the package.</p>
1878
1878
  * @public
1879
1879
  */
1880
- S3Key?: string;
1880
+ S3Key?: string | undefined;
1881
1881
  }
1882
1882
  /**
1883
1883
  * <p>
@@ -1904,7 +1904,7 @@ export interface CreatePackageRequest {
1904
1904
  * <p>Description of the package.</p>
1905
1905
  * @public
1906
1906
  */
1907
- PackageDescription?: string;
1907
+ PackageDescription?: string | undefined;
1908
1908
  /**
1909
1909
  * <p>The customer S3 location <code>PackageSource</code> for importing the package.</p>
1910
1910
  * @public
@@ -1938,39 +1938,39 @@ export interface PackageDetails {
1938
1938
  * <p>Internal ID of the package.</p>
1939
1939
  * @public
1940
1940
  */
1941
- PackageID?: string;
1941
+ PackageID?: string | undefined;
1942
1942
  /**
1943
1943
  * <p>User specified name of the package.</p>
1944
1944
  * @public
1945
1945
  */
1946
- PackageName?: string;
1946
+ PackageName?: string | undefined;
1947
1947
  /**
1948
1948
  * <p>Currently supports only TXT-DICTIONARY.</p>
1949
1949
  * @public
1950
1950
  */
1951
- PackageType?: PackageType;
1951
+ PackageType?: PackageType | undefined;
1952
1952
  /**
1953
1953
  * <p>User-specified description of the package.</p>
1954
1954
  * @public
1955
1955
  */
1956
- PackageDescription?: string;
1956
+ PackageDescription?: string | undefined;
1957
1957
  /**
1958
1958
  * <p>Current state of the package. Values are COPYING/COPY_FAILED/AVAILABLE/DELETING/DELETE_FAILED</p>
1959
1959
  * @public
1960
1960
  */
1961
- PackageStatus?: PackageStatus;
1961
+ PackageStatus?: PackageStatus | undefined;
1962
1962
  /**
1963
1963
  * <p>Timestamp which tells creation date of the package.</p>
1964
1964
  * @public
1965
1965
  */
1966
- CreatedAt?: Date;
1967
- LastUpdatedAt?: Date;
1968
- AvailablePackageVersion?: string;
1966
+ CreatedAt?: Date | undefined;
1967
+ LastUpdatedAt?: Date | undefined;
1968
+ AvailablePackageVersion?: string | undefined;
1969
1969
  /**
1970
1970
  * <p>Additional information if the package is in an error state. Null otherwise.</p>
1971
1971
  * @public
1972
1972
  */
1973
- ErrorDetails?: ErrorDetails;
1973
+ ErrorDetails?: ErrorDetails | undefined;
1974
1974
  }
1975
1975
  /**
1976
1976
  * <p>
@@ -1987,7 +1987,7 @@ export interface CreatePackageResponse {
1987
1987
  * <p>Information about the package <code>PackageDetails</code>.</p>
1988
1988
  * @public
1989
1989
  */
1990
- PackageDetails?: PackageDetails;
1990
+ PackageDetails?: PackageDetails | undefined;
1991
1991
  }
1992
1992
  /**
1993
1993
  * <p>Container for the parameters to the <code><a>CreateVpcEndpointRequest</a></code> operation.</p>
@@ -2008,7 +2008,7 @@ export interface CreateVpcEndpointRequest {
2008
2008
  * <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
2009
2009
  * @public
2010
2010
  */
2011
- ClientToken?: string;
2011
+ ClientToken?: string | undefined;
2012
2012
  }
2013
2013
  /**
2014
2014
  * @public
@@ -2037,33 +2037,33 @@ export interface VpcEndpoint {
2037
2037
  * <p>The unique identifier of the endpoint.</p>
2038
2038
  * @public
2039
2039
  */
2040
- VpcEndpointId?: string;
2040
+ VpcEndpointId?: string | undefined;
2041
2041
  /**
2042
2042
  * <p>The creator of the endpoint.</p>
2043
2043
  * @public
2044
2044
  */
2045
- VpcEndpointOwner?: string;
2045
+ VpcEndpointOwner?: string | undefined;
2046
2046
  /**
2047
2047
  * <p>The Amazon Resource Name (ARN) of the domain associated with the endpoint.</p>
2048
2048
  * @public
2049
2049
  */
2050
- DomainArn?: string;
2050
+ DomainArn?: string | undefined;
2051
2051
  /**
2052
2052
  * <p>Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC
2053
2053
  * endpoint.</p>
2054
2054
  * @public
2055
2055
  */
2056
- VpcOptions?: VPCDerivedInfo;
2056
+ VpcOptions?: VPCDerivedInfo | undefined;
2057
2057
  /**
2058
2058
  * <p>The current status of the endpoint.</p>
2059
2059
  * @public
2060
2060
  */
2061
- Status?: VpcEndpointStatus;
2061
+ Status?: VpcEndpointStatus | undefined;
2062
2062
  /**
2063
2063
  * <p>The connection endpoint ID for connecting to the domain.</p>
2064
2064
  * @public
2065
2065
  */
2066
- Endpoint?: string;
2066
+ Endpoint?: string | undefined;
2067
2067
  }
2068
2068
  /**
2069
2069
  * <p>Container for response parameters to the <code><a>CreateVpcEndpoint</a></code> operation. Contains the configuration and status of the VPC Endpoint being created.</p>
@@ -2096,7 +2096,7 @@ export interface DeleteElasticsearchDomainResponse {
2096
2096
  * <p>The status of the Elasticsearch domain being deleted.</p>
2097
2097
  * @public
2098
2098
  */
2099
- DomainStatus?: ElasticsearchDomainStatus;
2099
+ DomainStatus?: ElasticsearchDomainStatus | undefined;
2100
2100
  }
2101
2101
  /**
2102
2102
  * <p>Container for the parameters to the <code><a>DeleteInboundCrossClusterSearchConnection</a></code> operation.</p>
@@ -2118,7 +2118,7 @@ export interface DeleteInboundCrossClusterSearchConnectionResponse {
2118
2118
  * <p>Specifies the <code><a>InboundCrossClusterSearchConnection</a></code> of deleted inbound connection. </p>
2119
2119
  * @public
2120
2120
  */
2121
- CrossClusterSearchConnection?: InboundCrossClusterSearchConnection;
2121
+ CrossClusterSearchConnection?: InboundCrossClusterSearchConnection | undefined;
2122
2122
  }
2123
2123
  /**
2124
2124
  * <p>Container for the parameters to the <code><a>DeleteOutboundCrossClusterSearchConnection</a></code> operation.</p>
@@ -2140,27 +2140,27 @@ export interface OutboundCrossClusterSearchConnection {
2140
2140
  * <p>Specifies the <code><a>DomainInformation</a></code> for the source Elasticsearch domain.</p>
2141
2141
  * @public
2142
2142
  */
2143
- SourceDomainInfo?: DomainInformation;
2143
+ SourceDomainInfo?: DomainInformation | undefined;
2144
2144
  /**
2145
2145
  * <p>Specifies the <code><a>DomainInformation</a></code> for the destination Elasticsearch domain.</p>
2146
2146
  * @public
2147
2147
  */
2148
- DestinationDomainInfo?: DomainInformation;
2148
+ DestinationDomainInfo?: DomainInformation | undefined;
2149
2149
  /**
2150
2150
  * <p>Specifies the connection id for the outbound cross-cluster search connection.</p>
2151
2151
  * @public
2152
2152
  */
2153
- CrossClusterSearchConnectionId?: string;
2153
+ CrossClusterSearchConnectionId?: string | undefined;
2154
2154
  /**
2155
2155
  * <p>Specifies the connection alias for the outbound cross-cluster search connection.</p>
2156
2156
  * @public
2157
2157
  */
2158
- ConnectionAlias?: string;
2158
+ ConnectionAlias?: string | undefined;
2159
2159
  /**
2160
2160
  * <p>Specifies the <code><a>OutboundCrossClusterSearchConnectionStatus</a></code> for the outbound connection.</p>
2161
2161
  * @public
2162
2162
  */
2163
- ConnectionStatus?: OutboundCrossClusterSearchConnectionStatus;
2163
+ ConnectionStatus?: OutboundCrossClusterSearchConnectionStatus | undefined;
2164
2164
  }
2165
2165
  /**
2166
2166
  * <p>The result of a <code><a>DeleteOutboundCrossClusterSearchConnection</a></code> operation. Contains details of deleted outbound connection.</p>
@@ -2171,7 +2171,7 @@ export interface DeleteOutboundCrossClusterSearchConnectionResponse {
2171
2171
  * <p>Specifies the <code><a>OutboundCrossClusterSearchConnection</a></code> of deleted outbound connection. </p>
2172
2172
  * @public
2173
2173
  */
2174
- CrossClusterSearchConnection?: OutboundCrossClusterSearchConnection;
2174
+ CrossClusterSearchConnection?: OutboundCrossClusterSearchConnection | undefined;
2175
2175
  }
2176
2176
  /**
2177
2177
  * <p>
@@ -2205,7 +2205,7 @@ export interface DeletePackageResponse {
2205
2205
  * <p><code>PackageDetails</code></p>
2206
2206
  * @public
2207
2207
  */
2208
- PackageDetails?: PackageDetails;
2208
+ PackageDetails?: PackageDetails | undefined;
2209
2209
  }
2210
2210
  /**
2211
2211
  * <p>Deletes an Amazon OpenSearch Service-managed interface VPC endpoint.</p>
@@ -2227,22 +2227,22 @@ export interface VpcEndpointSummary {
2227
2227
  * <p>The unique identifier of the endpoint.</p>
2228
2228
  * @public
2229
2229
  */
2230
- VpcEndpointId?: string;
2230
+ VpcEndpointId?: string | undefined;
2231
2231
  /**
2232
2232
  * <p>The creator of the endpoint.</p>
2233
2233
  * @public
2234
2234
  */
2235
- VpcEndpointOwner?: string;
2235
+ VpcEndpointOwner?: string | undefined;
2236
2236
  /**
2237
2237
  * <p>The Amazon Resource Name (ARN) of the domain associated with the endpoint.</p>
2238
2238
  * @public
2239
2239
  */
2240
- DomainArn?: string;
2240
+ DomainArn?: string | undefined;
2241
2241
  /**
2242
2242
  * <p>The current status of the endpoint.</p>
2243
2243
  * @public
2244
2244
  */
2245
- Status?: VpcEndpointStatus;
2245
+ Status?: VpcEndpointStatus | undefined;
2246
2246
  }
2247
2247
  /**
2248
2248
  * <p>Container for response parameters to the <code><a>DeleteVpcEndpoint</a></code> operation. Contains the summarized detail of the VPC Endpoint being deleted.</p>
@@ -2270,12 +2270,12 @@ export interface DescribeDomainAutoTunesRequest {
2270
2270
  * <p>Set this value to limit the number of results returned. If not specified, defaults to 100.</p>
2271
2271
  * @public
2272
2272
  */
2273
- MaxResults?: number;
2273
+ MaxResults?: number | undefined;
2274
2274
  /**
2275
2275
  * <p>NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.</p>
2276
2276
  * @public
2277
2277
  */
2278
- NextToken?: string;
2278
+ NextToken?: string | undefined;
2279
2279
  }
2280
2280
  /**
2281
2281
  * @public
@@ -2311,22 +2311,22 @@ export interface ScheduledAutoTuneDetails {
2311
2311
  * <p>Specifies timestamp for the Auto-Tune action scheduled for the domain. </p>
2312
2312
  * @public
2313
2313
  */
2314
- Date?: Date;
2314
+ Date?: Date | undefined;
2315
2315
  /**
2316
2316
  * <p>Specifies Auto-Tune action type. Valid values are JVM_HEAP_SIZE_TUNING and JVM_YOUNG_GEN_TUNING. </p>
2317
2317
  * @public
2318
2318
  */
2319
- ActionType?: ScheduledAutoTuneActionType;
2319
+ ActionType?: ScheduledAutoTuneActionType | undefined;
2320
2320
  /**
2321
2321
  * <p>Specifies Auto-Tune action description. </p>
2322
2322
  * @public
2323
2323
  */
2324
- Action?: string;
2324
+ Action?: string | undefined;
2325
2325
  /**
2326
2326
  * <p>Specifies Auto-Tune action severity. Valid values are LOW, MEDIUM and HIGH. </p>
2327
2327
  * @public
2328
2328
  */
2329
- Severity?: ScheduledAutoTuneSeverityType;
2329
+ Severity?: ScheduledAutoTuneSeverityType | undefined;
2330
2330
  }
2331
2331
  /**
2332
2332
  * <p>Specifies details of the Auto-Tune action. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information. </p>
@@ -2337,7 +2337,7 @@ export interface AutoTuneDetails {
2337
2337
  * <p>Specifies details of the scheduled Auto-Tune action. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information. </p>
2338
2338
  * @public
2339
2339
  */
2340
- ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails;
2340
+ ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails | undefined;
2341
2341
  }
2342
2342
  /**
2343
2343
  * @public
@@ -2359,12 +2359,12 @@ export interface AutoTune {
2359
2359
  * <p>Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION. </p>
2360
2360
  * @public
2361
2361
  */
2362
- AutoTuneType?: AutoTuneType;
2362
+ AutoTuneType?: AutoTuneType | undefined;
2363
2363
  /**
2364
2364
  * <p>Specifies details of the Auto-Tune action. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information. </p>
2365
2365
  * @public
2366
2366
  */
2367
- AutoTuneDetails?: AutoTuneDetails;
2367
+ AutoTuneDetails?: AutoTuneDetails | undefined;
2368
2368
  }
2369
2369
  /**
2370
2370
  * <p>The result of <code>DescribeDomainAutoTunes</code> request. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information. </p>
@@ -2375,12 +2375,12 @@ export interface DescribeDomainAutoTunesResponse {
2375
2375
  * <p>Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
2376
2376
  * @public
2377
2377
  */
2378
- AutoTunes?: AutoTune[];
2378
+ AutoTunes?: AutoTune[] | undefined;
2379
2379
  /**
2380
2380
  * <p>Specifies an identifier to allow retrieval of paginated results.</p>
2381
2381
  * @public
2382
2382
  */
2383
- NextToken?: string;
2383
+ NextToken?: string | undefined;
2384
2384
  }
2385
2385
  /**
2386
2386
  * <p>Container for the parameters to the <code>DescribeDomainChangeProgress</code> operation. Specifies the
@@ -2400,7 +2400,7 @@ export interface DescribeDomainChangeProgressRequest {
2400
2400
  * </p>
2401
2401
  * @public
2402
2402
  */
2403
- ChangeId?: string;
2403
+ ChangeId?: string | undefined;
2404
2404
  }
2405
2405
  /**
2406
2406
  * <p>A progress stage details of a specific domain configuration change.</p>
@@ -2411,22 +2411,22 @@ export interface ChangeProgressStage {
2411
2411
  * <p>The name of the specific progress stage.</p>
2412
2412
  * @public
2413
2413
  */
2414
- Name?: string;
2414
+ Name?: string | undefined;
2415
2415
  /**
2416
2416
  * <p>The overall status of a specific progress stage.</p>
2417
2417
  * @public
2418
2418
  */
2419
- Status?: string;
2419
+ Status?: string | undefined;
2420
2420
  /**
2421
2421
  * <p>The description of the progress stage.</p>
2422
2422
  * @public
2423
2423
  */
2424
- Description?: string;
2424
+ Description?: string | undefined;
2425
2425
  /**
2426
2426
  * <p>The last updated timestamp of the progress stage.</p>
2427
2427
  * @public
2428
2428
  */
2429
- LastUpdated?: Date;
2429
+ LastUpdated?: Date | undefined;
2430
2430
  }
2431
2431
  /**
2432
2432
  * @public
@@ -2451,52 +2451,52 @@ export interface ChangeProgressStatusDetails {
2451
2451
  * <p>The unique change identifier associated with a specific domain configuration change.</p>
2452
2452
  * @public
2453
2453
  */
2454
- ChangeId?: string;
2454
+ ChangeId?: string | undefined;
2455
2455
  /**
2456
2456
  * <p>The time at which the configuration change is made on the domain.</p>
2457
2457
  * @public
2458
2458
  */
2459
- StartTime?: Date;
2459
+ StartTime?: Date | undefined;
2460
2460
  /**
2461
2461
  * <p>The overall status of the domain configuration change. This field can take the following values: <code>PENDING</code>, <code>PROCESSING</code>, <code>COMPLETED</code> and <code>FAILED</code></p>
2462
2462
  * @public
2463
2463
  */
2464
- Status?: OverallChangeStatus;
2464
+ Status?: OverallChangeStatus | undefined;
2465
2465
  /**
2466
2466
  * <p>The list of properties involved in the domain configuration change that are still in pending.</p>
2467
2467
  * @public
2468
2468
  */
2469
- PendingProperties?: string[];
2469
+ PendingProperties?: string[] | undefined;
2470
2470
  /**
2471
2471
  * <p>The list of properties involved in the domain configuration change that are completed.</p>
2472
2472
  * @public
2473
2473
  */
2474
- CompletedProperties?: string[];
2474
+ CompletedProperties?: string[] | undefined;
2475
2475
  /**
2476
2476
  * <p>The total number of stages required for the configuration change.</p>
2477
2477
  * @public
2478
2478
  */
2479
- TotalNumberOfStages?: number;
2479
+ TotalNumberOfStages?: number | undefined;
2480
2480
  /**
2481
2481
  * <p>The specific stages that the domain is going through to perform the configuration change.</p>
2482
2482
  * @public
2483
2483
  */
2484
- ChangeProgressStages?: ChangeProgressStage[];
2484
+ ChangeProgressStages?: ChangeProgressStage[] | undefined;
2485
2485
  /**
2486
2486
  * <p>The current status of the configuration change.</p>
2487
2487
  * @public
2488
2488
  */
2489
- ConfigChangeStatus?: ConfigChangeStatus;
2489
+ ConfigChangeStatus?: ConfigChangeStatus | undefined;
2490
2490
  /**
2491
2491
  * <p>The last time that the status of the configuration change was updated.</p>
2492
2492
  * @public
2493
2493
  */
2494
- LastUpdatedTime?: Date;
2494
+ LastUpdatedTime?: Date | undefined;
2495
2495
  /**
2496
2496
  * <p>The IAM principal who initiated the configuration change.</p>
2497
2497
  * @public
2498
2498
  */
2499
- InitiatedBy?: InitiatedBy;
2499
+ InitiatedBy?: InitiatedBy | undefined;
2500
2500
  }
2501
2501
  /**
2502
2502
  * <p>The result of a <code>DescribeDomainChangeProgress</code> request. Contains the progress information of
@@ -2510,7 +2510,7 @@ export interface DescribeDomainChangeProgressResponse {
2510
2510
  * </p>
2511
2511
  * @public
2512
2512
  */
2513
- ChangeProgressStatus?: ChangeProgressStatusDetails;
2513
+ ChangeProgressStatus?: ChangeProgressStatusDetails | undefined;
2514
2514
  }
2515
2515
  /**
2516
2516
  * <p>Container for the parameters to the <code><a>DescribeElasticsearchDomain</a></code> operation.</p>
@@ -2566,17 +2566,17 @@ export interface AutoTuneOptions {
2566
2566
  * <p>Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED. </p>
2567
2567
  * @public
2568
2568
  */
2569
- DesiredState?: AutoTuneDesiredState;
2569
+ DesiredState?: AutoTuneDesiredState | undefined;
2570
2570
  /**
2571
2571
  * <p>Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK. </p>
2572
2572
  * @public
2573
2573
  */
2574
- RollbackOnDisable?: RollbackOnDisable;
2574
+ RollbackOnDisable?: RollbackOnDisable | undefined;
2575
2575
  /**
2576
2576
  * <p>Specifies list of maitenance schedules. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
2577
2577
  * @public
2578
2578
  */
2579
- MaintenanceSchedules?: AutoTuneMaintenanceSchedule[];
2579
+ MaintenanceSchedules?: AutoTuneMaintenanceSchedule[] | undefined;
2580
2580
  }
2581
2581
  /**
2582
2582
  * <p>Provides the current status of the Auto-Tune options. </p>
@@ -2597,7 +2597,7 @@ export interface AutoTuneStatus {
2597
2597
  * <p>Specifies the Auto-Tune options latest version.</p>
2598
2598
  * @public
2599
2599
  */
2600
- UpdateVersion?: number;
2600
+ UpdateVersion?: number | undefined;
2601
2601
  /**
2602
2602
  * <p>Specifies the <code>AutoTuneState</code> for the Elasticsearch domain.</p>
2603
2603
  * @public
@@ -2607,12 +2607,12 @@ export interface AutoTuneStatus {
2607
2607
  * <p>Specifies the error message while enabling or disabling the Auto-Tune options.</p>
2608
2608
  * @public
2609
2609
  */
2610
- ErrorMessage?: string;
2610
+ ErrorMessage?: string | undefined;
2611
2611
  /**
2612
2612
  * <p>Indicates whether the Elasticsearch domain is being deleted.</p>
2613
2613
  * @public
2614
2614
  */
2615
- PendingDeletion?: boolean;
2615
+ PendingDeletion?: boolean | undefined;
2616
2616
  }
2617
2617
  /**
2618
2618
  * <p> Specifies the status of Auto-Tune options for the specified Elasticsearch domain.</p>
@@ -2623,12 +2623,12 @@ export interface AutoTuneOptionsStatus {
2623
2623
  * <p> Specifies Auto-Tune options for the specified Elasticsearch domain.</p>
2624
2624
  * @public
2625
2625
  */
2626
- Options?: AutoTuneOptions;
2626
+ Options?: AutoTuneOptions | undefined;
2627
2627
  /**
2628
2628
  * <p> Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.</p>
2629
2629
  * @public
2630
2630
  */
2631
- Status?: AutoTuneStatus;
2631
+ Status?: AutoTuneStatus | undefined;
2632
2632
  }
2633
2633
  /**
2634
2634
  * <p>Status of the Cognito options for the specified Elasticsearch domain.</p>
@@ -2735,12 +2735,12 @@ export interface LogPublishingOptionsStatus {
2735
2735
  * <p>The log publishing options configured for the Elasticsearch domain.</p>
2736
2736
  * @public
2737
2737
  */
2738
- Options?: Partial<Record<LogType, LogPublishingOption>>;
2738
+ Options?: Partial<Record<LogType, LogPublishingOption>> | undefined;
2739
2739
  /**
2740
2740
  * <p>The status of the log publishing options for the Elasticsearch domain. See <code>OptionStatus</code> for the status information that's included. </p>
2741
2741
  * @public
2742
2742
  */
2743
- Status?: OptionStatus;
2743
+ Status?: OptionStatus | undefined;
2744
2744
  }
2745
2745
  /**
2746
2746
  * <p>Status of the node-to-node encryption options for the specified Elasticsearch domain.</p>
@@ -2799,82 +2799,82 @@ export interface ElasticsearchDomainConfig {
2799
2799
  * <p>String of format X.Y to specify version for the Elasticsearch domain.</p>
2800
2800
  * @public
2801
2801
  */
2802
- ElasticsearchVersion?: ElasticsearchVersionStatus;
2802
+ ElasticsearchVersion?: ElasticsearchVersionStatus | undefined;
2803
2803
  /**
2804
2804
  * <p>Specifies the <code>ElasticsearchClusterConfig</code> for the Elasticsearch domain.</p>
2805
2805
  * @public
2806
2806
  */
2807
- ElasticsearchClusterConfig?: ElasticsearchClusterConfigStatus;
2807
+ ElasticsearchClusterConfig?: ElasticsearchClusterConfigStatus | undefined;
2808
2808
  /**
2809
2809
  * <p>Specifies the <code>EBSOptions</code> for the Elasticsearch domain.</p>
2810
2810
  * @public
2811
2811
  */
2812
- EBSOptions?: EBSOptionsStatus;
2812
+ EBSOptions?: EBSOptionsStatus | undefined;
2813
2813
  /**
2814
2814
  * <p>IAM access policy as a JSON-formatted string.</p>
2815
2815
  * @public
2816
2816
  */
2817
- AccessPolicies?: AccessPoliciesStatus;
2817
+ AccessPolicies?: AccessPoliciesStatus | undefined;
2818
2818
  /**
2819
2819
  * <p>Specifies the <code>SnapshotOptions</code> for the Elasticsearch domain.</p>
2820
2820
  * @public
2821
2821
  */
2822
- SnapshotOptions?: SnapshotOptionsStatus;
2822
+ SnapshotOptions?: SnapshotOptionsStatus | undefined;
2823
2823
  /**
2824
2824
  * <p>The <code>VPCOptions</code> for the specified domain. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html" target="_blank">VPC Endpoints for Amazon Elasticsearch Service Domains</a>.</p>
2825
2825
  * @public
2826
2826
  */
2827
- VPCOptions?: VPCDerivedInfoStatus;
2827
+ VPCOptions?: VPCDerivedInfoStatus | undefined;
2828
2828
  /**
2829
2829
  * <p>The <code>CognitoOptions</code> for the specified domain. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html" target="_blank">Amazon Cognito Authentication for Kibana</a>.</p>
2830
2830
  * @public
2831
2831
  */
2832
- CognitoOptions?: CognitoOptionsStatus;
2832
+ CognitoOptions?: CognitoOptionsStatus | undefined;
2833
2833
  /**
2834
2834
  * <p>Specifies the <code>EncryptionAtRestOptions</code> for the Elasticsearch domain.</p>
2835
2835
  * @public
2836
2836
  */
2837
- EncryptionAtRestOptions?: EncryptionAtRestOptionsStatus;
2837
+ EncryptionAtRestOptions?: EncryptionAtRestOptionsStatus | undefined;
2838
2838
  /**
2839
2839
  * <p>Specifies the <code>NodeToNodeEncryptionOptions</code> for the Elasticsearch domain.</p>
2840
2840
  * @public
2841
2841
  */
2842
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptionsStatus;
2842
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptionsStatus | undefined;
2843
2843
  /**
2844
2844
  * <p>Specifies the <code>AdvancedOptions</code> for the domain. See <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-advanced-options" target="_blank">Configuring Advanced Options</a> for more information.</p>
2845
2845
  * @public
2846
2846
  */
2847
- AdvancedOptions?: AdvancedOptionsStatus;
2847
+ AdvancedOptions?: AdvancedOptionsStatus | undefined;
2848
2848
  /**
2849
2849
  * <p>Log publishing options for the given domain.</p>
2850
2850
  * @public
2851
2851
  */
2852
- LogPublishingOptions?: LogPublishingOptionsStatus;
2852
+ LogPublishingOptions?: LogPublishingOptionsStatus | undefined;
2853
2853
  /**
2854
2854
  * <p>Specifies the <code>DomainEndpointOptions</code> for the Elasticsearch domain.</p>
2855
2855
  * @public
2856
2856
  */
2857
- DomainEndpointOptions?: DomainEndpointOptionsStatus;
2857
+ DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
2858
2858
  /**
2859
2859
  * <p>Specifies <code>AdvancedSecurityOptions</code> for the domain. </p>
2860
2860
  * @public
2861
2861
  */
2862
- AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus;
2862
+ AdvancedSecurityOptions?: AdvancedSecurityOptionsStatus | undefined;
2863
2863
  /**
2864
2864
  * <p>Specifies <code>AutoTuneOptions</code> for the domain. </p>
2865
2865
  * @public
2866
2866
  */
2867
- AutoTuneOptions?: AutoTuneOptionsStatus;
2867
+ AutoTuneOptions?: AutoTuneOptionsStatus | undefined;
2868
2868
  /**
2869
2869
  * <p>Specifies change details of the domain configuration change.</p>
2870
2870
  * @public
2871
2871
  */
2872
- ChangeProgressDetails?: ChangeProgressDetails;
2872
+ ChangeProgressDetails?: ChangeProgressDetails | undefined;
2873
2873
  /**
2874
2874
  * <p>Information about the domain properties that are currently being modified.</p>
2875
2875
  * @public
2876
2876
  */
2877
- ModifyingProperties?: ModifyingProperties[];
2877
+ ModifyingProperties?: ModifyingProperties[] | undefined;
2878
2878
  }
2879
2879
  /**
2880
2880
  * <p>The result of a <code>DescribeElasticsearchDomainConfig</code> request. Contains the configuration information of the requested domain.</p>
@@ -2932,7 +2932,7 @@ export interface DescribeElasticsearchInstanceTypeLimitsRequest {
2932
2932
  * </p>
2933
2933
  * @public
2934
2934
  */
2935
- DomainName?: string;
2935
+ DomainName?: string | undefined;
2936
2936
  /**
2937
2937
  * <p>
2938
2938
  * The instance type for an Elasticsearch cluster for which Elasticsearch
@@ -2970,14 +2970,14 @@ export interface InstanceCountLimits {
2970
2970
  * </p>
2971
2971
  * @public
2972
2972
  */
2973
- MinimumInstanceCount?: number;
2973
+ MinimumInstanceCount?: number | undefined;
2974
2974
  /**
2975
2975
  * <p>
2976
2976
  * Maximum number of Instances that can be instantiated for given InstanceType.
2977
2977
  * </p>
2978
2978
  * @public
2979
2979
  */
2980
- MaximumInstanceCount?: number;
2980
+ MaximumInstanceCount?: number | undefined;
2981
2981
  }
2982
2982
  /**
2983
2983
  * <p>InstanceLimits represents the list of instance related attributes that are available for given InstanceType.
@@ -2992,7 +2992,7 @@ export interface InstanceLimits {
2992
2992
  * </p>
2993
2993
  * @public
2994
2994
  */
2995
- InstanceCountLimits?: InstanceCountLimits;
2995
+ InstanceCountLimits?: InstanceCountLimits | undefined;
2996
2996
  }
2997
2997
  /**
2998
2998
  * <p>Limits that are applicable for given storage type.
@@ -3025,7 +3025,7 @@ export interface StorageTypeLimit {
3025
3025
  * </p>
3026
3026
  * @public
3027
3027
  */
3028
- LimitName?: string;
3028
+ LimitName?: string | undefined;
3029
3029
  /**
3030
3030
  * <p>
3031
3031
  * Values for the
@@ -3036,7 +3036,7 @@ export interface StorageTypeLimit {
3036
3036
  * </p>
3037
3037
  * @public
3038
3038
  */
3039
- LimitValues?: string[];
3039
+ LimitValues?: string[] | undefined;
3040
3040
  }
3041
3041
  /**
3042
3042
  * <p>StorageTypes represents the list of storage related types and their attributes
@@ -3056,7 +3056,7 @@ export interface StorageType {
3056
3056
  * </p>
3057
3057
  * @public
3058
3058
  */
3059
- StorageTypeName?: string;
3059
+ StorageTypeName?: string | undefined;
3060
3060
  /**
3061
3061
  * <p>
3062
3062
  * SubType of the given storage type.
@@ -3073,13 +3073,13 @@ export interface StorageType {
3073
3073
  * </p>
3074
3074
  * @public
3075
3075
  */
3076
- StorageSubTypeName?: string;
3076
+ StorageSubTypeName?: string | undefined;
3077
3077
  /**
3078
3078
  * <p>List of limits that are applicable for given storage type.
3079
3079
  * </p>
3080
3080
  * @public
3081
3081
  */
3082
- StorageTypeLimits?: StorageTypeLimit[];
3082
+ StorageTypeLimits?: StorageTypeLimit[] | undefined;
3083
3083
  }
3084
3084
  /**
3085
3085
  * <p>
@@ -3106,13 +3106,13 @@ export interface Limits {
3106
3106
  * </p>
3107
3107
  * @public
3108
3108
  */
3109
- StorageTypes?: StorageType[];
3109
+ StorageTypes?: StorageType[] | undefined;
3110
3110
  /**
3111
3111
  * <p>InstanceLimits represents the list of instance related attributes that are available for given InstanceType.
3112
3112
  * </p>
3113
3113
  * @public
3114
3114
  */
3115
- InstanceLimits?: InstanceLimits;
3115
+ InstanceLimits?: InstanceLimits | undefined;
3116
3116
  /**
3117
3117
  * <p>
3118
3118
  * List of additional limits that are specific to a given InstanceType and for each of it's
@@ -3123,7 +3123,7 @@ export interface Limits {
3123
3123
  * </p>
3124
3124
  * @public
3125
3125
  */
3126
- AdditionalLimits?: AdditionalLimit[];
3126
+ AdditionalLimits?: AdditionalLimit[] | undefined;
3127
3127
  }
3128
3128
  /**
3129
3129
  * <p>
@@ -3149,7 +3149,7 @@ export interface DescribeElasticsearchInstanceTypeLimitsResponse {
3149
3149
  * </p>
3150
3150
  * @public
3151
3151
  */
3152
- LimitsByRole?: Record<string, Limits>;
3152
+ LimitsByRole?: Record<string, Limits> | undefined;
3153
3153
  }
3154
3154
  /**
3155
3155
  * <p>
@@ -3167,14 +3167,14 @@ export interface Filter {
3167
3167
  * </p>
3168
3168
  * @public
3169
3169
  */
3170
- Name?: string;
3170
+ Name?: string | undefined;
3171
3171
  /**
3172
3172
  * <p>
3173
3173
  * Contains one or more values for the filter.
3174
3174
  * </p>
3175
3175
  * @public
3176
3176
  */
3177
- Values?: string[];
3177
+ Values?: string[] | undefined;
3178
3178
  }
3179
3179
  /**
3180
3180
  * <p>Container for the parameters to the <code><a>DescribeInboundCrossClusterSearchConnections</a></code> operation.</p>
@@ -3195,17 +3195,17 @@ export interface DescribeInboundCrossClusterSearchConnectionsRequest {
3195
3195
  * </p>
3196
3196
  * @public
3197
3197
  */
3198
- Filters?: Filter[];
3198
+ Filters?: Filter[] | undefined;
3199
3199
  /**
3200
3200
  * <p>Set this value to limit the number of results returned. If not specified, defaults to 100.</p>
3201
3201
  * @public
3202
3202
  */
3203
- MaxResults?: number;
3203
+ MaxResults?: number | undefined;
3204
3204
  /**
3205
3205
  * <p> NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.</p>
3206
3206
  * @public
3207
3207
  */
3208
- NextToken?: string;
3208
+ NextToken?: string | undefined;
3209
3209
  }
3210
3210
  /**
3211
3211
  * <p>The result of a <code><a>DescribeInboundCrossClusterSearchConnections</a></code> request. Contains the list of connections matching the filter criteria.</p>
@@ -3216,13 +3216,13 @@ export interface DescribeInboundCrossClusterSearchConnectionsResponse {
3216
3216
  * <p>Consists of list of <code><a>InboundCrossClusterSearchConnection</a></code> matching the specified filter criteria.</p>
3217
3217
  * @public
3218
3218
  */
3219
- CrossClusterSearchConnections?: InboundCrossClusterSearchConnection[];
3219
+ CrossClusterSearchConnections?: InboundCrossClusterSearchConnection[] | undefined;
3220
3220
  /**
3221
3221
  * <p>If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
3222
3222
  * </p>
3223
3223
  * @public
3224
3224
  */
3225
- NextToken?: string;
3225
+ NextToken?: string | undefined;
3226
3226
  }
3227
3227
  /**
3228
3228
  * <p>The request processing has failed because of invalid pagination token provided by customer. Returns an HTTP status code of 400. </p>
@@ -3255,17 +3255,17 @@ export interface DescribeOutboundCrossClusterSearchConnectionsRequest {
3255
3255
  * </p>
3256
3256
  * @public
3257
3257
  */
3258
- Filters?: Filter[];
3258
+ Filters?: Filter[] | undefined;
3259
3259
  /**
3260
3260
  * <p>Set this value to limit the number of results returned. If not specified, defaults to 100.</p>
3261
3261
  * @public
3262
3262
  */
3263
- MaxResults?: number;
3263
+ MaxResults?: number | undefined;
3264
3264
  /**
3265
3265
  * <p> NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.</p>
3266
3266
  * @public
3267
3267
  */
3268
- NextToken?: string;
3268
+ NextToken?: string | undefined;
3269
3269
  }
3270
3270
  /**
3271
3271
  * <p>The result of a <code><a>DescribeOutboundCrossClusterSearchConnections</a></code> request. Contains the list of connections matching the filter criteria.</p>
@@ -3276,13 +3276,13 @@ export interface DescribeOutboundCrossClusterSearchConnectionsResponse {
3276
3276
  * <p>Consists of list of <code><a>OutboundCrossClusterSearchConnection</a></code> matching the specified filter criteria.</p>
3277
3277
  * @public
3278
3278
  */
3279
- CrossClusterSearchConnections?: OutboundCrossClusterSearchConnection[];
3279
+ CrossClusterSearchConnections?: OutboundCrossClusterSearchConnection[] | undefined;
3280
3280
  /**
3281
3281
  * <p>If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.
3282
3282
  * </p>
3283
3283
  * @public
3284
3284
  */
3285
- NextToken?: string;
3285
+ NextToken?: string | undefined;
3286
3286
  }
3287
3287
  /**
3288
3288
  * @public
@@ -3306,12 +3306,12 @@ export interface DescribePackagesFilter {
3306
3306
  * <p>Any field from <code>PackageDetails</code>.</p>
3307
3307
  * @public
3308
3308
  */
3309
- Name?: DescribePackagesFilterName;
3309
+ Name?: DescribePackagesFilterName | undefined;
3310
3310
  /**
3311
3311
  * <p>A non-empty list of values for the specified field.</p>
3312
3312
  * @public
3313
3313
  */
3314
- Value?: string[];
3314
+ Value?: string[] | undefined;
3315
3315
  }
3316
3316
  /**
3317
3317
  * <p>
@@ -3328,17 +3328,17 @@ export interface DescribePackagesRequest {
3328
3328
  * <p>Only returns packages that match the <code>DescribePackagesFilterList</code> values.</p>
3329
3329
  * @public
3330
3330
  */
3331
- Filters?: DescribePackagesFilter[];
3331
+ Filters?: DescribePackagesFilter[] | undefined;
3332
3332
  /**
3333
3333
  * <p>Limits results to a maximum number of packages.</p>
3334
3334
  * @public
3335
3335
  */
3336
- MaxResults?: number;
3336
+ MaxResults?: number | undefined;
3337
3337
  /**
3338
3338
  * <p>Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.</p>
3339
3339
  * @public
3340
3340
  */
3341
- NextToken?: string;
3341
+ NextToken?: string | undefined;
3342
3342
  }
3343
3343
  /**
3344
3344
  * <p>
@@ -3355,8 +3355,8 @@ export interface DescribePackagesResponse {
3355
3355
  * <p>List of <code>PackageDetails</code> objects.</p>
3356
3356
  * @public
3357
3357
  */
3358
- PackageDetailsList?: PackageDetails[];
3359
- NextToken?: string;
3358
+ PackageDetailsList?: PackageDetails[] | undefined;
3359
+ NextToken?: string | undefined;
3360
3360
  }
3361
3361
  /**
3362
3362
  * <p>Container for parameters to <code>DescribeReservedElasticsearchInstanceOfferings</code></p>
@@ -3367,18 +3367,18 @@ export interface DescribeReservedElasticsearchInstanceOfferingsRequest {
3367
3367
  * <p>The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.</p>
3368
3368
  * @public
3369
3369
  */
3370
- ReservedElasticsearchInstanceOfferingId?: string;
3370
+ ReservedElasticsearchInstanceOfferingId?: string | undefined;
3371
3371
  /**
3372
3372
  * <p>Set this value to limit the number of results returned. If not specified, defaults to 100.</p>
3373
3373
  * @public
3374
3374
  */
3375
- MaxResults?: number;
3375
+ MaxResults?: number | undefined;
3376
3376
  /**
3377
3377
  * <p>NextToken should be sent in case if earlier API call produced result
3378
3378
  * containing NextToken. It is used for pagination.</p>
3379
3379
  * @public
3380
3380
  */
3381
- NextToken?: string;
3381
+ NextToken?: string | undefined;
3382
3382
  }
3383
3383
  /**
3384
3384
  * @public
@@ -3402,12 +3402,12 @@ export interface RecurringCharge {
3402
3402
  * <p>The monetary amount of the recurring charge.</p>
3403
3403
  * @public
3404
3404
  */
3405
- RecurringChargeAmount?: number;
3405
+ RecurringChargeAmount?: number | undefined;
3406
3406
  /**
3407
3407
  * <p>The frequency of the recurring charge.</p>
3408
3408
  * @public
3409
3409
  */
3410
- RecurringChargeFrequency?: string;
3410
+ RecurringChargeFrequency?: string | undefined;
3411
3411
  }
3412
3412
  /**
3413
3413
  * <p>Details of a reserved Elasticsearch instance offering.</p>
@@ -3418,42 +3418,42 @@ export interface ReservedElasticsearchInstanceOffering {
3418
3418
  * <p>The Elasticsearch reserved instance offering identifier.</p>
3419
3419
  * @public
3420
3420
  */
3421
- ReservedElasticsearchInstanceOfferingId?: string;
3421
+ ReservedElasticsearchInstanceOfferingId?: string | undefined;
3422
3422
  /**
3423
3423
  * <p>The Elasticsearch instance type offered by the reserved instance offering.</p>
3424
3424
  * @public
3425
3425
  */
3426
- ElasticsearchInstanceType?: ESPartitionInstanceType;
3426
+ ElasticsearchInstanceType?: ESPartitionInstanceType | undefined;
3427
3427
  /**
3428
3428
  * <p>The duration, in seconds, for which the offering will reserve the Elasticsearch instance.</p>
3429
3429
  * @public
3430
3430
  */
3431
- Duration?: number;
3431
+ Duration?: number | undefined;
3432
3432
  /**
3433
3433
  * <p>The upfront fixed charge you will pay to purchase the specific reserved Elasticsearch instance offering. </p>
3434
3434
  * @public
3435
3435
  */
3436
- FixedPrice?: number;
3436
+ FixedPrice?: number | undefined;
3437
3437
  /**
3438
3438
  * <p>The rate you are charged for each hour the domain that is using the offering is running.</p>
3439
3439
  * @public
3440
3440
  */
3441
- UsagePrice?: number;
3441
+ UsagePrice?: number | undefined;
3442
3442
  /**
3443
3443
  * <p>The currency code for the reserved Elasticsearch instance offering.</p>
3444
3444
  * @public
3445
3445
  */
3446
- CurrencyCode?: string;
3446
+ CurrencyCode?: string | undefined;
3447
3447
  /**
3448
3448
  * <p>Payment option for the reserved Elasticsearch instance offering</p>
3449
3449
  * @public
3450
3450
  */
3451
- PaymentOption?: ReservedElasticsearchInstancePaymentOption;
3451
+ PaymentOption?: ReservedElasticsearchInstancePaymentOption | undefined;
3452
3452
  /**
3453
3453
  * <p>The charge to your account regardless of whether you are creating any domains using the instance offering.</p>
3454
3454
  * @public
3455
3455
  */
3456
- RecurringCharges?: RecurringCharge[];
3456
+ RecurringCharges?: RecurringCharge[] | undefined;
3457
3457
  }
3458
3458
  /**
3459
3459
  * <p>Container for results from <code>DescribeReservedElasticsearchInstanceOfferings</code></p>
@@ -3464,12 +3464,12 @@ export interface DescribeReservedElasticsearchInstanceOfferingsResponse {
3464
3464
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
3465
3465
  * @public
3466
3466
  */
3467
- NextToken?: string;
3467
+ NextToken?: string | undefined;
3468
3468
  /**
3469
3469
  * <p>List of reserved Elasticsearch instance offerings</p>
3470
3470
  * @public
3471
3471
  */
3472
- ReservedElasticsearchInstanceOfferings?: ReservedElasticsearchInstanceOffering[];
3472
+ ReservedElasticsearchInstanceOfferings?: ReservedElasticsearchInstanceOffering[] | undefined;
3473
3473
  }
3474
3474
  /**
3475
3475
  * <p>Container for parameters to <code>DescribeReservedElasticsearchInstances</code></p>
@@ -3480,18 +3480,18 @@ export interface DescribeReservedElasticsearchInstancesRequest {
3480
3480
  * <p>The reserved instance identifier filter value. Use this parameter to show only the reservation that matches the specified reserved Elasticsearch instance ID.</p>
3481
3481
  * @public
3482
3482
  */
3483
- ReservedElasticsearchInstanceId?: string;
3483
+ ReservedElasticsearchInstanceId?: string | undefined;
3484
3484
  /**
3485
3485
  * <p>Set this value to limit the number of results returned. If not specified, defaults to 100.</p>
3486
3486
  * @public
3487
3487
  */
3488
- MaxResults?: number;
3488
+ MaxResults?: number | undefined;
3489
3489
  /**
3490
3490
  * <p>NextToken should be sent in case if earlier API call produced result
3491
3491
  * containing NextToken. It is used for pagination.</p>
3492
3492
  * @public
3493
3493
  */
3494
- NextToken?: string;
3494
+ NextToken?: string | undefined;
3495
3495
  }
3496
3496
  /**
3497
3497
  * <p>Details of a reserved Elasticsearch instance.</p>
@@ -3502,67 +3502,67 @@ export interface ReservedElasticsearchInstance {
3502
3502
  * <p>The customer-specified identifier to track this reservation.</p>
3503
3503
  * @public
3504
3504
  */
3505
- ReservationName?: string;
3505
+ ReservationName?: string | undefined;
3506
3506
  /**
3507
3507
  * <p>The unique identifier for the reservation.</p>
3508
3508
  * @public
3509
3509
  */
3510
- ReservedElasticsearchInstanceId?: string;
3510
+ ReservedElasticsearchInstanceId?: string | undefined;
3511
3511
  /**
3512
3512
  * <p>The offering identifier.</p>
3513
3513
  * @public
3514
3514
  */
3515
- ReservedElasticsearchInstanceOfferingId?: string;
3515
+ ReservedElasticsearchInstanceOfferingId?: string | undefined;
3516
3516
  /**
3517
3517
  * <p>The Elasticsearch instance type offered by the reserved instance offering.</p>
3518
3518
  * @public
3519
3519
  */
3520
- ElasticsearchInstanceType?: ESPartitionInstanceType;
3520
+ ElasticsearchInstanceType?: ESPartitionInstanceType | undefined;
3521
3521
  /**
3522
3522
  * <p>The time the reservation started.</p>
3523
3523
  * @public
3524
3524
  */
3525
- StartTime?: Date;
3525
+ StartTime?: Date | undefined;
3526
3526
  /**
3527
3527
  * <p>The duration, in seconds, for which the Elasticsearch instance is reserved.</p>
3528
3528
  * @public
3529
3529
  */
3530
- Duration?: number;
3530
+ Duration?: number | undefined;
3531
3531
  /**
3532
3532
  * <p>The upfront fixed charge you will paid to purchase the specific reserved Elasticsearch instance offering. </p>
3533
3533
  * @public
3534
3534
  */
3535
- FixedPrice?: number;
3535
+ FixedPrice?: number | undefined;
3536
3536
  /**
3537
3537
  * <p>The rate you are charged for each hour for the domain that is using this reserved instance.</p>
3538
3538
  * @public
3539
3539
  */
3540
- UsagePrice?: number;
3540
+ UsagePrice?: number | undefined;
3541
3541
  /**
3542
3542
  * <p>The currency code for the reserved Elasticsearch instance offering.</p>
3543
3543
  * @public
3544
3544
  */
3545
- CurrencyCode?: string;
3545
+ CurrencyCode?: string | undefined;
3546
3546
  /**
3547
3547
  * <p>The number of Elasticsearch instances that have been reserved.</p>
3548
3548
  * @public
3549
3549
  */
3550
- ElasticsearchInstanceCount?: number;
3550
+ ElasticsearchInstanceCount?: number | undefined;
3551
3551
  /**
3552
3552
  * <p>The state of the reserved Elasticsearch instance.</p>
3553
3553
  * @public
3554
3554
  */
3555
- State?: string;
3555
+ State?: string | undefined;
3556
3556
  /**
3557
3557
  * <p>The payment option as defined in the reserved Elasticsearch instance offering.</p>
3558
3558
  * @public
3559
3559
  */
3560
- PaymentOption?: ReservedElasticsearchInstancePaymentOption;
3560
+ PaymentOption?: ReservedElasticsearchInstancePaymentOption | undefined;
3561
3561
  /**
3562
3562
  * <p>The charge to your account regardless of whether you are creating any domains using the instance offering.</p>
3563
3563
  * @public
3564
3564
  */
3565
- RecurringCharges?: RecurringCharge[];
3565
+ RecurringCharges?: RecurringCharge[] | undefined;
3566
3566
  }
3567
3567
  /**
3568
3568
  * <p>Container for results from <code>DescribeReservedElasticsearchInstances</code></p>
@@ -3573,12 +3573,12 @@ export interface DescribeReservedElasticsearchInstancesResponse {
3573
3573
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
3574
3574
  * @public
3575
3575
  */
3576
- NextToken?: string;
3576
+ NextToken?: string | undefined;
3577
3577
  /**
3578
3578
  * <p>List of reserved Elasticsearch instances.</p>
3579
3579
  * @public
3580
3580
  */
3581
- ReservedElasticsearchInstances?: ReservedElasticsearchInstance[];
3581
+ ReservedElasticsearchInstances?: ReservedElasticsearchInstance[] | undefined;
3582
3582
  }
3583
3583
  /**
3584
3584
  * <p>Container for request parameters to the <code><a>DescribeVpcEndpoints</a></code> operation. Specifies the list of VPC endpoints to be described.</p>
@@ -3613,17 +3613,17 @@ export interface VpcEndpointError {
3613
3613
  * <p>The unique identifier of the endpoint. </p>
3614
3614
  * @public
3615
3615
  */
3616
- VpcEndpointId?: string;
3616
+ VpcEndpointId?: string | undefined;
3617
3617
  /**
3618
3618
  * <p>The code associated with the error.</p>
3619
3619
  * @public
3620
3620
  */
3621
- ErrorCode?: VpcEndpointErrorCode;
3621
+ ErrorCode?: VpcEndpointErrorCode | undefined;
3622
3622
  /**
3623
3623
  * <p>A message describing the error.</p>
3624
3624
  * @public
3625
3625
  */
3626
- ErrorMessage?: string;
3626
+ ErrorMessage?: string | undefined;
3627
3627
  }
3628
3628
  /**
3629
3629
  * <p>Container for response parameters to the <code><a>DescribeVpcEndpoints</a></code> operation. Returns a list containing configuration details and
@@ -3679,7 +3679,7 @@ export interface DissociatePackageResponse {
3679
3679
  * <p><code>DomainPackageDetails</code></p>
3680
3680
  * @public
3681
3681
  */
3682
- DomainPackageDetails?: DomainPackageDetails;
3682
+ DomainPackageDetails?: DomainPackageDetails | undefined;
3683
3683
  }
3684
3684
  /**
3685
3685
  * <p>
@@ -3696,7 +3696,7 @@ export interface GetCompatibleElasticsearchVersionsRequest {
3696
3696
  * <p>The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).</p>
3697
3697
  * @public
3698
3698
  */
3699
- DomainName?: string;
3699
+ DomainName?: string | undefined;
3700
3700
  }
3701
3701
  /**
3702
3702
  * <p>
@@ -3717,13 +3717,13 @@ export interface CompatibleVersionsMap {
3717
3717
  * <p>The current version of Elasticsearch on which a domain is.</p>
3718
3718
  * @public
3719
3719
  */
3720
- SourceVersion?: string;
3720
+ SourceVersion?: string | undefined;
3721
3721
  /**
3722
3722
  * <p>List of supported elastic search versions.
3723
3723
  * </p>
3724
3724
  * @public
3725
3725
  */
3726
- TargetVersions?: string[];
3726
+ TargetVersions?: string[] | undefined;
3727
3727
  }
3728
3728
  /**
3729
3729
  * <p>
@@ -3746,7 +3746,7 @@ export interface GetCompatibleElasticsearchVersionsResponse {
3746
3746
  * </p>
3747
3747
  * @public
3748
3748
  */
3749
- CompatibleElasticsearchVersions?: CompatibleVersionsMap[];
3749
+ CompatibleElasticsearchVersions?: CompatibleVersionsMap[] | undefined;
3750
3750
  }
3751
3751
  /**
3752
3752
  * <p>
@@ -3768,12 +3768,12 @@ export interface GetPackageVersionHistoryRequest {
3768
3768
  * <p>Limits results to a maximum number of versions.</p>
3769
3769
  * @public
3770
3770
  */
3771
- MaxResults?: number;
3771
+ MaxResults?: number | undefined;
3772
3772
  /**
3773
3773
  * <p>Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.</p>
3774
3774
  * @public
3775
3775
  */
3776
- NextToken?: string;
3776
+ NextToken?: string | undefined;
3777
3777
  }
3778
3778
  /**
3779
3779
  * <p>Details of a package version.</p>
@@ -3784,17 +3784,17 @@ export interface PackageVersionHistory {
3784
3784
  * <p>Version of the package.</p>
3785
3785
  * @public
3786
3786
  */
3787
- PackageVersion?: string;
3787
+ PackageVersion?: string | undefined;
3788
3788
  /**
3789
3789
  * <p>A message associated with the version.</p>
3790
3790
  * @public
3791
3791
  */
3792
- CommitMessage?: string;
3792
+ CommitMessage?: string | undefined;
3793
3793
  /**
3794
3794
  * <p>Timestamp which tells creation time of the package version.</p>
3795
3795
  * @public
3796
3796
  */
3797
- CreatedAt?: Date;
3797
+ CreatedAt?: Date | undefined;
3798
3798
  }
3799
3799
  /**
3800
3800
  * <p>
@@ -3807,13 +3807,13 @@ export interface PackageVersionHistory {
3807
3807
  * @public
3808
3808
  */
3809
3809
  export interface GetPackageVersionHistoryResponse {
3810
- PackageID?: string;
3810
+ PackageID?: string | undefined;
3811
3811
  /**
3812
3812
  * <p>List of <code>PackageVersionHistory</code> objects.</p>
3813
3813
  * @public
3814
3814
  */
3815
- PackageVersionHistoryList?: PackageVersionHistory[];
3816
- NextToken?: string;
3815
+ PackageVersionHistoryList?: PackageVersionHistory[] | undefined;
3816
+ NextToken?: string | undefined;
3817
3817
  }
3818
3818
  /**
3819
3819
  * <p>
@@ -3837,7 +3837,7 @@ export interface GetUpgradeHistoryRequest {
3837
3837
  * </p>
3838
3838
  * @public
3839
3839
  */
3840
- MaxResults?: number;
3840
+ MaxResults?: number | undefined;
3841
3841
  /**
3842
3842
  * <p>
3843
3843
  * Paginated APIs accepts NextToken input to returns next page results and provides
@@ -3845,7 +3845,7 @@ export interface GetUpgradeHistoryRequest {
3845
3845
  * </p>
3846
3846
  * @public
3847
3847
  */
3848
- NextToken?: string;
3848
+ NextToken?: string | undefined;
3849
3849
  }
3850
3850
  /**
3851
3851
  * @public
@@ -3890,7 +3890,7 @@ export interface UpgradeStepItem {
3890
3890
  * </p>
3891
3891
  * @public
3892
3892
  */
3893
- UpgradeStep?: UpgradeStep;
3893
+ UpgradeStep?: UpgradeStep | undefined;
3894
3894
  /**
3895
3895
  * <p>
3896
3896
  * The status of a particular step during an upgrade. The status can take one of the following values:
@@ -3903,17 +3903,17 @@ export interface UpgradeStepItem {
3903
3903
  * </p>
3904
3904
  * @public
3905
3905
  */
3906
- UpgradeStepStatus?: UpgradeStatus;
3906
+ UpgradeStepStatus?: UpgradeStatus | undefined;
3907
3907
  /**
3908
3908
  * <p>A list of strings containing detailed information about the errors encountered in a particular step.</p>
3909
3909
  * @public
3910
3910
  */
3911
- Issues?: string[];
3911
+ Issues?: string[] | undefined;
3912
3912
  /**
3913
3913
  * <p>The Floating point value representing progress percentage of a particular step.</p>
3914
3914
  * @public
3915
3915
  */
3916
- ProgressPercent?: number;
3916
+ ProgressPercent?: number | undefined;
3917
3917
  }
3918
3918
  /**
3919
3919
  * <p>History of the last 10 Upgrades and Upgrade Eligibility Checks.</p>
@@ -3924,12 +3924,12 @@ export interface UpgradeHistory {
3924
3924
  * <p>A string that describes the update briefly</p>
3925
3925
  * @public
3926
3926
  */
3927
- UpgradeName?: string;
3927
+ UpgradeName?: string | undefined;
3928
3928
  /**
3929
3929
  * <p>UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.</p>
3930
3930
  * @public
3931
3931
  */
3932
- StartTimestamp?: Date;
3932
+ StartTimestamp?: Date | undefined;
3933
3933
  /**
3934
3934
  * <p>
3935
3935
  * The overall status of the update. The status can take one of the following values:
@@ -3942,7 +3942,7 @@ export interface UpgradeHistory {
3942
3942
  * </p>
3943
3943
  * @public
3944
3944
  */
3945
- UpgradeStatus?: UpgradeStatus;
3945
+ UpgradeStatus?: UpgradeStatus | undefined;
3946
3946
  /**
3947
3947
  * <p>
3948
3948
  * A list of
@@ -3953,7 +3953,7 @@ export interface UpgradeHistory {
3953
3953
  * </p>
3954
3954
  * @public
3955
3955
  */
3956
- StepsList?: UpgradeStepItem[];
3956
+ StepsList?: UpgradeStepItem[] | undefined;
3957
3957
  }
3958
3958
  /**
3959
3959
  * <p>
@@ -3980,12 +3980,12 @@ export interface GetUpgradeHistoryResponse {
3980
3980
  * </p>
3981
3981
  * @public
3982
3982
  */
3983
- UpgradeHistories?: UpgradeHistory[];
3983
+ UpgradeHistories?: UpgradeHistory[] | undefined;
3984
3984
  /**
3985
3985
  * <p>Pagination token that needs to be supplied to the next call to get the next page of results</p>
3986
3986
  * @public
3987
3987
  */
3988
- NextToken?: string;
3988
+ NextToken?: string | undefined;
3989
3989
  }
3990
3990
  /**
3991
3991
  * <p>
@@ -4026,7 +4026,7 @@ export interface GetUpgradeStatusResponse {
4026
4026
  * </p>
4027
4027
  * @public
4028
4028
  */
4029
- UpgradeStep?: UpgradeStep;
4029
+ UpgradeStep?: UpgradeStep | undefined;
4030
4030
  /**
4031
4031
  * <p>
4032
4032
  * One of 4 statuses that a step can go through returned as part of the
@@ -4043,12 +4043,12 @@ export interface GetUpgradeStatusResponse {
4043
4043
  * </p>
4044
4044
  * @public
4045
4045
  */
4046
- StepStatus?: UpgradeStatus;
4046
+ StepStatus?: UpgradeStatus | undefined;
4047
4047
  /**
4048
4048
  * <p>A string that describes the update briefly</p>
4049
4049
  * @public
4050
4050
  */
4051
- UpgradeName?: string;
4051
+ UpgradeName?: string | undefined;
4052
4052
  }
4053
4053
  /**
4054
4054
  * @public
@@ -4071,7 +4071,7 @@ export interface ListDomainNamesRequest {
4071
4071
  * <p> Optional parameter to filter the output by domain engine type. Acceptable values are 'Elasticsearch' and 'OpenSearch'. </p>
4072
4072
  * @public
4073
4073
  */
4074
- EngineType?: EngineType;
4074
+ EngineType?: EngineType | undefined;
4075
4075
  }
4076
4076
  /**
4077
4077
  * @public
@@ -4081,12 +4081,12 @@ export interface DomainInfo {
4081
4081
  * <p> Specifies the <code>DomainName</code>.</p>
4082
4082
  * @public
4083
4083
  */
4084
- DomainName?: string;
4084
+ DomainName?: string | undefined;
4085
4085
  /**
4086
4086
  * <p> Specifies the <code>EngineType</code> of the domain.</p>
4087
4087
  * @public
4088
4088
  */
4089
- EngineType?: EngineType;
4089
+ EngineType?: EngineType | undefined;
4090
4090
  }
4091
4091
  /**
4092
4092
  * <p>The result of a <code>ListDomainNames</code> operation. Contains the names of all domains owned by this account and their respective engine types.</p>
@@ -4097,7 +4097,7 @@ export interface ListDomainNamesResponse {
4097
4097
  * <p>List of domain names and respective engine types.</p>
4098
4098
  * @public
4099
4099
  */
4100
- DomainNames?: DomainInfo[];
4100
+ DomainNames?: DomainInfo[] | undefined;
4101
4101
  }
4102
4102
  /**
4103
4103
  * <p>
@@ -4119,12 +4119,12 @@ export interface ListDomainsForPackageRequest {
4119
4119
  * <p>Limits results to a maximum number of domains.</p>
4120
4120
  * @public
4121
4121
  */
4122
- MaxResults?: number;
4122
+ MaxResults?: number | undefined;
4123
4123
  /**
4124
4124
  * <p>Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.</p>
4125
4125
  * @public
4126
4126
  */
4127
- NextToken?: string;
4127
+ NextToken?: string | undefined;
4128
4128
  }
4129
4129
  /**
4130
4130
  * <p>
@@ -4141,8 +4141,8 @@ export interface ListDomainsForPackageResponse {
4141
4141
  * <p>List of <code>DomainPackageDetails</code> objects.</p>
4142
4142
  * @public
4143
4143
  */
4144
- DomainPackageDetailsList?: DomainPackageDetails[];
4145
- NextToken?: string;
4144
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
4145
+ NextToken?: string | undefined;
4146
4146
  }
4147
4147
  /**
4148
4148
  * <p>
@@ -4168,7 +4168,7 @@ export interface ListElasticsearchInstanceTypesRequest {
4168
4168
  * </p>
4169
4169
  * @public
4170
4170
  */
4171
- DomainName?: string;
4171
+ DomainName?: string | undefined;
4172
4172
  /**
4173
4173
  * <p>
4174
4174
  * Set this value to limit the number of results returned.
@@ -4176,14 +4176,14 @@ export interface ListElasticsearchInstanceTypesRequest {
4176
4176
  * </p>
4177
4177
  * @public
4178
4178
  */
4179
- MaxResults?: number;
4179
+ MaxResults?: number | undefined;
4180
4180
  /**
4181
4181
  * <p>NextToken should be sent in case if earlier API call produced result
4182
4182
  * containing NextToken. It is used for pagination.
4183
4183
  * </p>
4184
4184
  * @public
4185
4185
  */
4186
- NextToken?: string;
4186
+ NextToken?: string | undefined;
4187
4187
  }
4188
4188
  /**
4189
4189
  * <p>
@@ -4206,7 +4206,7 @@ export interface ListElasticsearchInstanceTypesResponse {
4206
4206
  * </p>
4207
4207
  * @public
4208
4208
  */
4209
- ElasticsearchInstanceTypes?: ESPartitionInstanceType[];
4209
+ ElasticsearchInstanceTypes?: ESPartitionInstanceType[] | undefined;
4210
4210
  /**
4211
4211
  * <p>In case if there are more results available NextToken would be
4212
4212
  * present, make further request to the same API with
@@ -4214,7 +4214,7 @@ export interface ListElasticsearchInstanceTypesResponse {
4214
4214
  * </p>
4215
4215
  * @public
4216
4216
  */
4217
- NextToken?: string;
4217
+ NextToken?: string | undefined;
4218
4218
  }
4219
4219
  /**
4220
4220
  * <p>
@@ -4250,7 +4250,7 @@ export interface ListElasticsearchVersionsRequest {
4250
4250
  * </p>
4251
4251
  * @public
4252
4252
  */
4253
- MaxResults?: number;
4253
+ MaxResults?: number | undefined;
4254
4254
  /**
4255
4255
  * <p>
4256
4256
  * Paginated APIs accepts NextToken input to returns next page results and provides
@@ -4258,7 +4258,7 @@ export interface ListElasticsearchVersionsRequest {
4258
4258
  * </p>
4259
4259
  * @public
4260
4260
  */
4261
- NextToken?: string;
4261
+ NextToken?: string | undefined;
4262
4262
  }
4263
4263
  /**
4264
4264
  * <p>
@@ -4276,7 +4276,7 @@ export interface ListElasticsearchVersionsResponse {
4276
4276
  * </p>
4277
4277
  * @public
4278
4278
  */
4279
- ElasticsearchVersions?: string[];
4279
+ ElasticsearchVersions?: string[] | undefined;
4280
4280
  /**
4281
4281
  * <p>
4282
4282
  * Paginated APIs accepts NextToken input to returns next page results and provides
@@ -4284,7 +4284,7 @@ export interface ListElasticsearchVersionsResponse {
4284
4284
  * </p>
4285
4285
  * @public
4286
4286
  */
4287
- NextToken?: string;
4287
+ NextToken?: string | undefined;
4288
4288
  }
4289
4289
  /**
4290
4290
  * <p>
@@ -4306,12 +4306,12 @@ export interface ListPackagesForDomainRequest {
4306
4306
  * <p>Limits results to a maximum number of packages.</p>
4307
4307
  * @public
4308
4308
  */
4309
- MaxResults?: number;
4309
+ MaxResults?: number | undefined;
4310
4310
  /**
4311
4311
  * <p>Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.</p>
4312
4312
  * @public
4313
4313
  */
4314
- NextToken?: string;
4314
+ NextToken?: string | undefined;
4315
4315
  }
4316
4316
  /**
4317
4317
  * <p>
@@ -4328,12 +4328,12 @@ export interface ListPackagesForDomainResponse {
4328
4328
  * <p>List of <code>DomainPackageDetails</code> objects.</p>
4329
4329
  * @public
4330
4330
  */
4331
- DomainPackageDetailsList?: DomainPackageDetails[];
4331
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
4332
4332
  /**
4333
4333
  * <p>Pagination token that needs to be supplied to the next call to get the next page of results.</p>
4334
4334
  * @public
4335
4335
  */
4336
- NextToken?: string;
4336
+ NextToken?: string | undefined;
4337
4337
  }
4338
4338
  /**
4339
4339
  * <p>Container for the parameters to the <code><a>ListTags</a></code> operation. Specify the <code>ARN</code> for the Elasticsearch domain to which the tags are attached that you want to view are attached.</p>
@@ -4355,7 +4355,7 @@ export interface ListTagsResponse {
4355
4355
  * <p> List of <code>Tag</code> for the requested Elasticsearch domain.</p>
4356
4356
  * @public
4357
4357
  */
4358
- TagList?: Tag[];
4358
+ TagList?: Tag[] | undefined;
4359
4359
  }
4360
4360
  /**
4361
4361
  * <p>Retrieves information about each principal that is allowed to access a
@@ -4372,7 +4372,7 @@ export interface ListVpcEndpointAccessRequest {
4372
4372
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
4373
4373
  * @public
4374
4374
  */
4375
- NextToken?: string;
4375
+ NextToken?: string | undefined;
4376
4376
  }
4377
4377
  /**
4378
4378
  * <p>Container for response parameters to the <code><a>ListVpcEndpointAccess</a></code> operation.
@@ -4400,7 +4400,7 @@ export interface ListVpcEndpointsRequest {
4400
4400
  * <p>Identifier to allow retrieval of paginated results.</p>
4401
4401
  * @public
4402
4402
  */
4403
- NextToken?: string;
4403
+ NextToken?: string | undefined;
4404
4404
  }
4405
4405
  /**
4406
4406
  * <p>Container for response parameters to the <code><a>ListVpcEndpoints</a></code> operation. Returns a list containing summarized details of the VPC endpoints.</p>
@@ -4432,7 +4432,7 @@ export interface ListVpcEndpointsForDomainRequest {
4432
4432
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
4433
4433
  * @public
4434
4434
  */
4435
- NextToken?: string;
4435
+ NextToken?: string | undefined;
4436
4436
  }
4437
4437
  /**
4438
4438
  * <p>Container for response parameters to the <code><a>ListVpcEndpointsForDomain</a></code> operation. Returns a list containing summarized details of the VPC endpoints.</p>
@@ -4469,7 +4469,7 @@ export interface PurchaseReservedElasticsearchInstanceOfferingRequest {
4469
4469
  * <p>The number of Elasticsearch instances to reserve.</p>
4470
4470
  * @public
4471
4471
  */
4472
- InstanceCount?: number;
4472
+ InstanceCount?: number | undefined;
4473
4473
  }
4474
4474
  /**
4475
4475
  * <p>Represents the output of a <code>PurchaseReservedElasticsearchInstanceOffering</code> operation.</p>
@@ -4480,12 +4480,12 @@ export interface PurchaseReservedElasticsearchInstanceOfferingResponse {
4480
4480
  * <p>Details of the reserved Elasticsearch instance which was purchased.</p>
4481
4481
  * @public
4482
4482
  */
4483
- ReservedElasticsearchInstanceId?: string;
4483
+ ReservedElasticsearchInstanceId?: string | undefined;
4484
4484
  /**
4485
4485
  * <p>The customer-specified identifier used to track this reservation.</p>
4486
4486
  * @public
4487
4487
  */
4488
- ReservationName?: string;
4488
+ ReservationName?: string | undefined;
4489
4489
  }
4490
4490
  /**
4491
4491
  * <p>Container for the parameters to the <code><a>RejectInboundCrossClusterSearchConnection</a></code> operation.</p>
@@ -4507,7 +4507,7 @@ export interface RejectInboundCrossClusterSearchConnectionResponse {
4507
4507
  * <p>Specifies the <code><a>InboundCrossClusterSearchConnection</a></code> of rejected inbound connection. </p>
4508
4508
  * @public
4509
4509
  */
4510
- CrossClusterSearchConnection?: InboundCrossClusterSearchConnection;
4510
+ CrossClusterSearchConnection?: InboundCrossClusterSearchConnection | undefined;
4511
4511
  }
4512
4512
  /**
4513
4513
  * <p>Container for the parameters to the <code><a>RemoveTags</a></code> operation. Specify the <code>ARN</code> for the Elasticsearch domain from which you want to remove the specified <code>TagKey</code>.</p>
@@ -4568,7 +4568,7 @@ export interface StartElasticsearchServiceSoftwareUpdateResponse {
4568
4568
  * <p>The current status of the Elasticsearch service software update.</p>
4569
4569
  * @public
4570
4570
  */
4571
- ServiceSoftwareOptions?: ServiceSoftwareOptions;
4571
+ ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
4572
4572
  }
4573
4573
  /**
4574
4574
  * <p>Container for the parameters to the <code><a>UpdateElasticsearchDomain</a></code> operation. Specifies the type and number of instances in the domain cluster.</p>
@@ -4584,68 +4584,68 @@ export interface UpdateElasticsearchDomainConfigRequest {
4584
4584
  * <p>The type and number of instances to instantiate for the domain cluster.</p>
4585
4585
  * @public
4586
4586
  */
4587
- ElasticsearchClusterConfig?: ElasticsearchClusterConfig;
4587
+ ElasticsearchClusterConfig?: ElasticsearchClusterConfig | undefined;
4588
4588
  /**
4589
4589
  * <p>Specify the type and size of the EBS volume that you want to use. </p>
4590
4590
  * @public
4591
4591
  */
4592
- EBSOptions?: EBSOptions;
4592
+ EBSOptions?: EBSOptions | undefined;
4593
4593
  /**
4594
4594
  * <p>Option to set the time, in UTC format, for the daily automated snapshot. Default value is <code>0</code> hours. </p>
4595
4595
  * @public
4596
4596
  */
4597
- SnapshotOptions?: SnapshotOptions;
4597
+ SnapshotOptions?: SnapshotOptions | undefined;
4598
4598
  /**
4599
4599
  * <p>Options to specify the subnets and security groups for VPC endpoint. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html#es-creating-vpc" target="_blank">Creating a VPC</a> in <i>VPC Endpoints for Amazon Elasticsearch Service Domains</i></p>
4600
4600
  * @public
4601
4601
  */
4602
- VPCOptions?: VPCOptions;
4602
+ VPCOptions?: VPCOptions | undefined;
4603
4603
  /**
4604
4604
  * <p>Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html" target="_blank">Amazon Cognito Authentication for Kibana</a>.</p>
4605
4605
  * @public
4606
4606
  */
4607
- CognitoOptions?: CognitoOptions;
4607
+ CognitoOptions?: CognitoOptions | undefined;
4608
4608
  /**
4609
4609
  * <p>Modifies the advanced option to allow references to indices in an HTTP request body. Must be <code>false</code> when configuring access to individual sub-resources. By default, the value is <code>true</code>.
4610
4610
  * See <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-advanced-options" target="_blank">Configuration Advanced Options</a> for more information.</p>
4611
4611
  * @public
4612
4612
  */
4613
- AdvancedOptions?: Record<string, string>;
4613
+ AdvancedOptions?: Record<string, string> | undefined;
4614
4614
  /**
4615
4615
  * <p>IAM access policy as a JSON-formatted string.</p>
4616
4616
  * @public
4617
4617
  */
4618
- AccessPolicies?: string;
4618
+ AccessPolicies?: string | undefined;
4619
4619
  /**
4620
4620
  * <p>Map of <code>LogType</code> and <code>LogPublishingOption</code>, each containing options to publish a given type of Elasticsearch log.</p>
4621
4621
  * @public
4622
4622
  */
4623
- LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>>;
4623
+ LogPublishingOptions?: Partial<Record<LogType, LogPublishingOption>> | undefined;
4624
4624
  /**
4625
4625
  * <p>Options to specify configuration that will be applied to the domain endpoint.</p>
4626
4626
  * @public
4627
4627
  */
4628
- DomainEndpointOptions?: DomainEndpointOptions;
4628
+ DomainEndpointOptions?: DomainEndpointOptions | undefined;
4629
4629
  /**
4630
4630
  * <p>Specifies advanced security options.</p>
4631
4631
  * @public
4632
4632
  */
4633
- AdvancedSecurityOptions?: AdvancedSecurityOptionsInput;
4633
+ AdvancedSecurityOptions?: AdvancedSecurityOptionsInput | undefined;
4634
4634
  /**
4635
4635
  * <p>Specifies the NodeToNodeEncryptionOptions.</p>
4636
4636
  * @public
4637
4637
  */
4638
- NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
4638
+ NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions | undefined;
4639
4639
  /**
4640
4640
  * <p>Specifies the Encryption At Rest Options.</p>
4641
4641
  * @public
4642
4642
  */
4643
- EncryptionAtRestOptions?: EncryptionAtRestOptions;
4643
+ EncryptionAtRestOptions?: EncryptionAtRestOptions | undefined;
4644
4644
  /**
4645
4645
  * <p>Specifies Auto-Tune options.</p>
4646
4646
  * @public
4647
4647
  */
4648
- AutoTuneOptions?: AutoTuneOptions;
4648
+ AutoTuneOptions?: AutoTuneOptions | undefined;
4649
4649
  /**
4650
4650
  * <p>
4651
4651
  * This flag, when set to True, specifies whether the <code>UpdateElasticsearchDomain</code> request should return the results of validation checks without actually applying the change.
@@ -4654,7 +4654,7 @@ export interface UpdateElasticsearchDomainConfigRequest {
4654
4654
  * </p>
4655
4655
  * @public
4656
4656
  */
4657
- DryRun?: boolean;
4657
+ DryRun?: boolean | undefined;
4658
4658
  }
4659
4659
  /**
4660
4660
  * @public
@@ -4671,12 +4671,12 @@ export interface DryRunResults {
4671
4671
  * </p>
4672
4672
  * @public
4673
4673
  */
4674
- DeploymentType?: string;
4674
+ DeploymentType?: string | undefined;
4675
4675
  /**
4676
4676
  * <p>Contains an optional message associated with the DryRunResults.</p>
4677
4677
  * @public
4678
4678
  */
4679
- Message?: string;
4679
+ Message?: string | undefined;
4680
4680
  }
4681
4681
  /**
4682
4682
  * <p>The result of an <code>UpdateElasticsearchDomain</code> request. Contains the status of the Elasticsearch domain being updated.</p>
@@ -4692,7 +4692,7 @@ export interface UpdateElasticsearchDomainConfigResponse {
4692
4692
  * <p>Contains result of DryRun. </p>
4693
4693
  * @public
4694
4694
  */
4695
- DryRunResults?: DryRunResults;
4695
+ DryRunResults?: DryRunResults | undefined;
4696
4696
  }
4697
4697
  /**
4698
4698
  * <p>
@@ -4719,12 +4719,12 @@ export interface UpdatePackageRequest {
4719
4719
  * <p>New description of the package.</p>
4720
4720
  * @public
4721
4721
  */
4722
- PackageDescription?: string;
4722
+ PackageDescription?: string | undefined;
4723
4723
  /**
4724
4724
  * <p>An info message for the new version which will be shown as part of <code>GetPackageVersionHistoryResponse</code>.</p>
4725
4725
  * @public
4726
4726
  */
4727
- CommitMessage?: string;
4727
+ CommitMessage?: string | undefined;
4728
4728
  }
4729
4729
  /**
4730
4730
  * <p>
@@ -4741,7 +4741,7 @@ export interface UpdatePackageResponse {
4741
4741
  * <p>Information about the package <code>PackageDetails</code>.</p>
4742
4742
  * @public
4743
4743
  */
4744
- PackageDetails?: PackageDetails;
4744
+ PackageDetails?: PackageDetails | undefined;
4745
4745
  }
4746
4746
  /**
4747
4747
  * <p>Modifies an Amazon OpenSearch Service-managed interface VPC endpoint.</p>
@@ -4798,7 +4798,7 @@ export interface UpgradeElasticsearchDomainRequest {
4798
4798
  * </p>
4799
4799
  * @public
4800
4800
  */
4801
- PerformCheckOnly?: boolean;
4801
+ PerformCheckOnly?: boolean | undefined;
4802
4802
  }
4803
4803
  /**
4804
4804
  * <p>
@@ -4815,12 +4815,12 @@ export interface UpgradeElasticsearchDomainResponse {
4815
4815
  * <p>The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).</p>
4816
4816
  * @public
4817
4817
  */
4818
- DomainName?: string;
4818
+ DomainName?: string | undefined;
4819
4819
  /**
4820
4820
  * <p>The version of Elasticsearch that you intend to upgrade the domain to.</p>
4821
4821
  * @public
4822
4822
  */
4823
- TargetVersion?: string;
4823
+ TargetVersion?: string | undefined;
4824
4824
  /**
4825
4825
  * <p>
4826
4826
  * This flag, when set to True, indicates that an Upgrade Eligibility Check needs to be performed.
@@ -4828,12 +4828,12 @@ export interface UpgradeElasticsearchDomainResponse {
4828
4828
  * </p>
4829
4829
  * @public
4830
4830
  */
4831
- PerformCheckOnly?: boolean;
4831
+ PerformCheckOnly?: boolean | undefined;
4832
4832
  /**
4833
4833
  * <p>Specifies change details of the domain configuration change.</p>
4834
4834
  * @public
4835
4835
  */
4836
- ChangeProgressDetails?: ChangeProgressDetails;
4836
+ ChangeProgressDetails?: ChangeProgressDetails | undefined;
4837
4837
  }
4838
4838
  /**
4839
4839
  * @internal