aws-sdk-elasticsearchservice 1.123.0 → 1.124.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e0421e650b963527d0aaf9c6822024765f0729ff24d97795e30b1d70b310185
4
- data.tar.gz: b126ffa55a36aafcb085469d9675e4da7d571286f268777c45943d8c4c9c8141
3
+ metadata.gz: 2b944d8779ac6084e1dd6fbd05bf2b7a0db60ba412ad355a91c67eaf667eb0b9
4
+ data.tar.gz: 4c126d953d89bd585242edf94dfbf8cd42b7489758e476a33f4a1473884205e6
5
5
  SHA512:
6
- metadata.gz: 3f095fd4e4a8e6aa3d5f7893fc8b9f66849a3ff3537b9efab3e7350cbc29a815c717e9a66178ff98a54678a4f2948277ee313693fc7ff1390c2de0de30280ad0
7
- data.tar.gz: d1b775be95cffb322785c34352838b4da6febb8185cbf54b8ad142fbccd539cab8372bc2656fe0ae410e4f57284b34967db21fb48258eb504f90ee26752623d9
6
+ metadata.gz: 01d01887c6bca94685417894bc5e60c6a378875bc1f4ae61c535ff57e309dbe09df830776a07980cec3c3e18f896b2705c0386bf088792b70efa46fc9d5d9454
7
+ data.tar.gz: 79972772358859e7848d3477f129df8c18d958cd8aebad8277058aa6d7ea38b4aadb0cc3adc4cd09694c8f4e447e502f8ecffe80ff05175896cc15d73f5683de
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.124.0 (2026-07-13)
5
+ ------------------
6
+
7
+ * Feature - Adds support for the EngineMode and UseCase parameters on Amazon Elasticsearch Service domains, enabling GENERAL or OPTIMIZED engine modes and SEARCH, VECTOR, OBSERVABILITY, or MIXED usecases when creating and updating domain configurations.
8
+
4
9
  1.123.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.123.0
1
+ 1.124.0
@@ -797,6 +797,14 @@ module Aws::ElasticsearchService
797
797
  #
798
798
  # Maximum suspension duration: 3 days.
799
799
  #
800
+ # @option params [String] :use_case
801
+ # The primary use case for the domain. For valid values, see
802
+ # `DomainUseCase`.
803
+ #
804
+ # @option params [String] :engine_mode
805
+ # The engine mode for the domain. For valid values and requirements, see
806
+ # `DomainEngineMode`.
807
+ #
800
808
  # @return [Types::CreateElasticsearchDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
801
809
  #
802
810
  # * {Types::CreateElasticsearchDomainResponse#domain_status #domain_status} => Types::ElasticsearchDomainStatus
@@ -916,6 +924,8 @@ module Aws::ElasticsearchService
916
924
  # start_time: Time.now,
917
925
  # end_time: Time.now,
918
926
  # },
927
+ # use_case: "SEARCH", # accepts SEARCH, VECTOR, OBSERVABILITY, MIXED
928
+ # engine_mode: "GENERAL", # accepts GENERAL, OPTIMIZED
919
929
  # })
920
930
  #
921
931
  # @example Response structure
@@ -1010,6 +1020,8 @@ module Aws::ElasticsearchService
1010
1020
  # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
1011
1021
  # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
1012
1022
  # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
1023
+ # resp.domain_status.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
1024
+ # resp.domain_status.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
1013
1025
  #
1014
1026
  # @overload create_elasticsearch_domain(params = {})
1015
1027
  # @param [Hash] params ({})
@@ -1284,6 +1296,8 @@ module Aws::ElasticsearchService
1284
1296
  # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
1285
1297
  # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
1286
1298
  # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
1299
+ # resp.domain_status.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
1300
+ # resp.domain_status.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
1287
1301
  #
1288
1302
  # @overload delete_elasticsearch_domain(params = {})
1289
1303
  # @param [Hash] params ({})
@@ -1652,6 +1666,8 @@ module Aws::ElasticsearchService
1652
1666
  # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
1653
1667
  # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
1654
1668
  # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
