aws-sdk-elasticsearchservice 1.67.0 → 1.69.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.
@@ -13,13 +13,6 @@ module Aws::ElasticsearchService
13
13
  # Container for the parameters to the
14
14
  # `AcceptInboundCrossClusterSearchConnection` operation.
15
15
  #
16
- # @note When making an API call, you may pass AcceptInboundCrossClusterSearchConnectionRequest
17
- # data as a hash:
18
- #
19
- # {
20
- # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
21
- # }
22
- #
23
16
  # @!attribute [rw] cross_cluster_search_connection_id
24
17
  # The id of the inbound connection that you want to accept.
25
18
  # @return [String]
@@ -77,19 +70,6 @@ module Aws::ElasticsearchService
77
70
  # Container for the parameters to the `AddTags` operation. Specify the
78
71
  # tags that you want to attach to the Elasticsearch domain.
79
72
  #
80
- # @note When making an API call, you may pass AddTagsRequest
81
- # data as a hash:
82
- #
83
- # {
84
- # arn: "ARN", # required
85
- # tag_list: [ # required
86
- # {
87
- # key: "TagKey", # required
88
- # value: "TagValue", # required
89
- # },
90
- # ],
91
- # }
92
- #
93
73
  # @!attribute [rw] arn
94
74
  # Specify the `ARN` for which you want to add the tags.
95
75
  # @return [String]
@@ -202,32 +182,6 @@ module Aws::ElasticsearchService
202
182
  # master username and password (if internal database is enabled), and
203
183
  # master user ARN (if IAM is enabled).
204
184
  #
205
- # @note When making an API call, you may pass AdvancedSecurityOptionsInput
206
- # data as a hash:
207
- #
208
- # {
209
- # enabled: false,
210
- # internal_user_database_enabled: false,
211
- # master_user_options: {
212
- # master_user_arn: "ARN",
213
- # master_user_name: "Username",
214
- # master_user_password: "Password",
215
- # },
216
- # saml_options: {
217
- # enabled: false,
218
- # idp: {
219
- # metadata_content: "SAMLMetadata", # required
220
- # entity_id: "SAMLEntityId", # required
221
- # },
222
- # master_user_name: "Username",
223
- # master_backend_role: "BackendRole",
224
- # subject_key: "String",
225
- # roles_key: "String",
226
- # session_timeout_minutes: 1,
227
- # },
228
- # anonymous_auth_enabled: false,
229
- # }
230
- #
231
185
  # @!attribute [rw] enabled
232
186
  # True if advanced security is enabled.
233
187
  # @return [Boolean]
@@ -282,14 +236,6 @@ module Aws::ElasticsearchService
282
236
 
283
237
  # Container for request parameters to ` AssociatePackage ` operation.
284
238
  #
285
- # @note When making an API call, you may pass AssociatePackageRequest
286
- # data as a hash:
287
- #
288
- # {
289
- # package_id: "PackageID", # required
290
- # domain_name: "DomainName", # required
291
- # }
292
- #
293
239
  # @!attribute [rw] package_id
294
240
  # Internal ID of the package that you want to associate with a domain.
295
241
  # Use `DescribePackages` to find this value.
@@ -318,6 +264,59 @@ module Aws::ElasticsearchService
318
264
  include Aws::Structure
319
265
  end
320
266
 
267
+ # Container for request parameters to the `AuthorizeVpcEndpointAccess`
268
+ # operation. Specifies the account to be permitted to manage VPC
269
+ # endpoints against the domain.
270
+ #
271
+ # @!attribute [rw] domain_name
272
+ # The name of the OpenSearch Service domain to provide access to.
273
+ # @return [String]
274
+ #
275
+ # @!attribute [rw] account
276
+ # The account ID to grant access to.
277
+ # @return [String]
278
+ #
279
+ class AuthorizeVpcEndpointAccessRequest < Struct.new(
280
+ :domain_name,
281
+ :account)
282
+ SENSITIVE = []
283
+ include Aws::Structure
284
+ end
285
+
286
+ # Container for response parameters to the `AuthorizeVpcEndpointAccess`
287
+ # operation. Contains the account ID and the type of the account being
288
+ # authorized to access the VPC endpoint.
289
+ #
290
+ # @!attribute [rw] authorized_principal
291
+ # Information about the account or service that was provided access to
292
+ # the domain.
293
+ # @return [Types::AuthorizedPrincipal]
294
+ #
295
+ class AuthorizeVpcEndpointAccessResponse < Struct.new(
296
+ :authorized_principal)
297
+ SENSITIVE = []
298
+ include Aws::Structure
299
+ end
300
+
301
+ # Information about an account or service that has access to an Amazon
302
+ # OpenSearch Service domain through the use of an interface VPC
303
+ # endpoint.
304
+ #
305
+ # @!attribute [rw] principal_type
306
+ # The type of principal.
307
+ # @return [String]
308
+ #
309
+ # @!attribute [rw] principal
310
+ # The IAM principal that is allowed access to the domain.
311
+ # @return [String]
312
+ #
313
+ class AuthorizedPrincipal < Struct.new(
314
+ :principal_type,
315
+ :principal)
316
+ SENSITIVE = []
317
+ include Aws::Structure
318
+ end
319
+
321
320
  # Specifies Auto-Tune type and Auto-Tune action details.
322
321
  #
323
322
  # @!attribute [rw] auto_tune_type
@@ -369,18 +368,6 @@ module Aws::ElasticsearchService
369
368
  #
370
369
  # [1]: https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
371
370
  #
372
- # @note When making an API call, you may pass AutoTuneMaintenanceSchedule
373
- # data as a hash:
374
- #
375
- # {
376
- # start_at: Time.now,
377
- # duration: {
378
- # value: 1,
379
- # unit: "HOURS", # accepts HOURS
380
- # },
381
- # cron_expression_for_recurrence: "String",
382
- # }
383
- #
384
371
  # @!attribute [rw] start_at
385
372
  # Specifies timestamp at which Auto-Tune maintenance schedule start.
386
373
  # @return [Time]
@@ -415,24 +402,6 @@ module Aws::ElasticsearchService
415
402
  # domain, rollback state when disabling Auto-Tune options and list of
416
403
  # maintenance schedules.
417
404
  #
418
- # @note When making an API call, you may pass AutoTuneOptions
419
- # data as a hash:
420
- #
421
- # {
422
- # desired_state: "ENABLED", # accepts ENABLED, DISABLED
423
- # rollback_on_disable: "NO_ROLLBACK", # accepts NO_ROLLBACK, DEFAULT_ROLLBACK
424
- # maintenance_schedules: [
425
- # {
426
- # start_at: Time.now,
427
- # duration: {
428
- # value: 1,
429
- # unit: "HOURS", # accepts HOURS
430
- # },
431
- # cron_expression_for_recurrence: "String",
432
- # },
433
- # ],
434
- # }
435
- #
436
405
  # @!attribute [rw] desired_state
437
406
  # Specifies the Auto-Tune desired state. Valid values are ENABLED,
438
407
  # DISABLED.
@@ -463,23 +432,6 @@ module Aws::ElasticsearchService
463
432
  # Specifies the Auto-Tune options: the Auto-Tune desired state for the
464
433
  # domain and list of maintenance schedules.
465
434
  #
466
- # @note When making an API call, you may pass AutoTuneOptionsInput
467
- # data as a hash:
468
- #
469
- # {
470
- # desired_state: "ENABLED", # accepts ENABLED, DISABLED
471
- # maintenance_schedules: [
472
- # {
473
- # start_at: Time.now,
474
- # duration: {
475
- # value: 1,
476
- # unit: "HOURS", # accepts HOURS
477
- # },
478
- # cron_expression_for_recurrence: "String",
479
- # },
480
- # ],
481
- # }
482
- #
483
435
  # @!attribute [rw] desired_state
484
436
  # Specifies the Auto-Tune desired state. Valid values are ENABLED,
485
437
  # DISABLED.
@@ -594,13 +546,6 @@ module Aws::ElasticsearchService
594
546
  # name of the Elasticsearch domain that you wish to cancel a service
595
547
  # software update on.
596
548
  #
597
- # @note When making an API call, you may pass CancelElasticsearchServiceSoftwareUpdateRequest
598
- # data as a hash:
599
- #
600
- # {
601
- # domain_name: "DomainName", # required
602
- # }
603
- #
604
549
  # @!attribute [rw] domain_name
605
550
  # The name of the domain that you want to stop the latest service
606
551
  # software update on.
@@ -727,16 +672,6 @@ module Aws::ElasticsearchService
727
672
  #
728
673
  # [1]: http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-cognito-auth.html
729
674
  #
730
- # @note When making an API call, you may pass CognitoOptions
731
- # data as a hash:
732
- #
733
- # {
734
- # enabled: false,
735
- # user_pool_id: "UserPoolId",
736
- # identity_pool_id: "IdentityPoolId",
737
- # role_arn: "RoleArn",
738
- # }
739
- #
740
675
  # @!attribute [rw] enabled
