aws-sdk-chimesdkmeetings 1.27.0 → 1.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +94 -17
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +18 -0
- data/lib/aws-sdk-chimesdkmeetings/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-chimesdkmeetings/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +156 -20
- data/lib/aws-sdk-chimesdkmeetings.rb +1 -1
- data/sig/client.rbs +360 -0
- data/sig/errors.rbs +79 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +399 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,399 @@
|
|
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::ChimeSDKMeetings
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class Attendee
|
12
|
+
attr_accessor external_user_id: ::String
|
13
|
+
attr_accessor attendee_id: ::String
|
14
|
+
attr_accessor join_token: ::String
|
15
|
+
attr_accessor capabilities: Types::AttendeeCapabilities
|
16
|
+
SENSITIVE: [:external_user_id, :join_token]
|
17
|
+
end
|
18
|
+
|
19
|
+
class AttendeeCapabilities
|
20
|
+
attr_accessor audio: ("SendReceive" | "Send" | "Receive" | "None")
|
21
|
+
attr_accessor video: ("SendReceive" | "Send" | "Receive" | "None")
|
22
|
+
attr_accessor content: ("SendReceive" | "Send" | "Receive" | "None")
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class AttendeeFeatures
|
27
|
+
attr_accessor max_count: ::Integer
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AttendeeIdItem
|
32
|
+
attr_accessor attendee_id: ::String
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class AudioFeatures
|
37
|
+
attr_accessor echo_reduction: ("AVAILABLE" | "UNAVAILABLE")
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class BadRequestException
|
42
|
+
attr_accessor code: ::String
|
43
|
+
attr_accessor message: ::String
|
44
|
+
attr_accessor request_id: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class BatchCreateAttendeeRequest
|
49
|
+
attr_accessor meeting_id: ::String
|
50
|
+
attr_accessor attendees: ::Array[Types::CreateAttendeeRequestItem]
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class BatchCreateAttendeeResponse
|
55
|
+
attr_accessor attendees: ::Array[Types::Attendee]
|
56
|
+
attr_accessor errors: ::Array[Types::CreateAttendeeError]
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class BatchUpdateAttendeeCapabilitiesExceptRequest
|
61
|
+
attr_accessor meeting_id: ::String
|
62
|
+
attr_accessor excluded_attendee_ids: ::Array[Types::AttendeeIdItem]
|
63
|
+
attr_accessor capabilities: Types::AttendeeCapabilities
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class ConflictException
|
68
|
+
attr_accessor code: ::String
|
69
|
+
attr_accessor message: ::String
|
70
|
+
attr_accessor request_id: ::String
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class ContentFeatures
|
75
|
+
attr_accessor max_resolution: ("None" | "FHD" | "UHD")
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateAttendeeError
|
80
|
+
attr_accessor external_user_id: ::String
|
81
|
+
attr_accessor error_code: ::String
|
82
|
+
attr_accessor error_message: ::String
|
83
|
+
SENSITIVE: [:external_user_id]
|
84
|
+
end
|
85
|
+
|
86
|
+
class CreateAttendeeRequest
|
87
|
+
attr_accessor meeting_id: ::String
|
88
|
+
attr_accessor external_user_id: ::String
|
89
|
+
attr_accessor capabilities: Types::AttendeeCapabilities
|
90
|
+
SENSITIVE: [:external_user_id]
|
91
|
+
end
|
92
|
+
|
93
|
+
class CreateAttendeeRequestItem
|
94
|
+
attr_accessor external_user_id: ::String
|
95
|
+
attr_accessor capabilities: Types::AttendeeCapabilities
|
96
|
+
SENSITIVE: [:external_user_id]
|
97
|
+
end
|
98
|
+
|
99
|
+
class CreateAttendeeResponse
|
100
|
+
attr_accessor attendee: Types::Attendee
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class CreateMeetingRequest
|
105
|
+
attr_accessor client_request_token: ::String
|
106
|
+
attr_accessor media_region: ::String
|
107
|
+
attr_accessor meeting_host_id: ::String
|
108
|
+
attr_accessor external_meeting_id: ::String
|
109
|
+
attr_accessor notifications_configuration: Types::NotificationsConfiguration
|
110
|
+
attr_accessor meeting_features: Types::MeetingFeaturesConfiguration
|
111
|
+
attr_accessor primary_meeting_id: ::String
|
112
|
+
attr_accessor tenant_ids: ::Array[::String]
|
113
|
+
attr_accessor tags: ::Array[Types::Tag]
|
114
|
+
SENSITIVE: [:client_request_token, :meeting_host_id, :external_meeting_id]
|
115
|
+
end
|
116
|
+
|
117
|
+
class CreateMeetingResponse
|
118
|
+
attr_accessor meeting: Types::Meeting
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class CreateMeetingWithAttendeesRequest
|
123
|
+
attr_accessor client_request_token: ::String
|
124
|
+
attr_accessor media_region: ::String
|
125
|
+
attr_accessor meeting_host_id: ::String
|
126
|
+
attr_accessor external_meeting_id: ::String
|
127
|
+
attr_accessor meeting_features: Types::MeetingFeaturesConfiguration
|
128
|
+
attr_accessor notifications_configuration: Types::NotificationsConfiguration
|
129
|
+
attr_accessor attendees: ::Array[Types::CreateAttendeeRequestItem]
|
130
|
+
attr_accessor primary_meeting_id: ::String
|
131
|
+
attr_accessor tenant_ids: ::Array[::String]
|
132
|
+
attr_accessor tags: ::Array[Types::Tag]
|
133
|
+
SENSITIVE: [:client_request_token, :meeting_host_id, :external_meeting_id]
|
134
|
+
end
|
135
|
+
|
136
|
+
class CreateMeetingWithAttendeesResponse
|
137
|
+
attr_accessor meeting: Types::Meeting
|
138
|
+
attr_accessor attendees: ::Array[Types::Attendee]
|
139
|
+
attr_accessor errors: ::Array[Types::CreateAttendeeError]
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class DeleteAttendeeRequest
|
144
|
+
attr_accessor meeting_id: ::String
|
145
|
+
attr_accessor attendee_id: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class DeleteMeetingRequest
|
150
|
+
attr_accessor meeting_id: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class EngineTranscribeMedicalSettings
|
155
|
+
attr_accessor language_code: ("en-US")
|
156
|
+
attr_accessor specialty: ("PRIMARYCARE" | "CARDIOLOGY" | "NEUROLOGY" | "ONCOLOGY" | "RADIOLOGY" | "UROLOGY")
|
157
|
+
attr_accessor type: ("CONVERSATION" | "DICTATION")
|
158
|
+
attr_accessor vocabulary_name: ::String
|
159
|
+
attr_accessor region: ("us-east-1" | "us-east-2" | "us-west-2" | "ap-southeast-2" | "ca-central-1" | "eu-west-1" | "auto")
|
160
|
+
attr_accessor content_identification_type: ("PHI")
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class EngineTranscribeSettings
|
165
|
+
attr_accessor 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")
|
166
|
+
attr_accessor vocabulary_filter_method: ("remove" | "mask" | "tag")
|
167
|
+
attr_accessor vocabulary_filter_name: ::String
|
168
|
+
attr_accessor vocabulary_name: ::String
|
169
|
+
attr_accessor 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")
|
170
|
+
attr_accessor enable_partial_results_stabilization: bool
|
171
|
+
attr_accessor partial_results_stability: ("low" | "medium" | "high")
|
172
|
+
attr_accessor content_identification_type: ("PII")
|
173
|
+
attr_accessor content_redaction_type: ("PII")
|
174
|
+
attr_accessor pii_entity_types: ::String
|
175
|
+
attr_accessor language_model_name: ::String
|
176
|
+
attr_accessor identify_language: bool
|
177
|
+
attr_accessor language_options: ::String
|
178
|
+
attr_accessor 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")
|
179
|
+
attr_accessor vocabulary_names: ::String
|
180
|
+
attr_accessor vocabulary_filter_names: ::String
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class ForbiddenException
|
185
|
+
attr_accessor code: ::String
|
186
|
+
attr_accessor message: ::String
|
187
|
+
attr_accessor request_id: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class GetAttendeeRequest
|
192
|
+
attr_accessor meeting_id: ::String
|
193
|
+
attr_accessor attendee_id: ::String
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class GetAttendeeResponse
|
198
|
+
attr_accessor attendee: Types::Attendee
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class GetMeetingRequest
|
203
|
+
attr_accessor meeting_id: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class GetMeetingResponse
|
208
|
+
attr_accessor meeting: Types::Meeting
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class LimitExceededException
|
213
|
+
attr_accessor code: ::String
|
214
|
+
attr_accessor message: ::String
|
215
|
+
attr_accessor request_id: ::String
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class ListAttendeesRequest
|
220
|
+
attr_accessor meeting_id: ::String
|
221
|
+
attr_accessor next_token: ::String
|
222
|
+
attr_accessor max_results: ::Integer
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class ListAttendeesResponse
|
227
|
+
attr_accessor attendees: ::Array[Types::Attendee]
|
228
|
+
attr_accessor next_token: ::String
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class ListTagsForResourceRequest
|
233
|
+
attr_accessor resource_arn: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class ListTagsForResourceResponse
|
238
|
+
attr_accessor tags: ::Array[Types::Tag]
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class MediaPlacement
|
243
|
+
attr_accessor audio_host_url: ::String
|
244
|
+
attr_accessor audio_fallback_url: ::String
|
245
|
+
attr_accessor signaling_url: ::String
|
246
|
+
attr_accessor turn_control_url: ::String
|
247
|
+
attr_accessor screen_data_url: ::String
|
248
|
+
attr_accessor screen_viewing_url: ::String
|
249
|
+
attr_accessor screen_sharing_url: ::String
|
250
|
+
attr_accessor event_ingestion_url: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class Meeting
|
255
|
+
attr_accessor meeting_id: ::String
|
256
|
+
attr_accessor meeting_host_id: ::String
|
257
|
+
attr_accessor external_meeting_id: ::String
|
258
|
+
attr_accessor media_region: ::String
|
259
|
+
attr_accessor media_placement: Types::MediaPlacement
|
260
|
+
attr_accessor meeting_features: Types::MeetingFeaturesConfiguration
|
261
|
+
attr_accessor primary_meeting_id: ::String
|
262
|
+
attr_accessor tenant_ids: ::Array[::String]
|
263
|
+
attr_accessor meeting_arn: ::String
|
264
|
+
SENSITIVE: [:meeting_host_id, :external_meeting_id]
|
265
|
+
end
|
266
|
+
|
267
|
+
class MeetingFeaturesConfiguration
|
268
|
+
attr_accessor audio: Types::AudioFeatures
|
269
|
+
attr_accessor video: Types::VideoFeatures
|
270
|
+
attr_accessor content: Types::ContentFeatures
|
271
|
+
attr_accessor attendee: Types::AttendeeFeatures
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class NotFoundException
|
276
|
+
attr_accessor code: ::String
|
277
|
+
attr_accessor message: ::String
|
278
|
+
attr_accessor request_id: ::String
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class NotificationsConfiguration
|
283
|
+
attr_accessor lambda_function_arn: ::String
|
284
|
+
attr_accessor sns_topic_arn: ::String
|
285
|
+
attr_accessor sqs_queue_arn: ::String
|
286
|
+
SENSITIVE: [:lambda_function_arn, :sns_topic_arn, :sqs_queue_arn]
|
287
|
+
end
|
288
|
+
|
289
|
+
class ResourceNotFoundException
|
290
|
+
attr_accessor code: ::String
|
291
|
+
attr_accessor message: ::String
|
292
|
+
attr_accessor request_id: ::String
|
293
|
+
attr_accessor resource_name: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class ServiceFailureException
|
298
|
+
attr_accessor code: ::String
|
299
|
+
attr_accessor message: ::String
|
300
|
+
attr_accessor request_id: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class ServiceUnavailableException
|
305
|
+
attr_accessor code: ::String
|
306
|
+
attr_accessor message: ::String
|
307
|
+
attr_accessor request_id: ::String
|
308
|
+
attr_accessor retry_after_seconds: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class StartMeetingTranscriptionRequest
|
313
|
+
attr_accessor meeting_id: ::String
|
314
|
+
attr_accessor transcription_configuration: Types::TranscriptionConfiguration
|
315
|
+
SENSITIVE: []
|
316
|
+
end
|
317
|
+
|
318
|
+
class StopMeetingTranscriptionRequest
|
319
|
+
attr_accessor meeting_id: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class Tag
|
324
|
+
attr_accessor key: ::String
|
325
|
+
attr_accessor value: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class TagResourceRequest
|
330
|
+
attr_accessor resource_arn: ::String
|
331
|
+
attr_accessor tags: ::Array[Types::Tag]
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class TagResourceResponse < Aws::EmptyStructure
|
336
|
+
end
|
337
|
+
|
338
|
+
class ThrottlingException
|
339
|
+
attr_accessor code: ::String
|
340
|
+
attr_accessor message: ::String
|
341
|
+
attr_accessor request_id: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class TooManyTagsException
|
346
|
+
attr_accessor code: ::String
|
347
|
+
attr_accessor message: ::String
|
348
|
+
attr_accessor request_id: ::String
|
349
|
+
attr_accessor resource_name: ::String
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class TranscriptionConfiguration
|
354
|
+
attr_accessor engine_transcribe_settings: Types::EngineTranscribeSettings
|
355
|
+
attr_accessor engine_transcribe_medical_settings: Types::EngineTranscribeMedicalSettings
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class UnauthorizedException
|
360
|
+
attr_accessor code: ::String
|
361
|
+
attr_accessor message: ::String
|
362
|
+
attr_accessor request_id: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class UnprocessableEntityException
|
367
|
+
attr_accessor code: ::String
|
368
|
+
attr_accessor message: ::String
|
369
|
+
attr_accessor request_id: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class UntagResourceRequest
|
374
|
+
attr_accessor resource_arn: ::String
|
375
|
+
attr_accessor tag_keys: ::Array[::String]
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
380
|
+
end
|
381
|
+
|
382
|
+
class UpdateAttendeeCapabilitiesRequest
|
383
|
+
attr_accessor meeting_id: ::String
|
384
|
+
attr_accessor attendee_id: ::String
|
385
|
+
attr_accessor capabilities: Types::AttendeeCapabilities
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class UpdateAttendeeCapabilitiesResponse
|
390
|
+
attr_accessor attendee: Types::Attendee
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class VideoFeatures
|
395
|
+
attr_accessor max_resolution: ("None" | "HD" | "FHD")
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
end
|
399
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkmeetings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-chimesdkmeetings/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-chimesdkmeetings/resource.rb
|
68
68
|
- lib/aws-sdk-chimesdkmeetings/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkmeetings
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkmeetings/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Amazon Chime SDK Meetings
|
94
99
|
test_files: []
|