1669
+ # resp.domain_status.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
1670
+ # resp.domain_status.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
1655
1671
  #
1656
1672
  # @overload describe_elasticsearch_domain(params = {})
1657
1673
  # @param [Hash] params ({})
@@ -1836,6 +1852,18 @@ module Aws::ElasticsearchService
1836
1852
  # resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
1837
1853
  # resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
1838
1854
  # resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
1855
+ # resp.domain_config.use_case.options #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
1856
+ # resp.domain_config.use_case.status.creation_date #=> Time
1857
+ # resp.domain_config.use_case.status.update_date #=> Time
1858
+ # resp.domain_config.use_case.status.update_version #=> Integer
1859
+ # resp.domain_config.use_case.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
1860
+ # resp.domain_config.use_case.status.pending_deletion #=> Boolean
1861
+ # resp.domain_config.engine_mode.options #=> String, one of "GENERAL", "OPTIMIZED"
1862
+ # resp.domain_config.engine_mode.status.creation_date #=> Time
1863
+ # resp.domain_config.engine_mode.status.update_date #=> Time
1864
+ # resp.domain_config.engine_mode.status.update_version #=> Integer
1865
+ # resp.domain_config.engine_mode.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
1866
+ # resp.domain_config.engine_mode.status.pending_deletion #=> Boolean
1839
1867
  #
1840
1868
  # @overload describe_elasticsearch_domain_config(params = {})
1841
1869
  # @param [Hash] params ({})
@@ -1954,6 +1982,8 @@ module Aws::ElasticsearchService
1954
1982
  # resp.domain_status_list[0].automated_snapshot_pause_options.start_time #=> Time
1955
1983
  # resp.domain_status_list[0].automated_snapshot_pause_options.end_time #=> Time
1956
1984
  # resp.domain_status_list[0].automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
1985
+ # resp.domain_status_list[0].use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
1986
+ # resp.domain_status_list[0].engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
1957
1987
  #
1958
1988
  # @overload describe_elasticsearch_domains(params = {})
1959
1989
  # @param [Hash] params ({})
@@ -3154,6 +3184,14 @@ module Aws::ElasticsearchService
3154
3184
  #
3155
3185
  # Maximum suspension duration: 3 days.
3156
3186
  #
3187
+ # @option params [String] :use_case
3188
+ # The primary use case for the domain. For valid values, see
3189
+ # `DomainUseCase`.
3190
+ #
3191
+ # @option params [String] :engine_mode
3192
+ # The engine mode for the domain. For valid values and requirements, see
3193
+ # `DomainEngineMode`.
3194
+ #
3157
3195
  # @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3158
3196
  #
3159
3197
  # * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
@@ -3269,6 +3307,8 @@ module Aws::ElasticsearchService
3269
3307
  # start_time: Time.now,
3270
3308
  # end_time: Time.now,
3271
3309
  # },
3310
+ # use_case: "SEARCH", # accepts SEARCH, VECTOR, OBSERVABILITY, MIXED
3311
+ # engine_mode: "GENERAL", # accepts GENERAL, OPTIMIZED
3272
3312
  # })
3273
3313
  #
3274
3314
  # @example Response structure
@@ -3430,6 +3470,18 @@ module Aws::ElasticsearchService
3430
3470
  # resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
3431
3471
  # resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
3432
3472
  # resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
3473
+ # resp.domain_config.use_case.options #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
3474
+ # resp.domain_config.use_case.status.creation_date #=> Time
3475
+ # resp.domain_config.use_case.status.update_date #=> Time
3476
+ # resp.domain_config.use_case.status.update_version #=> Integer
3477
+ # resp.domain_config.use_case.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
3478
+ # resp.domain_config.use_case.status.pending_deletion #=> Boolean
3479
+ # resp.domain_config.engine_mode.options #=> String, one of "GENERAL", "OPTIMIZED"
3480
+ # resp.domain_config.engine_mode.status.creation_date #=> Time
3481
+ # resp.domain_config.engine_mode.status.update_date #=> Time
3482
+ # resp.domain_config.engine_mode.status.update_version #=> Integer
3483
+ # resp.domain_config.engine_mode.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
3484
+ # resp.domain_config.engine_mode.status.pending_deletion #=> Boolean
3433
3485
  # resp.dry_run_results.deployment_type #=> String