741
676
  # Specifies the option to enable Cognito for Kibana authentication.
742
677
  # @return [Boolean]
@@ -784,13 +719,6 @@ module Aws::ElasticsearchService
784
719
 
785
720
  # Specifies the configuration for cold storage options such as enabled
786
721
  #
787
- # @note When making an API call, you may pass ColdStorageOptions
788
- # data as a hash:
789
- #
790
- # {
791
- # enabled: false, # required
792
- # }
793
- #
794
722
  # @!attribute [rw] enabled
795
723
  # Enable cold storage option. Accepted values true or false
796
724
  # @return [Boolean]
@@ -824,116 +752,6 @@ module Aws::ElasticsearchService
824
752
  #
825
753
  class ConflictException < Aws::EmptyStructure; end
826
754
 
827
- # @note When making an API call, you may pass CreateElasticsearchDomainRequest
828
- # data as a hash:
829
- #
830
- # {
831
- # domain_name: "DomainName", # required
832
- # elasticsearch_version: "ElasticsearchVersionString",
833
- # elasticsearch_cluster_config: {
834
- # instance_type: "m3.medium.elasticsearch", # accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
835
- # instance_count: 1,
836
- # dedicated_master_enabled: false,
837
- # zone_awareness_enabled: false,
838
- # zone_awareness_config: {
839
- # availability_zone_count: 1,
840
- # },
841
- # dedicated_master_type: "m3.medium.elasticsearch", # accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
842
- # dedicated_master_count: 1,
843
- # warm_enabled: false,
844
- # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
845
- # warm_count: 1,
846
- # cold_storage_options: {
847
- # enabled: false, # required
848
- # },
849
- # },
850
- # ebs_options: {
851
- # ebs_enabled: false,
852
- # volume_type: "standard", # accepts standard, gp2, io1, gp3
853
- # volume_size: 1,
854
- # iops: 1,
855
- # throughput: 1,
856
- # },
857
- # access_policies: "PolicyDocument",
858
- # snapshot_options: {
859
- # automated_snapshot_start_hour: 1,
860
- # },
861
- # vpc_options: {
862
- # subnet_ids: ["String"],
863
- # security_group_ids: ["String"],
864
- # },
865
- # cognito_options: {
866
- # enabled: false,
867
- # user_pool_id: "UserPoolId",
868
- # identity_pool_id: "IdentityPoolId",
869
- # role_arn: "RoleArn",
870
- # },
871
- # encryption_at_rest_options: {
872
- # enabled: false,
873
- # kms_key_id: "KmsKeyId",
874
- # },
875
- # node_to_node_encryption_options: {
876
- # enabled: false,
877
- # },
878
- # advanced_options: {
879
- # "String" => "String",
880
- # },
881
- # log_publishing_options: {
882
- # "INDEX_SLOW_LOGS" => {
883
- # cloud_watch_logs_log_group_arn: "CloudWatchLogsLogGroupArn",
884
- # enabled: false,
885
- # },
886
- # },
887
- # domain_endpoint_options: {
888
- # enforce_https: false,
889
- # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
890
- # custom_endpoint_enabled: false,
891
- # custom_endpoint: "DomainNameFqdn",
892
- # custom_endpoint_certificate_arn: "ARN",
893
- # },
894
- # advanced_security_options: {
895
- # enabled: false,
896
- # internal_user_database_enabled: false,
897
- # master_user_options: {
898
- # master_user_arn: "ARN",
899
- # master_user_name: "Username",
900
- # master_user_password: "Password",
901
- # },
902
- # saml_options: {
903
- # enabled: false,
904
- # idp: {
905
- # metadata_content: "SAMLMetadata", # required
906
- # entity_id: "SAMLEntityId", # required
907
- # },
908
- # master_user_name: "Username",
909
- # master_backend_role: "BackendRole",
910
- # subject_key: "String",
911
- # roles_key: "String",
912
- # session_timeout_minutes: 1,
913
- # },
914
- # anonymous_auth_enabled: false,
915
- # },
916
- # auto_tune_options: {
917
- # desired_state: "ENABLED", # accepts ENABLED, DISABLED
918
- # maintenance_schedules: [
919
- # {
920
- # start_at: Time.now,
921
- # duration: {
922
- # value: 1,
923
- # unit: "HOURS", # accepts HOURS
924
- # },
925
- # cron_expression_for_recurrence: "String",
926
- # },
927
- # ],
928
- # },
929
- # tag_list: [
930
- # {
931
- # key: "TagKey", # required
932
- # value: "TagValue", # required
933
- # },
934
- # ],
935
- # }
936
- #
937
755
  # @!attribute [rw] domain_name
938
756
  # The name of the Elasticsearch domain that you are creating. Domain
939
757
  # names are unique across the domains owned by an account within an
@@ -1070,23 +888,6 @@ module Aws::ElasticsearchService
1070
888
  # Container for the parameters to the
1071
889
  # `CreateOutboundCrossClusterSearchConnection` operation.
1072
890
  #
1073
- # @note When making an API call, you may pass CreateOutboundCrossClusterSearchConnectionRequest
1074
- # data as a hash:
1075
- #
1076
- # {
1077
- # source_domain_info: { # required
1078
- # owner_id: "OwnerId",
1079
- # domain_name: "DomainName", # required
1080
- # region: "Region",
1081
- # },
1082
- # destination_domain_info: { # required
1083
- # owner_id: "OwnerId",
1084
- # domain_name: "DomainName", # required
1085
- # region: "Region",
1086
- # },
1087
- # connection_alias: "ConnectionAlias", # required
1088
- # }
1089
- #
1090
891
  # @!attribute [rw] source_domain_info
1091
892
  # Specifies the `DomainInformation` for the source Elasticsearch
1092
893
  # domain.
@@ -1151,19 +952,6 @@ module Aws::ElasticsearchService
1151
952
 
1152
953
  # Container for request parameters to ` CreatePackage ` operation.
1153
954
  #
1154
- # @note When making an API call, you may pass CreatePackageRequest
1155
- # data as a hash:
1156
- #
1157
- # {
1158
- # package_name: "PackageName", # required
1159
- # package_type: "TXT-DICTIONARY", # required, accepts TXT-DICTIONARY
1160
- # package_description: "PackageDescription",
1161
- # package_source: { # required
1162
- # s3_bucket_name: "S3BucketName",
1163
- # s3_key: "S3Key",
1164
- # },
1165
- # }
1166
- #
1167
955
  # @!attribute [rw] package_name
1168
956
  # Unique identifier for the package.
1169
957
  # @return [String]
@@ -1201,17 +989,48 @@ module Aws::ElasticsearchService
1201
989
  include Aws::Structure
1202
990
  end
1203
991
 
992
+ # Container for the parameters to the `CreateVpcEndpointRequest`
993
+ # operation.
994
+ #
995
+ # @!attribute [rw] domain_arn
996
+ # The Amazon Resource Name (ARN) of the domain to grant access to.
997
+ # @return [String]
998
+ #
999
+ # @!attribute [rw] vpc_options
1000
+ # Options to specify the subnets and security groups for the endpoint.
1001
+ # @return [Types::VPCOptions]
1002
+ #
1003
+ # @!attribute [rw] client_token
1004
+ # Unique, case-sensitive identifier to ensure idempotency of the
1005
+ # request.
1006
+ # @return [String]
1007
+ #
1008
+ class CreateVpcEndpointRequest < Struct.new(
1009
+ :domain_arn,
1010
+ :vpc_options,
1011
+ :client_token)
1012
+ SENSITIVE = []
1013
+ include Aws::Structure
1014
+ end
1015
+
1016
+ # Container for response parameters to the `CreateVpcEndpoint`
1017
+ # operation. Contains the configuration and status of the VPC Endpoint
1018
+ # being created.
1019
+ #
1020
+ # @!attribute [rw] vpc_endpoint
1021
+ # Information about the newly created VPC endpoint.
1022
+ # @return [Types::VpcEndpoint]
1023
+ #
1024
+ class CreateVpcEndpointResponse < Struct.new(
1025
+ :vpc_endpoint)
1026
+ SENSITIVE = []
1027
+ include Aws::Structure
1028
+ end
1029
+
1204
1030
  # Container for the parameters to the `DeleteElasticsearchDomain`
1205
1031
  # operation. Specifies the name of the Elasticsearch domain that you
1206
1032
  # want to delete.
1207
1033
  #
1208
- # @note When making an API call, you may pass DeleteElasticsearchDomainRequest
1209
- # data as a hash:
1210
- #
1211
- # {
1212
- # domain_name: "DomainName", # required
1213
- # }
1214
- #
1215
1034
  # @!attribute [rw] domain_name
1216
1035
  # The name of the Elasticsearch domain that you want to permanently
1217
1036
  # delete.
