aws-sdk-chimesdkmeetings 1.27.0 → 1.29.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,360 @@
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 ChimeSDKMeetings
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/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 _BatchCreateAttendeeResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchCreateAttendeeResponse]
77
+ def attendees: () -> ::Array[Types::Attendee]
78
+ def errors: () -> ::Array[Types::CreateAttendeeError]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#batch_create_attendee-instance_method
81
+ def batch_create_attendee: (
82
+ meeting_id: ::String,
83
+ attendees: Array[
84
+ {
85
+ external_user_id: ::String,
86
+ capabilities: {
87
+ audio: ("SendReceive" | "Send" | "Receive" | "None"),
88
+ video: ("SendReceive" | "Send" | "Receive" | "None"),
89
+ content: ("SendReceive" | "Send" | "Receive" | "None")
90
+ }?
91
+ },
92
+ ]
93
+ ) -> _BatchCreateAttendeeResponseSuccess
94
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCreateAttendeeResponseSuccess
95
+
96
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#batch_update_attendee_capabilities_except-instance_method
97
+ def batch_update_attendee_capabilities_except: (
98
+ meeting_id: ::String,
99
+ excluded_attendee_ids: Array[
100
+ {
101
+ attendee_id: ::String
102
+ },
103
+ ],
104
+ capabilities: {
105
+ audio: ("SendReceive" | "Send" | "Receive" | "None"),
106
+ video: ("SendReceive" | "Send" | "Receive" | "None"),
107
+ content: ("SendReceive" | "Send" | "Receive" | "None")
108
+ }
109
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
110
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
111
+
112
+ interface _CreateAttendeeResponseSuccess
113
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAttendeeResponse]
114
+ def attendee: () -> Types::Attendee
115
+ end
116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#create_attendee-instance_method
117
+ def create_attendee: (
118
+ meeting_id: ::String,
119
+ external_user_id: ::String,
120
+ ?capabilities: {
121
+ audio: ("SendReceive" | "Send" | "Receive" | "None"),
122
+ video: ("SendReceive" | "Send" | "Receive" | "None"),
123
+ content: ("SendReceive" | "Send" | "Receive" | "None")
124
+ }
125
+ ) -> _CreateAttendeeResponseSuccess
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAttendeeResponseSuccess
127
+
128
+ interface _CreateMeetingResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMeetingResponse]
130
+ def meeting: () -> Types::Meeting
131
+ end
132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#create_meeting-instance_method
133
+ def create_meeting: (
134
+ client_request_token: ::String,
135
+ media_region: ::String,
136
+ ?meeting_host_id: ::String,
137
+ external_meeting_id: ::String,
138
+ ?notifications_configuration: {
139
+ lambda_function_arn: ::String?,
140
+ sns_topic_arn: ::String?,
141
+ sqs_queue_arn: ::String?
142
+ },
143
+ ?meeting_features: {
144
+ audio: {
145
+ echo_reduction: ("AVAILABLE" | "UNAVAILABLE")?
146
+ }?,
147
+ video: {
148
+ max_resolution: ("None" | "HD" | "FHD")?
149
+ }?,
150
+ content: {
151
+ max_resolution: ("None" | "FHD" | "UHD")?
152
+ }?,
153
+ attendee: {
154
+ max_count: ::Integer?
155
+ }?
156
+ },
157
+ ?primary_meeting_id: ::String,
158
+ ?tenant_ids: Array[::String],
159
+ ?tags: Array[
160
+ {
161
+ key: ::String,
162
+ value: ::String
163
+ },
164
+ ]
165
+ ) -> _CreateMeetingResponseSuccess
166
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMeetingResponseSuccess
167
+
168
+ interface _CreateMeetingWithAttendeesResponseSuccess
169
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMeetingWithAttendeesResponse]
170
+ def meeting: () -> Types::Meeting
171
+ def attendees: () -> ::Array[Types::Attendee]
172
+ def errors: () -> ::Array[Types::CreateAttendeeError]
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#create_meeting_with_attendees-instance_method
175
+ def create_meeting_with_attendees: (
176
+ client_request_token: ::String,
177
+ media_region: ::String,
178
+ ?meeting_host_id: ::String,
179
+ external_meeting_id: ::String,
180
+ ?meeting_features: {
181
+ audio: {
182
+ echo_reduction: ("AVAILABLE" | "UNAVAILABLE")?
183
+ }?,
184
+ video: {
185
+ max_resolution: ("None" | "HD" | "FHD")?
186
+ }?,
187
+ content: {
188
+ max_resolution: ("None" | "FHD" | "UHD")?
189
+ }?,
190
+ attendee: {
191
+ max_count: ::Integer?
192
+ }?
193
+ },
194
+ ?notifications_configuration: {
195
+ lambda_function_arn: ::String?,
196
+ sns_topic_arn: ::String?,
197
+ sqs_queue_arn: ::String?
198
+ },
199
+ attendees: Array[
200
+ {
201
+ external_user_id: ::String,
202
+ capabilities: {
203
+ audio: ("SendReceive" | "Send" | "Receive" | "None"),
204
+ video: ("SendReceive" | "Send" | "Receive" | "None"),
205
+ content: ("SendReceive" | "Send" | "Receive" | "None")
206
+ }?
207
+ },
208
+ ],
209
+ ?primary_meeting_id: ::String,
210
+ ?tenant_ids: Array[::String],
211
+ ?tags: Array[
212
+ {
213
+ key: ::String,
214
+ value: ::String
215
+ },
216
+ ]
217
+ ) -> _CreateMeetingWithAttendeesResponseSuccess
218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMeetingWithAttendeesResponseSuccess
219
+
220
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#delete_attendee-instance_method
221
+ def delete_attendee: (
222
+ meeting_id: ::String,
223
+ attendee_id: ::String
224
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
225
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
226
+
227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#delete_meeting-instance_method
228
+ def delete_meeting: (
229
+ meeting_id: ::String
230
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
232
+
233
+ interface _GetAttendeeResponseSuccess
234
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAttendeeResponse]
235
+ def attendee: () -> Types::Attendee
236
+ end
237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#get_attendee-instance_method
238
+ def get_attendee: (
239
+ meeting_id: ::String,
240
+ attendee_id: ::String
241
+ ) -> _GetAttendeeResponseSuccess
242
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAttendeeResponseSuccess
243
+
244
+ interface _GetMeetingResponseSuccess
245
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMeetingResponse]
246
+ def meeting: () -> Types::Meeting
247
+ end
248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#get_meeting-instance_method
249
+ def get_meeting: (
250
+ meeting_id: ::String
251
+ ) -> _GetMeetingResponseSuccess
252
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMeetingResponseSuccess
253
+
254
+ interface _ListAttendeesResponseSuccess
255
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAttendeesResponse]
256
+ def attendees: () -> ::Array[Types::Attendee]
257
+ def next_token: () -> ::String
258
+ end
259
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#list_attendees-instance_method
260
+ def list_attendees: (
261
+ meeting_id: ::String,
262
+ ?next_token: ::String,
263
+ ?max_results: ::Integer
264
+ ) -> _ListAttendeesResponseSuccess
265
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttendeesResponseSuccess
266
+
267
+ interface _ListTagsForResourceResponseSuccess
268
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
269
+ def tags: () -> ::Array[Types::Tag]
270
+ end
271
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#list_tags_for_resource-instance_method
272
+ def list_tags_for_resource: (
273
+ resource_arn: ::String
274
+ ) -> _ListTagsForResourceResponseSuccess
275
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
276
+
277
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#start_meeting_transcription-instance_method
278
+ def start_meeting_transcription: (
279
+ meeting_id: ::String,
280
+ transcription_configuration: {
281
+ engine_transcribe_settings: {
282
+ language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "hi-IN")?,
283
+ vocabulary_filter_method: ("remove" | "mask" | "tag")?,
284
+ vocabulary_filter_name: ::String?,
285
+ vocabulary_name: ::String?,
286
+ region: ("us-east-2" | "us-east-1" | "us-west-2" | "ap-northeast-2" | "ap-southeast-2" | "ap-northeast-1" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "sa-east-1" | "auto" | "us-gov-west-1")?,
287
+ enable_partial_results_stabilization: bool?,
288
+ partial_results_stability: ("low" | "medium" | "high")?,
289
+ content_identification_type: ("PII")?,
290
+ content_redaction_type: ("PII")?,
291
+ pii_entity_types: ::String?,
292
+ language_model_name: ::String?,
293
+ identify_language: bool?,
294
+ language_options: ::String?,
295
+ preferred_language: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "hi-IN")?,
296
+ vocabulary_names: ::String?,
297
+ vocabulary_filter_names: ::String?
298
+ }?,
299
+ engine_transcribe_medical_settings: {
300
+ language_code: ("en-US"),
301
+ specialty: ("PRIMARYCARE" | "CARDIOLOGY" | "NEUROLOGY" | "ONCOLOGY" | "RADIOLOGY" | "UROLOGY"),
302
+ type: ("CONVERSATION" | "DICTATION"),
303
+ vocabulary_name: ::String?,
304
+ region: ("us-east-1" | "us-east-2" | "us-west-2" | "ap-southeast-2" | "ca-central-1" | "eu-west-1" | "auto")?,
305
+ content_identification_type: ("PHI")?
306
+ }?
307
+ }
308
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
309
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
310
+
311
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#stop_meeting_transcription-instance_method
312
+ def stop_meeting_transcription: (
313
+ meeting_id: ::String
314
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
315
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
316
+
317
+ interface _TagResourceResponseSuccess
318
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#tag_resource-instance_method
321
+ def tag_resource: (
322
+ resource_arn: ::String,
323
+ tags: Array[
324
+ {
325
+ key: ::String,
326
+ value: ::String
327
+ },
328
+ ]
329
+ ) -> _TagResourceResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
331
+
332
+ interface _UntagResourceResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
334
+ end
335
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#untag_resource-instance_method
336
+ def untag_resource: (
337
+ resource_arn: ::String,
338
+ tag_keys: Array[::String]
339
+ ) -> _UntagResourceResponseSuccess
340
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
341
+
342
+ interface _UpdateAttendeeCapabilitiesResponseSuccess
343
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAttendeeCapabilitiesResponse]
344
+ def attendee: () -> Types::Attendee
345
+ end
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Client.html#update_attendee_capabilities-instance_method
347
+ def update_attendee_capabilities: (
348
+ meeting_id: ::String,
349
+ attendee_id: ::String,
350
+ capabilities: {
351
+ audio: ("SendReceive" | "Send" | "Receive" | "None"),
352
+ video: ("SendReceive" | "Send" | "Receive" | "None"),
353
+ content: ("SendReceive" | "Send" | "Receive" | "None")
354
+ }
355
+ ) -> _UpdateAttendeeCapabilitiesResponseSuccess
356
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAttendeeCapabilitiesResponseSuccess
357
+ end
358
+ end
359
+ end
360
+
data/sig/errors.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 ChimeSDKMeetings
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class BadRequestException < ::Aws::Errors::ServiceError
15
+ def code: () -> ::String
16
+ def message: () -> ::String
17
+ def request_id: () -> ::String
18
+ end
19
+ class ConflictException < ::Aws::Errors::ServiceError
20
+ def code: () -> ::String
21
+ def message: () -> ::String
22
+ def request_id: () -> ::String
23
+ end
24
+ class ForbiddenException < ::Aws::Errors::ServiceError
25
+ def code: () -> ::String
26
+ def message: () -> ::String
27
+ def request_id: () -> ::String
28
+ end
29
+ class LimitExceededException < ::Aws::Errors::ServiceError
30
+ def code: () -> ::String
31
+ def message: () -> ::String
32
+ def request_id: () -> ::String
33
+ end
34
+ class NotFoundException < ::Aws::Errors::ServiceError
35
+ def code: () -> ::String
36
+ def message: () -> ::String
37
+ def request_id: () -> ::String
38
+ end
39
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
40
+ def code: () -> ::String
41
+ def message: () -> ::String
42
+ def request_id: () -> ::String
43
+ def resource_name: () -> ::String
44
+ end
45
+ class ServiceFailureException < ::Aws::Errors::ServiceError
46
+ def code: () -> ::String
47
+ def message: () -> ::String
48
+ def request_id: () -> ::String
49
+ end
50
+ class ServiceUnavailableException < ::Aws::Errors::ServiceError
51
+ def code: () -> ::String
52
+ def message: () -> ::String
53
+ def request_id: () -> ::String
54
+ def retry_after_seconds: () -> ::String
55
+ end
56
+ class ThrottlingException < ::Aws::Errors::ServiceError
57
+ def code: () -> ::String
58
+ def message: () -> ::String
59
+ def request_id: () -> ::String
60
+ end
61
+ class TooManyTagsException < ::Aws::Errors::ServiceError
62
+ def code: () -> ::String
63
+ def message: () -> ::String
64
+ def request_id: () -> ::String
65
+ def resource_name: () -> ::String
66
+ end
67
+ class UnauthorizedException < ::Aws::Errors::ServiceError
68
+ def code: () -> ::String
69
+ def message: () -> ::String
70
+ def request_id: () -> ::String
71
+ end
72
+ class UnprocessableEntityException < ::Aws::Errors::ServiceError
73
+ def code: () -> ::String
74
+ def message: () -> ::String
75
+ def request_id: () -> ::String
76
+ end
77
+ end
78
+ end
79
+ 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 ChimeSDKMeetings
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMeetings/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