3434
3486
  # resp.dry_run_results.message #=> String
3435
3487
  #
@@ -3605,7 +3657,7 @@ module Aws::ElasticsearchService
3605
3657
  tracer: tracer
3606
3658
  )
3607
3659
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
3608
- context[:gem_version] = '1.123.0'
3660
+ context[:gem_version] = '1.124.0'
3609
3661
  Seahorse::Client::Request.new(handlers, context)
3610
3662
  end
3611
3663
 
@@ -141,6 +141,7 @@ module Aws::ElasticsearchService
141
141
  DomainArn = Shapes::StringShape.new(name: 'DomainArn')
142
142
  DomainEndpointOptions = Shapes::StructureShape.new(name: 'DomainEndpointOptions')
143
143
  DomainEndpointOptionsStatus = Shapes::StructureShape.new(name: 'DomainEndpointOptionsStatus')
144
+ DomainEngineMode = Shapes::StringShape.new(name: 'DomainEngineMode')
144
145
  DomainId = Shapes::StringShape.new(name: 'DomainId')
145
146
  DomainInfo = Shapes::StructureShape.new(name: 'DomainInfo')
146
147
  DomainInfoList = Shapes::ListShape.new(name: 'DomainInfoList')
@@ -152,6 +153,7 @@ module Aws::ElasticsearchService
152
153
  DomainPackageDetailsList = Shapes::ListShape.new(name: 'DomainPackageDetailsList')
153
154
  DomainPackageStatus = Shapes::StringShape.new(name: 'DomainPackageStatus')
154
155
  DomainProcessingStatusType = Shapes::StringShape.new(name: 'DomainProcessingStatusType')
156
+ DomainUseCase = Shapes::StringShape.new(name: 'DomainUseCase')
155
157
  Double = Shapes::FloatShape.new(name: 'Double')
156
158
  DryRun = Shapes::BooleanShape.new(name: 'DryRun')
157
159
  DryRunResults = Shapes::StructureShape.new(name: 'DryRunResults')
@@ -174,6 +176,7 @@ module Aws::ElasticsearchService
174
176
  EncryptionAtRestOptionsStatus = Shapes::StructureShape.new(name: 'EncryptionAtRestOptionsStatus')
175
177
  Endpoint = Shapes::StringShape.new(name: 'Endpoint')
176
178
  EndpointsMap = Shapes::MapShape.new(name: 'EndpointsMap')
179
+ EngineModeStatus = Shapes::StructureShape.new(name: 'EngineModeStatus')
177
180
  EngineType = Shapes::StringShape.new(name: 'EngineType')
178
181
  ErrorDetails = Shapes::StructureShape.new(name: 'ErrorDetails')
179
182
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
@@ -344,6 +347,7 @@ module Aws::ElasticsearchService
344
347
  UpgradeStep = Shapes::StringShape.new(name: 'UpgradeStep')
345
348
  UpgradeStepItem = Shapes::StructureShape.new(name: 'UpgradeStepItem')
346
349
  UpgradeStepsList = Shapes::ListShape.new(name: 'UpgradeStepsList')
350
+ UseCaseStatus = Shapes::StructureShape.new(name: 'UseCaseStatus')
347
351
  UserPoolId = Shapes::StringShape.new(name: 'UserPoolId')
348
352
  Username = Shapes::StringShape.new(name: 'Username')
349
353
  VPCDerivedInfo = Shapes::StructureShape.new(name: 'VPCDerivedInfo')
@@ -579,6 +583,8 @@ module Aws::ElasticsearchService
579
583
  CreateElasticsearchDomainRequest.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
580
584
  CreateElasticsearchDomainRequest.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
581
585
  CreateElasticsearchDomainRequest.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseRequestOptions, location_name: "AutomatedSnapshotPauseOptions"))