@@ -1240,13 +1059,6 @@ module Aws::ElasticsearchService
1240
1059
  # Container for the parameters to the
1241
1060
  # `DeleteInboundCrossClusterSearchConnection` operation.
1242
1061
  #
1243
- # @note When making an API call, you may pass DeleteInboundCrossClusterSearchConnectionRequest
1244
- # data as a hash:
1245
- #
1246
- # {
1247
- # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
1248
- # }
1249
- #
1250
1062
  # @!attribute [rw] cross_cluster_search_connection_id
1251
1063
  # The id of the inbound connection that you want to permanently
1252
1064
  # delete.
@@ -1275,13 +1087,6 @@ module Aws::ElasticsearchService
1275
1087
  # Container for the parameters to the
1276
1088
  # `DeleteOutboundCrossClusterSearchConnection` operation.
1277
1089
  #
1278
- # @note When making an API call, you may pass DeleteOutboundCrossClusterSearchConnectionRequest
1279
- # data as a hash:
1280
- #
1281
- # {
1282
- # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
1283
- # }
1284
- #
1285
1090
  # @!attribute [rw] cross_cluster_search_connection_id
1286
1091
  # The id of the outbound connection that you want to permanently
1287
1092
  # delete.
@@ -1309,13 +1114,6 @@ module Aws::ElasticsearchService
1309
1114
 
1310
1115
  # Container for request parameters to ` DeletePackage ` operation.
1311
1116
  #
1312
- # @note When making an API call, you may pass DeletePackageRequest
1313
- # data as a hash:
1314
- #
1315
- # {
1316
- # package_id: "PackageID", # required
1317
- # }
1318
- #
1319
1117
  # @!attribute [rw] package_id
1320
1118
  # Internal ID of the package that you want to delete. Use
1321
1119
  # `DescribePackages` to find this value.
@@ -1339,17 +1137,35 @@ module Aws::ElasticsearchService
1339
1137
  include Aws::Structure
1340
1138
  end
1341
1139
 
1342
- # Container for the parameters to the `DescribeDomainAutoTunes`
1343
- # operation.
1140
+ # Deletes an Amazon OpenSearch Service-managed interface VPC endpoint.
1344
1141
  #
1345
- # @note When making an API call, you may pass DescribeDomainAutoTunesRequest
1346
- # data as a hash:
1142
+ # @!attribute [rw] vpc_endpoint_id
1143
+ # The unique identifier of the endpoint to be deleted.
1144
+ # @return [String]
1145
+ #
1146
+ class DeleteVpcEndpointRequest < Struct.new(
1147
+ :vpc_endpoint_id)
1148
+ SENSITIVE = []
1149
+ include Aws::Structure
1150
+ end
1151
+
1152
+ # Container for response parameters to the `DeleteVpcEndpoint`
1153
+ # operation. Contains the summarized detail of the VPC Endpoint being
1154
+ # deleted.
1347
1155
  #
1348
- # {
1349
- # domain_name: "DomainName", # required
1350
- # max_results: 1,
1351
- # next_token: "NextToken",
1352
- # }
1156
+ # @!attribute [rw] vpc_endpoint_summary
1157
+ # Information about the deleted endpoint, including its current status
1158
+ # (`DELETING` or `DELETE_FAILED`).
1159
+ # @return [Types::VpcEndpointSummary]
1160
+ #
1161
+ class DeleteVpcEndpointResponse < Struct.new(
1162
+ :vpc_endpoint_summary)
1163
+ SENSITIVE = []
1164
+ include Aws::Structure
1165
+ end
1166
+
1167
+ # Container for the parameters to the `DescribeDomainAutoTunes`
1168
+ # operation.
1353
1169
  #
1354
1170
  # @!attribute [rw] domain_name
1355
1171
  # Specifies the domain name for which you want Auto-Tune action
@@ -1405,14 +1221,6 @@ module Aws::ElasticsearchService
1405
1221
  # operation. Specifies the domain name and optional change specific
1406
1222
  # identity for which you want progress information.
1407
1223
  #
1408
- # @note When making an API call, you may pass DescribeDomainChangeProgressRequest
1409
- # data as a hash:
1410
- #
1411
- # {
1412
- # domain_name: "DomainName", # required
1413
- # change_id: "GUID",
1414
- # }
1415
- #
1416
1224
  # @!attribute [rw] domain_name
1417
1225
  # The domain you want to get the progress information about.
1418
1226
  # @return [String]
@@ -1448,13 +1256,6 @@ module Aws::ElasticsearchService
1448
1256
  # `DescribeElasticsearchDomainConfig` operation. Specifies the domain
1449
1257
  # name for which you want configuration information.
1450
1258
  #
1451
- # @note When making an API call, you may pass DescribeElasticsearchDomainConfigRequest
1452
- # data as a hash:
1453
- #
1454
- # {
1455
- # domain_name: "DomainName", # required
1456
- # }
1457
- #
1458
1259
  # @!attribute [rw] domain_name
1459
1260
  # The Elasticsearch domain that you want to get information about.
1460
1261
  # @return [String]
@@ -1482,13 +1283,6 @@ module Aws::ElasticsearchService
1482
1283
  # Container for the parameters to the `DescribeElasticsearchDomain`
1483
1284
  # operation.
1484
1285
  #
1485
- # @note When making an API call, you may pass DescribeElasticsearchDomainRequest
1486
- # data as a hash:
1487
- #
1488
- # {
1489
- # domain_name: "DomainName", # required
1490
- # }
1491
- #
1492
1286
  # @!attribute [rw] domain_name
1493
1287
  # The name of the Elasticsearch domain for which you want information.
1494
1288
  # @return [String]
@@ -1516,13 +1310,6 @@ module Aws::ElasticsearchService
1516
1310
  # operation. By default, the API returns the status of all Elasticsearch
1517
1311
  # domains.
1518
1312
  #
1519
- # @note When making an API call, you may pass DescribeElasticsearchDomainsRequest
1520
- # data as a hash:
1521
- #
1522
- # {
1523
- # domain_names: ["DomainName"], # required
1524
- # }
1525
- #
1526
1313
  # @!attribute [rw] domain_names
1527
1314
  # The Elasticsearch domains for which you want information.
1528
1315
  # @return [Array<String>]
@@ -1550,15 +1337,6 @@ module Aws::ElasticsearchService
1550
1337
  # Container for the parameters to `
1551
1338
  # DescribeElasticsearchInstanceTypeLimits ` operation.
1552
1339
  #
1553
- # @note When making an API call, you may pass DescribeElasticsearchInstanceTypeLimitsRequest
1554
- # data as a hash:
1555
- #
1556
- # {
1557
- # domain_name: "DomainName",
1558
- # instance_type: "m3.medium.elasticsearch", # required, accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
1559
- # elasticsearch_version: "ElasticsearchVersionString", # required
1560
- # }
1561
- #
1562
1340
  # @!attribute [rw] domain_name
1563
1341
  # DomainName represents the name of the Domain that we are trying to
1564
1342
  # modify. This should be present only if we are querying for
@@ -1602,20 +1380,6 @@ module Aws::ElasticsearchService
1602
1380
  # Container for the parameters to the
1603
1381
  # `DescribeInboundCrossClusterSearchConnections` operation.
1604
1382
  #
1605
- # @note When making an API call, you may pass DescribeInboundCrossClusterSearchConnectionsRequest
1606
- # data as a hash:
1607
- #
1608
- # {
1609
- # filters: [
1610
- # {
1611
- # name: "NonEmptyString",
1612
- # values: ["NonEmptyString"],
1613
- # },
1614
- # ],
1615
- # max_results: 1,
1616
- # next_token: "NextToken",
1617
- # }
1618
- #
1619
1383
  # @!attribute [rw] filters
1620
1384
  # A list of filters used to match properties for inbound cross-cluster
1621
1385
  # search connection. Available `Filter` names for this operation are:
@@ -1669,20 +1433,6 @@ module Aws::ElasticsearchService
1669
1433
  # Container for the parameters to the
1670
1434
  # `DescribeOutboundCrossClusterSearchConnections` operation.
1671
1435
  #
1672
- # @note When making an API call, you may pass DescribeOutboundCrossClusterSearchConnectionsRequest
1673
- # data as a hash:
1674
- #
1675
- # {
1676
- # filters: [
1677
- # {
1678
- # name: "NonEmptyString",
1679
- # values: ["NonEmptyString"],
1680
- # },
1681
- # ],
1682
- # max_results: 1,
1683
- # next_token: "NextToken",
1684
- # }
1685
- #
1686
1436
  # @!attribute [rw] filters
1687
1437
  # A list of filters used to match properties for outbound
1688
1438
  # cross-cluster search connection. Available `Filter` names for this
@@ -1735,14 +1485,6 @@ module Aws::ElasticsearchService
1735
1485
 
1736
1486
  # Filter to apply in `DescribePackage` response.
1737
1487
  #
