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