586
+ CreateElasticsearchDomainRequest.add_member(:use_case, Shapes::ShapeRef.new(shape: DomainUseCase, location_name: "UseCase"))
587
+ CreateElasticsearchDomainRequest.add_member(:engine_mode, Shapes::ShapeRef.new(shape: DomainEngineMode, location_name: "EngineMode"))
582
588
  CreateElasticsearchDomainRequest.struct_class = Types::CreateElasticsearchDomainRequest
583
589
 
584
590
  CreateElasticsearchDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus, location_name: "DomainStatus"))
@@ -852,6 +858,8 @@ module Aws::ElasticsearchService
852
858
  ElasticsearchDomainConfig.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
853
859
  ElasticsearchDomainConfig.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptionsStatus, location_name: "DeploymentStrategyOptions"))
854
860
  ElasticsearchDomainConfig.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptionsStatus, location_name: "AutomatedSnapshotPauseOptions"))
861
+ ElasticsearchDomainConfig.add_member(:use_case, Shapes::ShapeRef.new(shape: UseCaseStatus, location_name: "UseCase"))
862
+ ElasticsearchDomainConfig.add_member(:engine_mode, Shapes::ShapeRef.new(shape: EngineModeStatus, location_name: "EngineMode"))
855
863
  ElasticsearchDomainConfig.struct_class = Types::ElasticsearchDomainConfig
856
864
 
857
865
  ElasticsearchDomainStatus.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
@@ -883,6 +891,8 @@ module Aws::ElasticsearchService
883
891
  ElasticsearchDomainStatus.add_member(:modifying_properties, Shapes::ShapeRef.new(shape: ModifyingPropertiesList, location_name: "ModifyingProperties"))
884
892
  ElasticsearchDomainStatus.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
885
893
  ElasticsearchDomainStatus.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseOptions, location_name: "AutomatedSnapshotPauseOptions"))
894
+ ElasticsearchDomainStatus.add_member(:use_case, Shapes::ShapeRef.new(shape: DomainUseCase, location_name: "UseCase"))
895
+ ElasticsearchDomainStatus.add_member(:engine_mode, Shapes::ShapeRef.new(shape: DomainEngineMode, location_name: "EngineMode"))
886
896
  ElasticsearchDomainStatus.struct_class = Types::ElasticsearchDomainStatus
887
897
 
888
898
  ElasticsearchDomainStatusList.member = Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus)
@@ -906,6 +916,10 @@ module Aws::ElasticsearchService
906
916
  EndpointsMap.key = Shapes::ShapeRef.new(shape: String)
907
917
  EndpointsMap.value = Shapes::ShapeRef.new(shape: ServiceUrl)
908
918
 
919
+ EngineModeStatus.add_member(:options, Shapes::ShapeRef.new(shape: DomainEngineMode, required: true, location_name: "Options"))
920
+ EngineModeStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
921
+ EngineModeStatus.struct_class = Types::EngineModeStatus
922
+
909
923
  ErrorDetails.add_member(:error_type, Shapes::ShapeRef.new(shape: ErrorType, location_name: "ErrorType"))
910
924
  ErrorDetails.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "ErrorMessage"))
911
925
  ErrorDetails.struct_class = Types::ErrorDetails
@@ -1287,6 +1301,8 @@ module Aws::ElasticsearchService
1287
1301
  UpdateElasticsearchDomainConfigRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
1288
1302
  UpdateElasticsearchDomainConfigRequest.add_member(:deployment_strategy_options, Shapes::ShapeRef.new(shape: DeploymentStrategyOptions, location_name: "DeploymentStrategyOptions"))
1289
1303
  UpdateElasticsearchDomainConfigRequest.add_member(:automated_snapshot_pause_options, Shapes::ShapeRef.new(shape: AutomatedSnapshotPauseRequestOptions, location_name: "AutomatedSnapshotPauseOptions"))
1304
+ UpdateElasticsearchDomainConfigRequest.add_member(:use_case, Shapes::ShapeRef.new(shape: DomainUseCase, location_name: "UseCase"))
1305
+ UpdateElasticsearchDomainConfigRequest.add_member(:engine_mode, Shapes::ShapeRef.new(shape: DomainEngineMode, location_name: "EngineMode"))
1290
1306
  UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