1738
- # @note When making an API call, you may pass DescribePackagesFilter
1739
- # data as a hash:
1740
- #
1741
- # {
1742
- # name: "PackageID", # accepts PackageID, PackageName, PackageStatus
1743
- # value: ["DescribePackagesFilterValue"],
1744
- # }
1745
- #
1746
1488
  # @!attribute [rw] name
1747
1489
  # Any field from `PackageDetails`.
1748
1490
  # @return [String]
@@ -1760,20 +1502,6 @@ module Aws::ElasticsearchService
1760
1502
 
1761
1503
  # Container for request parameters to ` DescribePackage ` operation.
1762
1504
  #
1763
- # @note When making an API call, you may pass DescribePackagesRequest
1764
- # data as a hash:
1765
- #
1766
- # {
1767
- # filters: [
1768
- # {
1769
- # name: "PackageID", # accepts PackageID, PackageName, PackageStatus
1770
- # value: ["DescribePackagesFilterValue"],
1771
- # },
1772
- # ],
1773
- # max_results: 1,
1774
- # next_token: "NextToken",
1775
- # }
1776
- #
1777
1505
  # @!attribute [rw] filters
1778
1506
  # Only returns packages that match the `DescribePackagesFilterList`
1779
1507
  # values.
@@ -1816,15 +1544,6 @@ module Aws::ElasticsearchService
1816
1544
  # Container for parameters to
1817
1545
  # `DescribeReservedElasticsearchInstanceOfferings`
1818
1546
  #
1819
- # @note When making an API call, you may pass DescribeReservedElasticsearchInstanceOfferingsRequest
1820
- # data as a hash:
1821
- #
1822
- # {
1823
- # reserved_elasticsearch_instance_offering_id: "GUID",
1824
- # max_results: 1,
1825
- # next_token: "NextToken",
1826
- # }
1827
- #
1828
1547
  # @!attribute [rw] reserved_elasticsearch_instance_offering_id
1829
1548
  # The offering identifier filter value. Use this parameter to show
1830
1549
  # only the available offering that matches the specified reservation
@@ -1869,15 +1588,6 @@ module Aws::ElasticsearchService
1869
1588
 
1870
1589
  # Container for parameters to `DescribeReservedElasticsearchInstances`
1871
1590
  #
1872
- # @note When making an API call, you may pass DescribeReservedElasticsearchInstancesRequest
1873
- # data as a hash:
1874
- #
1875
- # {
1876
- # reserved_elasticsearch_instance_id: "GUID",
1877
- # max_results: 1,
1878
- # next_token: "NextToken",
1879
- # }
1880
- #
1881
1591
  # @!attribute [rw] reserved_elasticsearch_instance_id
1882
1592
  # The reserved instance identifier filter value. Use this parameter to
1883
1593
  # show only the reservation that matches the specified reserved
@@ -1919,6 +1629,39 @@ module Aws::ElasticsearchService
1919
1629
  include Aws::Structure
1920
1630
  end
1921
1631
 
1632
+ # Container for request parameters to the `DescribeVpcEndpoints`
1633
+ # operation. Specifies the list of VPC endpoints to be described.
1634
+ #
1635
+ # @!attribute [rw] vpc_endpoint_ids
1636
+ # The unique identifiers of the endpoints to get information about.
1637
+ # @return [Array<String>]
1638
+ #
1639
+ class DescribeVpcEndpointsRequest < Struct.new(
1640
+ :vpc_endpoint_ids)
1641
+ SENSITIVE = []
1642
+ include Aws::Structure
1643
+ end
1644
+
1645
+ # Container for response parameters to the `DescribeVpcEndpoints`
1646
+ # operation. Returns a list containing configuration details and status
1647
+ # of the VPC Endpoints as well as a list containing error responses of
1648
+ # the endpoints that could not be described
1649
+ #
1650
+ # @!attribute [rw] vpc_endpoints
1651
+ # Information about each requested VPC endpoint.
1652
+ # @return [Array<Types::VpcEndpoint>]
1653
+ #
1654
+ # @!attribute [rw] vpc_endpoint_errors
1655
+ # Any errors associated with the request.
1656
+ # @return [Array<Types::VpcEndpointError>]
1657
+ #
1658
+ class DescribeVpcEndpointsResponse < Struct.new(
1659
+ :vpc_endpoints,
1660
+ :vpc_endpoint_errors)
1661
+ SENSITIVE = []
1662
+ include Aws::Structure
1663
+ end
1664
+
1922
1665
  # An error occured because the client wanted to access a not supported
1923
1666
  # operation. Gives http status code of 409.
1924
1667
  #
@@ -1926,14 +1669,6 @@ module Aws::ElasticsearchService
1926
1669
 
1927
1670
  # Container for request parameters to ` DissociatePackage ` operation.
1928
1671
  #
1929
- # @note When making an API call, you may pass DissociatePackageRequest
1930
- # data as a hash:
1931
- #
1932
- # {
1933
- # package_id: "PackageID", # required
1934
- # domain_name: "DomainName", # required
1935
- # }
1936
- #
1937
1672
  # @!attribute [rw] package_id
1938
1673
  # Internal ID of the package that you want to associate with a domain.
1939
1674
  # Use `DescribePackages` to find this value.
@@ -1964,17 +1699,6 @@ module Aws::ElasticsearchService
1964
1699
 
1965
1700
  # Options to configure endpoint for the Elasticsearch domain.
1966
1701
  #
1967
- # @note When making an API call, you may pass DomainEndpointOptions
1968
- # data as a hash:
1969
- #
1970
- # {
1971
- # enforce_https: false,
1972
- # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
1973
- # custom_endpoint_enabled: false,
1974
- # custom_endpoint: "DomainNameFqdn",
1975
- # custom_endpoint_certificate_arn: "ARN",
1976
- # }
1977
- #
1978
1702
  # @!attribute [rw] enforce_https
1979
1703
  # Specify if only HTTPS endpoint should be enabled for the
1980
1704
  # Elasticsearch domain.
@@ -2047,15 +1771,6 @@ module Aws::ElasticsearchService
2047
1771
  include Aws::Structure
2048
1772
  end
2049
1773
 
2050
- # @note When making an API call, you may pass DomainInformation
2051
- # data as a hash:
2052
- #
2053
- # {
2054
- # owner_id: "OwnerId",
2055
- # domain_name: "DomainName", # required
2056
- # region: "Region",
2057
- # }
2058
- #
2059
1774
  # @!attribute [rw] owner_id
2060
1775
  # @return [String]
2061
1776
  #
@@ -2160,14 +1875,6 @@ module Aws::ElasticsearchService
2160
1875
  #
2161
1876
  # [1]: https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
2162
1877
  #
2163
- # @note When making an API call, you may pass Duration
2164
- # data as a hash:
2165
- #
2166
- # {
2167
- # value: 1,
2168
- # unit: "HOURS", # accepts HOURS
2169
- # }
2170
- #
2171
1878
  # @!attribute [rw] value
2172
1879
  # Integer to specify the value of a maintenance schedule duration. See
2173
1880
  # the [Developer Guide][1] for more information.
@@ -2201,17 +1908,6 @@ module Aws::ElasticsearchService
2201
1908
  #
2202
1909
  # [1]: http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs
2203
1910
  #
2204
- # @note When making an API call, you may pass EBSOptions
2205
- # data as a hash:
2206
- #
2207
- # {
2208
- # ebs_enabled: false,
2209
- # volume_type: "standard", # accepts standard, gp2, io1, gp3
2210
- # volume_size: 1,
2211
- # iops: 1,
2212
- # throughput: 1,
2213
- # }
2214
- #
2215
1911
  # @!attribute [rw] ebs_enabled
2216
1912
  # Specifies whether EBS-based storage is enabled.
2217
1913
  # @return [Boolean]
@@ -2263,27 +1959,6 @@ module Aws::ElasticsearchService
2263
1959
  # Specifies the configuration for the domain cluster, such as the type
2264
1960
  # and number of instances.
2265
1961
  #
2266
- # @note When making an API call, you may pass ElasticsearchClusterConfig
2267
- # data as a hash:
2268
- #
2269
- # {
2270
- # instance_type: "m3.medium.elasticsearch", # accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
2271
- # instance_count: 1,
2272
- # dedicated_master_enabled: false,
2273
- # zone_awareness_enabled: false,
2274
- # zone_awareness_config: {
2275
- # availability_zone_count: 1,
2276
- # },
2277
- # dedicated_master_type: "m3.medium.elasticsearch", # accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
2278
- # dedicated_master_count: 1,
2279
- # warm_enabled: false,
2280
- # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
2281
- # warm_count: 1,
2282
- # cold_storage_options: {
2283
- # enabled: false, # required
2284
- # },
2285
- # }
2286
- #
2287
1962
  # @!attribute [rw] instance_type
2288
1963
  # The instance type for an Elasticsearch cluster. UltraWarm instance
2289
1964
  # types are not supported for data instances.
