aws-sdk-ivs 1.62.0 → 1.64.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-ivs/client.rb +77 -1
- data/lib/aws-sdk-ivs/client_api.rb +32 -0
- data/lib/aws-sdk-ivs/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ivs/endpoints.rb +2 -383
- data/lib/aws-sdk-ivs/plugins/endpoints.rb +1 -76
- data/lib/aws-sdk-ivs/types.rb +191 -8
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/types.rbs +24 -0
- metadata +4 -4
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -24,7 +24,8 @@ module Aws::IVS
|
|
24
24
|
|
25
25
|
# Object specifying a stream’s audio configuration, as set up by the
|
26
26
|
# broadcaster (usually in an encoder). This is part of the
|
27
|
-
#
|
27
|
+
# IngestConfigurations object and the deprecated IngestConfiguration
|
28
|
+
# object. It is used for monitoring stream health.
|
28
29
|
#
|
29
30
|
# @!attribute [rw] channels
|
30
31
|
# Number of audio channels.
|
@@ -43,13 +44,19 @@ module Aws::IVS
|
|
43
44
|
# the encoder.
|
44
45
|
# @return [Integer]
|
45
46
|
#
|
47
|
+
# @!attribute [rw] track
|
48
|
+
# Name of the audio track (if the stream has an audio track). If
|
49
|
+
# multitrack is not enabled, this is track0 (the sole track).
|
50
|
+
# @return [String]
|
51
|
+
#
|
46
52
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/AudioConfiguration AWS API Documentation
|
47
53
|
#
|
48
54
|
class AudioConfiguration < Struct.new(
|
49
55
|
:channels,
|
50
56
|
:codec,
|
51
57
|
:sample_rate,
|
52
|
-
:target_bitrate
|
58
|
+
:target_bitrate,
|
59
|
+
:track)
|
53
60
|
SENSITIVE = []
|
54
61
|
include Aws::Structure
|
55
62
|
end
|
@@ -229,6 +236,14 @@ module Aws::IVS
|
|
229
236
|
# Default: `false`.
|
230
237
|
# @return [Boolean]
|
231
238
|
#
|
239
|
+
# @!attribute [rw] container_format
|
240
|
+
# Indicates which content-packaging format is used (MPEG-TS or fMP4).
|
241
|
+
# If `multitrackInputConfiguration` is specified and `enabled` is
|
242
|
+
# `true`, then `containerFormat` is required and must be set to
|
243
|
+
# `FRAGMENTED_MP4`. Otherwise, `containerFormat` may be set to `TS` or
|
244
|
+
# `FRAGMENTED_MP4`. Default: `TS`.
|
245
|
+
# @return [String]
|
246
|
+
#
|
232
247
|
# @!attribute [rw] ingest_endpoint
|
233
248
|
# Channel ingest endpoint, part of the definition of an ingest server,
|
234
249
|
# used when you set up streaming software.
|
@@ -244,6 +259,11 @@ module Aws::IVS
|
|
244
259
|
# viewers. Default: `LOW`.
|
245
260
|
# @return [String]
|
246
261
|
#
|
262
|
+
# @!attribute [rw] multitrack_input_configuration
|
263
|
+
# Object specifying multitrack input configuration. Default: no
|
264
|
+
# multitrack input configuration is specified.
|
265
|
+
# @return [Types::MultitrackInputConfiguration]
|
266
|
+
#
|
247
267
|
# @!attribute [rw] name
|
248
268
|
# Channel name.
|
249
269
|
# @return [String]
|
@@ -306,9 +326,11 @@ module Aws::IVS
|
|
306
326
|
class Channel < Struct.new(
|
307
327
|
:arn,
|
308
328
|
:authorized,
|
329
|
+
:container_format,
|
309
330
|
:ingest_endpoint,
|
310
331
|
:insecure_ingest,
|
311
332
|
:latency_mode,
|
333
|
+
:multitrack_input_configuration,
|
312
334
|
:name,
|
313
335
|
:playback_restriction_policy_arn,
|
314
336
|
:playback_url,
|
@@ -436,6 +458,14 @@ module Aws::IVS
|
|
436
458
|
# Default: `false`.
|
437
459
|
# @return [Boolean]
|
438
460
|
#
|
461
|
+
# @!attribute [rw] container_format
|
462
|
+
# Indicates which content-packaging format is used (MPEG-TS or fMP4).
|
463
|
+
# If `multitrackInputConfiguration` is specified and `enabled` is
|
464
|
+
# `true`, then `containerFormat` is required and must be set to
|
465
|
+
# `FRAGMENTED_MP4`. Otherwise, `containerFormat` may be set to `TS` or
|
466
|
+
# `FRAGMENTED_MP4`. Default: `TS`.
|
467
|
+
# @return [String]
|
468
|
+
#
|
439
469
|
# @!attribute [rw] insecure_ingest
|
440
470
|
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
441
471
|
# `false`.
|
@@ -447,6 +477,11 @@ module Aws::IVS
|
|
447
477
|
# viewers. Default: `LOW`.
|
448
478
|
# @return [String]
|
449
479
|
#
|
480
|
+
# @!attribute [rw] multitrack_input_configuration
|
481
|
+
# Object specifying multitrack input configuration. Default: no
|
482
|
+
# multitrack input configuration is specified.
|
483
|
+
# @return [Types::MultitrackInputConfiguration]
|
484
|
+
#
|
450
485
|
# @!attribute [rw] name
|
451
486
|
# Channel name.
|
452
487
|
# @return [String]
|
@@ -499,8 +534,10 @@ module Aws::IVS
|
|
499
534
|
#
|
500
535
|
class CreateChannelRequest < Struct.new(
|
501
536
|
:authorized,
|
537
|
+
:container_format,
|
502
538
|
:insecure_ingest,
|
503
539
|
:latency_mode,
|
540
|
+
:multitrack_input_configuration,
|
504
541
|
:name,
|
505
542
|
:playback_restriction_policy_arn,
|
506
543
|
:preset,
|
@@ -1002,6 +1039,14 @@ module Aws::IVS
|
|
1002
1039
|
# Object specifying the ingest configuration set up by the broadcaster,
|
1003
1040
|
# usually in an encoder.
|
1004
1041
|
#
|
1042
|
+
# **Note:** IngestConfiguration is deprecated in favor of
|
1043
|
+
# IngestConfigurations but retained to ensure backward compatibility. If
|
1044
|
+
# multitrack is not enabled, IngestConfiguration and
|
1045
|
+
# IngestConfigurations contain the same data, namely information about
|
1046
|
+
# track0 (the sole track). If multitrack is enabled, IngestConfiguration
|
1047
|
+
# contains data for only the first track (track0) and
|
1048
|
+
# IngestConfigurations contains data for all tracks.
|
1049
|
+
#
|
1005
1050
|
# @!attribute [rw] audio
|
1006
1051
|
# Encoder settings for audio.
|
1007
1052
|
# @return [Types::AudioConfiguration]
|
@@ -1019,6 +1064,33 @@ module Aws::IVS
|
|
1019
1064
|
include Aws::Structure
|
1020
1065
|
end
|
1021
1066
|
|
1067
|
+
# Object specifying the ingest configuration set up by the broadcaster,
|
1068
|
+
# usually in an encoder.
|
1069
|
+
#
|
1070
|
+
# **Note:** Use IngestConfigurations instead of IngestConfiguration
|
1071
|
+
# (which is deprecated). If multitrack is not enabled,
|
1072
|
+
# IngestConfiguration and IngestConfigurations contain the same data,
|
1073
|
+
# namely information about track0 (the sole track). If multitrack is
|
1074
|
+
# enabled, IngestConfiguration contains data for only the first track
|
1075
|
+
# (track0) and IngestConfigurations contains data for all tracks.
|
1076
|
+
#
|
1077
|
+
# @!attribute [rw] audio_configurations
|
1078
|
+
# Encoder settings for audio.
|
1079
|
+
# @return [Array<Types::AudioConfiguration>]
|
1080
|
+
#
|
1081
|
+
# @!attribute [rw] video_configurations
|
1082
|
+
# Encoder settings for video
|
1083
|
+
# @return [Array<Types::VideoConfiguration>]
|
1084
|
+
#
|
1085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/IngestConfigurations AWS API Documentation
|
1086
|
+
#
|
1087
|
+
class IngestConfigurations < Struct.new(
|
1088
|
+
:audio_configurations,
|
1089
|
+
:video_configurations)
|
1090
|
+
SENSITIVE = []
|
1091
|
+
include Aws::Structure
|
1092
|
+
end
|
1093
|
+
|
1022
1094
|
# @!attribute [rw] exception_message
|
1023
1095
|
# Unexpected error during processing of request.
|
1024
1096
|
# @return [String]
|
@@ -1342,6 +1414,37 @@ module Aws::IVS
|
|
1342
1414
|
include Aws::Structure
|
1343
1415
|
end
|
1344
1416
|
|
1417
|
+
# A complex type that specifies multitrack input configuration.
|
1418
|
+
#
|
1419
|
+
# @!attribute [rw] enabled
|
1420
|
+
# Indicates whether multitrack input is enabled. Can be set to `true`
|
1421
|
+
# only if channel type is `STANDARD`. Setting `enabled` to `true` with
|
1422
|
+
# any other channel type will cause an exception. If `true`, then
|
1423
|
+
# `policy`, `maximumResolution`, and `containerFormat` are required,
|
1424
|
+
# and `containerFormat` must be set to `FRAGMENTED_MP4`. Default:
|
1425
|
+
# `false`.
|
1426
|
+
# @return [Boolean]
|
1427
|
+
#
|
1428
|
+
# @!attribute [rw] maximum_resolution
|
1429
|
+
# Maximum resolution for multitrack input. Required if `enabled` is
|
1430
|
+
# `true`.
|
1431
|
+
# @return [String]
|
1432
|
+
#
|
1433
|
+
# @!attribute [rw] policy
|
1434
|
+
# Indicates whether multitrack input is allowed or required. Required
|
1435
|
+
# if `enabled` is `true`.
|
1436
|
+
# @return [String]
|
1437
|
+
#
|
1438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/MultitrackInputConfiguration AWS API Documentation
|
1439
|
+
#
|
1440
|
+
class MultitrackInputConfiguration < Struct.new(
|
1441
|
+
:enabled,
|
1442
|
+
:maximum_resolution,
|
1443
|
+
:policy)
|
1444
|
+
SENSITIVE = []
|
1445
|
+
include Aws::Structure
|
1446
|
+
end
|
1447
|
+
|
1345
1448
|
# @!attribute [rw] exception_message
|
1346
1449
|
# Your account is pending verification.
|
1347
1450
|
# @return [String]
|
@@ -1884,8 +1987,36 @@ module Aws::IVS
|
|
1884
1987
|
#
|
1885
1988
|
# @!attribute [rw] code
|
1886
1989
|
# Provides additional details about the stream event. There are
|
1887
|
-
# several values;
|
1888
|
-
#
|
1990
|
+
# several values; the long descriptions are provided in the IVS
|
1991
|
+
# console but not delivered through the IVS API or EventBridge.
|
1992
|
+
# Multitrack-related codes are used only for certain Session Ended
|
1993
|
+
# events.
|
1994
|
+
#
|
1995
|
+
# * `MultitrackInputNotAllowed` — The broadcast client attempted to
|
1996
|
+
# connect with multitrack input, but multitrack input was not
|
1997
|
+
# enabled on the channel. Check your broadcast software settings or
|
1998
|
+
# set `MultitrackInputConfiguration.Policy` to `ALLOW` or `REQUIRE`.
|
1999
|
+
#
|
2000
|
+
# * `MultitrackInputRequired` — The broadcast client attempted to
|
2001
|
+
# connect with single-track video, but multitrack input is required
|
2002
|
+
# on this channel. Enable multitrack video in your broadcast
|
2003
|
+
# software or configure the channel’s
|
2004
|
+
# `MultitrackInputConfiguration.Policy` to `ALLOW`.
|
2005
|
+
#
|
2006
|
+
# * `InvalidGetClientConfigurationStreamKey` — The broadcast client
|
2007
|
+
# attempted to connect with an invalid, expired, or corrupt stream
|
2008
|
+
# key.
|
2009
|
+
#
|
2010
|
+
# * `GetClientConfigurationStreamKeyRequired` — The broadcast client
|
2011
|
+
# attempted to stream multitrack video without providing an
|
2012
|
+
# authenticated stream key from GetClientConfiguration.
|
2013
|
+
#
|
2014
|
+
# * `InvalidMultitrackInputTrackCount` — The multitrack input stream
|
2015
|
+
# contained an invalid number of tracks.
|
2016
|
+
#
|
2017
|
+
# * `InvalidMultitrackInputVideoTrackMediaProperties` — The multitrack
|
2018
|
+
# input stream contained one or more tracks with an invalid codec,
|
2019
|
+
# resolution, bitrate, or framerate.
|
1889
2020
|
#
|
1890
2021
|
# * `StreamTakeoverMediaMismatch` — The broadcast client attempted to
|
1891
2022
|
# take over with different media properties (e.g., codec,
|
@@ -1896,7 +2027,7 @@ module Aws::IVS
|
|
1896
2027
|
# than the original stream's value or a value outside the allowed
|
1897
2028
|
# range of 1 to 2,147,483,647.
|
1898
2029
|
#
|
1899
|
-
#
|
2030
|
+
# `StreamTakeoverLimitBreached` — The broadcast client reached the
|
1900
2031
|
# maximum allowed takeover attempts for this stream.
|
1901
2032
|
# @return [String]
|
1902
2033
|
#
|
@@ -2024,9 +2155,23 @@ module Aws::IVS
|
|
2024
2155
|
# @return [Time]
|
2025
2156
|
#
|
2026
2157
|
# @!attribute [rw] ingest_configuration
|
2027
|
-
# The properties of the incoming RTMP stream
|
2158
|
+
# The properties of the incoming RTMP stream.
|
2159
|
+
#
|
2160
|
+
# **Note:** `ingestConfiguration` is deprecated in favor of
|
2161
|
+
# `ingestConfigurations` but retained to ensure backward
|
2162
|
+
# compatibility. If multitrack is not enabled, `ingestConfiguration`
|
2163
|
+
# and `ingestConfigurations` contain the same data, namely information
|
2164
|
+
# about track0 (the sole track). If multitrack is enabled,
|
2165
|
+
# `ingestConfiguration` contains data for only the first track
|
2166
|
+
# (track0) and `ingestConfigurations` contains data for all tracks.
|
2028
2167
|
# @return [Types::IngestConfiguration]
|
2029
2168
|
#
|
2169
|
+
# @!attribute [rw] ingest_configurations
|
2170
|
+
# The properties of the incoming RTMP stream. If multitrack is
|
2171
|
+
# enabled, `ingestConfigurations` contains data for all tracks;
|
2172
|
+
# otherwise, it contains data only for track0 (the sole track).
|
2173
|
+
# @return [Types::IngestConfigurations]
|
2174
|
+
#
|
2030
2175
|
# @!attribute [rw] recording_configuration
|
2031
2176
|
# The properties of recording the live stream.
|
2032
2177
|
# @return [Types::RecordingConfiguration]
|
@@ -2058,6 +2203,7 @@ module Aws::IVS
|
|
2058
2203
|
:channel,
|
2059
2204
|
:end_time,
|
2060
2205
|
:ingest_configuration,
|
2206
|
+
:ingest_configurations,
|
2061
2207
|
:recording_configuration,
|
2062
2208
|
:start_time,
|
2063
2209
|
:stream_id,
|
@@ -2236,7 +2382,8 @@ module Aws::IVS
|
|
2236
2382
|
# configurable (and required) only if `recordingMode` is `INTERVAL`.
|
2237
2383
|
# Default: 60.
|
2238
2384
|
#
|
2239
|
-
# **Important:** For the `BASIC` channel type,
|
2385
|
+
# **Important:** For the `BASIC` channel type, or the `STANDARD`
|
2386
|
+
# channel type with multitrack input, setting a value for
|
2240
2387
|
# `targetIntervalSeconds` does not guarantee that thumbnails are
|
2241
2388
|
# generated at the specified interval. For thumbnails to be generated
|
2242
2389
|
# at the `targetIntervalSeconds` interval, the `IDR/Keyframe` value
|
@@ -2300,6 +2447,14 @@ module Aws::IVS
|
|
2300
2447
|
# Whether the channel is private (enabled for playback authorization).
|
2301
2448
|
# @return [Boolean]
|
2302
2449
|
#
|
2450
|
+
# @!attribute [rw] container_format
|
2451
|
+
# Indicates which content-packaging format is used (MPEG-TS or fMP4).
|
2452
|
+
# If `multitrackInputConfiguration` is specified and `enabled` is
|
2453
|
+
# `true`, then `containerFormat` is required and must be set to
|
2454
|
+
# `FRAGMENTED_MP4`. Otherwise, `containerFormat` may be set to `TS` or
|
2455
|
+
# `FRAGMENTED_MP4`. Default: `TS`.
|
2456
|
+
# @return [String]
|
2457
|
+
#
|
2303
2458
|
# @!attribute [rw] insecure_ingest
|
2304
2459
|
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
2305
2460
|
# `false`.
|
@@ -2311,6 +2466,11 @@ module Aws::IVS
|
|
2311
2466
|
# viewers.
|
2312
2467
|
# @return [String]
|
2313
2468
|
#
|
2469
|
+
# @!attribute [rw] multitrack_input_configuration
|
2470
|
+
# Object specifying multitrack input configuration. Default: no
|
2471
|
+
# multitrack input configuration is specified.
|
2472
|
+
# @return [Types::MultitrackInputConfiguration]
|
2473
|
+
#
|
2314
2474
|
# @!attribute [rw] name
|
2315
2475
|
# Channel name.
|
2316
2476
|
# @return [String]
|
@@ -2351,8 +2511,10 @@ module Aws::IVS
|
|
2351
2511
|
class UpdateChannelRequest < Struct.new(
|
2352
2512
|
:arn,
|
2353
2513
|
:authorized,
|
2514
|
+
:container_format,
|
2354
2515
|
:insecure_ingest,
|
2355
2516
|
:latency_mode,
|
2517
|
+
:multitrack_input_configuration,
|
2356
2518
|
:name,
|
2357
2519
|
:playback_restriction_policy_arn,
|
2358
2520
|
:preset,
|
@@ -2448,7 +2610,8 @@ module Aws::IVS
|
|
2448
2610
|
|
2449
2611
|
# Object specifying a stream’s video configuration, as set up by the
|
2450
2612
|
# broadcaster (usually in an encoder). This is part of the
|
2451
|
-
#
|
2613
|
+
# IngestConfigurations object and the deprecated IngestConfiguration
|
2614
|
+
# object. It is used for monitoring stream health.
|
2452
2615
|
#
|
2453
2616
|
# @!attribute [rw] avc_level
|
2454
2617
|
# Indicates the degree of required decoder performance for a profile.
|
@@ -2469,6 +2632,18 @@ module Aws::IVS
|
|
2469
2632
|
# Software or hardware used to encode the video.
|
2470
2633
|
# @return [String]
|
2471
2634
|
#
|
2635
|
+
# @!attribute [rw] level
|
2636
|
+
# Indicates the degree of required decoder performance for a profile.
|
2637
|
+
# Normally this is set automatically by the encoder. When an AVC codec
|
2638
|
+
# is used, this field has the same value as `avcLevel`.
|
2639
|
+
# @return [String]
|
2640
|
+
#
|
2641
|
+
# @!attribute [rw] profile
|
2642
|
+
# Indicates to the decoder the requirements for decoding the stream.
|
2643
|
+
# When an AVC codec is used, this field has the same value as
|
2644
|
+
# `avcProfile`.
|
2645
|
+
# @return [String]
|
2646
|
+
#
|
2472
2647
|
# @!attribute [rw] target_bitrate
|
2473
2648
|
# The expected ingest bitrate (bits per second). This is configured in
|
2474
2649
|
# the encoder.
|
@@ -2478,6 +2653,11 @@ module Aws::IVS
|
|
2478
2653
|
# The expected ingest framerate. This is configured in the encoder.
|
2479
2654
|
# @return [Integer]
|
2480
2655
|
#
|
2656
|
+
# @!attribute [rw] track
|
2657
|
+
# Name of the video track. If multitrack is not enabled, this is
|
2658
|
+
# track0 (the sole track).
|
2659
|
+
# @return [String]
|
2660
|
+
#
|
2481
2661
|
# @!attribute [rw] video_height
|
2482
2662
|
# Video-resolution height in pixels.
|
2483
2663
|
# @return [Integer]
|
@@ -2493,8 +2673,11 @@ module Aws::IVS
|
|
2493
2673
|
:avc_profile,
|
2494
2674
|
:codec,
|
2495
2675
|
:encoder,
|
2676
|
+
:level,
|
2677
|
+
:profile,
|
2496
2678
|
:target_bitrate,
|
2497
2679
|
:target_framerate,
|
2680
|
+
:track,
|
2498
2681
|
:video_height,
|
2499
2682
|
:video_width)
|
2500
2683
|
SENSITIVE = []
|
data/lib/aws-sdk-ivs.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -121,8 +121,14 @@ module Aws
|
|
121
121
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVS/Client.html#create_channel-instance_method
|
122
122
|
def create_channel: (
|
123
123
|
?authorized: bool,
|
124
|
+
?container_format: ("TS" | "FRAGMENTED_MP4"),
|
124
125
|
?insecure_ingest: bool,
|
125
126
|
?latency_mode: ("NORMAL" | "LOW"),
|
127
|
+
?multitrack_input_configuration: {
|
128
|
+
enabled: bool?,
|
129
|
+
maximum_resolution: ("SD" | "HD" | "FULL_HD")?,
|
130
|
+
policy: ("ALLOW" | "REQUIRE")?
|
131
|
+
},
|
126
132
|
?name: ::String,
|
127
133
|
?playback_restriction_policy_arn: ::String,
|
128
134
|
?preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY"),
|
@@ -457,8 +463,14 @@ module Aws
|
|
457
463
|
def update_channel: (
|
458
464
|
arn: ::String,
|
459
465
|
?authorized: bool,
|
466
|
+
?container_format: ("TS" | "FRAGMENTED_MP4"),
|
460
467
|
?insecure_ingest: bool,
|
461
468
|
?latency_mode: ("NORMAL" | "LOW"),
|
469
|
+
?multitrack_input_configuration: {
|
470
|
+
enabled: bool?,
|
471
|
+
maximum_resolution: ("SD" | "HD" | "FULL_HD")?,
|
472
|
+
policy: ("ALLOW" | "REQUIRE")?
|
473
|
+
},
|
462
474
|
?name: ::String,
|
463
475
|
?playback_restriction_policy_arn: ::String,
|
464
476
|
?preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY"),
|
data/sig/types.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws::IVS
|
|
18
18
|
attr_accessor codec: ::String
|
19
19
|
attr_accessor sample_rate: ::Integer
|
20
20
|
attr_accessor target_bitrate: ::Integer
|
21
|
+
attr_accessor track: ::String
|
21
22
|
SENSITIVE: []
|
22
23
|
end
|
23
24
|
|
@@ -78,9 +79,11 @@ module Aws::IVS
|
|
78
79
|
class Channel
|
79
80
|
attr_accessor arn: ::String
|
80
81
|
attr_accessor authorized: bool
|
82
|
+
attr_accessor container_format: ("TS" | "FRAGMENTED_MP4")
|
81
83
|
attr_accessor ingest_endpoint: ::String
|
82
84
|
attr_accessor insecure_ingest: bool
|
83
85
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
86
|
+
attr_accessor multitrack_input_configuration: Types::MultitrackInputConfiguration
|
84
87
|
attr_accessor name: ::String
|
85
88
|
attr_accessor playback_restriction_policy_arn: ::String
|
86
89
|
attr_accessor playback_url: ::String
|
@@ -118,8 +121,10 @@ module Aws::IVS
|
|
118
121
|
|
119
122
|
class CreateChannelRequest
|
120
123
|
attr_accessor authorized: bool
|
124
|
+
attr_accessor container_format: ("TS" | "FRAGMENTED_MP4")
|
121
125
|
attr_accessor insecure_ingest: bool
|
122
126
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
127
|
+
attr_accessor multitrack_input_configuration: Types::MultitrackInputConfiguration
|
123
128
|
attr_accessor name: ::String
|
124
129
|
attr_accessor playback_restriction_policy_arn: ::String
|
125
130
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
@@ -297,6 +302,12 @@ module Aws::IVS
|
|
297
302
|
SENSITIVE: []
|
298
303
|
end
|
299
304
|
|
305
|
+
class IngestConfigurations
|
306
|
+
attr_accessor audio_configurations: ::Array[Types::AudioConfiguration]
|
307
|
+
attr_accessor video_configurations: ::Array[Types::VideoConfiguration]
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
300
311
|
class InternalServerException
|
301
312
|
attr_accessor exception_message: ::String
|
302
313
|
SENSITIVE: []
|
@@ -402,6 +413,13 @@ module Aws::IVS
|
|
402
413
|
SENSITIVE: []
|
403
414
|
end
|
404
415
|
|
416
|
+
class MultitrackInputConfiguration
|
417
|
+
attr_accessor enabled: bool
|
418
|
+
attr_accessor maximum_resolution: ("SD" | "HD" | "FULL_HD")
|
419
|
+
attr_accessor policy: ("ALLOW" | "REQUIRE")
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
405
423
|
class PendingVerification
|
406
424
|
attr_accessor exception_message: ::String
|
407
425
|
SENSITIVE: []
|
@@ -557,6 +575,7 @@ module Aws::IVS
|
|
557
575
|
attr_accessor channel: Types::Channel
|
558
576
|
attr_accessor end_time: ::Time
|
559
577
|
attr_accessor ingest_configuration: Types::IngestConfiguration
|
578
|
+
attr_accessor ingest_configurations: Types::IngestConfigurations
|
560
579
|
attr_accessor recording_configuration: Types::RecordingConfiguration
|
561
580
|
attr_accessor start_time: ::Time
|
562
581
|
attr_accessor stream_id: ::String
|
@@ -621,8 +640,10 @@ module Aws::IVS
|
|
621
640
|
class UpdateChannelRequest
|
622
641
|
attr_accessor arn: ::String
|
623
642
|
attr_accessor authorized: bool
|
643
|
+
attr_accessor container_format: ("TS" | "FRAGMENTED_MP4")
|
624
644
|
attr_accessor insecure_ingest: bool
|
625
645
|
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
646
|
+
attr_accessor multitrack_input_configuration: Types::MultitrackInputConfiguration
|
626
647
|
attr_accessor name: ::String
|
627
648
|
attr_accessor playback_restriction_policy_arn: ::String
|
628
649
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
@@ -660,8 +681,11 @@ module Aws::IVS
|
|
660
681
|
attr_accessor avc_profile: ::String
|
661
682
|
attr_accessor codec: ::String
|
662
683
|
attr_accessor encoder: ::String
|
684
|
+
attr_accessor level: ::String
|
685
|
+
attr_accessor profile: ::String
|
663
686
|
attr_accessor target_bitrate: ::Integer
|
664
687
|
attr_accessor target_framerate: ::Integer
|
688
|
+
attr_accessor track: ::String
|
665
689
|
attr_accessor video_height: ::Integer
|
666
690
|
attr_accessor video_width: ::Integer
|
667
691
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ivs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.64.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-14 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.210.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.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|