1291
1307
 
1292
1308
  UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
@@ -1336,6 +1352,10 @@ module Aws::ElasticsearchService
1336
1352
 
1337
1353
  UpgradeStepsList.member = Shapes::ShapeRef.new(shape: UpgradeStepItem)
1338
1354
 
1355
+ UseCaseStatus.add_member(:options, Shapes::ShapeRef.new(shape: DomainUseCase, required: true, location_name: "Options"))
1356
+ UseCaseStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
1357
+ UseCaseStatus.struct_class = Types::UseCaseStatus
1358
+
1339
1359
  VPCDerivedInfo.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VPCId"))
1340
1360
  VPCDerivedInfo.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SubnetIds"))
1341
1361
  VPCDerivedInfo.add_member(:availability_zones, Shapes::ShapeRef.new(shape: StringList, location_name: "AvailabilityZones"))
@@ -1052,6 +1052,16 @@ module Aws::ElasticsearchService
1052
1052
  # Maximum suspension duration: 3 days.
1053
1053
  # @return [Types::AutomatedSnapshotPauseRequestOptions]
1054
1054
  #
1055
+ # @!attribute [rw] use_case
1056
+ # The primary use case for the domain. For valid values, see
1057
+ # `DomainUseCase`.
1058
+ # @return [String]
1059
+ #
1060
+ # @!attribute [rw] engine_mode
1061
+ # The engine mode for the domain. For valid values and requirements,
1062
+ # see `DomainEngineMode`.
1063
+ # @return [String]
1064
+ #
1055
1065
  class CreateElasticsearchDomainRequest < Struct.new(
1056
1066
  :domain_name,
1057
1067
  :elasticsearch_version,
@@ -1070,7 +1080,9 @@ module Aws::ElasticsearchService
1070
1080
  :auto_tune_options,
1071
1081
  :tag_list,
1072
1082
  :deployment_strategy_options,
1073
- :automated_snapshot_pause_options)
1083
+ :automated_snapshot_pause_options,
1084
+ :use_case,
1085
+ :engine_mode)
1074
1086
  SENSITIVE = []
1075
1087
  include Aws::Structure
1076
1088
  end
@@ -2387,6 +2399,14 @@ module Aws::ElasticsearchService
2387
2399
  # Specifies `AutomatedSnapshotPauseOptions` for the domain.
2388
2400
  # @return [Types::AutomatedSnapshotPauseOptionsStatus]
2389
2401
  #
2402
+ # @!attribute [rw] use_case
2403
+ # The use case configured for the domain.
2404
+ # @return [Types::UseCaseStatus]
2405
+ #
2406
+ # @!attribute [rw] engine_mode
2407
+ # The engine mode configured for the domain.
2408
+ # @return [Types::EngineModeStatus]
2409
+ #
2390
2410
  class ElasticsearchDomainConfig < Struct.new(
2391
2411
  :elasticsearch_version,
2392
2412
  :elasticsearch_cluster_config,
@@ -2405,7 +2425,9 @@ module Aws::ElasticsearchService
2405
2425
  :change_progress_details,
2406
2426
  :modifying_properties,
2407
2427
  :deployment_strategy_options,
2408
- :automated_snapshot_pause_options)
2428
+ :automated_snapshot_pause_options,
2429
+ :use_case,
2430
+ :engine_mode)
2409
2431
  SENSITIVE = []
2410
2432
  include Aws::Structure
2411
2433
  end
@@ -2568,6 +2590,14 @@ module Aws::ElasticsearchService
2568
2590
  # pause options.
2569
2591
  # @return [Types::AutomatedSnapshotPauseOptions]
2570
2592
  #