@@ -2668,14 +2343,6 @@ module Aws::ElasticsearchService
2668
2343
 
2669
2344
  # Specifies the Encryption At Rest Options.
2670
2345
  #
2671
- # @note When making an API call, you may pass EncryptionAtRestOptions
2672
- # data as a hash:
2673
- #
2674
- # {
2675
- # enabled: false,
2676
- # kms_key_id: "KmsKeyId",
2677
- # }
2678
- #
2679
2346
  # @!attribute [rw] enabled
2680
2347
  # Specifies the option to enable Encryption At Rest.
2681
2348
  # @return [Boolean]
@@ -2729,14 +2396,6 @@ module Aws::ElasticsearchService
2729
2396
  # filter. A cross-cluster search connection must match at least one of
2730
2397
  # the specified values for it to be returned from an operation.
2731
2398
  #
2732
- # @note When making an API call, you may pass Filter
2733
- # data as a hash:
2734
- #
2735
- # {
2736
- # name: "NonEmptyString",
2737
- # values: ["NonEmptyString"],
2738
- # }
2739
- #
2740
2399
  # @!attribute [rw] name
2741
2400
  # Specifies the name of the filter.
2742
2401
  # @return [String]
@@ -2755,13 +2414,6 @@ module Aws::ElasticsearchService
2755
2414
  # Container for request parameters to `
2756
2415
  # GetCompatibleElasticsearchVersions ` operation.
2757
2416
  #
2758
- # @note When making an API call, you may pass GetCompatibleElasticsearchVersionsRequest
2759
- # data as a hash:
2760
- #
2761
- # {
2762
- # domain_name: "DomainName",
2763
- # }
2764
- #
2765
2417
  # @!attribute [rw] domain_name
2766
2418
  # The name of an Elasticsearch domain. Domain names are unique across
2767
2419
  # the domains owned by an account within an AWS region. Domain names
@@ -2792,15 +2444,6 @@ module Aws::ElasticsearchService
2792
2444
  # Container for request parameters to ` GetPackageVersionHistory `
2793
2445
  # operation.
2794
2446
  #
2795
- # @note When making an API call, you may pass GetPackageVersionHistoryRequest
2796
- # data as a hash:
2797
- #
2798
- # {
2799
- # package_id: "PackageID", # required
2800
- # max_results: 1,
2801
- # next_token: "NextToken",
2802
- # }
2803
- #
2804
2447
  # @!attribute [rw] package_id
2805
2448
  # Returns an audit history of versions of the package.
2806
2449
  # @return [String]
@@ -2846,15 +2489,6 @@ module Aws::ElasticsearchService
2846
2489
 
2847
2490
  # Container for request parameters to ` GetUpgradeHistory ` operation.
2848
2491
  #
2849
- # @note When making an API call, you may pass GetUpgradeHistoryRequest
2850
- # data as a hash:
2851
- #
2852
- # {
2853
- # domain_name: "DomainName", # required
2854
- # max_results: 1,
2855
- # next_token: "NextToken",
2856
- # }
2857
- #
2858
2492
  # @!attribute [rw] domain_name
2859
2493
  # The name of an Elasticsearch domain. Domain names are unique across
2860
2494
  # the domains owned by an account within an AWS region. Domain names
@@ -2902,13 +2536,6 @@ module Aws::ElasticsearchService
2902
2536
 
2903
2537
  # Container for request parameters to ` GetUpgradeStatus ` operation.
2904
2538
  #
2905
- # @note When making an API call, you may pass GetUpgradeStatusRequest
2906
- # data as a hash:
2907
- #
2908
- # {
2909
- # domain_name: "DomainName", # required
2910
- # }
2911
- #
2912
2539
  # @!attribute [rw] domain_name
2913
2540
  # The name of an Elasticsearch domain. Domain names are unique across
2914
2541
  # the domains owned by an account within an AWS region. Domain names
@@ -3095,13 +2722,6 @@ module Aws::ElasticsearchService
3095
2722
 
3096
2723
  # Container for the parameters to the `ListDomainNames` operation.
3097
2724
  #
3098
- # @note When making an API call, you may pass ListDomainNamesRequest
3099
- # data as a hash:
3100
- #
3101
- # {
3102
- # engine_type: "OpenSearch", # accepts OpenSearch, Elasticsearch
3103
- # }
3104
- #
3105
2725
  # @!attribute [rw] engine_type
3106
2726
  # Optional parameter to filter the output by domain engine type.
3107
2727
  # Acceptable values are 'Elasticsearch' and 'OpenSearch'.
@@ -3129,15 +2749,6 @@ module Aws::ElasticsearchService
3129
2749
  # Container for request parameters to ` ListDomainsForPackage `
3130
2750
  # operation.
3131
2751
  #
3132
- # @note When making an API call, you may pass ListDomainsForPackageRequest
3133
- # data as a hash:
3134
- #
3135
- # {
3136
- # package_id: "PackageID", # required
3137
- # max_results: 1,
3138
- # next_token: "NextToken",
3139
- # }
3140
- #
3141
2752
  # @!attribute [rw] package_id
3142
2753
  # The package for which to list domains.
3143
2754
  # @return [String]
@@ -3180,16 +2791,6 @@ module Aws::ElasticsearchService
3180
2791
  # Container for the parameters to the ` ListElasticsearchInstanceTypes `
3181
2792
  # operation.
3182
2793
  #
3183
- # @note When making an API call, you may pass ListElasticsearchInstanceTypesRequest
3184
- # data as a hash:
3185
- #
3186
- # {
3187
- # elasticsearch_version: "ElasticsearchVersionString", # required
3188
- # domain_name: "DomainName",
3189
- # max_results: 1,
3190
- # next_token: "NextToken",
3191
- # }
3192
- #
3193
2794
  # @!attribute [rw] elasticsearch_version
3194
2795
  # Version of Elasticsearch for which list of supported elasticsearch
3195
2796
  # instance types are needed.
@@ -3251,14 +2852,6 @@ module Aws::ElasticsearchService
3251
2852
  # received response does not contain a NextToken, then there are no more
3252
2853
  # results to retrieve.
3253
2854
  #
3254
- # @note When making an API call, you may pass ListElasticsearchVersionsRequest
3255
- # data as a hash:
3256
- #
3257
- # {
3258
- # max_results: 1,
3259
- # next_token: "NextToken",
3260
- # }
3261
- #
3262
2855
  # @!attribute [rw] max_results
3263
2856
  # Set this value to limit the number of results returned. Value
3264
2857
  # provided must be greater than 10 else it wont be honored.
@@ -3300,15 +2893,6 @@ module Aws::ElasticsearchService
3300
2893
  # Container for request parameters to ` ListPackagesForDomain `
3301
2894
  # operation.
3302
2895
  #
3303
- # @note When making an API call, you may pass ListPackagesForDomainRequest
3304
- # data as a hash:
3305
- #
3306
- # {
3307
- # domain_name: "DomainName", # required
3308
- # max_results: 1,
3309
- # next_token: "NextToken",
3310
- # }
3311
- #
3312
2896
  # @!attribute [rw] domain_name
3313
2897
  # The name of the domain for which you want to list associated
3314
2898
  # packages.
@@ -3355,13 +2939,6 @@ module Aws::ElasticsearchService
3355
2939
  # `ARN` for the Elasticsearch domain to which the tags are attached that
3356
2940
  # you want to view are attached.
3357
2941
  #
3358
- # @note When making an API call, you may pass ListTagsRequest
3359
- # data as a hash:
3360
- #
3361
- # {
3362
- # arn: "ARN", # required
3363
- # }
3364
- #
3365
2942
  # @!attribute [rw] arn
3366
2943
  # Specify the `ARN` for the Elasticsearch domain to which the tags are
3367
2944
  # attached that you want to view.
@@ -3386,6 +2963,115 @@ module Aws::ElasticsearchService
3386
2963
  include Aws::Structure
3387
2964
  end
3388
2965
 
