aws-sdk-chimesdkmediapipelines 1.0.0 → 1.1.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmediapipelines/client.rb +405 -23
- data/lib/aws-sdk-chimesdkmediapipelines/client_api.rb +285 -0
- data/lib/aws-sdk-chimesdkmediapipelines/types.rb +1192 -57
- data/lib/aws-sdk-chimesdkmediapipelines.rb +1 -1
- metadata +2 -2
@@ -10,6 +10,78 @@
|
|
10
10
|
module Aws::ChimeSDKMediaPipelines
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# The configuration for the artifacts concatenation.
|
14
|
+
#
|
15
|
+
# @note When making an API call, you may pass ArtifactsConcatenationConfiguration
|
16
|
+
# data as a hash:
|
17
|
+
#
|
18
|
+
# {
|
19
|
+
# audio: { # required
|
20
|
+
# state: "Enabled", # required, accepts Enabled
|
21
|
+
# },
|
22
|
+
# video: { # required
|
23
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
24
|
+
# },
|
25
|
+
# content: { # required
|
26
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
27
|
+
# },
|
28
|
+
# data_channel: { # required
|
29
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
30
|
+
# },
|
31
|
+
# transcription_messages: { # required
|
32
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
33
|
+
# },
|
34
|
+
# meeting_events: { # required
|
35
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
36
|
+
# },
|
37
|
+
# composited_video: { # required
|
38
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
39
|
+
# },
|
40
|
+
# }
|
41
|
+
#
|
42
|
+
# @!attribute [rw] audio
|
43
|
+
# The configuration for the audio artifacts concatenation.
|
44
|
+
# @return [Types::AudioConcatenationConfiguration]
|
45
|
+
#
|
46
|
+
# @!attribute [rw] video
|
47
|
+
# The configuration for the video artifacts concatenation.
|
48
|
+
# @return [Types::VideoConcatenationConfiguration]
|
49
|
+
#
|
50
|
+
# @!attribute [rw] content
|
51
|
+
# The configuration for the content artifacts concatenation.
|
52
|
+
# @return [Types::ContentConcatenationConfiguration]
|
53
|
+
#
|
54
|
+
# @!attribute [rw] data_channel
|
55
|
+
# The configuration for the data channel artifacts concatenation.
|
56
|
+
# @return [Types::DataChannelConcatenationConfiguration]
|
57
|
+
#
|
58
|
+
# @!attribute [rw] transcription_messages
|
59
|
+
# The configuration for the transcription messages artifacts
|
60
|
+
# concatenation.
|
61
|
+
# @return [Types::TranscriptionMessagesConcatenationConfiguration]
|
62
|
+
#
|
63
|
+
# @!attribute [rw] meeting_events
|
64
|
+
# The configuration for the meeting events artifacts concatenation.
|
65
|
+
# @return [Types::MeetingEventsConcatenationConfiguration]
|
66
|
+
#
|
67
|
+
# @!attribute [rw] composited_video
|
68
|
+
# The configuration for the composited video artifacts concatenation.
|
69
|
+
# @return [Types::CompositedVideoConcatenationConfiguration]
|
70
|
+
#
|
71
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ArtifactsConcatenationConfiguration AWS API Documentation
|
72
|
+
#
|
73
|
+
class ArtifactsConcatenationConfiguration < Struct.new(
|
74
|
+
:audio,
|
75
|
+
:video,
|
76
|
+
:content,
|
77
|
+
:data_channel,
|
78
|
+
:transcription_messages,
|
79
|
+
:meeting_events,
|
80
|
+
:composited_video)
|
81
|
+
SENSITIVE = []
|
82
|
+
include Aws::Structure
|
83
|
+
end
|
84
|
+
|
13
85
|
# The configuration for the artifacts.
|
14
86
|
#
|
15
87
|
# @note When making an API call, you may pass ArtifactsConfiguration
|
@@ -17,7 +89,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
17
89
|
#
|
18
90
|
# {
|
19
91
|
# audio: { # required
|
20
|
-
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
92
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
|
21
93
|
# },
|
22
94
|
# video: { # required
|
23
95
|
# state: "Enabled", # required, accepts Enabled, Disabled
|
@@ -27,6 +99,16 @@ module Aws::ChimeSDKMediaPipelines
|
|
27
99
|
# state: "Enabled", # required, accepts Enabled, Disabled
|
28
100
|
# mux_type: "ContentOnly", # accepts ContentOnly
|
29
101
|
# },
|
102
|
+
# composited_video: {
|
103
|
+
# layout: "GridView", # accepts GridView
|
104
|
+
# resolution: "HD", # accepts HD, FHD
|
105
|
+
# grid_view_configuration: { # required
|
106
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
107
|
+
# presenter_only_configuration: {
|
108
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
109
|
+
# },
|
110
|
+
# },
|
111
|
+
# },
|
30
112
|
# }
|
31
113
|
#
|
32
114
|
# @!attribute [rw] audio
|
@@ -41,12 +123,17 @@ module Aws::ChimeSDKMediaPipelines
|
|
41
123
|
# The configuration for the content artifacts.
|
42
124
|
# @return [Types::ContentArtifactsConfiguration]
|
43
125
|
#
|
126
|
+
# @!attribute [rw] composited_video
|
127
|
+
# Enables video compositing.
|
128
|
+
# @return [Types::CompositedVideoArtifactsConfiguration]
|
129
|
+
#
|
44
130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ArtifactsConfiguration AWS API Documentation
|
45
131
|
#
|
46
132
|
class ArtifactsConfiguration < Struct.new(
|
47
133
|
:audio,
|
48
134
|
:video,
|
49
|
-
:content
|
135
|
+
:content,
|
136
|
+
:composited_video)
|
50
137
|
SENSITIVE = []
|
51
138
|
include Aws::Structure
|
52
139
|
end
|
@@ -57,7 +144,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
57
144
|
# data as a hash:
|
58
145
|
#
|
59
146
|
# {
|
60
|
-
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
147
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
|
61
148
|
# }
|
62
149
|
#
|
63
150
|
# @!attribute [rw] mux_type
|
@@ -72,6 +159,28 @@ module Aws::ChimeSDKMediaPipelines
|
|
72
159
|
include Aws::Structure
|
73
160
|
end
|
74
161
|
|
162
|
+
# The audio artifact concatenation configuration object.
|
163
|
+
#
|
164
|
+
# @note When making an API call, you may pass AudioConcatenationConfiguration
|
165
|
+
# data as a hash:
|
166
|
+
#
|
167
|
+
# {
|
168
|
+
# state: "Enabled", # required, accepts Enabled
|
169
|
+
# }
|
170
|
+
#
|
171
|
+
# @!attribute [rw] state
|
172
|
+
# Enables the *name* object, where *name* is the name of the
|
173
|
+
# configuration object, such as `AudioConcatenation`.
|
174
|
+
# @return [String]
|
175
|
+
#
|
176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/AudioConcatenationConfiguration AWS API Documentation
|
177
|
+
#
|
178
|
+
class AudioConcatenationConfiguration < Struct.new(
|
179
|
+
:state)
|
180
|
+
SENSITIVE = []
|
181
|
+
include Aws::Structure
|
182
|
+
end
|
183
|
+
|
75
184
|
# The input parameters don't match the service's restrictions.
|
76
185
|
#
|
77
186
|
# @!attribute [rw] code
|
@@ -95,9 +204,53 @@ module Aws::ChimeSDKMediaPipelines
|
|
95
204
|
include Aws::Structure
|
96
205
|
end
|
97
206
|
|
207
|
+
# The configuration object of the Amazon Chime SDK meeting concatenation
|
208
|
+
# for a specified media pipeline.
|
209
|
+
#
|
210
|
+
# @note When making an API call, you may pass ChimeSdkMeetingConcatenationConfiguration
|
211
|
+
# data as a hash:
|
212
|
+
#
|
213
|
+
# {
|
214
|
+
# artifacts_configuration: { # required
|
215
|
+
# audio: { # required
|
216
|
+
# state: "Enabled", # required, accepts Enabled
|
217
|
+
# },
|
218
|
+
# video: { # required
|
219
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
220
|
+
# },
|
221
|
+
# content: { # required
|
222
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
223
|
+
# },
|
224
|
+
# data_channel: { # required
|
225
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
226
|
+
# },
|
227
|
+
# transcription_messages: { # required
|
228
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
229
|
+
# },
|
230
|
+
# meeting_events: { # required
|
231
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
232
|
+
# },
|
233
|
+
# composited_video: { # required
|
234
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
235
|
+
# },
|
236
|
+
# },
|
237
|
+
# }
|
238
|
+
#
|
239
|
+
# @!attribute [rw] artifacts_configuration
|
240
|
+
# The configuration for the artifacts in an Amazon Chime SDK meeting
|
241
|
+
# concatenation.
|
242
|
+
# @return [Types::ArtifactsConcatenationConfiguration]
|
243
|
+
#
|
244
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ChimeSdkMeetingConcatenationConfiguration AWS API Documentation
|
245
|
+
#
|
246
|
+
class ChimeSdkMeetingConcatenationConfiguration < Struct.new(
|
247
|
+
:artifacts_configuration)
|
248
|
+
SENSITIVE = []
|
249
|
+
include Aws::Structure
|
250
|
+
end
|
251
|
+
|
98
252
|
# The configuration object of the Amazon Chime SDK meeting for a
|
99
|
-
# specified media
|
100
|
-
# `ChimeSdkMeeting`.
|
253
|
+
# specified media pipeline. `SourceType` must be `ChimeSdkMeeting`.
|
101
254
|
#
|
102
255
|
# @note When making an API call, you may pass ChimeSdkMeetingConfiguration
|
103
256
|
# data as a hash:
|
@@ -111,7 +264,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
111
264
|
# },
|
112
265
|
# artifacts_configuration: {
|
113
266
|
# audio: { # required
|
114
|
-
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
267
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
|
115
268
|
# },
|
116
269
|
# video: { # required
|
117
270
|
# state: "Enabled", # required, accepts Enabled, Disabled
|
@@ -121,11 +274,21 @@ module Aws::ChimeSDKMediaPipelines
|
|
121
274
|
# state: "Enabled", # required, accepts Enabled, Disabled
|
122
275
|
# mux_type: "ContentOnly", # accepts ContentOnly
|
123
276
|
# },
|
277
|
+
# composited_video: {
|
278
|
+
# layout: "GridView", # accepts GridView
|
279
|
+
# resolution: "HD", # accepts HD, FHD
|
280
|
+
# grid_view_configuration: { # required
|
281
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
282
|
+
# presenter_only_configuration: {
|
283
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
284
|
+
# },
|
285
|
+
# },
|
286
|
+
# },
|
124
287
|
# },
|
125
288
|
# }
|
126
289
|
#
|
127
290
|
# @!attribute [rw] source_configuration
|
128
|
-
# The source configuration for a specified media
|
291
|
+
# The source configuration for a specified media pipline.
|
129
292
|
# @return [Types::SourceConfiguration]
|
130
293
|
#
|
131
294
|
# @!attribute [rw] artifacts_configuration
|
@@ -141,6 +304,206 @@ module Aws::ChimeSDKMediaPipelines
|
|
141
304
|
include Aws::Structure
|
142
305
|
end
|
143
306
|
|
307
|
+
# The media pipeline's configuration object.
|
308
|
+
#
|
309
|
+
# @note When making an API call, you may pass ChimeSdkMeetingLiveConnectorConfiguration
|
310
|
+
# data as a hash:
|
311
|
+
#
|
312
|
+
# {
|
313
|
+
# arn: "Arn", # required
|
314
|
+
# mux_type: "AudioWithCompositedVideo", # required, accepts AudioWithCompositedVideo, AudioWithActiveSpeakerVideo
|
315
|
+
# composited_video: {
|
316
|
+
# layout: "GridView", # accepts GridView
|
317
|
+
# resolution: "HD", # accepts HD, FHD
|
318
|
+
# grid_view_configuration: { # required
|
319
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
320
|
+
# presenter_only_configuration: {
|
321
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
322
|
+
# },
|
323
|
+
# },
|
324
|
+
# },
|
325
|
+
# source_configuration: {
|
326
|
+
# selected_video_streams: {
|
327
|
+
# attendee_ids: ["GuidString"],
|
328
|
+
# external_user_ids: ["ExternalUserIdType"],
|
329
|
+
# },
|
330
|
+
# },
|
331
|
+
# }
|
332
|
+
#
|
333
|
+
# @!attribute [rw] arn
|
334
|
+
# The configuration object's Chime SDK meeting ARN.
|
335
|
+
# @return [String]
|
336
|
+
#
|
337
|
+
# @!attribute [rw] mux_type
|
338
|
+
# The configuration object's multiplex type.
|
339
|
+
# @return [String]
|
340
|
+
#
|
341
|
+
# @!attribute [rw] composited_video
|
342
|
+
# The media pipeline's composited video.
|
343
|
+
# @return [Types::CompositedVideoArtifactsConfiguration]
|
344
|
+
#
|
345
|
+
# @!attribute [rw] source_configuration
|
346
|
+
# The source configuration settings of the media pipeline's
|
347
|
+
# configuration object.
|
348
|
+
# @return [Types::SourceConfiguration]
|
349
|
+
#
|
350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ChimeSdkMeetingLiveConnectorConfiguration AWS API Documentation
|
351
|
+
#
|
352
|
+
class ChimeSdkMeetingLiveConnectorConfiguration < Struct.new(
|
353
|
+
:arn,
|
354
|
+
:mux_type,
|
355
|
+
:composited_video,
|
356
|
+
:source_configuration)
|
357
|
+
SENSITIVE = [:arn]
|
358
|
+
include Aws::Structure
|
359
|
+
end
|
360
|
+
|
361
|
+
# Describes the configuration for the composited video artifacts.
|
362
|
+
#
|
363
|
+
# @note When making an API call, you may pass CompositedVideoArtifactsConfiguration
|
364
|
+
# data as a hash:
|
365
|
+
#
|
366
|
+
# {
|
367
|
+
# layout: "GridView", # accepts GridView
|
368
|
+
# resolution: "HD", # accepts HD, FHD
|
369
|
+
# grid_view_configuration: { # required
|
370
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
371
|
+
# presenter_only_configuration: {
|
372
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
373
|
+
# },
|
374
|
+
# },
|
375
|
+
# }
|
376
|
+
#
|
377
|
+
# @!attribute [rw] layout
|
378
|
+
# The layout setting, such as `GridView` in the configuration object.
|
379
|
+
# @return [String]
|
380
|
+
#
|
381
|
+
# @!attribute [rw] resolution
|
382
|
+
# The video resolution setting in the configuration object. Default:
|
383
|
+
# HD at 1280 x 720. FHD resolution: 1920 x 1080.
|
384
|
+
# @return [String]
|
385
|
+
#
|
386
|
+
# @!attribute [rw] grid_view_configuration
|
387
|
+
# The `GridView` configuration setting.
|
388
|
+
# @return [Types::GridViewConfiguration]
|
389
|
+
#
|
390
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CompositedVideoArtifactsConfiguration AWS API Documentation
|
391
|
+
#
|
392
|
+
class CompositedVideoArtifactsConfiguration < Struct.new(
|
393
|
+
:layout,
|
394
|
+
:resolution,
|
395
|
+
:grid_view_configuration)
|
396
|
+
SENSITIVE = []
|
397
|
+
include Aws::Structure
|
398
|
+
end
|
399
|
+
|
400
|
+
# The composited video configuration object for a specified media
|
401
|
+
# pipeline. `SourceType` must be `ChimeSdkMeeting`.
|
402
|
+
#
|
403
|
+
# @note When making an API call, you may pass CompositedVideoConcatenationConfiguration
|
404
|
+
# data as a hash:
|
405
|
+
#
|
406
|
+
# {
|
407
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
408
|
+
# }
|
409
|
+
#
|
410
|
+
# @!attribute [rw] state
|
411
|
+
# Enables or disables the configuration object.
|
412
|
+
# @return [String]
|
413
|
+
#
|
414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CompositedVideoConcatenationConfiguration AWS API Documentation
|
415
|
+
#
|
416
|
+
class CompositedVideoConcatenationConfiguration < Struct.new(
|
417
|
+
:state)
|
418
|
+
SENSITIVE = []
|
419
|
+
include Aws::Structure
|
420
|
+
end
|
421
|
+
|
422
|
+
# The data sink of the configuration object.
|
423
|
+
#
|
424
|
+
# @note When making an API call, you may pass ConcatenationSink
|
425
|
+
# data as a hash:
|
426
|
+
#
|
427
|
+
# {
|
428
|
+
# type: "S3Bucket", # required, accepts S3Bucket
|
429
|
+
# s3_bucket_sink_configuration: { # required
|
430
|
+
# destination: "Arn", # required
|
431
|
+
# },
|
432
|
+
# }
|
433
|
+
#
|
434
|
+
# @!attribute [rw] type
|
435
|
+
# The type of data sink in the configuration object.
|
436
|
+
# @return [String]
|
437
|
+
#
|
438
|
+
# @!attribute [rw] s3_bucket_sink_configuration
|
439
|
+
# The configuration settings for an Amazon S3 bucket sink.
|
440
|
+
# @return [Types::S3BucketSinkConfiguration]
|
441
|
+
#
|
442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ConcatenationSink AWS API Documentation
|
443
|
+
#
|
444
|
+
class ConcatenationSink < Struct.new(
|
445
|
+
:type,
|
446
|
+
:s3_bucket_sink_configuration)
|
447
|
+
SENSITIVE = []
|
448
|
+
include Aws::Structure
|
449
|
+
end
|
450
|
+
|
451
|
+
# The source type and media pipeline configuration settings in a
|
452
|
+
# configuration object.
|
453
|
+
#
|
454
|
+
# @note When making an API call, you may pass ConcatenationSource
|
455
|
+
# data as a hash:
|
456
|
+
#
|
457
|
+
# {
|
458
|
+
# type: "MediaCapturePipeline", # required, accepts MediaCapturePipeline
|
459
|
+
# media_capture_pipeline_source_configuration: { # required
|
460
|
+
# media_pipeline_arn: "Arn", # required
|
461
|
+
# chime_sdk_meeting_configuration: { # required
|
462
|
+
# artifacts_configuration: { # required
|
463
|
+
# audio: { # required
|
464
|
+
# state: "Enabled", # required, accepts Enabled
|
465
|
+
# },
|
466
|
+
# video: { # required
|
467
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
468
|
+
# },
|
469
|
+
# content: { # required
|
470
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
471
|
+
# },
|
472
|
+
# data_channel: { # required
|
473
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
474
|
+
# },
|
475
|
+
# transcription_messages: { # required
|
476
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
477
|
+
# },
|
478
|
+
# meeting_events: { # required
|
479
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
480
|
+
# },
|
481
|
+
# composited_video: { # required
|
482
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
483
|
+
# },
|
484
|
+
# },
|
485
|
+
# },
|
486
|
+
# },
|
487
|
+
# }
|
488
|
+
#
|
489
|
+
# @!attribute [rw] type
|
490
|
+
# The type of concatenation source in a configuration object.
|
491
|
+
# @return [String]
|
492
|
+
#
|
493
|
+
# @!attribute [rw] media_capture_pipeline_source_configuration
|
494
|
+
# The concatenation settings for the media pipeline in a configuration
|
495
|
+
# object.
|
496
|
+
# @return [Types::MediaCapturePipelineSourceConfiguration]
|
497
|
+
#
|
498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ConcatenationSource AWS API Documentation
|
499
|
+
#
|
500
|
+
class ConcatenationSource < Struct.new(
|
501
|
+
:type,
|
502
|
+
:media_capture_pipeline_source_configuration)
|
503
|
+
SENSITIVE = []
|
504
|
+
include Aws::Structure
|
505
|
+
end
|
506
|
+
|
144
507
|
# The content artifact object.
|
145
508
|
#
|
146
509
|
# @note When making an API call, you may pass ContentArtifactsConfiguration
|
@@ -168,6 +531,28 @@ module Aws::ChimeSDKMediaPipelines
|
|
168
531
|
include Aws::Structure
|
169
532
|
end
|
170
533
|
|
534
|
+
# The composited content configuration object for a specified media
|
535
|
+
# pipeline.
|
536
|
+
#
|
537
|
+
# @note When making an API call, you may pass ContentConcatenationConfiguration
|
538
|
+
# data as a hash:
|
539
|
+
#
|
540
|
+
# {
|
541
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
542
|
+
# }
|
543
|
+
#
|
544
|
+
# @!attribute [rw] state
|
545
|
+
# Enables or disables the configuration object.
|
546
|
+
# @return [String]
|
547
|
+
#
|
548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ContentConcatenationConfiguration AWS API Documentation
|
549
|
+
#
|
550
|
+
class ContentConcatenationConfiguration < Struct.new(
|
551
|
+
:state)
|
552
|
+
SENSITIVE = []
|
553
|
+
include Aws::Structure
|
554
|
+
end
|
555
|
+
|
171
556
|
# @note When making an API call, you may pass CreateMediaCapturePipelineRequest
|
172
557
|
# data as a hash:
|
173
558
|
#
|
@@ -186,7 +571,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
186
571
|
# },
|
187
572
|
# artifacts_configuration: {
|
188
573
|
# audio: { # required
|
189
|
-
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
574
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
|
190
575
|
# },
|
191
576
|
# video: { # required
|
192
577
|
# state: "Enabled", # required, accepts Enabled, Disabled
|
@@ -196,6 +581,16 @@ module Aws::ChimeSDKMediaPipelines
|
|
196
581
|
# state: "Enabled", # required, accepts Enabled, Disabled
|
197
582
|
# mux_type: "ContentOnly", # accepts ContentOnly
|
198
583
|
# },
|
584
|
+
# composited_video: {
|
585
|
+
# layout: "GridView", # accepts GridView
|
586
|
+
# resolution: "HD", # accepts HD, FHD
|
587
|
+
# grid_view_configuration: { # required
|
588
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
589
|
+
# presenter_only_configuration: {
|
590
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
591
|
+
# },
|
592
|
+
# },
|
593
|
+
# },
|
199
594
|
# },
|
200
595
|
# },
|
201
596
|
# tags: [
|
@@ -225,19 +620,21 @@ module Aws::ChimeSDKMediaPipelines
|
|
225
620
|
# @return [String]
|
226
621
|
#
|
227
622
|
# @!attribute [rw] client_request_token
|
228
|
-
# The
|
623
|
+
# The unique identifier for the client request. The token makes the
|
624
|
+
# API request idempotent. Use a unique token for each media pipeline
|
625
|
+
# request.
|
229
626
|
#
|
230
627
|
# **A suitable default value is auto-generated.** You should normally
|
231
628
|
# not need to pass this option.
|
232
629
|
# @return [String]
|
233
630
|
#
|
234
631
|
# @!attribute [rw] chime_sdk_meeting_configuration
|
235
|
-
# The configuration for a specified media
|
236
|
-
#
|
632
|
+
# The configuration for a specified media pipeline. `SourceType` must
|
633
|
+
# be `ChimeSdkMeeting`.
|
237
634
|
# @return [Types::ChimeSdkMeetingConfiguration]
|
238
635
|
#
|
239
636
|
# @!attribute [rw] tags
|
240
|
-
# The
|
637
|
+
# The tag key-value pairs.
|
241
638
|
# @return [Array<Types::Tag>]
|
242
639
|
#
|
243
640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaCapturePipelineRequest AWS API Documentation
|
@@ -255,8 +652,8 @@ module Aws::ChimeSDKMediaPipelines
|
|
255
652
|
end
|
256
653
|
|
257
654
|
# @!attribute [rw] media_capture_pipeline
|
258
|
-
# A media
|
259
|
-
#
|
655
|
+
# A media pipeline object, the ID, source type, source ARN, sink type,
|
656
|
+
# and sink ARN of a media pipeline object.
|
260
657
|
# @return [Types::MediaCapturePipeline]
|
261
658
|
#
|
262
659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaCapturePipelineResponse AWS API Documentation
|
@@ -267,6 +664,219 @@ module Aws::ChimeSDKMediaPipelines
|
|
267
664
|
include Aws::Structure
|
268
665
|
end
|
269
666
|
|
667
|
+
# @note When making an API call, you may pass CreateMediaConcatenationPipelineRequest
|
668
|
+
# data as a hash:
|
669
|
+
#
|
670
|
+
# {
|
671
|
+
# sources: [ # required
|
672
|
+
# {
|
673
|
+
# type: "MediaCapturePipeline", # required, accepts MediaCapturePipeline
|
674
|
+
# media_capture_pipeline_source_configuration: { # required
|
675
|
+
# media_pipeline_arn: "Arn", # required
|
676
|
+
# chime_sdk_meeting_configuration: { # required
|
677
|
+
# artifacts_configuration: { # required
|
678
|
+
# audio: { # required
|
679
|
+
# state: "Enabled", # required, accepts Enabled
|
680
|
+
# },
|
681
|
+
# video: { # required
|
682
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
683
|
+
# },
|
684
|
+
# content: { # required
|
685
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
686
|
+
# },
|
687
|
+
# data_channel: { # required
|
688
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
689
|
+
# },
|
690
|
+
# transcription_messages: { # required
|
691
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
692
|
+
# },
|
693
|
+
# meeting_events: { # required
|
694
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
695
|
+
# },
|
696
|
+
# composited_video: { # required
|
697
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
698
|
+
# },
|
699
|
+
# },
|
700
|
+
# },
|
701
|
+
# },
|
702
|
+
# },
|
703
|
+
# ],
|
704
|
+
# sinks: [ # required
|
705
|
+
# {
|
706
|
+
# type: "S3Bucket", # required, accepts S3Bucket
|
707
|
+
# s3_bucket_sink_configuration: { # required
|
708
|
+
# destination: "Arn", # required
|
709
|
+
# },
|
710
|
+
# },
|
711
|
+
# ],
|
712
|
+
# client_request_token: "ClientRequestToken",
|
713
|
+
# tags: [
|
714
|
+
# {
|
715
|
+
# key: "TagKey", # required
|
716
|
+
# value: "TagValue", # required
|
717
|
+
# },
|
718
|
+
# ],
|
719
|
+
# }
|
720
|
+
#
|
721
|
+
# @!attribute [rw] sources
|
722
|
+
# An object that specifies the sources for the media concatenation
|
723
|
+
# pipeline.
|
724
|
+
# @return [Array<Types::ConcatenationSource>]
|
725
|
+
#
|
726
|
+
# @!attribute [rw] sinks
|
727
|
+
# An object that specifies the data sinks for the media concatenation
|
728
|
+
# pipeline.
|
729
|
+
# @return [Array<Types::ConcatenationSink>]
|
730
|
+
#
|
731
|
+
# @!attribute [rw] client_request_token
|
732
|
+
# The unique identifier for the client request. The token makes the
|
733
|
+
# API request idempotent. Use a unique token for each media
|
734
|
+
# concatenation pipeline request.
|
735
|
+
#
|
736
|
+
# **A suitable default value is auto-generated.** You should normally
|
737
|
+
# not need to pass this option.
|
738
|
+
# @return [String]
|
739
|
+
#
|
740
|
+
# @!attribute [rw] tags
|
741
|
+
# The tags associated with the media concatenation pipeline.
|
742
|
+
# @return [Array<Types::Tag>]
|
743
|
+
#
|
744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaConcatenationPipelineRequest AWS API Documentation
|
745
|
+
#
|
746
|
+
class CreateMediaConcatenationPipelineRequest < Struct.new(
|
747
|
+
:sources,
|
748
|
+
:sinks,
|
749
|
+
:client_request_token,
|
750
|
+
:tags)
|
751
|
+
SENSITIVE = [:client_request_token]
|
752
|
+
include Aws::Structure
|
753
|
+
end
|
754
|
+
|
755
|
+
# @!attribute [rw] media_concatenation_pipeline
|
756
|
+
# A media concatenation pipeline object, the ID, source type,
|
757
|
+
# `MediaPipelineARN`, and sink of a media concatenation pipeline
|
758
|
+
# object.
|
759
|
+
# @return [Types::MediaConcatenationPipeline]
|
760
|
+
#
|
761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaConcatenationPipelineResponse AWS API Documentation
|
762
|
+
#
|
763
|
+
class CreateMediaConcatenationPipelineResponse < Struct.new(
|
764
|
+
:media_concatenation_pipeline)
|
765
|
+
SENSITIVE = []
|
766
|
+
include Aws::Structure
|
767
|
+
end
|
768
|
+
|
769
|
+
# @note When making an API call, you may pass CreateMediaLiveConnectorPipelineRequest
|
770
|
+
# data as a hash:
|
771
|
+
#
|
772
|
+
# {
|
773
|
+
# sources: [ # required
|
774
|
+
# {
|
775
|
+
# source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
|
776
|
+
# chime_sdk_meeting_live_connector_configuration: { # required
|
777
|
+
# arn: "Arn", # required
|
778
|
+
# mux_type: "AudioWithCompositedVideo", # required, accepts AudioWithCompositedVideo, AudioWithActiveSpeakerVideo
|
779
|
+
# composited_video: {
|
780
|
+
# layout: "GridView", # accepts GridView
|
781
|
+
# resolution: "HD", # accepts HD, FHD
|
782
|
+
# grid_view_configuration: { # required
|
783
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
784
|
+
# presenter_only_configuration: {
|
785
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
786
|
+
# },
|
787
|
+
# },
|
788
|
+
# },
|
789
|
+
# source_configuration: {
|
790
|
+
# selected_video_streams: {
|
791
|
+
# attendee_ids: ["GuidString"],
|
792
|
+
# external_user_ids: ["ExternalUserIdType"],
|
793
|
+
# },
|
794
|
+
# },
|
795
|
+
# },
|
796
|
+
# },
|
797
|
+
# ],
|
798
|
+
# sinks: [ # required
|
799
|
+
# {
|
800
|
+
# sink_type: "RTMP", # required, accepts RTMP
|
801
|
+
# rtmp_configuration: { # required
|
802
|
+
# url: "SensitiveString", # required
|
803
|
+
# audio_channels: "Stereo", # accepts Stereo, Mono
|
804
|
+
# audio_sample_rate: "AudioSampleRateOption",
|
805
|
+
# },
|
806
|
+
# },
|
807
|
+
# ],
|
808
|
+
# client_request_token: "ClientRequestToken",
|
809
|
+
# tags: [
|
810
|
+
# {
|
811
|
+
# key: "TagKey", # required
|
812
|
+
# value: "TagValue", # required
|
813
|
+
# },
|
814
|
+
# ],
|
815
|
+
# }
|
816
|
+
#
|
817
|
+
# @!attribute [rw] sources
|
818
|
+
# The media pipeline's data sources.
|
819
|
+
# @return [Array<Types::LiveConnectorSourceConfiguration>]
|
820
|
+
#
|
821
|
+
# @!attribute [rw] sinks
|
822
|
+
# The media pipeline's data sinks.
|
823
|
+
# @return [Array<Types::LiveConnectorSinkConfiguration>]
|
824
|
+
#
|
825
|
+
# @!attribute [rw] client_request_token
|
826
|
+
# The token assigned to the client making the request.
|
827
|
+
#
|
828
|
+
# **A suitable default value is auto-generated.** You should normally
|
829
|
+
# not need to pass this option.
|
830
|
+
# @return [String]
|
831
|
+
#
|
832
|
+
# @!attribute [rw] tags
|
833
|
+
# The tags associated with the media pipeline.
|
834
|
+
# @return [Array<Types::Tag>]
|
835
|
+
#
|
836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaLiveConnectorPipelineRequest AWS API Documentation
|
837
|
+
#
|
838
|
+
class CreateMediaLiveConnectorPipelineRequest < Struct.new(
|
839
|
+
:sources,
|
840
|
+
:sinks,
|
841
|
+
:client_request_token,
|
842
|
+
:tags)
|
843
|
+
SENSITIVE = [:client_request_token]
|
844
|
+
include Aws::Structure
|
845
|
+
end
|
846
|
+
|
847
|
+
# @!attribute [rw] media_live_connector_pipeline
|
848
|
+
# The new media pipeline.
|
849
|
+
# @return [Types::MediaLiveConnectorPipeline]
|
850
|
+
#
|
851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaLiveConnectorPipelineResponse AWS API Documentation
|
852
|
+
#
|
853
|
+
class CreateMediaLiveConnectorPipelineResponse < Struct.new(
|
854
|
+
:media_live_connector_pipeline)
|
855
|
+
SENSITIVE = []
|
856
|
+
include Aws::Structure
|
857
|
+
end
|
858
|
+
|
859
|
+
# The content configuration object's data channel.
|
860
|
+
#
|
861
|
+
# @note When making an API call, you may pass DataChannelConcatenationConfiguration
|
862
|
+
# data as a hash:
|
863
|
+
#
|
864
|
+
# {
|
865
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
866
|
+
# }
|
867
|
+
#
|
868
|
+
# @!attribute [rw] state
|
869
|
+
# Enables or disables the configuration object.
|
870
|
+
# @return [String]
|
871
|
+
#
|
872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/DataChannelConcatenationConfiguration AWS API Documentation
|
873
|
+
#
|
874
|
+
class DataChannelConcatenationConfiguration < Struct.new(
|
875
|
+
:state)
|
876
|
+
SENSITIVE = []
|
877
|
+
include Aws::Structure
|
878
|
+
end
|
879
|
+
|
270
880
|
# @note When making an API call, you may pass DeleteMediaCapturePipelineRequest
|
271
881
|
# data as a hash:
|
272
882
|
#
|
@@ -275,7 +885,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
275
885
|
# }
|
276
886
|
#
|
277
887
|
# @!attribute [rw] media_pipeline_id
|
278
|
-
# The ID of the media
|
888
|
+
# The ID of the media pipeline being deleted.
|
279
889
|
# @return [String]
|
280
890
|
#
|
281
891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/DeleteMediaCapturePipelineRequest AWS API Documentation
|
@@ -286,6 +896,25 @@ module Aws::ChimeSDKMediaPipelines
|
|
286
896
|
include Aws::Structure
|
287
897
|
end
|
288
898
|
|
899
|
+
# @note When making an API call, you may pass DeleteMediaPipelineRequest
|
900
|
+
# data as a hash:
|
901
|
+
#
|
902
|
+
# {
|
903
|
+
# media_pipeline_id: "GuidString", # required
|
904
|
+
# }
|
905
|
+
#
|
906
|
+
# @!attribute [rw] media_pipeline_id
|
907
|
+
# The ID of the media pipeline to delete.
|
908
|
+
# @return [String]
|
909
|
+
#
|
910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/DeleteMediaPipelineRequest AWS API Documentation
|
911
|
+
#
|
912
|
+
class DeleteMediaPipelineRequest < Struct.new(
|
913
|
+
:media_pipeline_id)
|
914
|
+
SENSITIVE = []
|
915
|
+
include Aws::Structure
|
916
|
+
end
|
917
|
+
|
289
918
|
# The client is permanently forbidden from making the request.
|
290
919
|
#
|
291
920
|
# @!attribute [rw] code
|
@@ -329,7 +958,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
329
958
|
end
|
330
959
|
|
331
960
|
# @!attribute [rw] media_capture_pipeline
|
332
|
-
# The media
|
961
|
+
# The media pipeline object.
|
333
962
|
# @return [Types::MediaCapturePipeline]
|
334
963
|
#
|
335
964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaCapturePipelineResponse AWS API Documentation
|
@@ -340,7 +969,111 @@ module Aws::ChimeSDKMediaPipelines
|
|
340
969
|
include Aws::Structure
|
341
970
|
end
|
342
971
|
|
343
|
-
# @note When making an API call, you may pass
|
972
|
+
# @note When making an API call, you may pass GetMediaPipelineRequest
|
973
|
+
# data as a hash:
|
974
|
+
#
|
975
|
+
# {
|
976
|
+
# media_pipeline_id: "GuidString", # required
|
977
|
+
# }
|
978
|
+
#
|
979
|
+
# @!attribute [rw] media_pipeline_id
|
980
|
+
# The ID of the pipeline that you want to get.
|
981
|
+
# @return [String]
|
982
|
+
#
|
983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaPipelineRequest AWS API Documentation
|
984
|
+
#
|
985
|
+
class GetMediaPipelineRequest < Struct.new(
|
986
|
+
:media_pipeline_id)
|
987
|
+
SENSITIVE = []
|
988
|
+
include Aws::Structure
|
989
|
+
end
|
990
|
+
|
991
|
+
# @!attribute [rw] media_pipeline
|
992
|
+
# The media pipeline object.
|
993
|
+
# @return [Types::MediaPipeline]
|
994
|
+
#
|
995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaPipelineResponse AWS API Documentation
|
996
|
+
#
|
997
|
+
class GetMediaPipelineResponse < Struct.new(
|
998
|
+
:media_pipeline)
|
999
|
+
SENSITIVE = []
|
1000
|
+
include Aws::Structure
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
# Specifies the type of grid layout.
|
1004
|
+
#
|
1005
|
+
# @note When making an API call, you may pass GridViewConfiguration
|
1006
|
+
# data as a hash:
|
1007
|
+
#
|
1008
|
+
# {
|
1009
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
1010
|
+
# presenter_only_configuration: {
|
1011
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
1012
|
+
# },
|
1013
|
+
# }
|
1014
|
+
#
|
1015
|
+
# @!attribute [rw] content_share_layout
|
1016
|
+
# Defines the layout of the video tiles when content sharing is
|
1017
|
+
# enabled.
|
1018
|
+
# @return [String]
|
1019
|
+
#
|
1020
|
+
# @!attribute [rw] presenter_only_configuration
|
1021
|
+
# Defines the configuration options for a presenter only video tile.
|
1022
|
+
# @return [Types::PresenterOnlyConfiguration]
|
1023
|
+
#
|
1024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GridViewConfiguration AWS API Documentation
|
1025
|
+
#
|
1026
|
+
class GridViewConfiguration < Struct.new(
|
1027
|
+
:content_share_layout,
|
1028
|
+
:presenter_only_configuration)
|
1029
|
+
SENSITIVE = []
|
1030
|
+
include Aws::Structure
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
# @note When making an API call, you may pass ListMediaCapturePipelinesRequest
|
1034
|
+
# data as a hash:
|
1035
|
+
#
|
1036
|
+
# {
|
1037
|
+
# next_token: "String",
|
1038
|
+
# max_results: 1,
|
1039
|
+
# }
|
1040
|
+
#
|
1041
|
+
# @!attribute [rw] next_token
|
1042
|
+
# The token used to retrieve the next page of results.
|
1043
|
+
# @return [String]
|
1044
|
+
#
|
1045
|
+
# @!attribute [rw] max_results
|
1046
|
+
# The maximum number of results to return in a single call. Valid
|
1047
|
+
# Range: 1 - 99.
|
1048
|
+
# @return [Integer]
|
1049
|
+
#
|
1050
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaCapturePipelinesRequest AWS API Documentation
|
1051
|
+
#
|
1052
|
+
class ListMediaCapturePipelinesRequest < Struct.new(
|
1053
|
+
:next_token,
|
1054
|
+
:max_results)
|
1055
|
+
SENSITIVE = []
|
1056
|
+
include Aws::Structure
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
# @!attribute [rw] media_capture_pipelines
|
1060
|
+
# The media pipeline objects in the list.
|
1061
|
+
# @return [Array<Types::MediaCapturePipelineSummary>]
|
1062
|
+
#
|
1063
|
+
# @!attribute [rw] next_token
|
1064
|
+
# The token used to retrieve the next page of results.
|
1065
|
+
# @return [String]
|
1066
|
+
#
|
1067
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaCapturePipelinesResponse AWS API Documentation
|
1068
|
+
#
|
1069
|
+
class ListMediaCapturePipelinesResponse < Struct.new(
|
1070
|
+
:media_capture_pipelines,
|
1071
|
+
:next_token)
|
1072
|
+
SENSITIVE = []
|
1073
|
+
include Aws::Structure
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
# @note When making an API call, you may pass ListMediaPipelinesRequest
|
344
1077
|
# data as a hash:
|
345
1078
|
#
|
346
1079
|
# {
|
@@ -357,27 +1090,27 @@ module Aws::ChimeSDKMediaPipelines
|
|
357
1090
|
# Range: 1 - 99.
|
358
1091
|
# @return [Integer]
|
359
1092
|
#
|
360
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/
|
1093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaPipelinesRequest AWS API Documentation
|
361
1094
|
#
|
362
|
-
class
|
1095
|
+
class ListMediaPipelinesRequest < Struct.new(
|
363
1096
|
:next_token,
|
364
1097
|
:max_results)
|
365
1098
|
SENSITIVE = []
|
366
1099
|
include Aws::Structure
|
367
1100
|
end
|
368
1101
|
|
369
|
-
# @!attribute [rw]
|
370
|
-
# The media
|
371
|
-
# @return [Array<Types::
|
1102
|
+
# @!attribute [rw] media_pipelines
|
1103
|
+
# The media pipeline objects in the list.
|
1104
|
+
# @return [Array<Types::MediaPipelineSummary>]
|
372
1105
|
#
|
373
1106
|
# @!attribute [rw] next_token
|
374
1107
|
# The token used to retrieve the next page of results.
|
375
1108
|
# @return [String]
|
376
1109
|
#
|
377
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/
|
1110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaPipelinesResponse AWS API Documentation
|
378
1111
|
#
|
379
|
-
class
|
380
|
-
:
|
1112
|
+
class ListMediaPipelinesResponse < Struct.new(
|
1113
|
+
:media_pipelines,
|
381
1114
|
:next_token)
|
382
1115
|
SENSITIVE = []
|
383
1116
|
include Aws::Structure
|
@@ -391,7 +1124,8 @@ module Aws::ChimeSDKMediaPipelines
|
|
391
1124
|
# }
|
392
1125
|
#
|
393
1126
|
# @!attribute [rw] resource_arn
|
394
|
-
# The
|
1127
|
+
# The ARN of the media pipeline associated with any tags. The ARN
|
1128
|
+
# consists of the pipeline's region, resource ID, and pipeline ID.
|
395
1129
|
# @return [String]
|
396
1130
|
#
|
397
1131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListTagsForResourceRequest AWS API Documentation
|
@@ -403,7 +1137,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
403
1137
|
end
|
404
1138
|
|
405
1139
|
# @!attribute [rw] tags
|
406
|
-
# The
|
1140
|
+
# The tags associated with the specified media pipeline.
|
407
1141
|
# @return [Array<Types::Tag>]
|
408
1142
|
#
|
409
1143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListTagsForResourceResponse AWS API Documentation
|
@@ -414,15 +1148,126 @@ module Aws::ChimeSDKMediaPipelines
|
|
414
1148
|
include Aws::Structure
|
415
1149
|
end
|
416
1150
|
|
417
|
-
#
|
418
|
-
#
|
1151
|
+
# The media pipeline's RTMP configuration object.
|
1152
|
+
#
|
1153
|
+
# @note When making an API call, you may pass LiveConnectorRTMPConfiguration
|
1154
|
+
# data as a hash:
|
1155
|
+
#
|
1156
|
+
# {
|
1157
|
+
# url: "SensitiveString", # required
|
1158
|
+
# audio_channels: "Stereo", # accepts Stereo, Mono
|
1159
|
+
# audio_sample_rate: "AudioSampleRateOption",
|
1160
|
+
# }
|
1161
|
+
#
|
1162
|
+
# @!attribute [rw] url
|
1163
|
+
# The URL of the RTMP configuration.
|
1164
|
+
# @return [String]
|
1165
|
+
#
|
1166
|
+
# @!attribute [rw] audio_channels
|
1167
|
+
# The audio channels set for the RTMP configuration
|
1168
|
+
# @return [String]
|
1169
|
+
#
|
1170
|
+
# @!attribute [rw] audio_sample_rate
|
1171
|
+
# The audio sample rate set for the RTMP configuration. Default:
|
1172
|
+
# 48000.
|
1173
|
+
# @return [String]
|
1174
|
+
#
|
1175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/LiveConnectorRTMPConfiguration AWS API Documentation
|
1176
|
+
#
|
1177
|
+
class LiveConnectorRTMPConfiguration < Struct.new(
|
1178
|
+
:url,
|
1179
|
+
:audio_channels,
|
1180
|
+
:audio_sample_rate)
|
1181
|
+
SENSITIVE = [:url]
|
1182
|
+
include Aws::Structure
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
# The media pipeline's sink configuration settings.
|
1186
|
+
#
|
1187
|
+
# @note When making an API call, you may pass LiveConnectorSinkConfiguration
|
1188
|
+
# data as a hash:
|
1189
|
+
#
|
1190
|
+
# {
|
1191
|
+
# sink_type: "RTMP", # required, accepts RTMP
|
1192
|
+
# rtmp_configuration: { # required
|
1193
|
+
# url: "SensitiveString", # required
|
1194
|
+
# audio_channels: "Stereo", # accepts Stereo, Mono
|
1195
|
+
# audio_sample_rate: "AudioSampleRateOption",
|
1196
|
+
# },
|
1197
|
+
# }
|
1198
|
+
#
|
1199
|
+
# @!attribute [rw] sink_type
|
1200
|
+
# The sink configuration's sink type.
|
1201
|
+
# @return [String]
|
1202
|
+
#
|
1203
|
+
# @!attribute [rw] rtmp_configuration
|
1204
|
+
# The sink configuration's RTMP configuration setttings.
|
1205
|
+
# @return [Types::LiveConnectorRTMPConfiguration]
|
1206
|
+
#
|
1207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/LiveConnectorSinkConfiguration AWS API Documentation
|
1208
|
+
#
|
1209
|
+
class LiveConnectorSinkConfiguration < Struct.new(
|
1210
|
+
:sink_type,
|
1211
|
+
:rtmp_configuration)
|
1212
|
+
SENSITIVE = []
|
1213
|
+
include Aws::Structure
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# The data source configuration object of a streaming media pipeline.
|
1217
|
+
#
|
1218
|
+
# @note When making an API call, you may pass LiveConnectorSourceConfiguration
|
1219
|
+
# data as a hash:
|
1220
|
+
#
|
1221
|
+
# {
|
1222
|
+
# source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
|
1223
|
+
# chime_sdk_meeting_live_connector_configuration: { # required
|
1224
|
+
# arn: "Arn", # required
|
1225
|
+
# mux_type: "AudioWithCompositedVideo", # required, accepts AudioWithCompositedVideo, AudioWithActiveSpeakerVideo
|
1226
|
+
# composited_video: {
|
1227
|
+
# layout: "GridView", # accepts GridView
|
1228
|
+
# resolution: "HD", # accepts HD, FHD
|
1229
|
+
# grid_view_configuration: { # required
|
1230
|
+
# content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
|
1231
|
+
# presenter_only_configuration: {
|
1232
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
1233
|
+
# },
|
1234
|
+
# },
|
1235
|
+
# },
|
1236
|
+
# source_configuration: {
|
1237
|
+
# selected_video_streams: {
|
1238
|
+
# attendee_ids: ["GuidString"],
|
1239
|
+
# external_user_ids: ["ExternalUserIdType"],
|
1240
|
+
# },
|
1241
|
+
# },
|
1242
|
+
# },
|
1243
|
+
# }
|
1244
|
+
#
|
1245
|
+
# @!attribute [rw] source_type
|
1246
|
+
# The source configuration's media source type.
|
1247
|
+
# @return [String]
|
1248
|
+
#
|
1249
|
+
# @!attribute [rw] chime_sdk_meeting_live_connector_configuration
|
1250
|
+
# The configuration settings of the connector pipeline.
|
1251
|
+
# @return [Types::ChimeSdkMeetingLiveConnectorConfiguration]
|
1252
|
+
#
|
1253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/LiveConnectorSourceConfiguration AWS API Documentation
|
1254
|
+
#
|
1255
|
+
class LiveConnectorSourceConfiguration < Struct.new(
|
1256
|
+
:source_type,
|
1257
|
+
:chime_sdk_meeting_live_connector_configuration)
|
1258
|
+
SENSITIVE = []
|
1259
|
+
include Aws::Structure
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
# A media pipeline object consisting of an ID, source type, source ARN,
|
1263
|
+
# a sink type, a sink ARN, and a configuration object.
|
419
1264
|
#
|
420
1265
|
# @!attribute [rw] media_pipeline_id
|
421
|
-
# The ID of a media
|
1266
|
+
# The ID of a media pipeline.
|
422
1267
|
# @return [String]
|
423
1268
|
#
|
424
1269
|
# @!attribute [rw] media_pipeline_arn
|
425
|
-
# The ARN of
|
1270
|
+
# The ARN of the media capture pipeline
|
426
1271
|
# @return [String]
|
427
1272
|
#
|
428
1273
|
# @!attribute [rw] source_type
|
@@ -435,7 +1280,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
435
1280
|
# @return [String]
|
436
1281
|
#
|
437
1282
|
# @!attribute [rw] status
|
438
|
-
# The status of the media
|
1283
|
+
# The status of the media pipeline.
|
439
1284
|
# @return [String]
|
440
1285
|
#
|
441
1286
|
# @!attribute [rw] sink_type
|
@@ -448,18 +1293,16 @@ module Aws::ChimeSDKMediaPipelines
|
|
448
1293
|
# @return [String]
|
449
1294
|
#
|
450
1295
|
# @!attribute [rw] created_timestamp
|
451
|
-
# The time at which the
|
452
|
-
# format.
|
1296
|
+
# The time at which the pipeline was created, in ISO 8601 format.
|
453
1297
|
# @return [Time]
|
454
1298
|
#
|
455
1299
|
# @!attribute [rw] updated_timestamp
|
456
|
-
# The time at which the
|
457
|
-
# format.
|
1300
|
+
# The time at which the pipeline was updated, in ISO 8601 format.
|
458
1301
|
# @return [Time]
|
459
1302
|
#
|
460
1303
|
# @!attribute [rw] chime_sdk_meeting_configuration
|
461
|
-
# The configuration for a specified media
|
462
|
-
#
|
1304
|
+
# The configuration for a specified media pipeline. `SourceType` must
|
1305
|
+
# be `ChimeSdkMeeting`.
|
463
1306
|
# @return [Types::ChimeSdkMeetingConfiguration]
|
464
1307
|
#
|
465
1308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaCapturePipeline AWS API Documentation
|
@@ -479,14 +1322,67 @@ module Aws::ChimeSDKMediaPipelines
|
|
479
1322
|
include Aws::Structure
|
480
1323
|
end
|
481
1324
|
|
482
|
-
#
|
1325
|
+
# The source configuration object of a media capture pipeline.
|
1326
|
+
#
|
1327
|
+
# @note When making an API call, you may pass MediaCapturePipelineSourceConfiguration
|
1328
|
+
# data as a hash:
|
1329
|
+
#
|
1330
|
+
# {
|
1331
|
+
# media_pipeline_arn: "Arn", # required
|
1332
|
+
# chime_sdk_meeting_configuration: { # required
|
1333
|
+
# artifacts_configuration: { # required
|
1334
|
+
# audio: { # required
|
1335
|
+
# state: "Enabled", # required, accepts Enabled
|
1336
|
+
# },
|
1337
|
+
# video: { # required
|
1338
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1339
|
+
# },
|
1340
|
+
# content: { # required
|
1341
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1342
|
+
# },
|
1343
|
+
# data_channel: { # required
|
1344
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1345
|
+
# },
|
1346
|
+
# transcription_messages: { # required
|
1347
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1348
|
+
# },
|
1349
|
+
# meeting_events: { # required
|
1350
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1351
|
+
# },
|
1352
|
+
# composited_video: { # required
|
1353
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1354
|
+
# },
|
1355
|
+
# },
|
1356
|
+
# },
|
1357
|
+
# }
|
1358
|
+
#
|
1359
|
+
# @!attribute [rw] media_pipeline_arn
|
1360
|
+
# The media pipeline ARN in the configuration object of a media
|
1361
|
+
# capture pipeline.
|
1362
|
+
# @return [String]
|
1363
|
+
#
|
1364
|
+
# @!attribute [rw] chime_sdk_meeting_configuration
|
1365
|
+
# The meeting configuration settings in a media capture pipeline
|
1366
|
+
# configuration object.
|
1367
|
+
# @return [Types::ChimeSdkMeetingConcatenationConfiguration]
|
1368
|
+
#
|
1369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaCapturePipelineSourceConfiguration AWS API Documentation
|
1370
|
+
#
|
1371
|
+
class MediaCapturePipelineSourceConfiguration < Struct.new(
|
1372
|
+
:media_pipeline_arn,
|
1373
|
+
:chime_sdk_meeting_configuration)
|
1374
|
+
SENSITIVE = [:media_pipeline_arn]
|
1375
|
+
include Aws::Structure
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
# The summary data of a media capture pipeline.
|
483
1379
|
#
|
484
1380
|
# @!attribute [rw] media_pipeline_id
|
485
|
-
# The ID of
|
1381
|
+
# The ID of the media pipeline in the summary.
|
486
1382
|
# @return [String]
|
487
1383
|
#
|
488
1384
|
# @!attribute [rw] media_pipeline_arn
|
489
|
-
# The ARN of
|
1385
|
+
# The ARN of the media pipeline in the summary.
|
490
1386
|
# @return [String]
|
491
1387
|
#
|
492
1388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaCapturePipelineSummary AWS API Documentation
|
@@ -498,6 +1394,160 @@ module Aws::ChimeSDKMediaPipelines
|
|
498
1394
|
include Aws::Structure
|
499
1395
|
end
|
500
1396
|
|
1397
|
+
# Concatenates audio and video data from one or more data streams.
|
1398
|
+
#
|
1399
|
+
# @!attribute [rw] media_pipeline_id
|
1400
|
+
# The ID of the media pipeline being concatenated.
|
1401
|
+
# @return [String]
|
1402
|
+
#
|
1403
|
+
# @!attribute [rw] media_pipeline_arn
|
1404
|
+
# The ARN of the media pipeline that you specify in the
|
1405
|
+
# `SourceConfiguration` object.
|
1406
|
+
# @return [String]
|
1407
|
+
#
|
1408
|
+
# @!attribute [rw] sources
|
1409
|
+
# The data sources being concatnated.
|
1410
|
+
# @return [Array<Types::ConcatenationSource>]
|
1411
|
+
#
|
1412
|
+
# @!attribute [rw] sinks
|
1413
|
+
# The data sinks of the concatenation pipeline.
|
1414
|
+
# @return [Array<Types::ConcatenationSink>]
|
1415
|
+
#
|
1416
|
+
# @!attribute [rw] status
|
1417
|
+
# The status of the concatenation pipeline.
|
1418
|
+
# @return [String]
|
1419
|
+
#
|
1420
|
+
# @!attribute [rw] created_timestamp
|
1421
|
+
# The time at which the concatenation pipeline was created.
|
1422
|
+
# @return [Time]
|
1423
|
+
#
|
1424
|
+
# @!attribute [rw] updated_timestamp
|
1425
|
+
# The time at which the concatenation pipeline was last updated.
|
1426
|
+
# @return [Time]
|
1427
|
+
#
|
1428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaConcatenationPipeline AWS API Documentation
|
1429
|
+
#
|
1430
|
+
class MediaConcatenationPipeline < Struct.new(
|
1431
|
+
:media_pipeline_id,
|
1432
|
+
:media_pipeline_arn,
|
1433
|
+
:sources,
|
1434
|
+
:sinks,
|
1435
|
+
:status,
|
1436
|
+
:created_timestamp,
|
1437
|
+
:updated_timestamp)
|
1438
|
+
SENSITIVE = []
|
1439
|
+
include Aws::Structure
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
# The connector pipeline.
|
1443
|
+
#
|
1444
|
+
# @!attribute [rw] sources
|
1445
|
+
# The connector pipeline's data sources.
|
1446
|
+
# @return [Array<Types::LiveConnectorSourceConfiguration>]
|
1447
|
+
#
|
1448
|
+
# @!attribute [rw] sinks
|
1449
|
+
# The connector pipeline's data sinks.
|
1450
|
+
# @return [Array<Types::LiveConnectorSinkConfiguration>]
|
1451
|
+
#
|
1452
|
+
# @!attribute [rw] media_pipeline_id
|
1453
|
+
# The connector pipeline's ID.
|
1454
|
+
# @return [String]
|
1455
|
+
#
|
1456
|
+
# @!attribute [rw] media_pipeline_arn
|
1457
|
+
# The connector pipeline's ARN.
|
1458
|
+
# @return [String]
|
1459
|
+
#
|
1460
|
+
# @!attribute [rw] status
|
1461
|
+
# The connector pipeline's status.
|
1462
|
+
# @return [String]
|
1463
|
+
#
|
1464
|
+
# @!attribute [rw] created_timestamp
|
1465
|
+
# Thetime at which the connector pipeline was created.
|
1466
|
+
# @return [Time]
|
1467
|
+
#
|
1468
|
+
# @!attribute [rw] updated_timestamp
|
1469
|
+
# The time at which the connector pipeline was last updated.
|
1470
|
+
# @return [Time]
|
1471
|
+
#
|
1472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaLiveConnectorPipeline AWS API Documentation
|
1473
|
+
#
|
1474
|
+
class MediaLiveConnectorPipeline < Struct.new(
|
1475
|
+
:sources,
|
1476
|
+
:sinks,
|
1477
|
+
:media_pipeline_id,
|
1478
|
+
:media_pipeline_arn,
|
1479
|
+
:status,
|
1480
|
+
:created_timestamp,
|
1481
|
+
:updated_timestamp)
|
1482
|
+
SENSITIVE = []
|
1483
|
+
include Aws::Structure
|
1484
|
+
end
|
1485
|
+
|
1486
|
+
# A pipeline consisting of a media capture, media concatenation, or
|
1487
|
+
# live-streaming pipeline.
|
1488
|
+
#
|
1489
|
+
# @!attribute [rw] media_capture_pipeline
|
1490
|
+
# A pipeline that enables users to capture audio and video.
|
1491
|
+
# @return [Types::MediaCapturePipeline]
|
1492
|
+
#
|
1493
|
+
# @!attribute [rw] media_live_connector_pipeline
|
1494
|
+
# The connector pipeline of the media pipeline.
|
1495
|
+
# @return [Types::MediaLiveConnectorPipeline]
|
1496
|
+
#
|
1497
|
+
# @!attribute [rw] media_concatenation_pipeline
|
1498
|
+
# The media concatenation pipeline in a media pipeline.
|
1499
|
+
# @return [Types::MediaConcatenationPipeline]
|
1500
|
+
#
|
1501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaPipeline AWS API Documentation
|
1502
|
+
#
|
1503
|
+
class MediaPipeline < Struct.new(
|
1504
|
+
:media_capture_pipeline,
|
1505
|
+
:media_live_connector_pipeline,
|
1506
|
+
:media_concatenation_pipeline)
|
1507
|
+
SENSITIVE = []
|
1508
|
+
include Aws::Structure
|
1509
|
+
end
|
1510
|
+
|
1511
|
+
# The summary of the media pipeline.
|
1512
|
+
#
|
1513
|
+
# @!attribute [rw] media_pipeline_id
|
1514
|
+
# The ID of the media pipeline in the summary.
|
1515
|
+
# @return [String]
|
1516
|
+
#
|
1517
|
+
# @!attribute [rw] media_pipeline_arn
|
1518
|
+
# The ARN of the media pipeline in the summary.
|
1519
|
+
# @return [String]
|
1520
|
+
#
|
1521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaPipelineSummary AWS API Documentation
|
1522
|
+
#
|
1523
|
+
class MediaPipelineSummary < Struct.new(
|
1524
|
+
:media_pipeline_id,
|
1525
|
+
:media_pipeline_arn)
|
1526
|
+
SENSITIVE = []
|
1527
|
+
include Aws::Structure
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
# The configuration object for an event concatenation pipeline.
|
1531
|
+
#
|
1532
|
+
# @note When making an API call, you may pass MeetingEventsConcatenationConfiguration
|
1533
|
+
# data as a hash:
|
1534
|
+
#
|
1535
|
+
# {
|
1536
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1537
|
+
# }
|
1538
|
+
#
|
1539
|
+
# @!attribute [rw] state
|
1540
|
+
# Enables or disables the configuration object.
|
1541
|
+
# @return [String]
|
1542
|
+
#
|
1543
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MeetingEventsConcatenationConfiguration AWS API Documentation
|
1544
|
+
#
|
1545
|
+
class MeetingEventsConcatenationConfiguration < Struct.new(
|
1546
|
+
:state)
|
1547
|
+
SENSITIVE = []
|
1548
|
+
include Aws::Structure
|
1549
|
+
end
|
1550
|
+
|
501
1551
|
# One or more of the resources in the request does not exist in the
|
502
1552
|
# system.
|
503
1553
|
#
|
@@ -522,6 +1572,28 @@ module Aws::ChimeSDKMediaPipelines
|
|
522
1572
|
include Aws::Structure
|
523
1573
|
end
|
524
1574
|
|
1575
|
+
# Defines the configuration for a presenter only video tile.
|
1576
|
+
#
|
1577
|
+
# @note When making an API call, you may pass PresenterOnlyConfiguration
|
1578
|
+
# data as a hash:
|
1579
|
+
#
|
1580
|
+
# {
|
1581
|
+
# presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
|
1582
|
+
# }
|
1583
|
+
#
|
1584
|
+
# @!attribute [rw] presenter_position
|
1585
|
+
# Defines the position of the presenter video tile. Default:
|
1586
|
+
# `TopRight`.
|
1587
|
+
# @return [String]
|
1588
|
+
#
|
1589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/PresenterOnlyConfiguration AWS API Documentation
|
1590
|
+
#
|
1591
|
+
class PresenterOnlyConfiguration < Struct.new(
|
1592
|
+
:presenter_position)
|
1593
|
+
SENSITIVE = []
|
1594
|
+
include Aws::Structure
|
1595
|
+
end
|
1596
|
+
|
525
1597
|
# The request exceeds the resource limit.
|
526
1598
|
#
|
527
1599
|
# @!attribute [rw] code
|
@@ -545,8 +1617,29 @@ module Aws::ChimeSDKMediaPipelines
|
|
545
1617
|
include Aws::Structure
|
546
1618
|
end
|
547
1619
|
|
548
|
-
# The
|
549
|
-
#
|
1620
|
+
# The configuration settings for the S3 bucket.
|
1621
|
+
#
|
1622
|
+
# @note When making an API call, you may pass S3BucketSinkConfiguration
|
1623
|
+
# data as a hash:
|
1624
|
+
#
|
1625
|
+
# {
|
1626
|
+
# destination: "Arn", # required
|
1627
|
+
# }
|
1628
|
+
#
|
1629
|
+
# @!attribute [rw] destination
|
1630
|
+
# The destination URL of the S3 bucket.
|
1631
|
+
# @return [String]
|
1632
|
+
#
|
1633
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/S3BucketSinkConfiguration AWS API Documentation
|
1634
|
+
#
|
1635
|
+
class S3BucketSinkConfiguration < Struct.new(
|
1636
|
+
:destination)
|
1637
|
+
SENSITIVE = [:destination]
|
1638
|
+
include Aws::Structure
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
# The video streams for a specified media pipeline. The total number of
|
1642
|
+
# video streams can't exceed 25.
|
550
1643
|
#
|
551
1644
|
# @note When making an API call, you may pass SelectedVideoStreams
|
552
1645
|
# data as a hash:
|
@@ -557,13 +1650,11 @@ module Aws::ChimeSDKMediaPipelines
|
|
557
1650
|
# }
|
558
1651
|
#
|
559
1652
|
# @!attribute [rw] attendee_ids
|
560
|
-
# The attendee IDs of the streams selected for a media
|
561
|
-
# pipeline.
|
1653
|
+
# The attendee IDs of the streams selected for a media pipeline.
|
562
1654
|
# @return [Array<String>]
|
563
1655
|
#
|
564
1656
|
# @!attribute [rw] external_user_ids
|
565
|
-
# The external user IDs of the streams selected for a media
|
566
|
-
# pipeline.
|
1657
|
+
# The external user IDs of the streams selected for a media pipeline.
|
567
1658
|
# @return [Array<String>]
|
568
1659
|
#
|
569
1660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/SelectedVideoStreams AWS API Documentation
|
@@ -621,7 +1712,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
621
1712
|
include Aws::Structure
|
622
1713
|
end
|
623
1714
|
|
624
|
-
# Source configuration for a specified media
|
1715
|
+
# Source configuration for a specified media pipeline.
|
625
1716
|
#
|
626
1717
|
# @note When making an API call, you may pass SourceConfiguration
|
627
1718
|
# data as a hash:
|
@@ -634,8 +1725,8 @@ module Aws::ChimeSDKMediaPipelines
|
|
634
1725
|
# }
|
635
1726
|
#
|
636
1727
|
# @!attribute [rw] selected_video_streams
|
637
|
-
# The selected video streams
|
638
|
-
#
|
1728
|
+
# The selected video streams for a specified media pipeline. The
|
1729
|
+
# number of video streams can't exceed 25.
|
639
1730
|
# @return [Types::SelectedVideoStreams]
|
640
1731
|
#
|
641
1732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/SourceConfiguration AWS API Documentation
|
@@ -646,7 +1737,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
646
1737
|
include Aws::Structure
|
647
1738
|
end
|
648
1739
|
|
649
|
-
#
|
1740
|
+
# A key/value pair that grants users access to meeting resources.
|
650
1741
|
#
|
651
1742
|
# @note When making an API call, you may pass Tag
|
652
1743
|
# data as a hash:
|
@@ -657,11 +1748,11 @@ module Aws::ChimeSDKMediaPipelines
|
|
657
1748
|
# }
|
658
1749
|
#
|
659
1750
|
# @!attribute [rw] key
|
660
|
-
# The key of
|
1751
|
+
# The key half of a tag.
|
661
1752
|
# @return [String]
|
662
1753
|
#
|
663
1754
|
# @!attribute [rw] value
|
664
|
-
# The value of
|
1755
|
+
# The value half of a tag.
|
665
1756
|
# @return [String]
|
666
1757
|
#
|
667
1758
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/Tag AWS API Documentation
|
@@ -687,11 +1778,13 @@ module Aws::ChimeSDKMediaPipelines
|
|
687
1778
|
# }
|
688
1779
|
#
|
689
1780
|
# @!attribute [rw] resource_arn
|
690
|
-
# The
|
1781
|
+
# The ARN of the media pipeline associated with any tags. The ARN
|
1782
|
+
# consists of the pipeline's endpoint region, resource ID, and
|
1783
|
+
# pipeline ID.
|
691
1784
|
# @return [String]
|
692
1785
|
#
|
693
1786
|
# @!attribute [rw] tags
|
694
|
-
# The
|
1787
|
+
# The tags associated with the specified media pipeline.
|
695
1788
|
# @return [Array<Types::Tag>]
|
696
1789
|
#
|
697
1790
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/TagResourceRequest AWS API Documentation
|
@@ -730,6 +1823,27 @@ module Aws::ChimeSDKMediaPipelines
|
|
730
1823
|
include Aws::Structure
|
731
1824
|
end
|
732
1825
|
|
1826
|
+
# The configuration object for concatenating transcription messages.
|
1827
|
+
#
|
1828
|
+
# @note When making an API call, you may pass TranscriptionMessagesConcatenationConfiguration
|
1829
|
+
# data as a hash:
|
1830
|
+
#
|
1831
|
+
# {
|
1832
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1833
|
+
# }
|
1834
|
+
#
|
1835
|
+
# @!attribute [rw] state
|
1836
|
+
# Enables or disables the configuration object.
|
1837
|
+
# @return [String]
|
1838
|
+
#
|
1839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/TranscriptionMessagesConcatenationConfiguration AWS API Documentation
|
1840
|
+
#
|
1841
|
+
class TranscriptionMessagesConcatenationConfiguration < Struct.new(
|
1842
|
+
:state)
|
1843
|
+
SENSITIVE = []
|
1844
|
+
include Aws::Structure
|
1845
|
+
end
|
1846
|
+
|
733
1847
|
# The client is not currently authorized to make the request.
|
734
1848
|
#
|
735
1849
|
# @!attribute [rw] code
|
@@ -762,11 +1876,11 @@ module Aws::ChimeSDKMediaPipelines
|
|
762
1876
|
# }
|
763
1877
|
#
|
764
1878
|
# @!attribute [rw] resource_arn
|
765
|
-
# The
|
1879
|
+
# The ARN of the pipeline that you want to untag.
|
766
1880
|
# @return [String]
|
767
1881
|
#
|
768
1882
|
# @!attribute [rw] tag_keys
|
769
|
-
# The tag
|
1883
|
+
# The key/value pairs in the tag that you want to remove.
|
770
1884
|
# @return [Array<String>]
|
771
1885
|
#
|
772
1886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/UntagResourceRequest AWS API Documentation
|
@@ -809,5 +1923,26 @@ module Aws::ChimeSDKMediaPipelines
|
|
809
1923
|
include Aws::Structure
|
810
1924
|
end
|
811
1925
|
|
1926
|
+
# The configuration object of a video contacatentation pipeline.
|
1927
|
+
#
|
1928
|
+
# @note When making an API call, you may pass VideoConcatenationConfiguration
|
1929
|
+
# data as a hash:
|
1930
|
+
#
|
1931
|
+
# {
|
1932
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1933
|
+
# }
|
1934
|
+
#
|
1935
|
+
# @!attribute [rw] state
|
1936
|
+
# Enables or disables the configuration object.
|
1937
|
+
# @return [String]
|
1938
|
+
#
|
1939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/VideoConcatenationConfiguration AWS API Documentation
|
1940
|
+
#
|
1941
|
+
class VideoConcatenationConfiguration < Struct.new(
|
1942
|
+
:state)
|
1943
|
+
SENSITIVE = []
|
1944
|
+
include Aws::Structure
|
1945
|
+
end
|
1946
|
+
|
812
1947
|
end
|
813
1948
|
end
|