2593
+ # @!attribute [rw] use_case
2594
+ # The primary use case for the domain.
2595
+ # @return [String]
2596
+ #
2597
+ # @!attribute [rw] engine_mode
2598
+ # The engine mode for the domain.
2599
+ # @return [String]
2600
+ #
2571
2601
  class ElasticsearchDomainStatus < Struct.new(
2572
2602
  :domain_id,
2573
2603
  :domain_name,
@@ -2597,7 +2627,9 @@ module Aws::ElasticsearchService
2597
2627
  :domain_processing_status,
2598
2628
  :modifying_properties,
2599
2629
  :deployment_strategy_options,
2600
- :automated_snapshot_pause_options)
2630
+ :automated_snapshot_pause_options,
2631
+ :use_case,
2632
+ :engine_mode)
2601
2633
  SENSITIVE = []
2602
2634
  include Aws::Structure
2603
2635
  end
@@ -2659,6 +2691,23 @@ module Aws::ElasticsearchService
2659
2691
  include Aws::Structure
2660
2692
  end
2661
2693
 
2694
+ # The status of the engine mode for the domain.
2695
+ #
2696
+ # @!attribute [rw] options
2697
+ # The engine mode configured for the domain.
2698
+ # @return [String]
2699
+ #
2700
+ # @!attribute [rw] status
2701
+ # The current status of the engine mode for the domain.
2702
+ # @return [Types::OptionStatus]
2703
+ #
2704
+ class EngineModeStatus < Struct.new(
2705
+ :options,
2706
+ :status)
2707
+ SENSITIVE = []
2708
+ include Aws::Structure
2709
+ end
2710
+
2662
2711
  # @!attribute [rw] error_type
2663
2712
  # @return [String]
2664
2713
  #
@@ -4384,6 +4433,16 @@ module Aws::ElasticsearchService
4384
4433
  # Maximum suspension duration: 3 days.
4385
4434
  # @return [Types::AutomatedSnapshotPauseRequestOptions]
4386
4435
  #
4436
+ # @!attribute [rw] use_case
4437
+ # The primary use case for the domain. For valid values, see
4438
+ # `DomainUseCase`.
4439
+ # @return [String]
4440
+ #
4441
+ # @!attribute [rw] engine_mode
4442
+ # The engine mode for the domain. For valid values and requirements,
4443
+ # see `DomainEngineMode`.
4444
+ # @return [String]
4445
+ #
4387
4446
  class UpdateElasticsearchDomainConfigRequest < Struct.new(
4388
4447
  :domain_name,
4389
4448
  :elasticsearch_cluster_config,
@@ -4401,7 +4460,9 @@ module Aws::ElasticsearchService
4401
4460
  :auto_tune_options,
4402
4461
  :dry_run,
4403
4462
  :deployment_strategy_options,
4404
- :automated_snapshot_pause_options)
4463
+ :automated_snapshot_pause_options,
4464
+ :use_case,
4465
+ :engine_mode)
4405
4466
  SENSITIVE = []
4406
4467
  include Aws::Structure
4407
4468
  end
@@ -4629,6 +4690,23 @@ module Aws::ElasticsearchService
4629
4690
  include Aws::Structure
4630
4691
  end
4631
4692
 
4693
+ # The status of the use case for the domain.
4694
+ #
4695
+ # @!attribute [rw] options
4696
+ # The use case configured for the domain.
4697
+ # @return [String]
4698
+ #
4699
+ # @!attribute [rw] status
4700
+ # The current status of the use case for the domain.
4701
+ # @return [Types::OptionStatus]
4702
+ #
4703
+ class UseCaseStatus < Struct.new(
4704
+ :options,
4705
+ :status)
4706
+ SENSITIVE = []
4707
+ include Aws::Structure
4708
+ end
4709
+
4632
4710
  # Options to specify the subnets and security groups for VPC endpoint.
4633
4711
  # For more information, see [ VPC Endpoints for Amazon Elasticsearch
4634
4712
  # Service Domains][1].
@@ -54,7 +54,7 @@ module Aws::ElasticsearchService
54
54
  autoload :EndpointProvider, 'aws-sdk-elasticsearchservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-elasticsearchservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.123.0'
57
+ GEM_VERSION = '1.124.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -214,7 +214,9 @@ module Aws
214
214
  enabled: bool,
215
215
  start_time: ::Time?,
216
216
  end_time: ::Time?