2966
+ # Retrieves information about each principal that is allowed to access a
2967
+ # given Amazon OpenSearch Service domain through the use of an interface
2968
+ # VPC endpoint
2969
+ #
2970
+ # @!attribute [rw] domain_name
2971
+ # The name of the OpenSearch Service domain to retrieve access
2972
+ # information for.
2973
+ # @return [String]
2974
+ #
2975
+ # @!attribute [rw] next_token
2976
+ # Provides an identifier to allow retrieval of paginated results.
2977
+ # @return [String]
2978
+ #
2979
+ class ListVpcEndpointAccessRequest < Struct.new(
2980
+ :domain_name,
2981
+ :next_token)
2982
+ SENSITIVE = []
2983
+ include Aws::Structure
2984
+ end
2985
+
2986
+ # Container for response parameters to the `ListVpcEndpointAccess`
2987
+ # operation. Returns a list of accounts id and account type authorized
2988
+ # to manage VPC endpoints.
2989
+ #
2990
+ # @!attribute [rw] authorized_principal_list
2991
+ # List of `AuthorizedPrincipal` describing the details of the
2992
+ # permissions to manage VPC endpoints against the specified domain.
2993
+ # @return [Array<Types::AuthorizedPrincipal>]
2994
+ #
2995
+ # @!attribute [rw] next_token
2996
+ # Provides an identifier to allow retrieval of paginated results.
2997
+ # @return [String]
2998
+ #
2999
+ class ListVpcEndpointAccessResponse < Struct.new(
3000
+ :authorized_principal_list,
3001
+ :next_token)
3002
+ SENSITIVE = []
3003
+ include Aws::Structure
3004
+ end
3005
+
3006
+ # Container for request parameters to the `ListVpcEndpointsForDomain`
3007
+ # operation. Specifies the domain whose VPC endpoints will be listed.
3008
+ #
3009
+ # @!attribute [rw] domain_name
3010
+ # Name of the ElasticSearch domain whose VPC endpoints are to be
3011
+ # listed.
3012
+ # @return [String]
3013
+ #
3014
+ # @!attribute [rw] next_token
3015
+ # Provides an identifier to allow retrieval of paginated results.
3016
+ # @return [String]
3017
+ #
3018
+ class ListVpcEndpointsForDomainRequest < Struct.new(
3019
+ :domain_name,
3020
+ :next_token)
3021
+ SENSITIVE = []
3022
+ include Aws::Structure
3023
+ end
3024
+
3025
+ # Container for response parameters to the `ListVpcEndpointsForDomain`
3026
+ # operation. Returns a list containing summarized details of the VPC
3027
+ # endpoints.
3028
+ #
3029
+ # @!attribute [rw] vpc_endpoint_summary_list
3030
+ # Provides list of `VpcEndpointSummary` summarizing details of the VPC
3031
+ # endpoints.
3032
+ # @return [Array<Types::VpcEndpointSummary>]
3033
+ #
3034
+ # @!attribute [rw] next_token
3035
+ # Information about each endpoint associated with the domain.
3036
+ # @return [String]
3037
+ #
3038
+ class ListVpcEndpointsForDomainResponse < Struct.new(
3039
+ :vpc_endpoint_summary_list,
3040
+ :next_token)
3041
+ SENSITIVE = []
3042
+ include Aws::Structure
3043
+ end
3044
+
3045
+ # Container for request parameters to the `ListVpcEndpoints` operation.
3046
+ #
3047
+ # @!attribute [rw] next_token
3048
+ # Identifier to allow retrieval of paginated results.
3049
+ # @return [String]
3050
+ #
3051
+ class ListVpcEndpointsRequest < Struct.new(
3052
+ :next_token)
3053
+ SENSITIVE = []
3054
+ include Aws::Structure
3055
+ end
3056
+
3057
+ # Container for response parameters to the `ListVpcEndpoints` operation.
3058
+ # Returns a list containing summarized details of the VPC endpoints.
3059
+ #
3060
+ # @!attribute [rw] vpc_endpoint_summary_list
3061
+ # Information about each endpoint.
3062
+ # @return [Array<Types::VpcEndpointSummary>]
3063
+ #
3064
+ # @!attribute [rw] next_token
3065
+ # Provides an identifier to allow retrieval of paginated results.
3066
+ # @return [String]
3067
+ #
3068
+ class ListVpcEndpointsResponse < Struct.new(
3069
+ :vpc_endpoint_summary_list,
3070
+ :next_token)
3071
+ SENSITIVE = []
3072
+ include Aws::Structure
3073
+ end
3074
+
3389
3075
  # Log Publishing option that is set for given domain.
3390
3076
  # Attributes and their details: * CloudWatchLogsLogGroupArn: ARN of the
3391
3077
  # Cloudwatch log group to which
@@ -3393,14 +3079,6 @@ module Aws::ElasticsearchService
3393
3079
  # * Enabled: Whether the log publishing for given log type is enabled or
3394
3080
  # not
3395
3081
  #
3396
- # @note When making an API call, you may pass LogPublishingOption
3397
- # data as a hash:
3398
- #
3399
- # {
3400
- # cloud_watch_logs_log_group_arn: "CloudWatchLogsLogGroupArn",
3401
- # enabled: false,
3402
- # }
3403
- #
3404
3082
  # @!attribute [rw] cloud_watch_logs_log_group_arn
3405
3083
  # ARN of the Cloudwatch log group to which log needs to be published.
3406
3084
  # @return [String]
@@ -3438,15 +3116,6 @@ module Aws::ElasticsearchService
3438
3116
 
3439
3117
  # Credentials for the master user: username and password, ARN, or both.
3440
3118
  #
3441
- # @note When making an API call, you may pass MasterUserOptions
3442
- # data as a hash:
3443
- #
3444
- # {
3445
- # master_user_arn: "ARN",
3446
- # master_user_name: "Username",
3447
- # master_user_password: "Password",
3448
- # }
3449
- #
3450
3119
  # @!attribute [rw] master_user_arn
3451
3120
  # ARN for the master user (if IAM is enabled).
3452
3121
  # @return [String]
@@ -3471,13 +3140,6 @@ module Aws::ElasticsearchService
3471
3140
 
3472
3141
  # Specifies the node-to-node encryption options.
3473
3142
  #
3474
- # @note When making an API call, you may pass NodeToNodeEncryptionOptions
3475
- # data as a hash:
3476
- #
3477
- # {
3478
- # enabled: false,
3479
- # }
3480
- #
3481
3143
  # @!attribute [rw] enabled
3482
3144
  # Specify true to enable node-to-node encryption.
3483
3145
  # @return [Boolean]
@@ -3663,14 +3325,6 @@ module Aws::ElasticsearchService
3663
3325
  # The S3 location for importing the package specified as `S3BucketName`
3664
3326
  # and `S3Key`
3665
3327
  #
3666
- # @note When making an API call, you may pass PackageSource
3667
- # data as a hash:
3668
- #
3669
- # {
3670
- # s3_bucket_name: "S3BucketName",
3671
- # s3_key: "S3Key",
3672
- # }
3673
- #
3674
3328
  # @!attribute [rw] s3_bucket_name
3675
3329
  # Name of the bucket containing the package.
3676
3330
  # @return [String]
@@ -3711,15 +3365,6 @@ module Aws::ElasticsearchService
3711
3365
  # Container for parameters to
3712
3366
  # `PurchaseReservedElasticsearchInstanceOffering`
3713
3367
  #
3714
- # @note When making an API call, you may pass PurchaseReservedElasticsearchInstanceOfferingRequest
3715
- # data as a hash:
3716
- #
3717
- # {
3718
- # reserved_elasticsearch_instance_offering_id: "GUID", # required
3719
- # reservation_name: "ReservationToken", # required
3720
- # instance_count: 1,
3721
- # }
3722
- #
3723
3368
  # @!attribute [rw] reserved_elasticsearch_instance_offering_id
3724
3369
  # The ID of the reserved Elasticsearch instance offering to purchase.
3725
3370
  # @return [String]
@@ -3780,13 +3425,6 @@ module Aws::ElasticsearchService
3780
3425
  # Container for the parameters to the
3781
3426
  # `RejectInboundCrossClusterSearchConnection` operation.
3782
3427
  #
3783
- # @note When making an API call, you may pass RejectInboundCrossClusterSearchConnectionRequest
3784
- # data as a hash:
3785
- #
3786
- # {
3787
- # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
3788
- # }
3789
- #
3790
3428
  # @!attribute [rw] cross_cluster_search_connection_id
3791
3429
  # The id of the inbound connection that you want to reject.
3792
3430
  # @return [String]
@@ -3815,14 +3453,6 @@ module Aws::ElasticsearchService
3815
3453
  # the `ARN` for the Elasticsearch domain from which you want to remove
3816
3454
  # the specified `TagKey`.
3817
3455
  #
3818
- # @note When making an API call, you may pass RemoveTagsRequest
3819
- # data as a hash:
3820
- #
3821
- # {
3822
- # arn: "ARN", # required
3823
- # tag_keys: ["String"], # required
3824
- # }
3825
- #
3826
3456
  # @!attribute [rw] arn
3827
3457
  # Specifies the `ARN` for the Elasticsearch domain from which you want
3828
3458
  # to delete the specified tags.
@@ -3980,15 +3610,30 @@ module Aws::ElasticsearchService
3980
3610
  #
3981
3611
  class ResourceNotFoundException < Aws::EmptyStructure; end
3982
3612
 
3983
- # Specifies the SAML Identity Provider's information.
3613
+ # Revokes access to an Amazon OpenSearch Service domain that was
3614
+ # provided through an interface VPC endpoint.
3984
3615
  #
3985
- # @note When making an API call, you may pass SAMLIdp
3986
- # data as a hash:
3616
+ # @!attribute [rw] domain_name
3617
+ # The name of the OpenSearch Service domain.
3618
+ # @return [String]
3619
+ #
3620
+ # @!attribute [rw] account
3621
+ # The account ID to revoke access from.
3622
+ # @return [String]
3987
3623
  #
