aws-sdk-ivsrealtime 1.14.0 → 1.16.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-ivsrealtime/client.rb +45 -1
- data/lib/aws-sdk-ivsrealtime/client_api.rb +27 -0
- data/lib/aws-sdk-ivsrealtime/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-ivsrealtime/types.rb +109 -2
- data/lib/aws-sdk-ivsrealtime.rb +1 -1
- data/sig/client.rbs +437 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +582 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,437 @@
|
|
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 IVSRealTime
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/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 _CreateEncoderConfigurationResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEncoderConfigurationResponse]
|
77
|
+
def encoder_configuration: () -> Types::EncoderConfiguration
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#create_encoder_configuration-instance_method
|
80
|
+
def create_encoder_configuration: (
|
81
|
+
?name: ::String,
|
82
|
+
?tags: Hash[::String, ::String],
|
83
|
+
?video: {
|
84
|
+
bitrate: ::Integer?,
|
85
|
+
framerate: ::Float?,
|
86
|
+
height: ::Integer?,
|
87
|
+
width: ::Integer?
|
88
|
+
}
|
89
|
+
) -> _CreateEncoderConfigurationResponseSuccess
|
90
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEncoderConfigurationResponseSuccess
|
91
|
+
|
92
|
+
interface _CreateParticipantTokenResponseSuccess
|
93
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateParticipantTokenResponse]
|
94
|
+
def participant_token: () -> Types::ParticipantToken
|
95
|
+
end
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#create_participant_token-instance_method
|
97
|
+
def create_participant_token: (
|
98
|
+
?attributes: Hash[::String, ::String],
|
99
|
+
?capabilities: Array[("PUBLISH" | "SUBSCRIBE")],
|
100
|
+
?duration: ::Integer,
|
101
|
+
stage_arn: ::String,
|
102
|
+
?user_id: ::String
|
103
|
+
) -> _CreateParticipantTokenResponseSuccess
|
104
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateParticipantTokenResponseSuccess
|
105
|
+
|
106
|
+
interface _CreateStageResponseSuccess
|
107
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStageResponse]
|
108
|
+
def participant_tokens: () -> ::Array[Types::ParticipantToken]
|
109
|
+
def stage: () -> Types::Stage
|
110
|
+
end
|
111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#create_stage-instance_method
|
112
|
+
def create_stage: (
|
113
|
+
?name: ::String,
|
114
|
+
?participant_token_configurations: Array[
|
115
|
+
{
|
116
|
+
attributes: Hash[::String, ::String]?,
|
117
|
+
capabilities: Array[("PUBLISH" | "SUBSCRIBE")]?,
|
118
|
+
duration: ::Integer?,
|
119
|
+
user_id: ::String?
|
120
|
+
},
|
121
|
+
],
|
122
|
+
?tags: Hash[::String, ::String]
|
123
|
+
) -> _CreateStageResponseSuccess
|
124
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStageResponseSuccess
|
125
|
+
|
126
|
+
interface _CreateStorageConfigurationResponseSuccess
|
127
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStorageConfigurationResponse]
|
128
|
+
def storage_configuration: () -> Types::StorageConfiguration
|
129
|
+
end
|
130
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#create_storage_configuration-instance_method
|
131
|
+
def create_storage_configuration: (
|
132
|
+
?name: ::String,
|
133
|
+
s3: {
|
134
|
+
bucket_name: ::String
|
135
|
+
},
|
136
|
+
?tags: Hash[::String, ::String]
|
137
|
+
) -> _CreateStorageConfigurationResponseSuccess
|
138
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStorageConfigurationResponseSuccess
|
139
|
+
|
140
|
+
interface _DeleteEncoderConfigurationResponseSuccess
|
141
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEncoderConfigurationResponse]
|
142
|
+
end
|
143
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#delete_encoder_configuration-instance_method
|
144
|
+
def delete_encoder_configuration: (
|
145
|
+
arn: ::String
|
146
|
+
) -> _DeleteEncoderConfigurationResponseSuccess
|
147
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEncoderConfigurationResponseSuccess
|
148
|
+
|
149
|
+
interface _DeleteStageResponseSuccess
|
150
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStageResponse]
|
151
|
+
end
|
152
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#delete_stage-instance_method
|
153
|
+
def delete_stage: (
|
154
|
+
arn: ::String
|
155
|
+
) -> _DeleteStageResponseSuccess
|
156
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStageResponseSuccess
|
157
|
+
|
158
|
+
interface _DeleteStorageConfigurationResponseSuccess
|
159
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStorageConfigurationResponse]
|
160
|
+
end
|
161
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#delete_storage_configuration-instance_method
|
162
|
+
def delete_storage_configuration: (
|
163
|
+
arn: ::String
|
164
|
+
) -> _DeleteStorageConfigurationResponseSuccess
|
165
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStorageConfigurationResponseSuccess
|
166
|
+
|
167
|
+
interface _DisconnectParticipantResponseSuccess
|
168
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisconnectParticipantResponse]
|
169
|
+
end
|
170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#disconnect_participant-instance_method
|
171
|
+
def disconnect_participant: (
|
172
|
+
participant_id: ::String,
|
173
|
+
?reason: ::String,
|
174
|
+
stage_arn: ::String
|
175
|
+
) -> _DisconnectParticipantResponseSuccess
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisconnectParticipantResponseSuccess
|
177
|
+
|
178
|
+
interface _GetCompositionResponseSuccess
|
179
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCompositionResponse]
|
180
|
+
def composition: () -> Types::Composition
|
181
|
+
end
|
182
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_composition-instance_method
|
183
|
+
def get_composition: (
|
184
|
+
arn: ::String
|
185
|
+
) -> _GetCompositionResponseSuccess
|
186
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCompositionResponseSuccess
|
187
|
+
|
188
|
+
interface _GetEncoderConfigurationResponseSuccess
|
189
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEncoderConfigurationResponse]
|
190
|
+
def encoder_configuration: () -> Types::EncoderConfiguration
|
191
|
+
end
|
192
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_encoder_configuration-instance_method
|
193
|
+
def get_encoder_configuration: (
|
194
|
+
arn: ::String
|
195
|
+
) -> _GetEncoderConfigurationResponseSuccess
|
196
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEncoderConfigurationResponseSuccess
|
197
|
+
|
198
|
+
interface _GetParticipantResponseSuccess
|
199
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetParticipantResponse]
|
200
|
+
def participant: () -> Types::Participant
|
201
|
+
end
|
202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_participant-instance_method
|
203
|
+
def get_participant: (
|
204
|
+
participant_id: ::String,
|
205
|
+
session_id: ::String,
|
206
|
+
stage_arn: ::String
|
207
|
+
) -> _GetParticipantResponseSuccess
|
208
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetParticipantResponseSuccess
|
209
|
+
|
210
|
+
interface _GetStageResponseSuccess
|
211
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetStageResponse]
|
212
|
+
def stage: () -> Types::Stage
|
213
|
+
end
|
214
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_stage-instance_method
|
215
|
+
def get_stage: (
|
216
|
+
arn: ::String
|
217
|
+
) -> _GetStageResponseSuccess
|
218
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStageResponseSuccess
|
219
|
+
|
220
|
+
interface _GetStageSessionResponseSuccess
|
221
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetStageSessionResponse]
|
222
|
+
def stage_session: () -> Types::StageSession
|
223
|
+
end
|
224
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_stage_session-instance_method
|
225
|
+
def get_stage_session: (
|
226
|
+
session_id: ::String,
|
227
|
+
stage_arn: ::String
|
228
|
+
) -> _GetStageSessionResponseSuccess
|
229
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStageSessionResponseSuccess
|
230
|
+
|
231
|
+
interface _GetStorageConfigurationResponseSuccess
|
232
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetStorageConfigurationResponse]
|
233
|
+
def storage_configuration: () -> Types::StorageConfiguration
|
234
|
+
end
|
235
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_storage_configuration-instance_method
|
236
|
+
def get_storage_configuration: (
|
237
|
+
arn: ::String
|
238
|
+
) -> _GetStorageConfigurationResponseSuccess
|
239
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStorageConfigurationResponseSuccess
|
240
|
+
|
241
|
+
interface _ListCompositionsResponseSuccess
|
242
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCompositionsResponse]
|
243
|
+
def compositions: () -> ::Array[Types::CompositionSummary]
|
244
|
+
def next_token: () -> ::String
|
245
|
+
end
|
246
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_compositions-instance_method
|
247
|
+
def list_compositions: (
|
248
|
+
?filter_by_encoder_configuration_arn: ::String,
|
249
|
+
?filter_by_stage_arn: ::String,
|
250
|
+
?max_results: ::Integer,
|
251
|
+
?next_token: ::String
|
252
|
+
) -> _ListCompositionsResponseSuccess
|
253
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCompositionsResponseSuccess
|
254
|
+
|
255
|
+
interface _ListEncoderConfigurationsResponseSuccess
|
256
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEncoderConfigurationsResponse]
|
257
|
+
def encoder_configurations: () -> ::Array[Types::EncoderConfigurationSummary]
|
258
|
+
def next_token: () -> ::String
|
259
|
+
end
|
260
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_encoder_configurations-instance_method
|
261
|
+
def list_encoder_configurations: (
|
262
|
+
?max_results: ::Integer,
|
263
|
+
?next_token: ::String
|
264
|
+
) -> _ListEncoderConfigurationsResponseSuccess
|
265
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEncoderConfigurationsResponseSuccess
|
266
|
+
|
267
|
+
interface _ListParticipantEventsResponseSuccess
|
268
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListParticipantEventsResponse]
|
269
|
+
def events: () -> ::Array[Types::Event]
|
270
|
+
def next_token: () -> ::String
|
271
|
+
end
|
272
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_participant_events-instance_method
|
273
|
+
def list_participant_events: (
|
274
|
+
?max_results: ::Integer,
|
275
|
+
?next_token: ::String,
|
276
|
+
participant_id: ::String,
|
277
|
+
session_id: ::String,
|
278
|
+
stage_arn: ::String
|
279
|
+
) -> _ListParticipantEventsResponseSuccess
|
280
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListParticipantEventsResponseSuccess
|
281
|
+
|
282
|
+
interface _ListParticipantsResponseSuccess
|
283
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListParticipantsResponse]
|
284
|
+
def next_token: () -> ::String
|
285
|
+
def participants: () -> ::Array[Types::ParticipantSummary]
|
286
|
+
end
|
287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_participants-instance_method
|
288
|
+
def list_participants: (
|
289
|
+
?filter_by_published: bool,
|
290
|
+
?filter_by_state: ("CONNECTED" | "DISCONNECTED"),
|
291
|
+
?filter_by_user_id: ::String,
|
292
|
+
?max_results: ::Integer,
|
293
|
+
?next_token: ::String,
|
294
|
+
session_id: ::String,
|
295
|
+
stage_arn: ::String
|
296
|
+
) -> _ListParticipantsResponseSuccess
|
297
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListParticipantsResponseSuccess
|
298
|
+
|
299
|
+
interface _ListStageSessionsResponseSuccess
|
300
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListStageSessionsResponse]
|
301
|
+
def next_token: () -> ::String
|
302
|
+
def stage_sessions: () -> ::Array[Types::StageSessionSummary]
|
303
|
+
end
|
304
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_stage_sessions-instance_method
|
305
|
+
def list_stage_sessions: (
|
306
|
+
?max_results: ::Integer,
|
307
|
+
?next_token: ::String,
|
308
|
+
stage_arn: ::String
|
309
|
+
) -> _ListStageSessionsResponseSuccess
|
310
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStageSessionsResponseSuccess
|
311
|
+
|
312
|
+
interface _ListStagesResponseSuccess
|
313
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListStagesResponse]
|
314
|
+
def next_token: () -> ::String
|
315
|
+
def stages: () -> ::Array[Types::StageSummary]
|
316
|
+
end
|
317
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_stages-instance_method
|
318
|
+
def list_stages: (
|
319
|
+
?max_results: ::Integer,
|
320
|
+
?next_token: ::String
|
321
|
+
) -> _ListStagesResponseSuccess
|
322
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStagesResponseSuccess
|
323
|
+
|
324
|
+
interface _ListStorageConfigurationsResponseSuccess
|
325
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListStorageConfigurationsResponse]
|
326
|
+
def next_token: () -> ::String
|
327
|
+
def storage_configurations: () -> ::Array[Types::StorageConfigurationSummary]
|
328
|
+
end
|
329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_storage_configurations-instance_method
|
330
|
+
def list_storage_configurations: (
|
331
|
+
?max_results: ::Integer,
|
332
|
+
?next_token: ::String
|
333
|
+
) -> _ListStorageConfigurationsResponseSuccess
|
334
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStorageConfigurationsResponseSuccess
|
335
|
+
|
336
|
+
interface _ListTagsForResourceResponseSuccess
|
337
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
338
|
+
def tags: () -> ::Hash[::String, ::String]
|
339
|
+
end
|
340
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_tags_for_resource-instance_method
|
341
|
+
def list_tags_for_resource: (
|
342
|
+
resource_arn: ::String
|
343
|
+
) -> _ListTagsForResourceResponseSuccess
|
344
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
345
|
+
|
346
|
+
interface _StartCompositionResponseSuccess
|
347
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartCompositionResponse]
|
348
|
+
def composition: () -> Types::Composition
|
349
|
+
end
|
350
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#start_composition-instance_method
|
351
|
+
def start_composition: (
|
352
|
+
destinations: Array[
|
353
|
+
{
|
354
|
+
channel: {
|
355
|
+
channel_arn: ::String,
|
356
|
+
encoder_configuration_arn: ::String?
|
357
|
+
}?,
|
358
|
+
name: ::String?,
|
359
|
+
s3: {
|
360
|
+
encoder_configuration_arns: Array[::String],
|
361
|
+
recording_configuration: {
|
362
|
+
format: ("HLS")?
|
363
|
+
}?,
|
364
|
+
storage_configuration_arn: ::String
|
365
|
+
}?
|
366
|
+
},
|
367
|
+
],
|
368
|
+
?idempotency_token: ::String,
|
369
|
+
?layout: {
|
370
|
+
grid: {
|
371
|
+
featured_participant_attribute: ::String?,
|
372
|
+
grid_gap: ::Integer?,
|
373
|
+
omit_stopped_video: bool?,
|
374
|
+
video_aspect_ratio: ("AUTO" | "VIDEO" | "SQUARE" | "PORTRAIT")?,
|
375
|
+
video_fill_mode: ("FILL" | "COVER" | "CONTAIN")?
|
376
|
+
}?,
|
377
|
+
pip: {
|
378
|
+
featured_participant_attribute: ::String?,
|
379
|
+
grid_gap: ::Integer?,
|
380
|
+
omit_stopped_video: bool?,
|
381
|
+
pip_behavior: ("STATIC" | "DYNAMIC")?,
|
382
|
+
pip_height: ::Integer?,
|
383
|
+
pip_offset: ::Integer?,
|
384
|
+
pip_participant_attribute: ::String?,
|
385
|
+
pip_position: ("TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT")?,
|
386
|
+
pip_width: ::Integer?,
|
387
|
+
video_fill_mode: ("FILL" | "COVER" | "CONTAIN")?
|
388
|
+
}?
|
389
|
+
},
|
390
|
+
stage_arn: ::String,
|
391
|
+
?tags: Hash[::String, ::String]
|
392
|
+
) -> _StartCompositionResponseSuccess
|
393
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCompositionResponseSuccess
|
394
|
+
|
395
|
+
interface _StopCompositionResponseSuccess
|
396
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopCompositionResponse]
|
397
|
+
end
|
398
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#stop_composition-instance_method
|
399
|
+
def stop_composition: (
|
400
|
+
arn: ::String
|
401
|
+
) -> _StopCompositionResponseSuccess
|
402
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopCompositionResponseSuccess
|
403
|
+
|
404
|
+
interface _TagResourceResponseSuccess
|
405
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
406
|
+
end
|
407
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#tag_resource-instance_method
|
408
|
+
def tag_resource: (
|
409
|
+
resource_arn: ::String,
|
410
|
+
tags: Hash[::String, ::String]
|
411
|
+
) -> _TagResourceResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
413
|
+
|
414
|
+
interface _UntagResourceResponseSuccess
|
415
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
416
|
+
end
|
417
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#untag_resource-instance_method
|
418
|
+
def untag_resource: (
|
419
|
+
resource_arn: ::String,
|
420
|
+
tag_keys: Array[::String]
|
421
|
+
) -> _UntagResourceResponseSuccess
|
422
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
423
|
+
|
424
|
+
interface _UpdateStageResponseSuccess
|
425
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStageResponse]
|
426
|
+
def stage: () -> Types::Stage
|
427
|
+
end
|
428
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#update_stage-instance_method
|
429
|
+
def update_stage: (
|
430
|
+
arn: ::String,
|
431
|
+
?name: ::String
|
432
|
+
) -> _UpdateStageResponseSuccess
|
433
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStageResponseSuccess
|
434
|
+
end
|
435
|
+
end
|
436
|
+
end
|
437
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,37 @@
|
|
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 IVSRealTime
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def exception_message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def exception_message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
21
|
+
def exception_message: () -> ::String
|
22
|
+
end
|
23
|
+
class PendingVerification < ::Aws::Errors::ServiceError
|
24
|
+
def exception_message: () -> ::String
|
25
|
+
end
|
26
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
27
|
+
def exception_message: () -> ::String
|
28
|
+
end
|
29
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
30
|
+
def exception_message: () -> ::String
|
31
|
+
end
|
32
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
33
|
+
def exception_message: () -> ::String
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
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 IVSRealTime
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/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
|