217
- }
217
+ },
218
+ ?use_case: ("SEARCH" | "VECTOR" | "OBSERVABILITY" | "MIXED"),
219
+ ?engine_mode: ("GENERAL" | "OPTIMIZED")
218
220
  ) -> _CreateElasticsearchDomainResponseSuccess
219
221
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateElasticsearchDomainResponseSuccess
220
222
 
@@ -766,7 +768,9 @@ module Aws
766
768
  enabled: bool,
767
769
  start_time: ::Time?,
768
770
  end_time: ::Time?
769
- }
771
+ },
772
+ ?use_case: ("SEARCH" | "VECTOR" | "OBSERVABILITY" | "MIXED"),
773
+ ?engine_mode: ("GENERAL" | "OPTIMIZED")
770
774
  ) -> _UpdateElasticsearchDomainConfigResponseSuccess
771
775
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateElasticsearchDomainConfigResponseSuccess
772
776
 
data/sig/types.rbs CHANGED
@@ -285,6 +285,8 @@ module Aws::ElasticsearchService
285
285
  attr_accessor tag_list: ::Array[Types::Tag]
286
286
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
287
287
  attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseRequestOptions
288
+ attr_accessor use_case: ("SEARCH" | "VECTOR" | "OBSERVABILITY" | "MIXED")
289
+ attr_accessor engine_mode: ("GENERAL" | "OPTIMIZED")
288
290
  SENSITIVE: []
289
291
  end
290
292
 
@@ -665,6 +667,8 @@ module Aws::ElasticsearchService
665
667
  attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
666
668
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptionsStatus
667
669
  attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseOptionsStatus
670
+ attr_accessor use_case: Types::UseCaseStatus
671
+ attr_accessor engine_mode: Types::EngineModeStatus
668
672
  SENSITIVE: []
669
673
  end
670
674
 
@@ -698,6 +702,8 @@ module Aws::ElasticsearchService
698
702
  attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
699
703
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
700
704
  attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseOptions
705
+ attr_accessor use_case: ("SEARCH" | "VECTOR" | "OBSERVABILITY" | "MIXED")
706
+ attr_accessor engine_mode: ("GENERAL" | "OPTIMIZED")
701
707
  SENSITIVE: []
702
708
  end
703
709
 
@@ -719,6 +725,12 @@ module Aws::ElasticsearchService
719
725
  SENSITIVE: []
720
726
  end
721
727
 
728
+ class EngineModeStatus
729
+ attr_accessor options: ("GENERAL" | "OPTIMIZED")
730
+ attr_accessor status: Types::OptionStatus
731
+ SENSITIVE: []
732
+ end
733
+
722
734
  class ErrorDetails
723
735
  attr_accessor error_type: ::String
724
736
  attr_accessor error_message: ::String
@@ -1202,6 +1214,8 @@ module Aws::ElasticsearchService
1202
1214
  attr_accessor dry_run: bool
1203
1215
  attr_accessor deployment_strategy_options: Types::DeploymentStrategyOptions
1204
1216
  attr_accessor automated_snapshot_pause_options: Types::AutomatedSnapshotPauseRequestOptions
1217
+ attr_accessor use_case: ("SEARCH" | "VECTOR" | "OBSERVABILITY" | "MIXED")
1218
+ attr_accessor engine_mode: ("GENERAL" | "OPTIMIZED")
1205
1219
  SENSITIVE: []
1206
1220
  end
1207
1221
 
@@ -1266,6 +1280,12 @@ module Aws::ElasticsearchService
1266
1280
  SENSITIVE: []
1267
1281
  end
1268
1282
 
1283
+ class UseCaseStatus
1284
+ attr_accessor options: ("SEARCH" | "VECTOR" | "OBSERVABILITY" | "MIXED")
1285
+ attr_accessor status: Types::OptionStatus
1286
+ SENSITIVE: []
1287
+ end
1288
+
1269
1289
  class VPCDerivedInfo
1270
1290
  attr_accessor vpc_id: ::String
1271
1291
  attr_accessor subnet_ids: ::Array[::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticsearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.123.0
4
+ version: 1.124.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services