3988
- # {
3989
- # metadata_content: "SAMLMetadata", # required
3990
- # entity_id: "SAMLEntityId", # required
3991
- # }
3624
+ class RevokeVpcEndpointAccessRequest < Struct.new(
3625
+ :domain_name,
3626
+ :account)
3627
+ SENSITIVE = []
3628
+ include Aws::Structure
3629
+ end
3630
+
3631
+ # Container for response parameters to the `RevokeVpcEndpointAccess`
3632
+ # operation. The response body for this operation is empty.
3633
+ #
3634
+ class RevokeVpcEndpointAccessResponse < Aws::EmptyStructure; end
3635
+
3636
+ # Specifies the SAML Identity Provider's information.
3992
3637
  #
3993
3638
  # @!attribute [rw] metadata_content
3994
3639
  # The Metadata of the SAML application in xml format.
@@ -4007,22 +3652,6 @@ module Aws::ElasticsearchService
4007
3652
 
4008
3653
  # Specifies the SAML application configuration for the domain.
4009
3654
  #
4010
- # @note When making an API call, you may pass SAMLOptionsInput
4011
- # data as a hash:
4012
- #
4013
- # {
4014
- # enabled: false,
4015
- # idp: {
4016
- # metadata_content: "SAMLMetadata", # required
4017
- # entity_id: "SAMLEntityId", # required
4018
- # },
4019
- # master_user_name: "Username",
4020
- # master_backend_role: "BackendRole",
4021
- # subject_key: "String",
4022
- # roles_key: "String",
4023
- # session_timeout_minutes: 1,
4024
- # }
4025
- #
4026
3655
  # @!attribute [rw] enabled
4027
3656
  # True if SAML is enabled.
4028
3657
  # @return [Boolean]
@@ -4195,13 +3824,6 @@ module Aws::ElasticsearchService
4195
3824
  # automated snapshot of the specified Elasticsearch domain. Default
4196
3825
  # value is `0` hours.
4197
3826
  #
4198
- # @note When making an API call, you may pass SnapshotOptions
4199
- # data as a hash:
4200
- #
4201
- # {
4202
- # automated_snapshot_start_hour: 1,
4203
- # }
4204
- #
4205
3827
  # @!attribute [rw] automated_snapshot_start_hour
4206
3828
  # Specifies the time, in UTC format, when the service takes a daily
4207
3829
  # automated snapshot of the specified Elasticsearch domain. Default
@@ -4237,13 +3859,6 @@ module Aws::ElasticsearchService
4237
3859
  # name of the Elasticsearch domain that you wish to schedule a service
4238
3860
  # software update on.
4239
3861
  #
4240
- # @note When making an API call, you may pass StartElasticsearchServiceSoftwareUpdateRequest
4241
- # data as a hash:
4242
- #
4243
- # {
4244
- # domain_name: "DomainName", # required
4245
- # }
4246
- #
4247
3862
  # @!attribute [rw] domain_name
4248
3863
  # The name of the domain that you want to update to the latest service
4249
3864
  # software.
@@ -4327,14 +3942,6 @@ module Aws::ElasticsearchService
4327
3942
 
4328
3943
  # Specifies a key value pair for a resource tag.
4329
3944
  #
4330
- # @note When making an API call, you may pass Tag
4331
- # data as a hash:
4332
- #
4333
- # {
4334
- # key: "TagKey", # required
4335
- # value: "TagValue", # required
4336
- # }
4337
- #
4338
3945
  # @!attribute [rw] key
4339
3946
  # Specifies the `TagKey`, the name of the tag. Tag keys must be unique
4340
3947
  # for the Elasticsearch domain to which they are attached.
@@ -4358,111 +3965,6 @@ module Aws::ElasticsearchService
4358
3965
  # operation. Specifies the type and number of instances in the domain
4359
3966
  # cluster.
4360
3967
  #
4361
- # @note When making an API call, you may pass UpdateElasticsearchDomainConfigRequest
4362
- # data as a hash:
4363
- #
4364
- # {
4365
- # domain_name: "DomainName", # required
4366
- # elasticsearch_cluster_config: {
4367
- # instance_type: "m3.medium.elasticsearch", # accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
4368
- # instance_count: 1,
4369
- # dedicated_master_enabled: false,
4370
- # zone_awareness_enabled: false,
4371
- # zone_awareness_config: {
4372
- # availability_zone_count: 1,
4373
- # },
4374
- # dedicated_master_type: "m3.medium.elasticsearch", # accepts m3.medium.elasticsearch, m3.large.elasticsearch, m3.xlarge.elasticsearch, m3.2xlarge.elasticsearch, m4.large.elasticsearch, m4.xlarge.elasticsearch, m4.2xlarge.elasticsearch, m4.4xlarge.elasticsearch, m4.10xlarge.elasticsearch, m5.large.elasticsearch, m5.xlarge.elasticsearch, m5.2xlarge.elasticsearch, m5.4xlarge.elasticsearch, m5.12xlarge.elasticsearch, r5.large.elasticsearch, r5.xlarge.elasticsearch, r5.2xlarge.elasticsearch, r5.4xlarge.elasticsearch, r5.12xlarge.elasticsearch, c5.large.elasticsearch, c5.xlarge.elasticsearch, c5.2xlarge.elasticsearch, c5.4xlarge.elasticsearch, c5.9xlarge.elasticsearch, c5.18xlarge.elasticsearch, ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch, t2.micro.elasticsearch, t2.small.elasticsearch, t2.medium.elasticsearch, r3.large.elasticsearch, r3.xlarge.elasticsearch, r3.2xlarge.elasticsearch, r3.4xlarge.elasticsearch, r3.8xlarge.elasticsearch, i2.xlarge.elasticsearch, i2.2xlarge.elasticsearch, d2.xlarge.elasticsearch, d2.2xlarge.elasticsearch, d2.4xlarge.elasticsearch, d2.8xlarge.elasticsearch, c4.large.elasticsearch, c4.xlarge.elasticsearch, c4.2xlarge.elasticsearch, c4.4xlarge.elasticsearch, c4.8xlarge.elasticsearch, r4.large.elasticsearch, r4.xlarge.elasticsearch, r4.2xlarge.elasticsearch, r4.4xlarge.elasticsearch, r4.8xlarge.elasticsearch, r4.16xlarge.elasticsearch, i3.large.elasticsearch, i3.xlarge.elasticsearch, i3.2xlarge.elasticsearch, i3.4xlarge.elasticsearch, i3.8xlarge.elasticsearch, i3.16xlarge.elasticsearch
4375
- # dedicated_master_count: 1,
4376
- # warm_enabled: false,
4377
- # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
4378
- # warm_count: 1,
4379
- # cold_storage_options: {
4380
- # enabled: false, # required
4381
- # },
4382
- # },
4383
- # ebs_options: {
4384
- # ebs_enabled: false,
4385
- # volume_type: "standard", # accepts standard, gp2, io1, gp3
4386
- # volume_size: 1,
4387
- # iops: 1,
4388
- # throughput: 1,
4389
- # },
4390
- # snapshot_options: {
4391
- # automated_snapshot_start_hour: 1,
4392
- # },
4393
- # vpc_options: {
4394
- # subnet_ids: ["String"],
4395
- # security_group_ids: ["String"],
4396
- # },
4397
- # cognito_options: {
4398
- # enabled: false,
4399
- # user_pool_id: "UserPoolId",
4400
- # identity_pool_id: "IdentityPoolId",
4401
- # role_arn: "RoleArn",
4402
- # },
4403
- # advanced_options: {
4404
- # "String" => "String",
4405
- # },
4406
- # access_policies: "PolicyDocument",
4407
- # log_publishing_options: {
4408
- # "INDEX_SLOW_LOGS" => {
4409
- # cloud_watch_logs_log_group_arn: "CloudWatchLogsLogGroupArn",
4410
- # enabled: false,
4411
- # },
4412
- # },
4413
- # domain_endpoint_options: {
4414
- # enforce_https: false,
4415
- # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
4416
- # custom_endpoint_enabled: false,
4417
- # custom_endpoint: "DomainNameFqdn",
4418
- # custom_endpoint_certificate_arn: "ARN",
4419
- # },
4420
- # advanced_security_options: {
4421
- # enabled: false,
4422
- # internal_user_database_enabled: false,
4423
- # master_user_options: {
4424
- # master_user_arn: "ARN",
4425
- # master_user_name: "Username",
4426
- # master_user_password: "Password",
4427
- # },
4428
- # saml_options: {
4429
- # enabled: false,
4430
- # idp: {
4431
- # metadata_content: "SAMLMetadata", # required
4432
- # entity_id: "SAMLEntityId", # required
4433
- # },
4434
- # master_user_name: "Username",
4435
- # master_backend_role: "BackendRole",
4436
- # subject_key: "String",
4437
- # roles_key: "String",
4438
- # session_timeout_minutes: 1,
4439
- # },
4440
- # anonymous_auth_enabled: false,
4441
- # },
4442
- # node_to_node_encryption_options: {
4443
- # enabled: false,
4444
- # },
4445
- # encryption_at_rest_options: {
4446
- # enabled: false,
4447
- # kms_key_id: "KmsKeyId",
4448
- # },
4449
- # auto_tune_options: {
4450
- # desired_state: "ENABLED", # accepts ENABLED, DISABLED
4451
- # rollback_on_disable: "NO_ROLLBACK", # accepts NO_ROLLBACK, DEFAULT_ROLLBACK
4452
- # maintenance_schedules: [
4453
- # {
4454
- # start_at: Time.now,
4455
- # duration: {
4456
- # value: 1,
4457
- # unit: "HOURS", # accepts HOURS
4458
- # },
4459
- # cron_expression_for_recurrence: "String",
4460
- # },
4461
- # ],
4462
- # },
4463
- # dry_run: false,
4464
- # }
4465
- #
4466
3968
  # @!attribute [rw] domain_name
