aws-sdk-opensearchservice 1.35.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +120 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +60 -0
- data/lib/aws-sdk-opensearchservice/endpoints.rb +14 -0
- data/lib/aws-sdk-opensearchservice/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-opensearchservice/types.rb +171 -6
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +1118 -0
- data/sig/errors.rbs +44 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1670 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1670 @@
|
|
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::OpenSearchService
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AWSDomainInformation
|
12
|
+
attr_accessor owner_id: ::String
|
13
|
+
attr_accessor domain_name: ::String
|
14
|
+
attr_accessor region: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AcceptInboundConnectionRequest
|
19
|
+
attr_accessor connection_id: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AcceptInboundConnectionResponse
|
24
|
+
attr_accessor connection: Types::InboundConnection
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class AccessDeniedException < Aws::EmptyStructure
|
29
|
+
end
|
30
|
+
|
31
|
+
class AccessPoliciesStatus
|
32
|
+
attr_accessor options: ::String
|
33
|
+
attr_accessor status: Types::OptionStatus
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class AddDataSourceRequest
|
38
|
+
attr_accessor domain_name: ::String
|
39
|
+
attr_accessor name: ::String
|
40
|
+
attr_accessor data_source_type: Types::DataSourceType
|
41
|
+
attr_accessor description: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AddDataSourceResponse
|
46
|
+
attr_accessor message: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class AddTagsRequest
|
51
|
+
attr_accessor arn: ::String
|
52
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class AdditionalLimit
|
57
|
+
attr_accessor limit_name: ::String
|
58
|
+
attr_accessor limit_values: ::Array[::String]
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class AdvancedOptionsStatus
|
63
|
+
attr_accessor options: ::Hash[::String, ::String]
|
64
|
+
attr_accessor status: Types::OptionStatus
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class AdvancedSecurityOptions
|
69
|
+
attr_accessor enabled: bool
|
70
|
+
attr_accessor internal_user_database_enabled: bool
|
71
|
+
attr_accessor saml_options: Types::SAMLOptionsOutput
|
72
|
+
attr_accessor anonymous_auth_disable_date: ::Time
|
73
|
+
attr_accessor anonymous_auth_enabled: bool
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class AdvancedSecurityOptionsInput
|
78
|
+
attr_accessor enabled: bool
|
79
|
+
attr_accessor internal_user_database_enabled: bool
|
80
|
+
attr_accessor master_user_options: Types::MasterUserOptions
|
81
|
+
attr_accessor saml_options: Types::SAMLOptionsInput
|
82
|
+
attr_accessor anonymous_auth_enabled: bool
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class AdvancedSecurityOptionsStatus
|
87
|
+
attr_accessor options: Types::AdvancedSecurityOptions
|
88
|
+
attr_accessor status: Types::OptionStatus
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class AssociatePackageRequest
|
93
|
+
attr_accessor package_id: ::String
|
94
|
+
attr_accessor domain_name: ::String
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class AssociatePackageResponse
|
99
|
+
attr_accessor domain_package_details: Types::DomainPackageDetails
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class AuthorizeVpcEndpointAccessRequest
|
104
|
+
attr_accessor domain_name: ::String
|
105
|
+
attr_accessor account: ::String
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class AuthorizeVpcEndpointAccessResponse
|
110
|
+
attr_accessor authorized_principal: Types::AuthorizedPrincipal
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class AuthorizedPrincipal
|
115
|
+
attr_accessor principal_type: ("AWS_ACCOUNT" | "AWS_SERVICE")
|
116
|
+
attr_accessor principal: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class AutoTune
|
121
|
+
attr_accessor auto_tune_type: ("SCHEDULED_ACTION")
|
122
|
+
attr_accessor auto_tune_details: Types::AutoTuneDetails
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class AutoTuneDetails
|
127
|
+
attr_accessor scheduled_auto_tune_details: Types::ScheduledAutoTuneDetails
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class AutoTuneMaintenanceSchedule
|
132
|
+
attr_accessor start_at: ::Time
|
133
|
+
attr_accessor duration: Types::Duration
|
134
|
+
attr_accessor cron_expression_for_recurrence: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class AutoTuneOptions
|
139
|
+
attr_accessor desired_state: ("ENABLED" | "DISABLED")
|
140
|
+
attr_accessor rollback_on_disable: ("NO_ROLLBACK" | "DEFAULT_ROLLBACK")
|
141
|
+
attr_accessor maintenance_schedules: ::Array[Types::AutoTuneMaintenanceSchedule]
|
142
|
+
attr_accessor use_off_peak_window: bool
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class AutoTuneOptionsInput
|
147
|
+
attr_accessor desired_state: ("ENABLED" | "DISABLED")
|
148
|
+
attr_accessor maintenance_schedules: ::Array[Types::AutoTuneMaintenanceSchedule]
|
149
|
+
attr_accessor use_off_peak_window: bool
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class AutoTuneOptionsOutput
|
154
|
+
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")
|
155
|
+
attr_accessor error_message: ::String
|
156
|
+
attr_accessor use_off_peak_window: bool
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class AutoTuneOptionsStatus
|
161
|
+
attr_accessor options: Types::AutoTuneOptions
|
162
|
+
attr_accessor status: Types::AutoTuneStatus
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class AutoTuneStatus
|
167
|
+
attr_accessor creation_date: ::Time
|
168
|
+
attr_accessor update_date: ::Time
|
169
|
+
attr_accessor update_version: ::Integer
|
170
|
+
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")
|
171
|
+
attr_accessor error_message: ::String
|
172
|
+
attr_accessor pending_deletion: bool
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class AvailabilityZoneInfo
|
177
|
+
attr_accessor availability_zone_name: ::String
|
178
|
+
attr_accessor zone_status: ("Active" | "StandBy" | "NotAvailable")
|
179
|
+
attr_accessor configured_data_node_count: ::String
|
180
|
+
attr_accessor available_data_node_count: ::String
|
181
|
+
attr_accessor total_shards: ::String
|
182
|
+
attr_accessor total_un_assigned_shards: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class BaseException
|
187
|
+
attr_accessor message: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class CancelDomainConfigChangeRequest
|
192
|
+
attr_accessor domain_name: ::String
|
193
|
+
attr_accessor dry_run: bool
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class CancelDomainConfigChangeResponse
|
198
|
+
attr_accessor cancelled_change_ids: ::Array[::String]
|
199
|
+
attr_accessor cancelled_change_properties: ::Array[Types::CancelledChangeProperty]
|
200
|
+
attr_accessor dry_run: bool
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class CancelServiceSoftwareUpdateRequest
|
205
|
+
attr_accessor domain_name: ::String
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class CancelServiceSoftwareUpdateResponse
|
210
|
+
attr_accessor service_software_options: Types::ServiceSoftwareOptions
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CancelledChangeProperty
|
215
|
+
attr_accessor property_name: ::String
|
216
|
+
attr_accessor cancelled_value: ::String
|
217
|
+
attr_accessor active_value: ::String
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class ChangeProgressDetails
|
222
|
+
attr_accessor change_id: ::String
|
223
|
+
attr_accessor message: ::String
|
224
|
+
attr_accessor config_change_status: ("Pending" | "Initializing" | "Validating" | "ValidationFailed" | "ApplyingChanges" | "Completed" | "PendingUserInput" | "Cancelled")
|
225
|
+
attr_accessor initiated_by: ("CUSTOMER" | "SERVICE")
|
226
|
+
attr_accessor start_time: ::Time
|
227
|
+
attr_accessor last_updated_time: ::Time
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class ChangeProgressStage
|
232
|
+
attr_accessor name: ::String
|
233
|
+
attr_accessor status: ::String
|
234
|
+
attr_accessor description: ::String
|
235
|
+
attr_accessor last_updated: ::Time
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class ChangeProgressStatusDetails
|
240
|
+
attr_accessor change_id: ::String
|
241
|
+
attr_accessor start_time: ::Time
|
242
|
+
attr_accessor status: ("PENDING" | "PROCESSING" | "COMPLETED" | "FAILED")
|
243
|
+
attr_accessor pending_properties: ::Array[::String]
|
244
|
+
attr_accessor completed_properties: ::Array[::String]
|
245
|
+
attr_accessor total_number_of_stages: ::Integer
|
246
|
+
attr_accessor change_progress_stages: ::Array[Types::ChangeProgressStage]
|
247
|
+
attr_accessor last_updated_time: ::Time
|
248
|
+
attr_accessor config_change_status: ("Pending" | "Initializing" | "Validating" | "ValidationFailed" | "ApplyingChanges" | "Completed" | "PendingUserInput" | "Cancelled")
|
249
|
+
attr_accessor initiated_by: ("CUSTOMER" | "SERVICE")
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class ClusterConfig
|
254
|
+
attr_accessor instance_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
255
|
+
attr_accessor instance_count: ::Integer
|
256
|
+
attr_accessor dedicated_master_enabled: bool
|
257
|
+
attr_accessor zone_awareness_enabled: bool
|
258
|
+
attr_accessor zone_awareness_config: Types::ZoneAwarenessConfig
|
259
|
+
attr_accessor dedicated_master_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
260
|
+
attr_accessor dedicated_master_count: ::Integer
|
261
|
+
attr_accessor warm_enabled: bool
|
262
|
+
attr_accessor warm_type: ("ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search")
|
263
|
+
attr_accessor warm_count: ::Integer
|
264
|
+
attr_accessor cold_storage_options: Types::ColdStorageOptions
|
265
|
+
attr_accessor multi_az_with_standby_enabled: bool
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class ClusterConfigStatus
|
270
|
+
attr_accessor options: Types::ClusterConfig
|
271
|
+
attr_accessor status: Types::OptionStatus
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class CognitoOptions
|
276
|
+
attr_accessor enabled: bool
|
277
|
+
attr_accessor user_pool_id: ::String
|
278
|
+
attr_accessor identity_pool_id: ::String
|
279
|
+
attr_accessor role_arn: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class CognitoOptionsStatus
|
284
|
+
attr_accessor options: Types::CognitoOptions
|
285
|
+
attr_accessor status: Types::OptionStatus
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class ColdStorageOptions
|
290
|
+
attr_accessor enabled: bool
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class CompatibleVersionsMap
|
295
|
+
attr_accessor source_version: ::String
|
296
|
+
attr_accessor target_versions: ::Array[::String]
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class ConflictException < Aws::EmptyStructure
|
301
|
+
end
|
302
|
+
|
303
|
+
class ConnectionProperties
|
304
|
+
attr_accessor endpoint: ::String
|
305
|
+
attr_accessor cross_cluster_search: Types::CrossClusterSearchConnectionProperties
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class CreateDomainRequest
|
310
|
+
attr_accessor domain_name: ::String
|
311
|
+
attr_accessor engine_version: ::String
|
312
|
+
attr_accessor cluster_config: Types::ClusterConfig
|
313
|
+
attr_accessor ebs_options: Types::EBSOptions
|
314
|
+
attr_accessor access_policies: ::String
|
315
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack")
|
316
|
+
attr_accessor snapshot_options: Types::SnapshotOptions
|
317
|
+
attr_accessor vpc_options: Types::VPCOptions
|
318
|
+
attr_accessor cognito_options: Types::CognitoOptions
|
319
|
+
attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
|
320
|
+
attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptions
|
321
|
+
attr_accessor advanced_options: ::Hash[::String, ::String]
|
322
|
+
attr_accessor log_publishing_options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
|
323
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
|
324
|
+
attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsInput
|
325
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
326
|
+
attr_accessor auto_tune_options: Types::AutoTuneOptionsInput
|
327
|
+
attr_accessor off_peak_window_options: Types::OffPeakWindowOptions
|
328
|
+
attr_accessor software_update_options: Types::SoftwareUpdateOptions
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class CreateDomainResponse
|
333
|
+
attr_accessor domain_status: Types::DomainStatus
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class CreateOutboundConnectionRequest
|
338
|
+
attr_accessor local_domain_info: Types::DomainInformationContainer
|
339
|
+
attr_accessor remote_domain_info: Types::DomainInformationContainer
|
340
|
+
attr_accessor connection_alias: ::String
|
341
|
+
attr_accessor connection_mode: ("DIRECT" | "VPC_ENDPOINT")
|
342
|
+
attr_accessor connection_properties: Types::ConnectionProperties
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class CreateOutboundConnectionResponse
|
347
|
+
attr_accessor local_domain_info: Types::DomainInformationContainer
|
348
|
+
attr_accessor remote_domain_info: Types::DomainInformationContainer
|
349
|
+
attr_accessor connection_alias: ::String
|
350
|
+
attr_accessor connection_status: Types::OutboundConnectionStatus
|
351
|
+
attr_accessor connection_id: ::String
|
352
|
+
attr_accessor connection_mode: ("DIRECT" | "VPC_ENDPOINT")
|
353
|
+
attr_accessor connection_properties: Types::ConnectionProperties
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class CreatePackageRequest
|
358
|
+
attr_accessor package_name: ::String
|
359
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
360
|
+
attr_accessor package_description: ::String
|
361
|
+
attr_accessor package_source: Types::PackageSource
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class CreatePackageResponse
|
366
|
+
attr_accessor package_details: Types::PackageDetails
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class CreateVpcEndpointRequest
|
371
|
+
attr_accessor domain_arn: ::String
|
372
|
+
attr_accessor vpc_options: Types::VPCOptions
|
373
|
+
attr_accessor client_token: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class CreateVpcEndpointResponse
|
378
|
+
attr_accessor vpc_endpoint: Types::VpcEndpoint
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class CrossClusterSearchConnectionProperties
|
383
|
+
attr_accessor skip_unavailable: ("ENABLED" | "DISABLED")
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class DataSourceDetails
|
388
|
+
attr_accessor data_source_type: Types::DataSourceType
|
389
|
+
attr_accessor name: ::String
|
390
|
+
attr_accessor description: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class DataSourceType
|
395
|
+
attr_accessor s3_glue_data_catalog: Types::S3GlueDataCatalog
|
396
|
+
attr_accessor unknown: untyped
|
397
|
+
SENSITIVE: []
|
398
|
+
|
399
|
+
class S3GlueDataCatalog < DataSourceType
|
400
|
+
end
|
401
|
+
class Unknown < DataSourceType
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
405
|
+
class DeleteDataSourceRequest
|
406
|
+
attr_accessor domain_name: ::String
|
407
|
+
attr_accessor name: ::String
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class DeleteDataSourceResponse
|
412
|
+
attr_accessor message: ::String
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class DeleteDomainRequest
|
417
|
+
attr_accessor domain_name: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DeleteDomainResponse
|
422
|
+
attr_accessor domain_status: Types::DomainStatus
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class DeleteInboundConnectionRequest
|
427
|
+
attr_accessor connection_id: ::String
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
431
|
+
class DeleteInboundConnectionResponse
|
432
|
+
attr_accessor connection: Types::InboundConnection
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class DeleteOutboundConnectionRequest
|
437
|
+
attr_accessor connection_id: ::String
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class DeleteOutboundConnectionResponse
|
442
|
+
attr_accessor connection: Types::OutboundConnection
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DeletePackageRequest
|
447
|
+
attr_accessor package_id: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DeletePackageResponse
|
452
|
+
attr_accessor package_details: Types::PackageDetails
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class DeleteVpcEndpointRequest
|
457
|
+
attr_accessor vpc_endpoint_id: ::String
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class DeleteVpcEndpointResponse
|
462
|
+
attr_accessor vpc_endpoint_summary: Types::VpcEndpointSummary
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class DependencyFailureException < Aws::EmptyStructure
|
467
|
+
end
|
468
|
+
|
469
|
+
class DescribeDomainAutoTunesRequest
|
470
|
+
attr_accessor domain_name: ::String
|
471
|
+
attr_accessor max_results: ::Integer
|
472
|
+
attr_accessor next_token: ::String
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class DescribeDomainAutoTunesResponse
|
477
|
+
attr_accessor auto_tunes: ::Array[Types::AutoTune]
|
478
|
+
attr_accessor next_token: ::String
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class DescribeDomainChangeProgressRequest
|
483
|
+
attr_accessor domain_name: ::String
|
484
|
+
attr_accessor change_id: ::String
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class DescribeDomainChangeProgressResponse
|
489
|
+
attr_accessor change_progress_status: Types::ChangeProgressStatusDetails
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class DescribeDomainConfigRequest
|
494
|
+
attr_accessor domain_name: ::String
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
498
|
+
class DescribeDomainConfigResponse
|
499
|
+
attr_accessor domain_config: Types::DomainConfig
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class DescribeDomainHealthRequest
|
504
|
+
attr_accessor domain_name: ::String
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class DescribeDomainHealthResponse
|
509
|
+
attr_accessor domain_state: ("Active" | "Processing" | "NotAvailable")
|
510
|
+
attr_accessor availability_zone_count: ::String
|
511
|
+
attr_accessor active_availability_zone_count: ::String
|
512
|
+
attr_accessor stand_by_availability_zone_count: ::String
|
513
|
+
attr_accessor data_node_count: ::String
|
514
|
+
attr_accessor dedicated_master: bool
|
515
|
+
attr_accessor master_eligible_node_count: ::String
|
516
|
+
attr_accessor warm_node_count: ::String
|
517
|
+
attr_accessor master_node: ("Available" | "UnAvailable")
|
518
|
+
attr_accessor cluster_health: ("Red" | "Yellow" | "Green" | "NotAvailable")
|
519
|
+
attr_accessor total_shards: ::String
|
520
|
+
attr_accessor total_un_assigned_shards: ::String
|
521
|
+
attr_accessor environment_information: ::Array[Types::EnvironmentInfo]
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class DescribeDomainNodesRequest
|
526
|
+
attr_accessor domain_name: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class DescribeDomainNodesResponse
|
531
|
+
attr_accessor domain_nodes_status_list: ::Array[Types::DomainNodesStatus]
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
535
|
+
class DescribeDomainRequest
|
536
|
+
attr_accessor domain_name: ::String
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class DescribeDomainResponse
|
541
|
+
attr_accessor domain_status: Types::DomainStatus
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class DescribeDomainsRequest
|
546
|
+
attr_accessor domain_names: ::Array[::String]
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class DescribeDomainsResponse
|
551
|
+
attr_accessor domain_status_list: ::Array[Types::DomainStatus]
|
552
|
+
SENSITIVE: []
|
553
|
+
end
|
554
|
+
|
555
|
+
class DescribeDryRunProgressRequest
|
556
|
+
attr_accessor domain_name: ::String
|
557
|
+
attr_accessor dry_run_id: ::String
|
558
|
+
attr_accessor load_dry_run_config: bool
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class DescribeDryRunProgressResponse
|
563
|
+
attr_accessor dry_run_progress_status: Types::DryRunProgressStatus
|
564
|
+
attr_accessor dry_run_config: Types::DomainStatus
|
565
|
+
attr_accessor dry_run_results: Types::DryRunResults
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class DescribeInboundConnectionsRequest
|
570
|
+
attr_accessor filters: ::Array[Types::Filter]
|
571
|
+
attr_accessor max_results: ::Integer
|
572
|
+
attr_accessor next_token: ::String
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class DescribeInboundConnectionsResponse
|
577
|
+
attr_accessor connections: ::Array[Types::InboundConnection]
|
578
|
+
attr_accessor next_token: ::String
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class DescribeInstanceTypeLimitsRequest
|
583
|
+
attr_accessor domain_name: ::String
|
584
|
+
attr_accessor instance_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
585
|
+
attr_accessor engine_version: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class DescribeInstanceTypeLimitsResponse
|
590
|
+
attr_accessor limits_by_role: ::Hash[::String, Types::Limits]
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class DescribeOutboundConnectionsRequest
|
595
|
+
attr_accessor filters: ::Array[Types::Filter]
|
596
|
+
attr_accessor max_results: ::Integer
|
597
|
+
attr_accessor next_token: ::String
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class DescribeOutboundConnectionsResponse
|
602
|
+
attr_accessor connections: ::Array[Types::OutboundConnection]
|
603
|
+
attr_accessor next_token: ::String
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class DescribePackagesFilter
|
608
|
+
attr_accessor name: ("PackageID" | "PackageName" | "PackageStatus" | "PackageType" | "EngineVersion")
|
609
|
+
attr_accessor value: ::Array[::String]
|
610
|
+
SENSITIVE: []
|
611
|
+
end
|
612
|
+
|
613
|
+
class DescribePackagesRequest
|
614
|
+
attr_accessor filters: ::Array[Types::DescribePackagesFilter]
|
615
|
+
attr_accessor max_results: ::Integer
|
616
|
+
attr_accessor next_token: ::String
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class DescribePackagesResponse
|
621
|
+
attr_accessor package_details_list: ::Array[Types::PackageDetails]
|
622
|
+
attr_accessor next_token: ::String
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class DescribeReservedInstanceOfferingsRequest
|
627
|
+
attr_accessor reserved_instance_offering_id: ::String
|
628
|
+
attr_accessor max_results: ::Integer
|
629
|
+
attr_accessor next_token: ::String
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class DescribeReservedInstanceOfferingsResponse
|
634
|
+
attr_accessor next_token: ::String
|
635
|
+
attr_accessor reserved_instance_offerings: ::Array[Types::ReservedInstanceOffering]
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class DescribeReservedInstancesRequest
|
640
|
+
attr_accessor reserved_instance_id: ::String
|
641
|
+
attr_accessor max_results: ::Integer
|
642
|
+
attr_accessor next_token: ::String
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class DescribeReservedInstancesResponse
|
647
|
+
attr_accessor next_token: ::String
|
648
|
+
attr_accessor reserved_instances: ::Array[Types::ReservedInstance]
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class DescribeVpcEndpointsRequest
|
653
|
+
attr_accessor vpc_endpoint_ids: ::Array[::String]
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class DescribeVpcEndpointsResponse
|
658
|
+
attr_accessor vpc_endpoints: ::Array[Types::VpcEndpoint]
|
659
|
+
attr_accessor vpc_endpoint_errors: ::Array[Types::VpcEndpointError]
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class DisabledOperationException < Aws::EmptyStructure
|
664
|
+
end
|
665
|
+
|
666
|
+
class DissociatePackageRequest
|
667
|
+
attr_accessor package_id: ::String
|
668
|
+
attr_accessor domain_name: ::String
|
669
|
+
SENSITIVE: []
|
670
|
+
end
|
671
|
+
|
672
|
+
class DissociatePackageResponse
|
673
|
+
attr_accessor domain_package_details: Types::DomainPackageDetails
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class DomainConfig
|
678
|
+
attr_accessor engine_version: Types::VersionStatus
|
679
|
+
attr_accessor cluster_config: Types::ClusterConfigStatus
|
680
|
+
attr_accessor ebs_options: Types::EBSOptionsStatus
|
681
|
+
attr_accessor access_policies: Types::AccessPoliciesStatus
|
682
|
+
attr_accessor ip_address_type: Types::IPAddressTypeStatus
|
683
|
+
attr_accessor snapshot_options: Types::SnapshotOptionsStatus
|
684
|
+
attr_accessor vpc_options: Types::VPCDerivedInfoStatus
|
685
|
+
attr_accessor cognito_options: Types::CognitoOptionsStatus
|
686
|
+
attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptionsStatus
|
687
|
+
attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptionsStatus
|
688
|
+
attr_accessor advanced_options: Types::AdvancedOptionsStatus
|
689
|
+
attr_accessor log_publishing_options: Types::LogPublishingOptionsStatus
|
690
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptionsStatus
|
691
|
+
attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsStatus
|
692
|
+
attr_accessor auto_tune_options: Types::AutoTuneOptionsStatus
|
693
|
+
attr_accessor change_progress_details: Types::ChangeProgressDetails
|
694
|
+
attr_accessor off_peak_window_options: Types::OffPeakWindowOptionsStatus
|
695
|
+
attr_accessor software_update_options: Types::SoftwareUpdateOptionsStatus
|
696
|
+
attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class DomainEndpointOptions
|
701
|
+
attr_accessor enforce_https: bool
|
702
|
+
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")
|
703
|
+
attr_accessor custom_endpoint_enabled: bool
|
704
|
+
attr_accessor custom_endpoint: ::String
|
705
|
+
attr_accessor custom_endpoint_certificate_arn: ::String
|
706
|
+
SENSITIVE: []
|
707
|
+
end
|
708
|
+
|
709
|
+
class DomainEndpointOptionsStatus
|
710
|
+
attr_accessor options: Types::DomainEndpointOptions
|
711
|
+
attr_accessor status: Types::OptionStatus
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class DomainInfo
|
716
|
+
attr_accessor domain_name: ::String
|
717
|
+
attr_accessor engine_type: ("OpenSearch" | "Elasticsearch")
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class DomainInformationContainer
|
722
|
+
attr_accessor aws_domain_information: Types::AWSDomainInformation
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class DomainMaintenanceDetails
|
727
|
+
attr_accessor maintenance_id: ::String
|
728
|
+
attr_accessor domain_name: ::String
|
729
|
+
attr_accessor action: ("REBOOT_NODE" | "RESTART_SEARCH_PROCESS" | "RESTART_DASHBOARD")
|
730
|
+
attr_accessor node_id: ::String
|
731
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "TIMED_OUT")
|
732
|
+
attr_accessor status_message: ::String
|
733
|
+
attr_accessor created_at: ::Time
|
734
|
+
attr_accessor updated_at: ::Time
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class DomainNodesStatus
|
739
|
+
attr_accessor node_id: ::String
|
740
|
+
attr_accessor node_type: ("Data" | "Ultrawarm" | "Master")
|
741
|
+
attr_accessor availability_zone: ::String
|
742
|
+
attr_accessor instance_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
743
|
+
attr_accessor node_status: ("Active" | "StandBy" | "NotAvailable")
|
744
|
+
attr_accessor storage_type: ::String
|
745
|
+
attr_accessor storage_volume_type: ("standard" | "gp2" | "io1" | "gp3")
|
746
|
+
attr_accessor storage_size: ::String
|
747
|
+
SENSITIVE: []
|
748
|
+
end
|
749
|
+
|
750
|
+
class DomainPackageDetails
|
751
|
+
attr_accessor package_id: ::String
|
752
|
+
attr_accessor package_name: ::String
|
753
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
754
|
+
attr_accessor last_updated: ::Time
|
755
|
+
attr_accessor domain_name: ::String
|
756
|
+
attr_accessor domain_package_status: ("ASSOCIATING" | "ASSOCIATION_FAILED" | "ACTIVE" | "DISSOCIATING" | "DISSOCIATION_FAILED")
|
757
|
+
attr_accessor package_version: ::String
|
758
|
+
attr_accessor reference_path: ::String
|
759
|
+
attr_accessor error_details: Types::ErrorDetails
|
760
|
+
SENSITIVE: []
|
761
|
+
end
|
762
|
+
|
763
|
+
class DomainStatus
|
764
|
+
attr_accessor domain_id: ::String
|
765
|
+
attr_accessor domain_name: ::String
|
766
|
+
attr_accessor arn: ::String
|
767
|
+
attr_accessor created: bool
|
768
|
+
attr_accessor deleted: bool
|
769
|
+
attr_accessor endpoint: ::String
|
770
|
+
attr_accessor endpoint_v2: ::String
|
771
|
+
attr_accessor endpoints: ::Hash[::String, ::String]
|
772
|
+
attr_accessor processing: bool
|
773
|
+
attr_accessor upgrade_processing: bool
|
774
|
+
attr_accessor engine_version: ::String
|
775
|
+
attr_accessor cluster_config: Types::ClusterConfig
|
776
|
+
attr_accessor ebs_options: Types::EBSOptions
|
777
|
+
attr_accessor access_policies: ::String
|
778
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack")
|
779
|
+
attr_accessor snapshot_options: Types::SnapshotOptions
|
780
|
+
attr_accessor vpc_options: Types::VPCDerivedInfo
|
781
|
+
attr_accessor cognito_options: Types::CognitoOptions
|
782
|
+
attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
|
783
|
+
attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptions
|
784
|
+
attr_accessor advanced_options: ::Hash[::String, ::String]
|
785
|
+
attr_accessor log_publishing_options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
|
786
|
+
attr_accessor service_software_options: Types::ServiceSoftwareOptions
|
787
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
|
788
|
+
attr_accessor advanced_security_options: Types::AdvancedSecurityOptions
|
789
|
+
attr_accessor auto_tune_options: Types::AutoTuneOptionsOutput
|
790
|
+
attr_accessor change_progress_details: Types::ChangeProgressDetails
|
791
|
+
attr_accessor off_peak_window_options: Types::OffPeakWindowOptions
|
792
|
+
attr_accessor software_update_options: Types::SoftwareUpdateOptions
|
793
|
+
attr_accessor domain_processing_status: ("Creating" | "Active" | "Modifying" | "UpgradingEngineVersion" | "UpdatingServiceSoftware" | "Isolated" | "Deleting")
|
794
|
+
attr_accessor modifying_properties: ::Array[Types::ModifyingProperties]
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class DryRunProgressStatus
|
799
|
+
attr_accessor dry_run_id: ::String
|
800
|
+
attr_accessor dry_run_status: ::String
|
801
|
+
attr_accessor creation_date: ::String
|
802
|
+
attr_accessor update_date: ::String
|
803
|
+
attr_accessor validation_failures: ::Array[Types::ValidationFailure]
|
804
|
+
SENSITIVE: []
|
805
|
+
end
|
806
|
+
|
807
|
+
class DryRunResults
|
808
|
+
attr_accessor deployment_type: ::String
|
809
|
+
attr_accessor message: ::String
|
810
|
+
SENSITIVE: []
|
811
|
+
end
|
812
|
+
|
813
|
+
class Duration
|
814
|
+
attr_accessor value: ::Integer
|
815
|
+
attr_accessor unit: ("HOURS")
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class EBSOptions
|
820
|
+
attr_accessor ebs_enabled: bool
|
821
|
+
attr_accessor volume_type: ("standard" | "gp2" | "io1" | "gp3")
|
822
|
+
attr_accessor volume_size: ::Integer
|
823
|
+
attr_accessor iops: ::Integer
|
824
|
+
attr_accessor throughput: ::Integer
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class EBSOptionsStatus
|
829
|
+
attr_accessor options: Types::EBSOptions
|
830
|
+
attr_accessor status: Types::OptionStatus
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class EncryptionAtRestOptions
|
835
|
+
attr_accessor enabled: bool
|
836
|
+
attr_accessor kms_key_id: ::String
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class EncryptionAtRestOptionsStatus
|
841
|
+
attr_accessor options: Types::EncryptionAtRestOptions
|
842
|
+
attr_accessor status: Types::OptionStatus
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class EnvironmentInfo
|
847
|
+
attr_accessor availability_zone_information: ::Array[Types::AvailabilityZoneInfo]
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class ErrorDetails
|
852
|
+
attr_accessor error_type: ::String
|
853
|
+
attr_accessor error_message: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class Filter
|
858
|
+
attr_accessor name: ::String
|
859
|
+
attr_accessor values: ::Array[::String]
|
860
|
+
SENSITIVE: []
|
861
|
+
end
|
862
|
+
|
863
|
+
class GetCompatibleVersionsRequest
|
864
|
+
attr_accessor domain_name: ::String
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class GetCompatibleVersionsResponse
|
869
|
+
attr_accessor compatible_versions: ::Array[Types::CompatibleVersionsMap]
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class GetDataSourceRequest
|
874
|
+
attr_accessor domain_name: ::String
|
875
|
+
attr_accessor name: ::String
|
876
|
+
SENSITIVE: []
|
877
|
+
end
|
878
|
+
|
879
|
+
class GetDataSourceResponse
|
880
|
+
attr_accessor data_source_type: Types::DataSourceType
|
881
|
+
attr_accessor name: ::String
|
882
|
+
attr_accessor description: ::String
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
886
|
+
class GetDomainMaintenanceStatusRequest
|
887
|
+
attr_accessor domain_name: ::String
|
888
|
+
attr_accessor maintenance_id: ::String
|
889
|
+
SENSITIVE: []
|
890
|
+
end
|
891
|
+
|
892
|
+
class GetDomainMaintenanceStatusResponse
|
893
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "TIMED_OUT")
|
894
|
+
attr_accessor status_message: ::String
|
895
|
+
attr_accessor node_id: ::String
|
896
|
+
attr_accessor action: ("REBOOT_NODE" | "RESTART_SEARCH_PROCESS" | "RESTART_DASHBOARD")
|
897
|
+
attr_accessor created_at: ::Time
|
898
|
+
attr_accessor updated_at: ::Time
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class GetPackageVersionHistoryRequest
|
903
|
+
attr_accessor package_id: ::String
|
904
|
+
attr_accessor max_results: ::Integer
|
905
|
+
attr_accessor next_token: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class GetPackageVersionHistoryResponse
|
910
|
+
attr_accessor package_id: ::String
|
911
|
+
attr_accessor package_version_history_list: ::Array[Types::PackageVersionHistory]
|
912
|
+
attr_accessor next_token: ::String
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class GetUpgradeHistoryRequest
|
917
|
+
attr_accessor domain_name: ::String
|
918
|
+
attr_accessor max_results: ::Integer
|
919
|
+
attr_accessor next_token: ::String
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class GetUpgradeHistoryResponse
|
924
|
+
attr_accessor upgrade_histories: ::Array[Types::UpgradeHistory]
|
925
|
+
attr_accessor next_token: ::String
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class GetUpgradeStatusRequest
|
930
|
+
attr_accessor domain_name: ::String
|
931
|
+
SENSITIVE: []
|
932
|
+
end
|
933
|
+
|
934
|
+
class GetUpgradeStatusResponse
|
935
|
+
attr_accessor upgrade_step: ("PRE_UPGRADE_CHECK" | "SNAPSHOT" | "UPGRADE")
|
936
|
+
attr_accessor step_status: ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
|
937
|
+
attr_accessor upgrade_name: ::String
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class IPAddressTypeStatus
|
942
|
+
attr_accessor options: ("ipv4" | "dualstack")
|
943
|
+
attr_accessor status: Types::OptionStatus
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class InboundConnection
|
948
|
+
attr_accessor local_domain_info: Types::DomainInformationContainer
|
949
|
+
attr_accessor remote_domain_info: Types::DomainInformationContainer
|
950
|
+
attr_accessor connection_id: ::String
|
951
|
+
attr_accessor connection_status: Types::InboundConnectionStatus
|
952
|
+
attr_accessor connection_mode: ("DIRECT" | "VPC_ENDPOINT")
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class InboundConnectionStatus
|
957
|
+
attr_accessor status_code: ("PENDING_ACCEPTANCE" | "APPROVED" | "PROVISIONING" | "ACTIVE" | "REJECTING" | "REJECTED" | "DELETING" | "DELETED")
|
958
|
+
attr_accessor message: ::String
|
959
|
+
SENSITIVE: []
|
960
|
+
end
|
961
|
+
|
962
|
+
class InstanceCountLimits
|
963
|
+
attr_accessor minimum_instance_count: ::Integer
|
964
|
+
attr_accessor maximum_instance_count: ::Integer
|
965
|
+
SENSITIVE: []
|
966
|
+
end
|
967
|
+
|
968
|
+
class InstanceLimits
|
969
|
+
attr_accessor instance_count_limits: Types::InstanceCountLimits
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class InstanceTypeDetails
|
974
|
+
attr_accessor instance_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
975
|
+
attr_accessor encryption_enabled: bool
|
976
|
+
attr_accessor cognito_enabled: bool
|
977
|
+
attr_accessor app_logs_enabled: bool
|
978
|
+
attr_accessor advanced_security_enabled: bool
|
979
|
+
attr_accessor warm_enabled: bool
|
980
|
+
attr_accessor instance_role: ::Array[::String]
|
981
|
+
attr_accessor availability_zones: ::Array[::String]
|
982
|
+
SENSITIVE: []
|
983
|
+
end
|
984
|
+
|
985
|
+
class InternalException < Aws::EmptyStructure
|
986
|
+
end
|
987
|
+
|
988
|
+
class InvalidPaginationTokenException < Aws::EmptyStructure
|
989
|
+
end
|
990
|
+
|
991
|
+
class InvalidTypeException < Aws::EmptyStructure
|
992
|
+
end
|
993
|
+
|
994
|
+
class LimitExceededException < Aws::EmptyStructure
|
995
|
+
end
|
996
|
+
|
997
|
+
class Limits
|
998
|
+
attr_accessor storage_types: ::Array[Types::StorageType]
|
999
|
+
attr_accessor instance_limits: Types::InstanceLimits
|
1000
|
+
attr_accessor additional_limits: ::Array[Types::AdditionalLimit]
|
1001
|
+
SENSITIVE: []
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
class ListDataSourcesRequest
|
1005
|
+
attr_accessor domain_name: ::String
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class ListDataSourcesResponse
|
1010
|
+
attr_accessor data_sources: ::Array[Types::DataSourceDetails]
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class ListDomainMaintenancesRequest
|
1015
|
+
attr_accessor domain_name: ::String
|
1016
|
+
attr_accessor action: ("REBOOT_NODE" | "RESTART_SEARCH_PROCESS" | "RESTART_DASHBOARD")
|
1017
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "TIMED_OUT")
|
1018
|
+
attr_accessor max_results: ::Integer
|
1019
|
+
attr_accessor next_token: ::String
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class ListDomainMaintenancesResponse
|
1024
|
+
attr_accessor domain_maintenances: ::Array[Types::DomainMaintenanceDetails]
|
1025
|
+
attr_accessor next_token: ::String
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class ListDomainNamesRequest
|
1030
|
+
attr_accessor engine_type: ("OpenSearch" | "Elasticsearch")
|
1031
|
+
SENSITIVE: []
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
class ListDomainNamesResponse
|
1035
|
+
attr_accessor domain_names: ::Array[Types::DomainInfo]
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class ListDomainsForPackageRequest
|
1040
|
+
attr_accessor package_id: ::String
|
1041
|
+
attr_accessor max_results: ::Integer
|
1042
|
+
attr_accessor next_token: ::String
|
1043
|
+
SENSITIVE: []
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
class ListDomainsForPackageResponse
|
1047
|
+
attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
|
1048
|
+
attr_accessor next_token: ::String
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class ListInstanceTypeDetailsRequest
|
1053
|
+
attr_accessor engine_version: ::String
|
1054
|
+
attr_accessor domain_name: ::String
|
1055
|
+
attr_accessor max_results: ::Integer
|
1056
|
+
attr_accessor next_token: ::String
|
1057
|
+
attr_accessor retrieve_a_zs: bool
|
1058
|
+
attr_accessor instance_type: ::String
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class ListInstanceTypeDetailsResponse
|
1063
|
+
attr_accessor instance_type_details: ::Array[Types::InstanceTypeDetails]
|
1064
|
+
attr_accessor next_token: ::String
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class ListPackagesForDomainRequest
|
1069
|
+
attr_accessor domain_name: ::String
|
1070
|
+
attr_accessor max_results: ::Integer
|
1071
|
+
attr_accessor next_token: ::String
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class ListPackagesForDomainResponse
|
1076
|
+
attr_accessor domain_package_details_list: ::Array[Types::DomainPackageDetails]
|
1077
|
+
attr_accessor next_token: ::String
|
1078
|
+
SENSITIVE: []
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class ListScheduledActionsRequest
|
1082
|
+
attr_accessor domain_name: ::String
|
1083
|
+
attr_accessor max_results: ::Integer
|
1084
|
+
attr_accessor next_token: ::String
|
1085
|
+
SENSITIVE: []
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
class ListScheduledActionsResponse
|
1089
|
+
attr_accessor scheduled_actions: ::Array[Types::ScheduledAction]
|
1090
|
+
attr_accessor next_token: ::String
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class ListTagsRequest
|
1095
|
+
attr_accessor arn: ::String
|
1096
|
+
SENSITIVE: []
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class ListTagsResponse
|
1100
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class ListVersionsRequest
|
1105
|
+
attr_accessor max_results: ::Integer
|
1106
|
+
attr_accessor next_token: ::String
|
1107
|
+
SENSITIVE: []
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class ListVersionsResponse
|
1111
|
+
attr_accessor versions: ::Array[::String]
|
1112
|
+
attr_accessor next_token: ::String
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class ListVpcEndpointAccessRequest
|
1117
|
+
attr_accessor domain_name: ::String
|
1118
|
+
attr_accessor next_token: ::String
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class ListVpcEndpointAccessResponse
|
1123
|
+
attr_accessor authorized_principal_list: ::Array[Types::AuthorizedPrincipal]
|
1124
|
+
attr_accessor next_token: ::String
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class ListVpcEndpointsForDomainRequest
|
1129
|
+
attr_accessor domain_name: ::String
|
1130
|
+
attr_accessor next_token: ::String
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class ListVpcEndpointsForDomainResponse
|
1135
|
+
attr_accessor vpc_endpoint_summary_list: ::Array[Types::VpcEndpointSummary]
|
1136
|
+
attr_accessor next_token: ::String
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
class ListVpcEndpointsRequest
|
1141
|
+
attr_accessor next_token: ::String
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class ListVpcEndpointsResponse
|
1146
|
+
attr_accessor vpc_endpoint_summary_list: ::Array[Types::VpcEndpointSummary]
|
1147
|
+
attr_accessor next_token: ::String
|
1148
|
+
SENSITIVE: []
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
class LogPublishingOption
|
1152
|
+
attr_accessor cloud_watch_logs_log_group_arn: ::String
|
1153
|
+
attr_accessor enabled: bool
|
1154
|
+
SENSITIVE: []
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
class LogPublishingOptionsStatus
|
1158
|
+
attr_accessor options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
|
1159
|
+
attr_accessor status: Types::OptionStatus
|
1160
|
+
SENSITIVE: []
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
class MasterUserOptions
|
1164
|
+
attr_accessor master_user_arn: ::String
|
1165
|
+
attr_accessor master_user_name: ::String
|
1166
|
+
attr_accessor master_user_password: ::String
|
1167
|
+
SENSITIVE: [:master_user_name, :master_user_password]
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class ModifyingProperties
|
1171
|
+
attr_accessor name: ::String
|
1172
|
+
attr_accessor active_value: ::String
|
1173
|
+
attr_accessor pending_value: ::String
|
1174
|
+
attr_accessor value_type: ("PLAIN_TEXT" | "STRINGIFIED_JSON")
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class NodeToNodeEncryptionOptions
|
1179
|
+
attr_accessor enabled: bool
|
1180
|
+
SENSITIVE: []
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
class NodeToNodeEncryptionOptionsStatus
|
1184
|
+
attr_accessor options: Types::NodeToNodeEncryptionOptions
|
1185
|
+
attr_accessor status: Types::OptionStatus
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class OffPeakWindow
|
1190
|
+
attr_accessor window_start_time: Types::WindowStartTime
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class OffPeakWindowOptions
|
1195
|
+
attr_accessor enabled: bool
|
1196
|
+
attr_accessor off_peak_window: Types::OffPeakWindow
|
1197
|
+
SENSITIVE: []
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class OffPeakWindowOptionsStatus
|
1201
|
+
attr_accessor options: Types::OffPeakWindowOptions
|
1202
|
+
attr_accessor status: Types::OptionStatus
|
1203
|
+
SENSITIVE: []
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class OptionStatus
|
1207
|
+
attr_accessor creation_date: ::Time
|
1208
|
+
attr_accessor update_date: ::Time
|
1209
|
+
attr_accessor update_version: ::Integer
|
1210
|
+
attr_accessor state: ("RequiresIndexDocuments" | "Processing" | "Active")
|
1211
|
+
attr_accessor pending_deletion: bool
|
1212
|
+
SENSITIVE: []
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class OutboundConnection
|
1216
|
+
attr_accessor local_domain_info: Types::DomainInformationContainer
|
1217
|
+
attr_accessor remote_domain_info: Types::DomainInformationContainer
|
1218
|
+
attr_accessor connection_id: ::String
|
1219
|
+
attr_accessor connection_alias: ::String
|
1220
|
+
attr_accessor connection_status: Types::OutboundConnectionStatus
|
1221
|
+
attr_accessor connection_mode: ("DIRECT" | "VPC_ENDPOINT")
|
1222
|
+
attr_accessor connection_properties: Types::ConnectionProperties
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class OutboundConnectionStatus
|
1227
|
+
attr_accessor status_code: ("VALIDATING" | "VALIDATION_FAILED" | "PENDING_ACCEPTANCE" | "APPROVED" | "PROVISIONING" | "ACTIVE" | "REJECTING" | "REJECTED" | "DELETING" | "DELETED")
|
1228
|
+
attr_accessor message: ::String
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class PackageDetails
|
1233
|
+
attr_accessor package_id: ::String
|
1234
|
+
attr_accessor package_name: ::String
|
1235
|
+
attr_accessor package_type: ("TXT-DICTIONARY" | "ZIP-PLUGIN")
|
1236
|
+
attr_accessor package_description: ::String
|
1237
|
+
attr_accessor package_status: ("COPYING" | "COPY_FAILED" | "VALIDATING" | "VALIDATION_FAILED" | "AVAILABLE" | "DELETING" | "DELETED" | "DELETE_FAILED")
|
1238
|
+
attr_accessor created_at: ::Time
|
1239
|
+
attr_accessor last_updated_at: ::Time
|
1240
|
+
attr_accessor available_package_version: ::String
|
1241
|
+
attr_accessor error_details: Types::ErrorDetails
|
1242
|
+
attr_accessor engine_version: ::String
|
1243
|
+
attr_accessor available_plugin_properties: Types::PluginProperties
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class PackageSource
|
1248
|
+
attr_accessor s3_bucket_name: ::String
|
1249
|
+
attr_accessor s3_key: ::String
|
1250
|
+
SENSITIVE: []
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
class PackageVersionHistory
|
1254
|
+
attr_accessor package_version: ::String
|
1255
|
+
attr_accessor commit_message: ::String
|
1256
|
+
attr_accessor created_at: ::Time
|
1257
|
+
attr_accessor plugin_properties: Types::PluginProperties
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class PluginProperties
|
1262
|
+
attr_accessor name: ::String
|
1263
|
+
attr_accessor description: ::String
|
1264
|
+
attr_accessor version: ::String
|
1265
|
+
attr_accessor class_name: ::String
|
1266
|
+
attr_accessor uncompressed_size_in_bytes: ::Integer
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class PurchaseReservedInstanceOfferingRequest
|
1271
|
+
attr_accessor reserved_instance_offering_id: ::String
|
1272
|
+
attr_accessor reservation_name: ::String
|
1273
|
+
attr_accessor instance_count: ::Integer
|
1274
|
+
SENSITIVE: []
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class PurchaseReservedInstanceOfferingResponse
|
1278
|
+
attr_accessor reserved_instance_id: ::String
|
1279
|
+
attr_accessor reservation_name: ::String
|
1280
|
+
SENSITIVE: []
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class RecurringCharge
|
1284
|
+
attr_accessor recurring_charge_amount: ::Float
|
1285
|
+
attr_accessor recurring_charge_frequency: ::String
|
1286
|
+
SENSITIVE: []
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
class RejectInboundConnectionRequest
|
1290
|
+
attr_accessor connection_id: ::String
|
1291
|
+
SENSITIVE: []
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
class RejectInboundConnectionResponse
|
1295
|
+
attr_accessor connection: Types::InboundConnection
|
1296
|
+
SENSITIVE: []
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class RemoveTagsRequest
|
1300
|
+
attr_accessor arn: ::String
|
1301
|
+
attr_accessor tag_keys: ::Array[::String]
|
1302
|
+
SENSITIVE: []
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class ReservedInstance
|
1306
|
+
attr_accessor reservation_name: ::String
|
1307
|
+
attr_accessor reserved_instance_id: ::String
|
1308
|
+
attr_accessor billing_subscription_id: ::Integer
|
1309
|
+
attr_accessor reserved_instance_offering_id: ::String
|
1310
|
+
attr_accessor instance_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
1311
|
+
attr_accessor start_time: ::Time
|
1312
|
+
attr_accessor duration: ::Integer
|
1313
|
+
attr_accessor fixed_price: ::Float
|
1314
|
+
attr_accessor usage_price: ::Float
|
1315
|
+
attr_accessor currency_code: ::String
|
1316
|
+
attr_accessor instance_count: ::Integer
|
1317
|
+
attr_accessor state: ::String
|
1318
|
+
attr_accessor payment_option: ("ALL_UPFRONT" | "PARTIAL_UPFRONT" | "NO_UPFRONT")
|
1319
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class ReservedInstanceOffering
|
1324
|
+
attr_accessor reserved_instance_offering_id: ::String
|
1325
|
+
attr_accessor instance_type: ("m3.medium.search" | "m3.large.search" | "m3.xlarge.search" | "m3.2xlarge.search" | "m4.large.search" | "m4.xlarge.search" | "m4.2xlarge.search" | "m4.4xlarge.search" | "m4.10xlarge.search" | "m5.large.search" | "m5.xlarge.search" | "m5.2xlarge.search" | "m5.4xlarge.search" | "m5.12xlarge.search" | "m5.24xlarge.search" | "r5.large.search" | "r5.xlarge.search" | "r5.2xlarge.search" | "r5.4xlarge.search" | "r5.12xlarge.search" | "r5.24xlarge.search" | "c5.large.search" | "c5.xlarge.search" | "c5.2xlarge.search" | "c5.4xlarge.search" | "c5.9xlarge.search" | "c5.18xlarge.search" | "t3.nano.search" | "t3.micro.search" | "t3.small.search" | "t3.medium.search" | "t3.large.search" | "t3.xlarge.search" | "t3.2xlarge.search" | "ultrawarm1.medium.search" | "ultrawarm1.large.search" | "ultrawarm1.xlarge.search" | "t2.micro.search" | "t2.small.search" | "t2.medium.search" | "r3.large.search" | "r3.xlarge.search" | "r3.2xlarge.search" | "r3.4xlarge.search" | "r3.8xlarge.search" | "i2.xlarge.search" | "i2.2xlarge.search" | "d2.xlarge.search" | "d2.2xlarge.search" | "d2.4xlarge.search" | "d2.8xlarge.search" | "c4.large.search" | "c4.xlarge.search" | "c4.2xlarge.search" | "c4.4xlarge.search" | "c4.8xlarge.search" | "r4.large.search" | "r4.xlarge.search" | "r4.2xlarge.search" | "r4.4xlarge.search" | "r4.8xlarge.search" | "r4.16xlarge.search" | "i3.large.search" | "i3.xlarge.search" | "i3.2xlarge.search" | "i3.4xlarge.search" | "i3.8xlarge.search" | "i3.16xlarge.search" | "r6g.large.search" | "r6g.xlarge.search" | "r6g.2xlarge.search" | "r6g.4xlarge.search" | "r6g.8xlarge.search" | "r6g.12xlarge.search" | "m6g.large.search" | "m6g.xlarge.search" | "m6g.2xlarge.search" | "m6g.4xlarge.search" | "m6g.8xlarge.search" | "m6g.12xlarge.search" | "c6g.large.search" | "c6g.xlarge.search" | "c6g.2xlarge.search" | "c6g.4xlarge.search" | "c6g.8xlarge.search" | "c6g.12xlarge.search" | "r6gd.large.search" | "r6gd.xlarge.search" | "r6gd.2xlarge.search" | "r6gd.4xlarge.search" | "r6gd.8xlarge.search" | "r6gd.12xlarge.search" | "r6gd.16xlarge.search" | "t4g.small.search" | "t4g.medium.search")
|
1326
|
+
attr_accessor duration: ::Integer
|
1327
|
+
attr_accessor fixed_price: ::Float
|
1328
|
+
attr_accessor usage_price: ::Float
|
1329
|
+
attr_accessor currency_code: ::String
|
1330
|
+
attr_accessor payment_option: ("ALL_UPFRONT" | "PARTIAL_UPFRONT" | "NO_UPFRONT")
|
1331
|
+
attr_accessor recurring_charges: ::Array[Types::RecurringCharge]
|
1332
|
+
SENSITIVE: []
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
class ResourceAlreadyExistsException < Aws::EmptyStructure
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class RevokeVpcEndpointAccessRequest
|
1342
|
+
attr_accessor domain_name: ::String
|
1343
|
+
attr_accessor account: ::String
|
1344
|
+
SENSITIVE: []
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
class RevokeVpcEndpointAccessResponse < Aws::EmptyStructure
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class S3GlueDataCatalog
|
1351
|
+
attr_accessor role_arn: ::String
|
1352
|
+
SENSITIVE: []
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
class SAMLIdp
|
1356
|
+
attr_accessor metadata_content: ::String
|
1357
|
+
attr_accessor entity_id: ::String
|
1358
|
+
SENSITIVE: []
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
class SAMLOptionsInput
|
1362
|
+
attr_accessor enabled: bool
|
1363
|
+
attr_accessor idp: Types::SAMLIdp
|
1364
|
+
attr_accessor master_user_name: ::String
|
1365
|
+
attr_accessor master_backend_role: ::String
|
1366
|
+
attr_accessor subject_key: ::String
|
1367
|
+
attr_accessor roles_key: ::String
|
1368
|
+
attr_accessor session_timeout_minutes: ::Integer
|
1369
|
+
SENSITIVE: [:master_user_name]
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class SAMLOptionsOutput
|
1373
|
+
attr_accessor enabled: bool
|
1374
|
+
attr_accessor idp: Types::SAMLIdp
|
1375
|
+
attr_accessor subject_key: ::String
|
1376
|
+
attr_accessor roles_key: ::String
|
1377
|
+
attr_accessor session_timeout_minutes: ::Integer
|
1378
|
+
SENSITIVE: []
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
class ScheduledAction
|
1382
|
+
attr_accessor id: ::String
|
1383
|
+
attr_accessor type: ("SERVICE_SOFTWARE_UPDATE" | "JVM_HEAP_SIZE_TUNING" | "JVM_YOUNG_GEN_TUNING")
|
1384
|
+
attr_accessor severity: ("HIGH" | "MEDIUM" | "LOW")
|
1385
|
+
attr_accessor scheduled_time: ::Integer
|
1386
|
+
attr_accessor description: ::String
|
1387
|
+
attr_accessor scheduled_by: ("CUSTOMER" | "SYSTEM")
|
1388
|
+
attr_accessor status: ("PENDING_UPDATE" | "IN_PROGRESS" | "FAILED" | "COMPLETED" | "NOT_ELIGIBLE" | "ELIGIBLE")
|
1389
|
+
attr_accessor mandatory: bool
|
1390
|
+
attr_accessor cancellable: bool
|
1391
|
+
SENSITIVE: []
|
1392
|
+
end
|
1393
|
+
|
1394
|
+
class ScheduledAutoTuneDetails
|
1395
|
+
attr_accessor date: ::Time
|
1396
|
+
attr_accessor action_type: ("JVM_HEAP_SIZE_TUNING" | "JVM_YOUNG_GEN_TUNING")
|
1397
|
+
attr_accessor action: ::String
|
1398
|
+
attr_accessor severity: ("LOW" | "MEDIUM" | "HIGH")
|
1399
|
+
SENSITIVE: []
|
1400
|
+
end
|
1401
|
+
|
1402
|
+
class ServiceSoftwareOptions
|
1403
|
+
attr_accessor current_version: ::String
|
1404
|
+
attr_accessor new_version: ::String
|
1405
|
+
attr_accessor update_available: bool
|
1406
|
+
attr_accessor cancellable: bool
|
1407
|
+
attr_accessor update_status: ("PENDING_UPDATE" | "IN_PROGRESS" | "COMPLETED" | "NOT_ELIGIBLE" | "ELIGIBLE")
|
1408
|
+
attr_accessor description: ::String
|
1409
|
+
attr_accessor automated_update_date: ::Time
|
1410
|
+
attr_accessor optional_deployment: bool
|
1411
|
+
SENSITIVE: []
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
class SlotNotAvailableException
|
1415
|
+
attr_accessor slot_suggestions: ::Array[::Integer]
|
1416
|
+
SENSITIVE: []
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
class SnapshotOptions
|
1420
|
+
attr_accessor automated_snapshot_start_hour: ::Integer
|
1421
|
+
SENSITIVE: []
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
class SnapshotOptionsStatus
|
1425
|
+
attr_accessor options: Types::SnapshotOptions
|
1426
|
+
attr_accessor status: Types::OptionStatus
|
1427
|
+
SENSITIVE: []
|
1428
|
+
end
|
1429
|
+
|
1430
|
+
class SoftwareUpdateOptions
|
1431
|
+
attr_accessor auto_software_update_enabled: bool
|
1432
|
+
SENSITIVE: []
|
1433
|
+
end
|
1434
|
+
|
1435
|
+
class SoftwareUpdateOptionsStatus
|
1436
|
+
attr_accessor options: Types::SoftwareUpdateOptions
|
1437
|
+
attr_accessor status: Types::OptionStatus
|
1438
|
+
SENSITIVE: []
|
1439
|
+
end
|
1440
|
+
|
1441
|
+
class StartDomainMaintenanceRequest
|
1442
|
+
attr_accessor domain_name: ::String
|
1443
|
+
attr_accessor action: ("REBOOT_NODE" | "RESTART_SEARCH_PROCESS" | "RESTART_DASHBOARD")
|
1444
|
+
attr_accessor node_id: ::String
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class StartDomainMaintenanceResponse
|
1449
|
+
attr_accessor maintenance_id: ::String
|
1450
|
+
SENSITIVE: []
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
class StartServiceSoftwareUpdateRequest
|
1454
|
+
attr_accessor domain_name: ::String
|
1455
|
+
attr_accessor schedule_at: ("NOW" | "TIMESTAMP" | "OFF_PEAK_WINDOW")
|
1456
|
+
attr_accessor desired_start_time: ::Integer
|
1457
|
+
SENSITIVE: []
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
class StartServiceSoftwareUpdateResponse
|
1461
|
+
attr_accessor service_software_options: Types::ServiceSoftwareOptions
|
1462
|
+
SENSITIVE: []
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
class StorageType
|
1466
|
+
attr_accessor storage_type_name: ::String
|
1467
|
+
attr_accessor storage_sub_type_name: ::String
|
1468
|
+
attr_accessor storage_type_limits: ::Array[Types::StorageTypeLimit]
|
1469
|
+
SENSITIVE: []
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
class StorageTypeLimit
|
1473
|
+
attr_accessor limit_name: ::String
|
1474
|
+
attr_accessor limit_values: ::Array[::String]
|
1475
|
+
SENSITIVE: []
|
1476
|
+
end
|
1477
|
+
|
1478
|
+
class Tag
|
1479
|
+
attr_accessor key: ::String
|
1480
|
+
attr_accessor value: ::String
|
1481
|
+
SENSITIVE: []
|
1482
|
+
end
|
1483
|
+
|
1484
|
+
class UpdateDataSourceRequest
|
1485
|
+
attr_accessor domain_name: ::String
|
1486
|
+
attr_accessor name: ::String
|
1487
|
+
attr_accessor data_source_type: Types::DataSourceType
|
1488
|
+
attr_accessor description: ::String
|
1489
|
+
SENSITIVE: []
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
class UpdateDataSourceResponse
|
1493
|
+
attr_accessor message: ::String
|
1494
|
+
SENSITIVE: []
|
1495
|
+
end
|
1496
|
+
|
1497
|
+
class UpdateDomainConfigRequest
|
1498
|
+
attr_accessor domain_name: ::String
|
1499
|
+
attr_accessor cluster_config: Types::ClusterConfig
|
1500
|
+
attr_accessor ebs_options: Types::EBSOptions
|
1501
|
+
attr_accessor snapshot_options: Types::SnapshotOptions
|
1502
|
+
attr_accessor vpc_options: Types::VPCOptions
|
1503
|
+
attr_accessor cognito_options: Types::CognitoOptions
|
1504
|
+
attr_accessor advanced_options: ::Hash[::String, ::String]
|
1505
|
+
attr_accessor access_policies: ::String
|
1506
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack")
|
1507
|
+
attr_accessor log_publishing_options: ::Hash[("INDEX_SLOW_LOGS" | "SEARCH_SLOW_LOGS" | "ES_APPLICATION_LOGS" | "AUDIT_LOGS"), Types::LogPublishingOption]
|
1508
|
+
attr_accessor encryption_at_rest_options: Types::EncryptionAtRestOptions
|
1509
|
+
attr_accessor domain_endpoint_options: Types::DomainEndpointOptions
|
1510
|
+
attr_accessor node_to_node_encryption_options: Types::NodeToNodeEncryptionOptions
|
1511
|
+
attr_accessor advanced_security_options: Types::AdvancedSecurityOptionsInput
|
1512
|
+
attr_accessor auto_tune_options: Types::AutoTuneOptions
|
1513
|
+
attr_accessor dry_run: bool
|
1514
|
+
attr_accessor dry_run_mode: ("Basic" | "Verbose")
|
1515
|
+
attr_accessor off_peak_window_options: Types::OffPeakWindowOptions
|
1516
|
+
attr_accessor software_update_options: Types::SoftwareUpdateOptions
|
1517
|
+
SENSITIVE: []
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
class UpdateDomainConfigResponse
|
1521
|
+
attr_accessor domain_config: Types::DomainConfig
|
1522
|
+
attr_accessor dry_run_results: Types::DryRunResults
|
1523
|
+
attr_accessor dry_run_progress_status: Types::DryRunProgressStatus
|
1524
|
+
SENSITIVE: []
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
class UpdatePackageRequest
|
1528
|
+
attr_accessor package_id: ::String
|
1529
|
+
attr_accessor package_source: Types::PackageSource
|
1530
|
+
attr_accessor package_description: ::String
|
1531
|
+
attr_accessor commit_message: ::String
|
1532
|
+
SENSITIVE: []
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
class UpdatePackageResponse
|
1536
|
+
attr_accessor package_details: Types::PackageDetails
|
1537
|
+
SENSITIVE: []
|
1538
|
+
end
|
1539
|
+
|
1540
|
+
class UpdateScheduledActionRequest
|
1541
|
+
attr_accessor domain_name: ::String
|
1542
|
+
attr_accessor action_id: ::String
|
1543
|
+
attr_accessor action_type: ("SERVICE_SOFTWARE_UPDATE" | "JVM_HEAP_SIZE_TUNING" | "JVM_YOUNG_GEN_TUNING")
|
1544
|
+
attr_accessor schedule_at: ("NOW" | "TIMESTAMP" | "OFF_PEAK_WINDOW")
|
1545
|
+
attr_accessor desired_start_time: ::Integer
|
1546
|
+
SENSITIVE: []
|
1547
|
+
end
|
1548
|
+
|
1549
|
+
class UpdateScheduledActionResponse
|
1550
|
+
attr_accessor scheduled_action: Types::ScheduledAction
|
1551
|
+
SENSITIVE: []
|
1552
|
+
end
|
1553
|
+
|
1554
|
+
class UpdateVpcEndpointRequest
|
1555
|
+
attr_accessor vpc_endpoint_id: ::String
|
1556
|
+
attr_accessor vpc_options: Types::VPCOptions
|
1557
|
+
SENSITIVE: []
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
class UpdateVpcEndpointResponse
|
1561
|
+
attr_accessor vpc_endpoint: Types::VpcEndpoint
|
1562
|
+
SENSITIVE: []
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class UpgradeDomainRequest
|
1566
|
+
attr_accessor domain_name: ::String
|
1567
|
+
attr_accessor target_version: ::String
|
1568
|
+
attr_accessor perform_check_only: bool
|
1569
|
+
attr_accessor advanced_options: ::Hash[::String, ::String]
|
1570
|
+
SENSITIVE: []
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
class UpgradeDomainResponse
|
1574
|
+
attr_accessor upgrade_id: ::String
|
1575
|
+
attr_accessor domain_name: ::String
|
1576
|
+
attr_accessor target_version: ::String
|
1577
|
+
attr_accessor perform_check_only: bool
|
1578
|
+
attr_accessor advanced_options: ::Hash[::String, ::String]
|
1579
|
+
attr_accessor change_progress_details: Types::ChangeProgressDetails
|
1580
|
+
SENSITIVE: []
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
class UpgradeHistory
|
1584
|
+
attr_accessor upgrade_name: ::String
|
1585
|
+
attr_accessor start_timestamp: ::Time
|
1586
|
+
attr_accessor upgrade_status: ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
|
1587
|
+
attr_accessor steps_list: ::Array[Types::UpgradeStepItem]
|
1588
|
+
SENSITIVE: []
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
class UpgradeStepItem
|
1592
|
+
attr_accessor upgrade_step: ("PRE_UPGRADE_CHECK" | "SNAPSHOT" | "UPGRADE")
|
1593
|
+
attr_accessor upgrade_step_status: ("IN_PROGRESS" | "SUCCEEDED" | "SUCCEEDED_WITH_ISSUES" | "FAILED")
|
1594
|
+
attr_accessor issues: ::Array[::String]
|
1595
|
+
attr_accessor progress_percent: ::Float
|
1596
|
+
SENSITIVE: []
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class VPCDerivedInfo
|
1600
|
+
attr_accessor vpc_id: ::String
|
1601
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1602
|
+
attr_accessor availability_zones: ::Array[::String]
|
1603
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1604
|
+
SENSITIVE: []
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
class VPCDerivedInfoStatus
|
1608
|
+
attr_accessor options: Types::VPCDerivedInfo
|
1609
|
+
attr_accessor status: Types::OptionStatus
|
1610
|
+
SENSITIVE: []
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
class VPCOptions
|
1614
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1615
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1616
|
+
SENSITIVE: []
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
class ValidationException < Aws::EmptyStructure
|
1620
|
+
end
|
1621
|
+
|
1622
|
+
class ValidationFailure
|
1623
|
+
attr_accessor code: ::String
|
1624
|
+
attr_accessor message: ::String
|
1625
|
+
SENSITIVE: []
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
class VersionStatus
|
1629
|
+
attr_accessor options: ::String
|
1630
|
+
attr_accessor status: Types::OptionStatus
|
1631
|
+
SENSITIVE: []
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
class VpcEndpoint
|
1635
|
+
attr_accessor vpc_endpoint_id: ::String
|
1636
|
+
attr_accessor vpc_endpoint_owner: ::String
|
1637
|
+
attr_accessor domain_arn: ::String
|
1638
|
+
attr_accessor vpc_options: Types::VPCDerivedInfo
|
1639
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
1640
|
+
attr_accessor endpoint: ::String
|
1641
|
+
SENSITIVE: []
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class VpcEndpointError
|
1645
|
+
attr_accessor vpc_endpoint_id: ::String
|
1646
|
+
attr_accessor error_code: ("ENDPOINT_NOT_FOUND" | "SERVER_ERROR")
|
1647
|
+
attr_accessor error_message: ::String
|
1648
|
+
SENSITIVE: []
|
1649
|
+
end
|
1650
|
+
|
1651
|
+
class VpcEndpointSummary
|
1652
|
+
attr_accessor vpc_endpoint_id: ::String
|
1653
|
+
attr_accessor vpc_endpoint_owner: ::String
|
1654
|
+
attr_accessor domain_arn: ::String
|
1655
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
1656
|
+
SENSITIVE: []
|
1657
|
+
end
|
1658
|
+
|
1659
|
+
class WindowStartTime
|
1660
|
+
attr_accessor hours: ::Integer
|
1661
|
+
attr_accessor minutes: ::Integer
|
1662
|
+
SENSITIVE: []
|
1663
|
+
end
|
1664
|
+
|
1665
|
+
class ZoneAwarenessConfig
|
1666
|
+
attr_accessor availability_zone_count: ::Integer
|
1667
|
+
SENSITIVE: []
|
1668
|
+
end
|
1669
|
+
end
|
1670
|
+
end
|