aws-sdk-kafkaconnect 1.18.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,384 @@
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
9
+ module KafkaConnect
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateConnectorResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectorResponse]
77
+ def connector_arn: () -> ::String
78
+ def connector_name: () -> ::String
79
+ def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_connector-instance_method
82
+ def create_connector: (
83
+ capacity: {
84
+ auto_scaling: {
85
+ max_worker_count: ::Integer,
86
+ mcu_count: ::Integer,
87
+ min_worker_count: ::Integer,
88
+ scale_in_policy: {
89
+ cpu_utilization_percentage: ::Integer
90
+ }?,
91
+ scale_out_policy: {
92
+ cpu_utilization_percentage: ::Integer
93
+ }?
94
+ }?,
95
+ provisioned_capacity: {
96
+ mcu_count: ::Integer,
97
+ worker_count: ::Integer
98
+ }?
99
+ },
100
+ connector_configuration: Hash[::String, ::String],
101
+ ?connector_description: ::String,
102
+ connector_name: ::String,
103
+ kafka_cluster: {
104
+ apache_kafka_cluster: {
105
+ bootstrap_servers: ::String,
106
+ vpc: {
107
+ security_groups: Array[::String]?,
108
+ subnets: Array[::String]
109
+ }
110
+ }
111
+ },
112
+ kafka_cluster_client_authentication: {
113
+ authentication_type: ("NONE" | "IAM")
114
+ },
115
+ kafka_cluster_encryption_in_transit: {
116
+ encryption_type: ("PLAINTEXT" | "TLS")
117
+ },
118
+ kafka_connect_version: ::String,
119
+ ?log_delivery: {
120
+ worker_log_delivery: {
121
+ cloud_watch_logs: {
122
+ enabled: bool,
123
+ log_group: ::String?
124
+ }?,
125
+ firehose: {
126
+ delivery_stream: ::String?,
127
+ enabled: bool
128
+ }?,
129
+ s3: {
130
+ bucket: ::String?,
131
+ enabled: bool,
132
+ prefix: ::String?
133
+ }?
134
+ }
135
+ },
136
+ plugins: Array[
137
+ {
138
+ custom_plugin: {
139
+ custom_plugin_arn: ::String,
140
+ revision: ::Integer
141
+ }
142
+ },
143
+ ],
144
+ service_execution_role_arn: ::String,
145
+ ?tags: Hash[::String, ::String],
146
+ ?worker_configuration: {
147
+ revision: ::Integer,
148
+ worker_configuration_arn: ::String
149
+ }
150
+ ) -> _CreateConnectorResponseSuccess
151
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorResponseSuccess
152
+
153
+ interface _CreateCustomPluginResponseSuccess
154
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomPluginResponse]
155
+ def custom_plugin_arn: () -> ::String
156
+ def custom_plugin_state: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
157
+ def name: () -> ::String
158
+ def revision: () -> ::Integer
159
+ end
160
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_custom_plugin-instance_method
161
+ def create_custom_plugin: (
162
+ content_type: ("JAR" | "ZIP"),
163
+ ?description: ::String,
164
+ location: {
165
+ s3_location: {
166
+ bucket_arn: ::String,
167
+ file_key: ::String,
168
+ object_version: ::String?
169
+ }
170
+ },
171
+ name: ::String,
172
+ ?tags: Hash[::String, ::String]
173
+ ) -> _CreateCustomPluginResponseSuccess
174
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomPluginResponseSuccess
175
+
176
+ interface _CreateWorkerConfigurationResponseSuccess
177
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkerConfigurationResponse]
178
+ def creation_time: () -> ::Time
179
+ def latest_revision: () -> Types::WorkerConfigurationRevisionSummary
180
+ def name: () -> ::String
181
+ def worker_configuration_arn: () -> ::String
182
+ def worker_configuration_state: () -> ("ACTIVE" | "DELETING")
183
+ end
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_worker_configuration-instance_method
185
+ def create_worker_configuration: (
186
+ ?description: ::String,
187
+ name: ::String,
188
+ properties_file_content: ::String,
189
+ ?tags: Hash[::String, ::String]
190
+ ) -> _CreateWorkerConfigurationResponseSuccess
191
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkerConfigurationResponseSuccess
192
+
193
+ interface _DeleteConnectorResponseSuccess
194
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectorResponse]
195
+ def connector_arn: () -> ::String
196
+ def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
197
+ end
198
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#delete_connector-instance_method
199
+ def delete_connector: (
200
+ connector_arn: ::String,
201
+ ?current_version: ::String
202
+ ) -> _DeleteConnectorResponseSuccess
203
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectorResponseSuccess
204
+
205
+ interface _DeleteCustomPluginResponseSuccess
206
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCustomPluginResponse]
207
+ def custom_plugin_arn: () -> ::String
208
+ def custom_plugin_state: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
209
+ end
210
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#delete_custom_plugin-instance_method
211
+ def delete_custom_plugin: (
212
+ custom_plugin_arn: ::String
213
+ ) -> _DeleteCustomPluginResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCustomPluginResponseSuccess
215
+
216
+ interface _DeleteWorkerConfigurationResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkerConfigurationResponse]
218
+ def worker_configuration_arn: () -> ::String
219
+ def worker_configuration_state: () -> ("ACTIVE" | "DELETING")
220
+ end
221
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#delete_worker_configuration-instance_method
222
+ def delete_worker_configuration: (
223
+ worker_configuration_arn: ::String
224
+ ) -> _DeleteWorkerConfigurationResponseSuccess
225
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkerConfigurationResponseSuccess
226
+
227
+ interface _DescribeConnectorResponseSuccess
228
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectorResponse]
229
+ def capacity: () -> Types::CapacityDescription
230
+ def connector_arn: () -> ::String
231
+ def connector_configuration: () -> ::Hash[::String, ::String]
232
+ def connector_description: () -> ::String
233
+ def connector_name: () -> ::String
234
+ def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
235
+ def creation_time: () -> ::Time
236
+ def current_version: () -> ::String
237
+ def kafka_cluster: () -> Types::KafkaClusterDescription
238
+ def kafka_cluster_client_authentication: () -> Types::KafkaClusterClientAuthenticationDescription
239
+ def kafka_cluster_encryption_in_transit: () -> Types::KafkaClusterEncryptionInTransitDescription
240
+ def kafka_connect_version: () -> ::String
241
+ def log_delivery: () -> Types::LogDeliveryDescription
242
+ def plugins: () -> ::Array[Types::PluginDescription]
243
+ def service_execution_role_arn: () -> ::String
244
+ def state_description: () -> Types::StateDescription
245
+ def worker_configuration: () -> Types::WorkerConfigurationDescription
246
+ end
247
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_connector-instance_method
248
+ def describe_connector: (
249
+ connector_arn: ::String
250
+ ) -> _DescribeConnectorResponseSuccess
251
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectorResponseSuccess
252
+
253
+ interface _DescribeCustomPluginResponseSuccess
254
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomPluginResponse]
255
+ def creation_time: () -> ::Time
256
+ def custom_plugin_arn: () -> ::String
257
+ def custom_plugin_state: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
258
+ def description: () -> ::String
259
+ def latest_revision: () -> Types::CustomPluginRevisionSummary
260
+ def name: () -> ::String
261
+ def state_description: () -> Types::StateDescription
262
+ end
263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_custom_plugin-instance_method
264
+ def describe_custom_plugin: (
265
+ custom_plugin_arn: ::String
266
+ ) -> _DescribeCustomPluginResponseSuccess
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomPluginResponseSuccess
268
+
269
+ interface _DescribeWorkerConfigurationResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorkerConfigurationResponse]
271
+ def creation_time: () -> ::Time
272
+ def description: () -> ::String
273
+ def latest_revision: () -> Types::WorkerConfigurationRevisionDescription
274
+ def name: () -> ::String
275
+ def worker_configuration_arn: () -> ::String
276
+ def worker_configuration_state: () -> ("ACTIVE" | "DELETING")
277
+ end
278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_worker_configuration-instance_method
279
+ def describe_worker_configuration: (
280
+ worker_configuration_arn: ::String
281
+ ) -> _DescribeWorkerConfigurationResponseSuccess
282
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkerConfigurationResponseSuccess
283
+
284
+ interface _ListConnectorsResponseSuccess
285
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectorsResponse]
286
+ def connectors: () -> ::Array[Types::ConnectorSummary]
287
+ def next_token: () -> ::String
288
+ end
289
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_connectors-instance_method
290
+ def list_connectors: (
291
+ ?connector_name_prefix: ::String,
292
+ ?max_results: ::Integer,
293
+ ?next_token: ::String
294
+ ) -> _ListConnectorsResponseSuccess
295
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectorsResponseSuccess
296
+
297
+ interface _ListCustomPluginsResponseSuccess
298
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomPluginsResponse]
299
+ def custom_plugins: () -> ::Array[Types::CustomPluginSummary]
300
+ def next_token: () -> ::String
301
+ end
302
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_custom_plugins-instance_method
303
+ def list_custom_plugins: (
304
+ ?max_results: ::Integer,
305
+ ?name_prefix: ::String,
306
+ ?next_token: ::String
307
+ ) -> _ListCustomPluginsResponseSuccess
308
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomPluginsResponseSuccess
309
+
310
+ interface _ListTagsForResourceResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
312
+ def tags: () -> ::Hash[::String, ::String]
313
+ end
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_tags_for_resource-instance_method
315
+ def list_tags_for_resource: (
316
+ resource_arn: ::String
317
+ ) -> _ListTagsForResourceResponseSuccess
318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
319
+
320
+ interface _ListWorkerConfigurationsResponseSuccess
321
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkerConfigurationsResponse]
322
+ def next_token: () -> ::String
323
+ def worker_configurations: () -> ::Array[Types::WorkerConfigurationSummary]
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_worker_configurations-instance_method
326
+ def list_worker_configurations: (
327
+ ?max_results: ::Integer,
328
+ ?name_prefix: ::String,
329
+ ?next_token: ::String
330
+ ) -> _ListWorkerConfigurationsResponseSuccess
331
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkerConfigurationsResponseSuccess
332
+
333
+ interface _TagResourceResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
335
+ end
336
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#tag_resource-instance_method
337
+ def tag_resource: (
338
+ resource_arn: ::String,
339
+ tags: Hash[::String, ::String]
340
+ ) -> _TagResourceResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
342
+
343
+ interface _UntagResourceResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
345
+ end
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#untag_resource-instance_method
347
+ def untag_resource: (
348
+ resource_arn: ::String,
349
+ tag_keys: Array[::String]
350
+ ) -> _UntagResourceResponseSuccess
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
352
+
353
+ interface _UpdateConnectorResponseSuccess
354
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectorResponse]
355
+ def connector_arn: () -> ::String
356
+ def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
357
+ end
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#update_connector-instance_method
359
+ def update_connector: (
360
+ capacity: {
361
+ auto_scaling: {
362
+ max_worker_count: ::Integer,
363
+ mcu_count: ::Integer,
364
+ min_worker_count: ::Integer,
365
+ scale_in_policy: {
366
+ cpu_utilization_percentage: ::Integer
367
+ },
368
+ scale_out_policy: {
369
+ cpu_utilization_percentage: ::Integer
370
+ }
371
+ }?,
372
+ provisioned_capacity: {
373
+ mcu_count: ::Integer,
374
+ worker_count: ::Integer
375
+ }?
376
+ },
377
+ connector_arn: ::String,
378
+ current_version: ::String
379
+ ) -> _UpdateConnectorResponseSuccess
380
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectorResponseSuccess
381
+ end
382
+ end
383
+ end
384
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,40 @@
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
9
+ module KafkaConnect
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class BadRequestException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class ForbiddenException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class InternalServerErrorException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class NotFoundException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ServiceUnavailableException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class TooManyRequestsException < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ class UnauthorizedException < ::Aws::Errors::ServiceError
36
+ def message: () -> ::String
37
+ end
38
+ end
39
+ end
40
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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
9
+ module KafkaConnect
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end