4467
3969
  # The name of the Elasticsearch domain that you are updating.
4468
3970
  # @return [String]
@@ -4591,19 +4093,6 @@ module Aws::ElasticsearchService
4591
4093
 
4592
4094
  # Container for request parameters to ` UpdatePackage ` operation.
4593
4095
  #
4594
- # @note When making an API call, you may pass UpdatePackageRequest
4595
- # data as a hash:
4596
- #
4597
- # {
4598
- # package_id: "PackageID", # required
4599
- # package_source: { # required
4600
- # s3_bucket_name: "S3BucketName",
4601
- # s3_key: "S3Key",
4602
- # },
4603
- # package_description: "PackageDescription",
4604
- # commit_message: "CommitMessage",
4605
- # }
4606
- #
4607
4096
  # @!attribute [rw] package_id
4608
4097
  # Unique identifier for the package.
4609
4098
  # @return [String]
@@ -4643,17 +4132,38 @@ module Aws::ElasticsearchService
4643
4132
  include Aws::Structure
4644
4133
  end
4645
4134
 
4646
- # Container for request parameters to ` UpgradeElasticsearchDomain `
4647
- # operation.
4135
+ # Modifies an Amazon OpenSearch Service-managed interface VPC endpoint.
4136
+ #
4137
+ # @!attribute [rw] vpc_endpoint_id
4138
+ # Unique identifier of the VPC endpoint to be updated.
4139
+ # @return [String]
4648
4140
  #
4649
- # @note When making an API call, you may pass UpgradeElasticsearchDomainRequest
4650
- # data as a hash:
4141
+ # @!attribute [rw] vpc_options
4142
+ # The security groups and/or subnets to add, remove, or modify.
4143
+ # @return [Types::VPCOptions]
4144
+ #
4145
+ class UpdateVpcEndpointRequest < Struct.new(
4146
+ :vpc_endpoint_id,
4147
+ :vpc_options)
4148
+ SENSITIVE = []
4149
+ include Aws::Structure
4150
+ end
4151
+
4152
+ # Contains the configuration and status of the VPC endpoint being
4153
+ # updated.
4651
4154
  #
4652
- # {
4653
- # domain_name: "DomainName", # required
4654
- # target_version: "ElasticsearchVersionString", # required
4655
- # perform_check_only: false,
4656
- # }
4155
+ # @!attribute [rw] vpc_endpoint
4156
+ # The endpoint to be updated.
4157
+ # @return [Types::VpcEndpoint]
4158
+ #
4159
+ class UpdateVpcEndpointResponse < Struct.new(
4160
+ :vpc_endpoint)
4161
+ SENSITIVE = []
4162
+ include Aws::Structure
4163
+ end
4164
+
4165
+ # Container for request parameters to ` UpgradeElasticsearchDomain `
4166
+ # operation.
4657
4167
  #
4658
4168
  # @!attribute [rw] domain_name
4659
4169
  # The name of an Elasticsearch domain. Domain names are unique across
@@ -4847,14 +4357,6 @@ module Aws::ElasticsearchService
4847
4357
  #
4848
4358
  # [1]: http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-vpc.html
4849
4359
  #
4850
- # @note When making an API call, you may pass VPCOptions
4851
- # data as a hash:
4852
- #
4853
- # {
4854
- # subnet_ids: ["String"],
4855
- # security_group_ids: ["String"],
4856
- # }
4857
- #
4858
4360
  # @!attribute [rw] subnet_ids
4859
4361
  # Specifies the subnets for VPC endpoint.
4860
4362
  # @return [Array<String>]
@@ -4875,15 +4377,100 @@ module Aws::ElasticsearchService
4875
4377
  #
4876
4378
  class ValidationException < Aws::EmptyStructure; end
4877
4379
 
4878
- # Specifies the zone awareness configuration for the domain cluster,
4879
- # such as the number of availability zones.
4380
+ # The connection endpoint for connecting to an Amazon OpenSearch Service
4381
+ # domain through a proxy.
4880
4382
  #
4881
- # @note When making an API call, you may pass ZoneAwarenessConfig
4882
- # data as a hash:
4383
+ # @!attribute [rw] vpc_endpoint_id
4384
+ # The unique identifier of the endpoint.
4385
+ # @return [String]
4386
+ #
4387
+ # @!attribute [rw] vpc_endpoint_owner
4388
+ # The creator of the endpoint.
4389
+ # @return [String]
4390
+ #
4391
+ # @!attribute [rw] domain_arn
4392
+ # The Amazon Resource Name (ARN) of the domain associated with the
4393
+ # endpoint.
4394
+ # @return [String]
4883
4395
  #
4884
- # {
4885
- # availability_zone_count: 1,
4886
- # }
4396
+ # @!attribute [rw] vpc_options
4397
+ # Options to specify the subnets and security groups for an Amazon
4398
+ # OpenSearch Service VPC endpoint.
4399
+ # @return [Types::VPCDerivedInfo]
4400
+ #
4401
+ # @!attribute [rw] status
4402
+ # The current status of the endpoint.
4403
+ # @return [String]
4404
+ #
4405
+ # @!attribute [rw] endpoint
4406
+ # The connection endpoint ID for connecting to the domain.
4407
+ # @return [String]
4408
+ #
4409
+ class VpcEndpoint < Struct.new(
4410
+ :vpc_endpoint_id,
4411
+ :vpc_endpoint_owner,
4412
+ :domain_arn,
4413
+ :vpc_options,
4414
+ :status,
4415
+ :endpoint)
4416
+ SENSITIVE = []
4417
+ include Aws::Structure
4418
+ end
4419
+
4420
+ # Error information when attempting to describe an Amazon OpenSearch
4421
+ # Service-managed VPC endpoint.
4422
+ #
4423
+ # @!attribute [rw] vpc_endpoint_id
4424
+ # The unique identifier of the endpoint.
4425
+ # @return [String]
4426
+ #
4427
+ # @!attribute [rw] error_code
4428
+ # The code associated with the error.
4429
+ # @return [String]
4430
+ #
4431
+ # @!attribute [rw] error_message
4432
+ # A message describing the error.
4433
+ # @return [String]
4434
+ #
4435
+ class VpcEndpointError < Struct.new(
4436
+ :vpc_endpoint_id,
4437
+ :error_code,
4438
+ :error_message)
4439
+ SENSITIVE = []
4440
+ include Aws::Structure
4441
+ end
4442
+
4443
+ # Summary information for an Amazon OpenSearch Service-managed VPC
4444
+ # endpoint.
4445
+ #
4446
+ # @!attribute [rw] vpc_endpoint_id
4447
+ # The unique identifier of the endpoint.
4448
+ # @return [String]
4449
+ #
4450
+ # @!attribute [rw] vpc_endpoint_owner
4451
+ # The creator of the endpoint.
4452
+ # @return [String]
4453
+ #
4454
+ # @!attribute [rw] domain_arn
4455
+ # The Amazon Resource Name (ARN) of the domain associated with the
4456
+ # endpoint.
4457
+ # @return [String]
4458
+ #
4459
+ # @!attribute [rw] status
4460
+ # The current status of the endpoint.
4461
+ # @return [String]
4462
+ #
4463
+ class VpcEndpointSummary < Struct.new(
4464
+ :vpc_endpoint_id,
4465
+ :vpc_endpoint_owner,
4466
+ :domain_arn,
4467
+ :status)
4468
+ SENSITIVE = []
4469
+ include Aws::Structure
4470
+ end
4471
+
4472
+ # Specifies the zone awareness configuration for the domain cluster,
4473
+ # such as the number of availability zones.
4887
4474
  #
4888
4475
  # @!attribute [rw] availability_zone_count
4889
4476
  # An integer value to indicate the number of availability zones for a