aws-sdk-elasticsearchservice 1.80.0 → 1.81.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1244 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::ElasticsearchService
9
+ module Types
10
+
11
+ class AcceptInboundCrossClusterSearchConnectionRequest
12
+ attr_accessor cross_cluster_search_connection_id: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AcceptInboundCrossClusterSearchConnectionResponse
17
+ attr_accessor cross_cluster_search_connection: Types::InboundCrossClusterSearchConnection
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class AccessDeniedException < Aws::EmptyStructure
22
+ end
23
+
24
+ class AccessPoliciesStatus
25
+ attr_accessor options: ::String
26
+ attr_accessor status: Types::OptionStatus
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class AddTagsRequest
31
+ attr_accessor arn: ::String
32
+ attr_accessor tag_list: ::Array[Types::Tag]
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class AdditionalLimit
37
+ attr_accessor limit_name: ::String
38
+ attr_accessor limit_values: ::Array[::String]
39
+ SENSITIVE: []
40
+ end
41
+
42
+ class AdvancedOptionsStatus
43
+ attr_accessor options: ::Hash[::String, ::String]
44
+ attr_accessor status: Types::OptionStatus
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class AdvancedSecurityOptions
49
+ attr_accessor enabled: bool
50
+ attr_accessor internal_user_database_enabled: bool
51
+ attr_accessor saml_options: Types::SAMLOptionsOutput
52
+ attr_accessor anonymous_auth_disable_date: ::Time
53
+ attr_accessor anonymous_auth_enabled: bool
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class AdvancedSecurityOptionsInput
58
+ attr_accessor enabled: bool
59
+ attr_accessor internal_user_database_enabled: bool
60
+ attr_accessor master_user_options: Types::MasterUserOptions
61
+ attr_accessor saml_options: Types::SAMLOptionsInput
62
+ attr_accessor anonymous_auth_enabled: bool
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class AdvancedSecurityOptionsStatus
67
+ attr_accessor options: Types::AdvancedSecurityOptions
68
+ attr_accessor status: Types::OptionStatus
69
+ SENSITIVE: []
70
+ end
71
+
72
+ class AssociatePackageRequest
73
+ attr_accessor package_id: ::String
74
+ attr_accessor domain_name: ::String
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class AssociatePackageResponse
79
+ attr_accessor domain_package_details: Types::DomainPackageDetails
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class AuthorizeVpcEndpointAccessRequest
84
+ attr_accessor domain_name: ::String
85
+ attr_accessor account: ::String
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class AuthorizeVpcEndpointAccessResponse
90
+ attr_accessor authorized_principal: Types::AuthorizedPrincipal
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class AuthorizedPrincipal
95
+ attr_accessor principal_type: ("AWS_ACCOUNT" | "AWS_SERVICE")
96
+ attr_accessor principal: ::String
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class AutoTune
101
+ attr_accessor auto_tune_type: ("SCHEDULED_ACTION")
102
+ attr_accessor auto_tune_details: Types::AutoTuneDetails
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class AutoTuneDetails
107
+ attr_accessor scheduled_auto_tune_details: Types::ScheduledAutoTuneDetails
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class AutoTuneMaintenanceSchedule
112
+ attr_accessor start_at: ::Time
113
+ attr_accessor duration: Types::Duration
114
+ attr_accessor cron_expression_for_recurrence: ::String
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class AutoTuneOptions
119
+ attr_accessor desired_state: ("ENABLED" | "DISABLED")
120
+ attr_accessor rollback_on_disable: ("NO_ROLLBACK" | "DEFAULT_ROLLBACK")
121
+ attr_accessor maintenance_schedules: ::Array[Types::AutoTuneMaintenanceSchedule]
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class AutoTuneOptionsInput
126
+ attr_accessor desired_state: ("ENABLED" | "DISABLED")
127
+ attr_accessor maintenance_schedules: ::Array[Types::AutoTuneMaintenanceSchedule]
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class AutoTuneOptionsOutput
132
+ attr_accessor state: ("ENABLED" | "DISABLED" | "ENABLE_IN_PROGRESS" | "DISABLE_IN_PROGRESS" | "DISABLED_AND_ROLLBACK_SCHEDULED" | "DISABLED_AND_ROLLBACK_IN_PROGRESS" | "DISABLED_AND_ROLLBACK_COMPLETE" | "DISABLED_AND_ROLLBACK_ERROR" | "ERROR")
133
+ attr_accessor error_message: ::String
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class AutoTuneOptionsStatus
138
+ attr_accessor options: Types::AutoTuneOptions
139
+ attr_accessor status: Types::AutoTuneStatus
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class AutoTuneStatus
144
+ attr_accessor creation_date: ::Time
145
+ attr_accessor update_date: ::Time
146
+ attr_accessor update_version: ::Integer
147
+ attr_accessor state: ("ENABLED" | "DISABLED" | "ENABLE_IN_PROGRESS" | "DISABLE_IN_PROGRESS" | "DISABLED_AND_ROLLBACK_SCHEDULED" | "DISABLED_AND_ROLLBACK_IN_PROGRESS" | "DISABLED_AND_ROLLBACK_COMPLETE" | "DISABLED_AND_ROLLBACK_ERROR" | "ERROR")
148
+ attr_accessor error_message: ::String
149
+ attr_accessor pending_deletion: bool
150
+ SENSITIVE: []
151
+ end
152
+
153
+ class BaseException
154
+ attr_accessor message: ::String
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class CancelElasticsearchServiceSoftwareUpdateRequest
159
+ attr_accessor domain_name: ::String
160
+ SENSITIVE: []
161
+ end
162
+
163
+ class CancelElasticsearchServiceSoftwareUpdateResponse
164
+ attr_accessor service_software_options: Types::ServiceSoftwareOptions
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class ChangeProgressDetails
169
+ attr_accessor change_id: ::String
170
+ attr_accessor message: ::String
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class ChangeProgressStage
175
+ attr_accessor name: ::String
176
+ attr_accessor status: ::String
177
+ attr_accessor description: ::String
178
+ attr_accessor last_updated: ::Time
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class ChangeProgressStatusDetails
183
+ attr_accessor change_id: ::String
184
+ attr_accessor start_time: ::Time
185
+ attr_accessor status: ("PENDING" | "PROCESSING" | "COMPLETED" | "FAILED")
186
+ attr_accessor pending_properties: ::Array[::String]
187
+ attr_accessor completed_properties: ::Array[::String]
188
+ attr_accessor total_number_of_stages: ::Integer
189
+ attr_accessor change_progress_stages: ::Array[Types::ChangeProgressStage]
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class CognitoOptions
194
+ attr_accessor enabled: bool
195
+ attr_accessor user_pool_id: ::String
196
+ attr_accessor identity_pool_id: ::String
197
+ attr_accessor role_arn: ::String
198
+ SENSITIVE: []
199
+ end
200
+
201
+ class CognitoOptionsStatus
202
+ attr_accessor options: Types::CognitoOptions
203
+ attr_accessor status: Types::OptionStatus
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class ColdStorageOptions
208
+ attr_accessor enabled: bool
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class CompatibleVersionsMap
213
+ attr_accessor source_version: ::String
214
+ attr_accessor target_versions: ::Array[::String]
215
+ SENSITIVE: []
216
+ end
217
+
218
+ class ConflictException < Aws::EmptyStructure
219
+ end
220
+
221
+ class CreateElasticsearchDomainRequest
222
+ attr_accessor domain_name: ::String
223
+ attr_accessor elasticsearch_version: ::String
224
+ attr_accessor elasticsearch_cluster_config: Types::ElasticsearchClusterConfig
225
+ attr_accessor ebs_options: Types::EBSOptions
226
+ attr_accessor access_policies: ::String
227
+ attr_accessor snapshot_options: Types::SnapshotOptions
228
+ attr_accessor vpc_options: Types::VPCOptions
229
+ attr_accessor cognito_options: Types::CognitoOptions
230
+ attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
231
+ attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptions
232
+ attr_accessor advanced_options: ::Hash[::String, ::String]
233
+ attr_accessor log_publishing_options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
234
+ attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
235
+ attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsInput
236
+ attr_accessor auto_tune_options: Types::AutoTuneOptionsInput
237
+ attr_accessor tag_list: ::Array[Types::Tag]
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class CreateElasticsearchDomainResponse
242
+ attr_accessor domain_status: Types::ElasticsearchDomainStatus
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class CreateOutboundCrossClusterSearchConnectionRequest
247
+ attr_accessor source_domain_info: Types::DomainInformation
248
+ attr_accessor destination_domain_info: Types::DomainInformation
249
+ attr_accessor connection_alias: ::String
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class CreateOutboundCrossClusterSearchConnectionResponse
254
+ attr_accessor source_domain_info: Types::DomainInformation
255
+ attr_accessor destination_domain_info: Types::DomainInformation
256
+ attr_accessor connection_alias: ::String
257
+ attr_accessor connection_status: Types::OutboundCrossClusterSearchConnectionStatus
258
+ attr_accessor cross_cluster_search_connection_id: ::String
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class CreatePackageRequest
263
+ attr_accessor package_name: ::String
264
+ attr_accessor package_type: ("TXT-DICTIONARY")
265
+ attr_accessor package_description: ::String
266
+ attr_accessor package_source: Types::PackageSource
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class CreatePackageResponse
271
+ attr_accessor package_details: Types::PackageDetails
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class CreateVpcEndpointRequest
276
+ attr_accessor domain_arn: ::String
277
+ attr_accessor vpc_options: Types::VPCOptions
278
+ attr_accessor client_token: ::String
279
+ SENSITIVE: []
280
+ end
281
+
282
+ class CreateVpcEndpointResponse
283
+ attr_accessor vpc_endpoint: Types::VpcEndpoint
284
+ SENSITIVE: []
285
+ end
286
+
287
+ class DeleteElasticsearchDomainRequest
288
+ attr_accessor domain_name: ::String
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class DeleteElasticsearchDomainResponse
293
+ attr_accessor domain_status: Types::ElasticsearchDomainStatus
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class DeleteInboundCrossClusterSearchConnectionRequest
298
+ attr_accessor cross_cluster_search_connection_id: ::String
299
+ SENSITIVE: []
300
+ end
301
+
302
+ class DeleteInboundCrossClusterSearchConnectionResponse
303
+ attr_accessor cross_cluster_search_connection: Types::InboundCrossClusterSearchConnection
304
+ SENSITIVE: []
305
+ end
306
+
307
+ class DeleteOutboundCrossClusterSearchConnectionRequest
308
+ attr_accessor cross_cluster_search_connection_id: ::String
309
+ SENSITIVE: []
310
+ end
311
+
312
+ class DeleteOutboundCrossClusterSearchConnectionResponse
313
+ attr_accessor cross_cluster_search_connection: Types::OutboundCrossClusterSearchConnection
314
+ SENSITIVE: []
315
+ end
316
+
317
+ class DeletePackageRequest
318
+ attr_accessor package_id: ::String
319
+ SENSITIVE: []
320
+ end
321
+
322
+ class DeletePackageResponse
323
+ attr_accessor package_details: Types::PackageDetails
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class DeleteVpcEndpointRequest
328
+ attr_accessor vpc_endpoint_id: ::String
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class DeleteVpcEndpointResponse
333
+ attr_accessor vpc_endpoint_summary: Types::VpcEndpointSummary
334
+ SENSITIVE: []
335
+ end
336
+
337
+ class DescribeDomainAutoTunesRequest
338
+ attr_accessor domain_name: ::String
339
+ attr_accessor max_results: ::Integer
340
+ attr_accessor next_token: ::String
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class DescribeDomainAutoTunesResponse
345
+ attr_accessor auto_tunes: ::Array[Types::AutoTune]
346
+ attr_accessor next_token: ::String
347
+ SENSITIVE: []
348
+ end
349
+
350
+ class DescribeDomainChangeProgressRequest
351
+ attr_accessor domain_name: ::String
352
+ attr_accessor change_id: ::String
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class DescribeDomainChangeProgressResponse
357
+ attr_accessor change_progress_status: Types::ChangeProgressStatusDetails
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class DescribeElasticsearchDomainConfigRequest
362
+ attr_accessor domain_name: ::String
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class DescribeElasticsearchDomainConfigResponse
367
+ attr_accessor domain_config: Types::ElasticsearchDomainConfig
368
+ SENSITIVE: []
369
+ end
370
+
371
+ class DescribeElasticsearchDomainRequest
372
+ attr_accessor domain_name: ::String
373
+ SENSITIVE: []
374
+ end
375
+
376
+ class DescribeElasticsearchDomainResponse
377
+ attr_accessor domain_status: Types::ElasticsearchDomainStatus
378
+ SENSITIVE: []
379
+ end
380
+
381
+ class DescribeElasticsearchDomainsRequest
382
+ attr_accessor domain_names: ::Array[::String]
383
+ SENSITIVE: []
384
+ end
385
+
386
+ class DescribeElasticsearchDomainsResponse
387
+ attr_accessor domain_status_list: ::Array[Types::ElasticsearchDomainStatus]
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class DescribeElasticsearchInstanceTypeLimitsRequest
392
+ attr_accessor domain_name: ::String
393
+ attr_accessor instance_type: ("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")
394
+ attr_accessor elasticsearch_version: ::String
395
+ SENSITIVE: []
396
+ end
397
+
398
+ class DescribeElasticsearchInstanceTypeLimitsResponse
399
+ attr_accessor limits_by_role: ::Hash[::String, Types::Limits]
400
+ SENSITIVE: []
401
+ end
402
+
403
+ class DescribeInboundCrossClusterSearchConnectionsRequest
404
+ attr_accessor filters: ::Array[Types::Filter]
405
+ attr_accessor max_results: ::Integer
406
+ attr_accessor next_token: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class DescribeInboundCrossClusterSearchConnectionsResponse
411
+ attr_accessor cross_cluster_search_connections: ::Array[Types::InboundCrossClusterSearchConnection]
412
+ attr_accessor next_token: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class DescribeOutboundCrossClusterSearchConnectionsRequest
417
+ attr_accessor filters: ::Array[Types::Filter]
418
+ attr_accessor max_results: ::Integer
419
+ attr_accessor next_token: ::String
420
+ SENSITIVE: []
421
+ end
422
+
423
+ class DescribeOutboundCrossClusterSearchConnectionsResponse
424
+ attr_accessor cross_cluster_search_connections: ::Array[Types::OutboundCrossClusterSearchConnection]
425
+ attr_accessor next_token: ::String
426
+ SENSITIVE: []
427
+ end
428
+
429
+ class DescribePackagesFilter
430
+ attr_accessor name: ("PackageID" | "PackageName" | "PackageStatus")
431
+ attr_accessor value: ::Array[::String]
432
+ SENSITIVE: []
433
+ end
434
+
435
+ class DescribePackagesRequest
436
+ attr_accessor filters: ::Array[Types::DescribePackagesFilter]
437
+ attr_accessor max_results: ::Integer
438
+ attr_accessor next_token: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class DescribePackagesResponse
443
+ attr_accessor package_details_list: ::Array[Types::PackageDetails]
444
+ attr_accessor next_token: ::String
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class DescribeReservedElasticsearchInstanceOfferingsRequest
449
+ attr_accessor reserved_elasticsearch_instance_offering_id: ::String
450
+ attr_accessor max_results: ::Integer
451
+ attr_accessor next_token: ::String
452
+ SENSITIVE: []
453
+ end
454
+
455
+ class DescribeReservedElasticsearchInstanceOfferingsResponse
456
+ attr_accessor next_token: ::String
457
+ attr_accessor reserved_elasticsearch_instance_offerings: ::Array[Types::ReservedElasticsearchInstanceOffering]
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class DescribeReservedElasticsearchInstancesRequest
462
+ attr_accessor reserved_elasticsearch_instance_id: ::String
463
+ attr_accessor max_results: ::Integer
464
+ attr_accessor next_token: ::String
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class DescribeReservedElasticsearchInstancesResponse
469
+ attr_accessor next_token: ::String
470
+ attr_accessor reserved_elasticsearch_instances: ::Array[Types::ReservedElasticsearchInstance]
471
+ SENSITIVE: []
472
+ end
473
+
474
+ class DescribeVpcEndpointsRequest
475
+ attr_accessor vpc_endpoint_ids: ::Array[::String]
476
+ SENSITIVE: []
477
+ end
478
+
479
+ class DescribeVpcEndpointsResponse
480
+ attr_accessor vpc_endpoints: ::Array[Types::VpcEndpoint]
481
+ attr_accessor vpc_endpoint_errors: ::Array[Types::VpcEndpointError]
482
+ SENSITIVE: []
483
+ end
484
+
485
+ class DisabledOperationException < Aws::EmptyStructure
486
+ end
487
+
488
+ class DissociatePackageRequest
489
+ attr_accessor package_id: ::String
490
+ attr_accessor domain_name: ::String
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class DissociatePackageResponse
495
+ attr_accessor domain_package_details: Types::DomainPackageDetails
496
+ SENSITIVE: []
497
+ end
498
+
499
+ class DomainEndpointOptions
500
+ attr_accessor enforce_https: bool
501
+ attr_accessor tls_security_policy: ("Policy-Min-TLS-1-0-2019-07" | "Policy-Min-TLS-1-2-2019-07" | "Policy-Min-TLS-1-2-PFS-2023-10")
502
+ attr_accessor custom_endpoint_enabled: bool
503
+ attr_accessor custom_endpoint: ::String
504
+ attr_accessor custom_endpoint_certificate_arn: ::String
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class DomainEndpointOptionsStatus
509
+ attr_accessor options: Types::DomainEndpointOptions
510
+ attr_accessor status: Types::OptionStatus
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class DomainInfo
515
+ attr_accessor domain_name: ::String
516
+ attr_accessor engine_type: ("OpenSearch" | "Elasticsearch")
517
+ SENSITIVE: []
518
+ end
519
+
520
+ class DomainInformation
521
+ attr_accessor owner_id: ::String
522
+ attr_accessor domain_name: ::String
523
+ attr_accessor region: ::String
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class DomainPackageDetails
528
+ attr_accessor package_id: ::String
529
+ attr_accessor package_name: ::String
530
+ attr_accessor package_type: ("TXT-DICTIONARY")
531
+ attr_accessor last_updated: ::Time
532
+ attr_accessor domain_name: ::String
533
+ attr_accessor domain_package_status: ("ASSOCIATING" | "ASSOCIATION_FAILED" | "ACTIVE" | "DISSOCIATING" | "DISSOCIATION_FAILED")
534
+ attr_accessor package_version: ::String
535
+ attr_accessor reference_path: ::String
536
+ attr_accessor error_details: Types::ErrorDetails
537
+ SENSITIVE: []
538
+ end
539
+
540
+ class DryRunResults
541
+ attr_accessor deployment_type: ::String
542
+ attr_accessor message: ::String
543
+ SENSITIVE: []
544
+ end
545
+
546
+ class Duration
547
+ attr_accessor value: ::Integer
548
+ attr_accessor unit: ("HOURS")
549
+ SENSITIVE: []
550
+ end
551
+
552
+ class EBSOptions
553
+ attr_accessor ebs_enabled: bool
554
+ attr_accessor volume_type: ("standard" | "gp2" | "io1" | "gp3")
555
+ attr_accessor volume_size: ::Integer
556
+ attr_accessor iops: ::Integer
557
+ attr_accessor throughput: ::Integer
558
+ SENSITIVE: []
559
+ end
560
+
561
+ class EBSOptionsStatus
562
+ attr_accessor options: Types::EBSOptions
563
+ attr_accessor status: Types::OptionStatus
564
+ SENSITIVE: []
565
+ end
566
+
567
+ class ElasticsearchClusterConfig
568
+ attr_accessor instance_type: ("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")
569
+ attr_accessor instance_count: ::Integer
570
+ attr_accessor dedicated_master_enabled: bool
571
+ attr_accessor zone_awareness_enabled: bool
572
+ attr_accessor zone_awareness_config: Types::ZoneAwarenessConfig
573
+ attr_accessor dedicated_master_type: ("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")
574
+ attr_accessor dedicated_master_count: ::Integer
575
+ attr_accessor warm_enabled: bool
576
+ attr_accessor warm_type: ("ultrawarm1.medium.elasticsearch" | "ultrawarm1.large.elasticsearch")
577
+ attr_accessor warm_count: ::Integer
578
+ attr_accessor cold_storage_options: Types::ColdStorageOptions
579
+ SENSITIVE: []
580
+ end
581
+
582
+ class ElasticsearchClusterConfigStatus
583
+ attr_accessor options: Types::ElasticsearchClusterConfig
584
+ attr_accessor status: Types::OptionStatus
585
+ SENSITIVE: []
586
+ end
587
+
588
+ class ElasticsearchDomainConfig
589
+ attr_accessor elasticsearch_version: Types::ElasticsearchVersionStatus
590
+ attr_accessor elasticsearch_cluster_config: Types::ElasticsearchClusterConfigStatus
591
+ attr_accessor ebs_options: Types::EBSOptionsStatus
592
+ attr_accessor access_policies: Types::AccessPoliciesStatus
593
+ attr_accessor snapshot_options: Types::SnapshotOptionsStatus
594
+ attr_accessor vpc_options: Types::VPCDerivedInfoStatus
595
+ attr_accessor cognito_options: Types::CognitoOptionsStatus
596
+ attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptionsStatus
597
+ attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptionsStatus
598
+ attr_accessor advanced_options: Types::AdvancedOptionsStatus
599
+ attr_accessor log_publishing_options: Types::LogPublishingOptionsStatus
600
+ attr_accessor domain_endpoint_options: Types::DomainEndpointOptionsStatus
601
+ attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsStatus
602
+ attr_accessor auto_tune_options: Types::AutoTuneOptionsStatus
603
+ attr_accessor change_progress_details: Types::ChangeProgressDetails
604
+ SENSITIVE: []
605
+ end
606
+
607
+ class ElasticsearchDomainStatus
608
+ attr_accessor domain_id: ::String
609
+ attr_accessor domain_name: ::String
610
+ attr_accessor arn: ::String
611
+ attr_accessor created: bool
612
+ attr_accessor deleted: bool
613
+ attr_accessor endpoint: ::String
614
+ attr_accessor endpoints: ::Hash[::String, ::String]
615
+ attr_accessor processing: bool
616
+ attr_accessor upgrade_processing: bool
617
+ attr_accessor elasticsearch_version: ::String
618
+ attr_accessor elasticsearch_cluster_config: Types::ElasticsearchClusterConfig
619
+ attr_accessor ebs_options: Types::EBSOptions
620
+ attr_accessor access_policies: ::String
621
+ attr_accessor snapshot_options: Types::SnapshotOptions
622
+ attr_accessor vpc_options: Types::VPCDerivedInfo
623
+ attr_accessor cognito_options: Types::CognitoOptions
624
+ attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
625
+ attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptions
626
+ attr_accessor advanced_options: ::Hash[::String, ::String]
627
+ attr_accessor log_publishing_options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
628
+ attr_accessor service_software_options: Types::ServiceSoftwareOptions
629
+ attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
630
+ attr_accessor advanced_security_options: Types::AdvancedSecurityOptions
631
+ attr_accessor auto_tune_options: Types::AutoTuneOptionsOutput
632
+ attr_accessor change_progress_details: Types::ChangeProgressDetails
633
+ SENSITIVE: []
634
+ end
635
+
636
+ class ElasticsearchVersionStatus
637
+ attr_accessor options: ::String
638
+ attr_accessor status: Types::OptionStatus
639
+ SENSITIVE: []
640
+ end
641
+
642
+ class EncryptionAtRestOptions
643
+ attr_accessor enabled: bool
644
+ attr_accessor kms_key_id: ::String
645
+ SENSITIVE: []
646
+ end
647
+
648
+ class EncryptionAtRestOptionsStatus
649
+ attr_accessor options: Types::EncryptionAtRestOptions
650
+ attr_accessor status: Types::OptionStatus
651
+ SENSITIVE: []
652
+ end
653
+
654
+ class ErrorDetails
655
+ attr_accessor error_type: ::String
656
+ attr_accessor error_message: ::String
657
+ SENSITIVE: []
658
+ end
659
+
660
+ class Filter
661
+ attr_accessor name: ::String
662
+ attr_accessor values: ::Array[::String]
663
+ SENSITIVE: []
664
+ end
665
+
666
+ class GetCompatibleElasticsearchVersionsRequest
667
+ attr_accessor domain_name: ::String
668
+ SENSITIVE: []
669
+ end
670
+
671
+ class GetCompatibleElasticsearchVersionsResponse
672
+ attr_accessor compatible_elasticsearch_versions: ::Array[Types::CompatibleVersionsMap]
673
+ SENSITIVE: []
674
+ end
675
+
676
+ class GetPackageVersionHistoryRequest
677
+ attr_accessor package_id: ::String
678
+ attr_accessor max_results: ::Integer
679
+ attr_accessor next_token: ::String
680
+ SENSITIVE: []
681
+ end
682
+
683
+ class GetPackageVersionHistoryResponse
684
+ attr_accessor package_id: ::String
685
+ attr_accessor package_version_history_list: ::Array[Types::PackageVersionHistory]
686
+ attr_accessor next_token: ::String
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class GetUpgradeHistoryRequest
691
+ attr_accessor domain_name: ::String
692
+ attr_accessor max_results: ::Integer
693
+ attr_accessor next_token: ::String
694
+ SENSITIVE: []
695
+ end
696
+
697
+ class GetUpgradeHistoryResponse
698
+ attr_accessor upgrade_histories: ::Array[Types::UpgradeHistory]
699
+ attr_accessor next_token: ::String
700
+ SENSITIVE: []
701
+ end
702
+
703
+ class GetUpgradeStatusRequest
704
+ attr_accessor domain_name: ::String
705
+ SENSITIVE: []
706
+ end
707
+
708
+ class GetUpgradeStatusResponse
709
+ attr_accessor upgrade_step: ("PRE_UPGRADE_CHECK" | "SNAPSHOT" | "UPGRADE")
710
+ attr_accessor step_status: ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
711
+ attr_accessor upgrade_name: ::String
712
+ SENSITIVE: []
713
+ end
714
+
715
+ class InboundCrossClusterSearchConnection
716
+ attr_accessor source_domain_info: Types::DomainInformation
717
+ attr_accessor destination_domain_info: Types::DomainInformation
718
+ attr_accessor cross_cluster_search_connection_id: ::String
719
+ attr_accessor connection_status: Types::InboundCrossClusterSearchConnectionStatus
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class InboundCrossClusterSearchConnectionStatus
724
+ attr_accessor status_code: ("PENDING_ACCEPTANCE" | "APPROVED" | "REJECTING" | "REJECTED" | "DELETING" | "DELETED")
725
+ attr_accessor message: ::String
726
+ SENSITIVE: []
727
+ end
728
+
729
+ class InstanceCountLimits
730
+ attr_accessor minimum_instance_count: ::Integer
731
+ attr_accessor maximum_instance_count: ::Integer
732
+ SENSITIVE: []
733
+ end
734
+
735
+ class InstanceLimits
736
+ attr_accessor instance_count_limits: Types::InstanceCountLimits
737
+ SENSITIVE: []
738
+ end
739
+
740
+ class InternalException < Aws::EmptyStructure
741
+ end
742
+
743
+ class InvalidPaginationTokenException < Aws::EmptyStructure
744
+ end
745
+
746
+ class InvalidTypeException < Aws::EmptyStructure
747
+ end
748
+
749
+ class LimitExceededException < Aws::EmptyStructure
750
+ end
751
+
752
+ class Limits
753
+ attr_accessor storage_types: ::Array[Types::StorageType]
754
+ attr_accessor instance_limits: Types::InstanceLimits
755
+ attr_accessor additional_limits: ::Array[Types::AdditionalLimit]
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class ListDomainNamesRequest
760
+ attr_accessor engine_type: ("OpenSearch" | "Elasticsearch")
761
+ SENSITIVE: []
762
+ end
763
+
764
+ class ListDomainNamesResponse
765
+ attr_accessor domain_names: ::Array[Types::DomainInfo]
766
+ SENSITIVE: []
767
+ end
768
+
769
+ class ListDomainsForPackageRequest
770
+ attr_accessor package_id: ::String
771
+ attr_accessor max_results: ::Integer
772
+ attr_accessor next_token: ::String
773
+ SENSITIVE: []
774
+ end
775
+
776
+ class ListDomainsForPackageResponse
777
+ attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
778
+ attr_accessor next_token: ::String
779
+ SENSITIVE: []
780
+ end
781
+
782
+ class ListElasticsearchInstanceTypesRequest
783
+ attr_accessor elasticsearch_version: ::String
784
+ attr_accessor domain_name: ::String
785
+ attr_accessor max_results: ::Integer
786
+ attr_accessor next_token: ::String
787
+ SENSITIVE: []
788
+ end
789
+
790
+ class ListElasticsearchInstanceTypesResponse
791
+ attr_accessor elasticsearch_instance_types: ::Array[("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")]
792
+ attr_accessor next_token: ::String
793
+ SENSITIVE: []
794
+ end
795
+
796
+ class ListElasticsearchVersionsRequest
797
+ attr_accessor max_results: ::Integer
798
+ attr_accessor next_token: ::String
799
+ SENSITIVE: []
800
+ end
801
+
802
+ class ListElasticsearchVersionsResponse
803
+ attr_accessor elasticsearch_versions: ::Array[::String]
804
+ attr_accessor next_token: ::String
805
+ SENSITIVE: []
806
+ end
807
+
808
+ class ListPackagesForDomainRequest
809
+ attr_accessor domain_name: ::String
810
+ attr_accessor max_results: ::Integer
811
+ attr_accessor next_token: ::String
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class ListPackagesForDomainResponse
816
+ attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
817
+ attr_accessor next_token: ::String
818
+ SENSITIVE: []
819
+ end
820
+
821
+ class ListTagsRequest
822
+ attr_accessor arn: ::String
823
+ SENSITIVE: []
824
+ end
825
+
826
+ class ListTagsResponse
827
+ attr_accessor tag_list: ::Array[Types::Tag]
828
+ SENSITIVE: []
829
+ end
830
+
831
+ class ListVpcEndpointAccessRequest
832
+ attr_accessor domain_name: ::String
833
+ attr_accessor next_token: ::String
834
+ SENSITIVE: []
835
+ end
836
+
837
+ class ListVpcEndpointAccessResponse
838
+ attr_accessor authorized_principal_list: ::Array[Types::AuthorizedPrincipal]
839
+ attr_accessor next_token: ::String
840
+ SENSITIVE: []
841
+ end
842
+
843
+ class ListVpcEndpointsForDomainRequest
844
+ attr_accessor domain_name: ::String
845
+ attr_accessor next_token: ::String
846
+ SENSITIVE: []
847
+ end
848
+
849
+ class ListVpcEndpointsForDomainResponse
850
+ attr_accessor vpc_endpoint_summary_list: ::Array[Types::VpcEndpointSummary]
851
+ attr_accessor next_token: ::String
852
+ SENSITIVE: []
853
+ end
854
+
855
+ class ListVpcEndpointsRequest
856
+ attr_accessor next_token: ::String
857
+ SENSITIVE: []
858
+ end
859
+
860
+ class ListVpcEndpointsResponse
861
+ attr_accessor vpc_endpoint_summary_list: ::Array[Types::VpcEndpointSummary]
862
+ attr_accessor next_token: ::String
863
+ SENSITIVE: []
864
+ end
865
+
866
+ class LogPublishingOption
867
+ attr_accessor cloud_watch_logs_log_group_arn: ::String
868
+ attr_accessor enabled: bool
869
+ SENSITIVE: []
870
+ end
871
+
872
+ class LogPublishingOptionsStatus
873
+ attr_accessor options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
874
+ attr_accessor status: Types::OptionStatus
875
+ SENSITIVE: []
876
+ end
877
+
878
+ class MasterUserOptions
879
+ attr_accessor master_user_arn: ::String
880
+ attr_accessor master_user_name: ::String
881
+ attr_accessor master_user_password: ::String
882
+ SENSITIVE: [:master_user_name, :master_user_password]
883
+ end
884
+
885
+ class NodeToNodeEncryptionOptions
886
+ attr_accessor enabled: bool
887
+ SENSITIVE: []
888
+ end
889
+
890
+ class NodeToNodeEncryptionOptionsStatus
891
+ attr_accessor options: Types::NodeToNodeEncryptionOptions
892
+ attr_accessor status: Types::OptionStatus
893
+ SENSITIVE: []
894
+ end
895
+
896
+ class OptionStatus
897
+ attr_accessor creation_date: ::Time
898
+ attr_accessor update_date: ::Time
899
+ attr_accessor update_version: ::Integer
900
+ attr_accessor state: ("RequiresIndexDocuments" | "Processing" | "Active")
901
+ attr_accessor pending_deletion: bool
902
+ SENSITIVE: []
903
+ end
904
+
905
+ class OutboundCrossClusterSearchConnection
906
+ attr_accessor source_domain_info: Types::DomainInformation
907
+ attr_accessor destination_domain_info: Types::DomainInformation
908
+ attr_accessor cross_cluster_search_connection_id: ::String
909
+ attr_accessor connection_alias: ::String
910
+ attr_accessor connection_status: Types::OutboundCrossClusterSearchConnectionStatus
911
+ SENSITIVE: []
912
+ end
913
+
914
+ class OutboundCrossClusterSearchConnectionStatus
915
+ attr_accessor status_code: ("PENDING_ACCEPTANCE" | "VALIDATING" | "VALIDATION_FAILED" | "PROVISIONING" | "ACTIVE" | "REJECTED" | "DELETING" | "DELETED")
916
+ attr_accessor message: ::String
917
+ SENSITIVE: []
918
+ end
919
+
920
+ class PackageDetails
921
+ attr_accessor package_id: ::String
922
+ attr_accessor package_name: ::String
923
+ attr_accessor package_type: ("TXT-DICTIONARY")
924
+ attr_accessor package_description: ::String
925
+ attr_accessor package_status: ("COPYING" | "COPY_FAILED" | "VALIDATING" | "VALIDATION_FAILED" | "AVAILABLE" | "DELETING" | "DELETED" | "DELETE_FAILED")
926
+ attr_accessor created_at: ::Time
927
+ attr_accessor last_updated_at: ::Time
928
+ attr_accessor available_package_version: ::String
929
+ attr_accessor error_details: Types::ErrorDetails
930
+ SENSITIVE: []
931
+ end
932
+
933
+ class PackageSource
934
+ attr_accessor s3_bucket_name: ::String
935
+ attr_accessor s3_key: ::String
936
+ SENSITIVE: []
937
+ end
938
+
939
+ class PackageVersionHistory
940
+ attr_accessor package_version: ::String
941
+ attr_accessor commit_message: ::String
942
+ attr_accessor created_at: ::Time
943
+ SENSITIVE: []
944
+ end
945
+
946
+ class PurchaseReservedElasticsearchInstanceOfferingRequest
947
+ attr_accessor reserved_elasticsearch_instance_offering_id: ::String
948
+ attr_accessor reservation_name: ::String
949
+ attr_accessor instance_count: ::Integer
950
+ SENSITIVE: []
951
+ end
952
+
953
+ class PurchaseReservedElasticsearchInstanceOfferingResponse
954
+ attr_accessor reserved_elasticsearch_instance_id: ::String
955
+ attr_accessor reservation_name: ::String
956
+ SENSITIVE: []
957
+ end
958
+
959
+ class RecurringCharge
960
+ attr_accessor recurring_charge_amount: ::Float
961
+ attr_accessor recurring_charge_frequency: ::String
962
+ SENSITIVE: []
963
+ end
964
+
965
+ class RejectInboundCrossClusterSearchConnectionRequest
966
+ attr_accessor cross_cluster_search_connection_id: ::String
967
+ SENSITIVE: []
968
+ end
969
+
970
+ class RejectInboundCrossClusterSearchConnectionResponse
971
+ attr_accessor cross_cluster_search_connection: Types::InboundCrossClusterSearchConnection
972
+ SENSITIVE: []
973
+ end
974
+
975
+ class RemoveTagsRequest
976
+ attr_accessor arn: ::String
977
+ attr_accessor tag_keys: ::Array[::String]
978
+ SENSITIVE: []
979
+ end
980
+
981
+ class ReservedElasticsearchInstance
982
+ attr_accessor reservation_name: ::String
983
+ attr_accessor reserved_elasticsearch_instance_id: ::String
984
+ attr_accessor reserved_elasticsearch_instance_offering_id: ::String
985
+ attr_accessor elasticsearch_instance_type: ("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")
986
+ attr_accessor start_time: ::Time
987
+ attr_accessor duration: ::Integer
988
+ attr_accessor fixed_price: ::Float
989
+ attr_accessor usage_price: ::Float
990
+ attr_accessor currency_code: ::String
991
+ attr_accessor elasticsearch_instance_count: ::Integer
992
+ attr_accessor state: ::String
993
+ attr_accessor payment_option: ("ALL_UPFRONT" | "PARTIAL_UPFRONT" | "NO_UPFRONT")
994
+ attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
995
+ SENSITIVE: []
996
+ end
997
+
998
+ class ReservedElasticsearchInstanceOffering
999
+ attr_accessor reserved_elasticsearch_instance_offering_id: ::String
1000
+ attr_accessor elasticsearch_instance_type: ("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")
1001
+ attr_accessor duration: ::Integer
1002
+ attr_accessor fixed_price: ::Float
1003
+ attr_accessor usage_price: ::Float
1004
+ attr_accessor currency_code: ::String
1005
+ attr_accessor payment_option: ("ALL_UPFRONT" | "PARTIAL_UPFRONT" | "NO_UPFRONT")
1006
+ attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
1007
+ SENSITIVE: []
1008
+ end
1009
+
1010
+ class ResourceAlreadyExistsException < Aws::EmptyStructure
1011
+ end
1012
+
1013
+ class ResourceNotFoundException < Aws::EmptyStructure
1014
+ end
1015
+
1016
+ class RevokeVpcEndpointAccessRequest
1017
+ attr_accessor domain_name: ::String
1018
+ attr_accessor account: ::String
1019
+ SENSITIVE: []
1020
+ end
1021
+
1022
+ class RevokeVpcEndpointAccessResponse < Aws::EmptyStructure
1023
+ end
1024
+
1025
+ class SAMLIdp
1026
+ attr_accessor metadata_content: ::String
1027
+ attr_accessor entity_id: ::String
1028
+ SENSITIVE: []
1029
+ end
1030
+
1031
+ class SAMLOptionsInput
1032
+ attr_accessor enabled: bool
1033
+ attr_accessor idp: Types::SAMLIdp
1034
+ attr_accessor master_user_name: ::String
1035
+ attr_accessor master_backend_role: ::String
1036
+ attr_accessor subject_key: ::String
1037
+ attr_accessor roles_key: ::String
1038
+ attr_accessor session_timeout_minutes: ::Integer
1039
+ SENSITIVE: [:master_user_name]
1040
+ end
1041
+
1042
+ class SAMLOptionsOutput
1043
+ attr_accessor enabled: bool
1044
+ attr_accessor idp: Types::SAMLIdp
1045
+ attr_accessor subject_key: ::String
1046
+ attr_accessor roles_key: ::String
1047
+ attr_accessor session_timeout_minutes: ::Integer
1048
+ SENSITIVE: []
1049
+ end
1050
+
1051
+ class ScheduledAutoTuneDetails
1052
+ attr_accessor date: ::Time
1053
+ attr_accessor action_type: ("JVM_HEAP_SIZE_TUNING" | "JVM_YOUNG_GEN_TUNING")
1054
+ attr_accessor action: ::String
1055
+ attr_accessor severity: ("LOW" | "MEDIUM" | "HIGH")
1056
+ SENSITIVE: []
1057
+ end
1058
+
1059
+ class ServiceSoftwareOptions
1060
+ attr_accessor current_version: ::String
1061
+ attr_accessor new_version: ::String
1062
+ attr_accessor update_available: bool
1063
+ attr_accessor cancellable: bool
1064
+ attr_accessor update_status: ("PENDING_UPDATE" | "IN_PROGRESS" | "COMPLETED" | "NOT_ELIGIBLE" | "ELIGIBLE")
1065
+ attr_accessor description: ::String
1066
+ attr_accessor automated_update_date: ::Time
1067
+ attr_accessor optional_deployment: bool
1068
+ SENSITIVE: []
1069
+ end
1070
+
1071
+ class SnapshotOptions
1072
+ attr_accessor automated_snapshot_start_hour: ::Integer
1073
+ SENSITIVE: []
1074
+ end
1075
+
1076
+ class SnapshotOptionsStatus
1077
+ attr_accessor options: Types::SnapshotOptions
1078
+ attr_accessor status: Types::OptionStatus
1079
+ SENSITIVE: []
1080
+ end
1081
+
1082
+ class StartElasticsearchServiceSoftwareUpdateRequest
1083
+ attr_accessor domain_name: ::String
1084
+ SENSITIVE: []
1085
+ end
1086
+
1087
+ class StartElasticsearchServiceSoftwareUpdateResponse
1088
+ attr_accessor service_software_options: Types::ServiceSoftwareOptions
1089
+ SENSITIVE: []
1090
+ end
1091
+
1092
+ class StorageType
1093
+ attr_accessor storage_type_name: ::String
1094
+ attr_accessor storage_sub_type_name: ::String
1095
+ attr_accessor storage_type_limits: ::Array[Types::StorageTypeLimit]
1096
+ SENSITIVE: []
1097
+ end
1098
+
1099
+ class StorageTypeLimit
1100
+ attr_accessor limit_name: ::String
1101
+ attr_accessor limit_values: ::Array[::String]
1102
+ SENSITIVE: []
1103
+ end
1104
+
1105
+ class Tag
1106
+ attr_accessor key: ::String
1107
+ attr_accessor value: ::String
1108
+ SENSITIVE: []
1109
+ end
1110
+
1111
+ class UpdateElasticsearchDomainConfigRequest
1112
+ attr_accessor domain_name: ::String
1113
+ attr_accessor elasticsearch_cluster_config: Types::ElasticsearchClusterConfig
1114
+ attr_accessor ebs_options: Types::EBSOptions
1115
+ attr_accessor snapshot_options: Types::SnapshotOptions
1116
+ attr_accessor vpc_options: Types::VPCOptions
1117
+ attr_accessor cognito_options: Types::CognitoOptions
1118
+ attr_accessor advanced_options: ::Hash[::String, ::String]
1119
+ attr_accessor access_policies: ::String
1120
+ attr_accessor log_publishing_options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
1121
+ attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
1122
+ attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsInput
1123
+ attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptions
1124
+ attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
1125
+ attr_accessor auto_tune_options: Types::AutoTuneOptions
1126
+ attr_accessor dry_run: bool
1127
+ SENSITIVE: []
1128
+ end
1129
+
1130
+ class UpdateElasticsearchDomainConfigResponse
1131
+ attr_accessor domain_config: Types::ElasticsearchDomainConfig
1132
+ attr_accessor dry_run_results: Types::DryRunResults
1133
+ SENSITIVE: []
1134
+ end
1135
+
1136
+ class UpdatePackageRequest
1137
+ attr_accessor package_id: ::String
1138
+ attr_accessor package_source: Types::PackageSource
1139
+ attr_accessor package_description: ::String
1140
+ attr_accessor commit_message: ::String
1141
+ SENSITIVE: []
1142
+ end
1143
+
1144
+ class UpdatePackageResponse
1145
+ attr_accessor package_details: Types::PackageDetails
1146
+ SENSITIVE: []
1147
+ end
1148
+
1149
+ class UpdateVpcEndpointRequest
1150
+ attr_accessor vpc_endpoint_id: ::String
1151
+ attr_accessor vpc_options: Types::VPCOptions
1152
+ SENSITIVE: []
1153
+ end
1154
+
1155
+ class UpdateVpcEndpointResponse
1156
+ attr_accessor vpc_endpoint: Types::VpcEndpoint
1157
+ SENSITIVE: []
1158
+ end
1159
+
1160
+ class UpgradeElasticsearchDomainRequest
1161
+ attr_accessor domain_name: ::String
1162
+ attr_accessor target_version: ::String
1163
+ attr_accessor perform_check_only: bool
1164
+ SENSITIVE: []
1165
+ end
1166
+
1167
+ class UpgradeElasticsearchDomainResponse
1168
+ attr_accessor domain_name: ::String
1169
+ attr_accessor target_version: ::String
1170
+ attr_accessor perform_check_only: bool
1171
+ attr_accessor change_progress_details: Types::ChangeProgressDetails
1172
+ SENSITIVE: []
1173
+ end
1174
+
1175
+ class UpgradeHistory
1176
+ attr_accessor upgrade_name: ::String
1177
+ attr_accessor start_timestamp: ::Time
1178
+ attr_accessor upgrade_status: ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
1179
+ attr_accessor steps_list: ::Array[Types::UpgradeStepItem]
1180
+ SENSITIVE: []
1181
+ end
1182
+
1183
+ class UpgradeStepItem
1184
+ attr_accessor upgrade_step: ("PRE_UPGRADE_CHECK" | "SNAPSHOT" | "UPGRADE")
1185
+ attr_accessor upgrade_step_status: ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
1186
+ attr_accessor issues: ::Array[::String]
1187
+ attr_accessor progress_percent: ::Float
1188
+ SENSITIVE: []
1189
+ end
1190
+
1191
+ class VPCDerivedInfo
1192
+ attr_accessor vpc_id: ::String
1193
+ attr_accessor subnet_ids: ::Array[::String]
1194
+ attr_accessor availability_zones: ::Array[::String]
1195
+ attr_accessor security_group_ids: ::Array[::String]
1196
+ SENSITIVE: []
1197
+ end
1198
+
1199
+ class VPCDerivedInfoStatus
1200
+ attr_accessor options: Types::VPCDerivedInfo
1201
+ attr_accessor status: Types::OptionStatus
1202
+ SENSITIVE: []
1203
+ end
1204
+
1205
+ class VPCOptions
1206
+ attr_accessor subnet_ids: ::Array[::String]
1207
+ attr_accessor security_group_ids: ::Array[::String]
1208
+ SENSITIVE: []
1209
+ end
1210
+
1211
+ class ValidationException < Aws::EmptyStructure
1212
+ end
1213
+
1214
+ class VpcEndpoint
1215
+ attr_accessor vpc_endpoint_id: ::String
1216
+ attr_accessor vpc_endpoint_owner: ::String
1217
+ attr_accessor domain_arn: ::String
1218
+ attr_accessor vpc_options: Types::VPCDerivedInfo
1219
+ attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1220
+ attr_accessor endpoint: ::String
1221
+ SENSITIVE: []
1222
+ end
1223
+
1224
+ class VpcEndpointError
1225
+ attr_accessor vpc_endpoint_id: ::String
1226
+ attr_accessor error_code: ("ENDPOINT_NOT_FOUND" | "SERVER_ERROR")
1227
+ attr_accessor error_message: ::String
1228
+ SENSITIVE: []
1229
+ end
1230
+
1231
+ class VpcEndpointSummary
1232
+ attr_accessor vpc_endpoint_id: ::String
1233
+ attr_accessor vpc_endpoint_owner: ::String
1234
+ attr_accessor domain_arn: ::String
1235
+ attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1236
+ SENSITIVE: []
1237
+ end
1238
+
1239
+ class ZoneAwarenessConfig
1240
+ attr_accessor availability_zone_count: ::Integer
1241
+ SENSITIVE: []
1242
+ end
1243
+ end
1244
+ end