aws-sdk-ivs 1.63.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 +5 -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/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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e544da2b5ed9e030fd536d13b714230723cf11c9b9255ae0a00cd3e376a7b25
|
4
|
+
data.tar.gz: 162e5b277750b34aa769d8218841e1298dedae12a1b0672d8c49db89ed65138e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f83dbcabec28ea5aa346f06bcc02a225ac6fd3429b7577bc99215f8204cf7852e61de48d3cc7e5f7c5eeb12c9e7653450594d3c40bca05dc77500e894c645c50
|
7
|
+
data.tar.gz: e1a61a5278c0252761559a577ea62f79eb708406df9cabb261ba42833a5fd3c7b8f557829537a93b8d63a96202e3dd42475b79483906700c629e63138ab75737
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -468,9 +468,13 @@ module Aws::IVS
|
|
468
468
|
# resp.channels #=> Array
|
469
469
|
# resp.channels[0].arn #=> String
|
470
470
|
# resp.channels[0].authorized #=> Boolean
|
471
|
+
# resp.channels[0].container_format #=> String, one of "TS", "FRAGMENTED_MP4"
|
471
472
|
# resp.channels[0].ingest_endpoint #=> String
|
472
473
|
# resp.channels[0].insecure_ingest #=> Boolean
|
473
474
|
# resp.channels[0].latency_mode #=> String, one of "NORMAL", "LOW"
|
475
|
+
# resp.channels[0].multitrack_input_configuration.enabled #=> Boolean
|
476
|
+
# resp.channels[0].multitrack_input_configuration.maximum_resolution #=> String, one of "SD", "HD", "FULL_HD"
|
477
|
+
# resp.channels[0].multitrack_input_configuration.policy #=> String, one of "ALLOW", "REQUIRE"
|
474
478
|
# resp.channels[0].name #=> String
|
475
479
|
# resp.channels[0].playback_restriction_policy_arn #=> String
|
476
480
|
# resp.channels[0].playback_url #=> String
|
@@ -578,6 +582,13 @@ module Aws::IVS
|
|
578
582
|
# Whether the channel is private (enabled for playback authorization).
|
579
583
|
# Default: `false`.
|
580
584
|
#
|
585
|
+
# @option params [String] :container_format
|
586
|
+
# Indicates which content-packaging format is used (MPEG-TS or fMP4). If
|
587
|
+
# `multitrackInputConfiguration` is specified and `enabled` is `true`,
|
588
|
+
# then `containerFormat` is required and must be set to
|
589
|
+
# `FRAGMENTED_MP4`. Otherwise, `containerFormat` may be set to `TS` or
|
590
|
+
# `FRAGMENTED_MP4`. Default: `TS`.
|
591
|
+
#
|
581
592
|
# @option params [Boolean] :insecure_ingest
|
582
593
|
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
583
594
|
# `false`.
|
@@ -587,6 +598,10 @@ module Aws::IVS
|
|
587
598
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
588
599
|
# Default: `LOW`.
|
589
600
|
#
|
601
|
+
# @option params [Types::MultitrackInputConfiguration] :multitrack_input_configuration
|
602
|
+
# Object specifying multitrack input configuration. Default: no
|
603
|
+
# multitrack input configuration is specified.
|
604
|
+
#
|
590
605
|
# @option params [String] :name
|
591
606
|
# Channel name.
|
592
607
|
#
|
@@ -637,8 +652,14 @@ module Aws::IVS
|
|
637
652
|
#
|
638
653
|
# resp = client.create_channel({
|
639
654
|
# authorized: false,
|
655
|
+
# container_format: "TS", # accepts TS, FRAGMENTED_MP4
|
640
656
|
# insecure_ingest: false,
|
641
657
|
# latency_mode: "NORMAL", # accepts NORMAL, LOW
|
658
|
+
# multitrack_input_configuration: {
|
659
|
+
# enabled: false,
|
660
|
+
# maximum_resolution: "SD", # accepts SD, HD, FULL_HD
|
661
|
+
# policy: "ALLOW", # accepts ALLOW, REQUIRE
|
662
|
+
# },
|
642
663
|
# name: "ChannelName",
|
643
664
|
# playback_restriction_policy_arn: "ChannelPlaybackRestrictionPolicyArn",
|
644
665
|
# preset: "HIGHER_BANDWIDTH_DELIVERY", # accepts HIGHER_BANDWIDTH_DELIVERY, CONSTRAINED_BANDWIDTH_DELIVERY
|
@@ -653,9 +674,13 @@ module Aws::IVS
|
|
653
674
|
#
|
654
675
|
# resp.channel.arn #=> String
|
655
676
|
# resp.channel.authorized #=> Boolean
|
677
|
+
# resp.channel.container_format #=> String, one of "TS", "FRAGMENTED_MP4"
|
656
678
|
# resp.channel.ingest_endpoint #=> String
|
657
679
|
# resp.channel.insecure_ingest #=> Boolean
|
658
680
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
681
|
+
# resp.channel.multitrack_input_configuration.enabled #=> Boolean
|
682
|
+
# resp.channel.multitrack_input_configuration.maximum_resolution #=> String, one of "SD", "HD", "FULL_HD"
|
683
|
+
# resp.channel.multitrack_input_configuration.policy #=> String, one of "ALLOW", "REQUIRE"
|
659
684
|
# resp.channel.name #=> String
|
660
685
|
# resp.channel.playback_restriction_policy_arn #=> String
|
661
686
|
# resp.channel.playback_url #=> String
|
@@ -1070,9 +1095,13 @@ module Aws::IVS
|
|
1070
1095
|
#
|
1071
1096
|
# resp.channel.arn #=> String
|
1072
1097
|
# resp.channel.authorized #=> Boolean
|
1098
|
+
# resp.channel.container_format #=> String, one of "TS", "FRAGMENTED_MP4"
|
1073
1099
|
# resp.channel.ingest_endpoint #=> String
|
1074
1100
|
# resp.channel.insecure_ingest #=> Boolean
|
1075
1101
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
1102
|
+
# resp.channel.multitrack_input_configuration.enabled #=> Boolean
|
1103
|
+
# resp.channel.multitrack_input_configuration.maximum_resolution #=> String, one of "SD", "HD", "FULL_HD"
|
1104
|
+
# resp.channel.multitrack_input_configuration.policy #=> String, one of "ALLOW", "REQUIRE"
|
1076
1105
|
# resp.channel.name #=> String
|
1077
1106
|
# resp.channel.playback_restriction_policy_arn #=> String
|
1078
1107
|
# resp.channel.playback_url #=> String
|
@@ -1303,9 +1332,13 @@ module Aws::IVS
|
|
1303
1332
|
#
|
1304
1333
|
# resp.stream_session.channel.arn #=> String
|
1305
1334
|
# resp.stream_session.channel.authorized #=> Boolean
|
1335
|
+
# resp.stream_session.channel.container_format #=> String, one of "TS", "FRAGMENTED_MP4"
|
1306
1336
|
# resp.stream_session.channel.ingest_endpoint #=> String
|
1307
1337
|
# resp.stream_session.channel.insecure_ingest #=> Boolean
|
1308
1338
|
# resp.stream_session.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
1339
|
+
# resp.stream_session.channel.multitrack_input_configuration.enabled #=> Boolean
|
1340
|
+
# resp.stream_session.channel.multitrack_input_configuration.maximum_resolution #=> String, one of "SD", "HD", "FULL_HD"
|
1341
|
+
# resp.stream_session.channel.multitrack_input_configuration.policy #=> String, one of "ALLOW", "REQUIRE"
|
1309
1342
|
# resp.stream_session.channel.name #=> String
|
1310
1343
|
# resp.stream_session.channel.playback_restriction_policy_arn #=> String
|
1311
1344
|
# resp.stream_session.channel.playback_url #=> String
|
@@ -1321,14 +1354,36 @@ module Aws::IVS
|
|
1321
1354
|
# resp.stream_session.ingest_configuration.audio.codec #=> String
|
1322
1355
|
# resp.stream_session.ingest_configuration.audio.sample_rate #=> Integer
|
1323
1356
|
# resp.stream_session.ingest_configuration.audio.target_bitrate #=> Integer
|
1357
|
+
# resp.stream_session.ingest_configuration.audio.track #=> String
|
1324
1358
|
# resp.stream_session.ingest_configuration.video.avc_level #=> String
|
1325
1359
|
# resp.stream_session.ingest_configuration.video.avc_profile #=> String
|
1326
1360
|
# resp.stream_session.ingest_configuration.video.codec #=> String
|
1327
1361
|
# resp.stream_session.ingest_configuration.video.encoder #=> String
|
1362
|
+
# resp.stream_session.ingest_configuration.video.level #=> String
|
1363
|
+
# resp.stream_session.ingest_configuration.video.profile #=> String
|
1328
1364
|
# resp.stream_session.ingest_configuration.video.target_bitrate #=> Integer
|
1329
1365
|
# resp.stream_session.ingest_configuration.video.target_framerate #=> Integer
|
1366
|
+
# resp.stream_session.ingest_configuration.video.track #=> String
|
1330
1367
|
# resp.stream_session.ingest_configuration.video.video_height #=> Integer
|
1331
1368
|
# resp.stream_session.ingest_configuration.video.video_width #=> Integer
|
1369
|
+
# resp.stream_session.ingest_configurations.audio_configurations #=> Array
|
1370
|
+
# resp.stream_session.ingest_configurations.audio_configurations[0].channels #=> Integer
|
1371
|
+
# resp.stream_session.ingest_configurations.audio_configurations[0].codec #=> String
|
1372
|
+
# resp.stream_session.ingest_configurations.audio_configurations[0].sample_rate #=> Integer
|
1373
|
+
# resp.stream_session.ingest_configurations.audio_configurations[0].target_bitrate #=> Integer
|
1374
|
+
# resp.stream_session.ingest_configurations.audio_configurations[0].track #=> String
|
1375
|
+
# resp.stream_session.ingest_configurations.video_configurations #=> Array
|
1376
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].avc_level #=> String
|
1377
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].avc_profile #=> String
|
1378
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].codec #=> String
|
1379
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].encoder #=> String
|
1380
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].level #=> String
|
1381
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].profile #=> String
|
1382
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].target_bitrate #=> Integer
|
1383
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].target_framerate #=> Integer
|
1384
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].track #=> String
|
1385
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].video_height #=> Integer
|
1386
|
+
# resp.stream_session.ingest_configurations.video_configurations[0].video_width #=> Integer
|
1332
1387
|
# resp.stream_session.recording_configuration.arn #=> String
|
1333
1388
|
# resp.stream_session.recording_configuration.destination_configuration.s3.bucket_name #=> String
|
1334
1389
|
# resp.stream_session.recording_configuration.name #=> String
|
@@ -1989,6 +2044,13 @@ module Aws::IVS
|
|
1989
2044
|
# @option params [Boolean] :authorized
|
1990
2045
|
# Whether the channel is private (enabled for playback authorization).
|
1991
2046
|
#
|
2047
|
+
# @option params [String] :container_format
|
2048
|
+
# Indicates which content-packaging format is used (MPEG-TS or fMP4). If
|
2049
|
+
# `multitrackInputConfiguration` is specified and `enabled` is `true`,
|
2050
|
+
# then `containerFormat` is required and must be set to
|
2051
|
+
# `FRAGMENTED_MP4`. Otherwise, `containerFormat` may be set to `TS` or
|
2052
|
+
# `FRAGMENTED_MP4`. Default: `TS`.
|
2053
|
+
#
|
1992
2054
|
# @option params [Boolean] :insecure_ingest
|
1993
2055
|
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
1994
2056
|
# `false`.
|
@@ -1997,6 +2059,10 @@ module Aws::IVS
|
|
1997
2059
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
1998
2060
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
1999
2061
|
#
|
2062
|
+
# @option params [Types::MultitrackInputConfiguration] :multitrack_input_configuration
|
2063
|
+
# Object specifying multitrack input configuration. Default: no
|
2064
|
+
# multitrack input configuration is specified.
|
2065
|
+
#
|
2000
2066
|
# @option params [String] :name
|
2001
2067
|
# Channel name.
|
2002
2068
|
#
|
@@ -2036,8 +2102,14 @@ module Aws::IVS
|
|
2036
2102
|
# resp = client.update_channel({
|
2037
2103
|
# arn: "ChannelArn", # required
|
2038
2104
|
# authorized: false,
|
2105
|
+
# container_format: "TS", # accepts TS, FRAGMENTED_MP4
|
2039
2106
|
# insecure_ingest: false,
|
2040
2107
|
# latency_mode: "NORMAL", # accepts NORMAL, LOW
|
2108
|
+
# multitrack_input_configuration: {
|
2109
|
+
# enabled: false,
|
2110
|
+
# maximum_resolution: "SD", # accepts SD, HD, FULL_HD
|
2111
|
+
# policy: "ALLOW", # accepts ALLOW, REQUIRE
|
2112
|
+
# },
|
2041
2113
|
# name: "ChannelName",
|
2042
2114
|
# playback_restriction_policy_arn: "ChannelPlaybackRestrictionPolicyArn",
|
2043
2115
|
# preset: "HIGHER_BANDWIDTH_DELIVERY", # accepts HIGHER_BANDWIDTH_DELIVERY, CONSTRAINED_BANDWIDTH_DELIVERY
|
@@ -2049,9 +2121,13 @@ module Aws::IVS
|
|
2049
2121
|
#
|
2050
2122
|
# resp.channel.arn #=> String
|
2051
2123
|
# resp.channel.authorized #=> Boolean
|
2124
|
+
# resp.channel.container_format #=> String, one of "TS", "FRAGMENTED_MP4"
|
2052
2125
|
# resp.channel.ingest_endpoint #=> String
|
2053
2126
|
# resp.channel.insecure_ingest #=> Boolean
|
2054
2127
|
# resp.channel.latency_mode #=> String, one of "NORMAL", "LOW"
|
2128
|
+
# resp.channel.multitrack_input_configuration.enabled #=> Boolean
|
2129
|
+
# resp.channel.multitrack_input_configuration.maximum_resolution #=> String, one of "SD", "HD", "FULL_HD"
|
2130
|
+
# resp.channel.multitrack_input_configuration.policy #=> String, one of "ALLOW", "REQUIRE"
|
2055
2131
|
# resp.channel.name #=> String
|
2056
2132
|
# resp.channel.playback_restriction_policy_arn #=> String
|
2057
2133
|
# resp.channel.playback_url #=> String
|
@@ -2157,7 +2233,7 @@ module Aws::IVS
|
|
2157
2233
|
tracer: tracer
|
2158
2234
|
)
|
2159
2235
|
context[:gem_name] = 'aws-sdk-ivs'
|
2160
|
-
context[:gem_version] = '1.
|
2236
|
+
context[:gem_version] = '1.64.0'
|
2161
2237
|
Seahorse::Client::Request.new(handlers, context)
|
2162
2238
|
end
|
2163
2239
|
|
@@ -16,6 +16,7 @@ module Aws::IVS
|
|
16
16
|
|
17
17
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
18
18
|
AudioConfiguration = Shapes::StructureShape.new(name: 'AudioConfiguration')
|
19
|
+
AudioConfigurationList = Shapes::ListShape.new(name: 'AudioConfigurationList')
|
19
20
|
BatchError = Shapes::StructureShape.new(name: 'BatchError')
|
20
21
|
BatchErrors = Shapes::ListShape.new(name: 'BatchErrors')
|
21
22
|
BatchGetChannelRequest = Shapes::StructureShape.new(name: 'BatchGetChannelRequest')
|
@@ -42,6 +43,7 @@ module Aws::IVS
|
|
42
43
|
ChannelType = Shapes::StringShape.new(name: 'ChannelType')
|
43
44
|
Channels = Shapes::ListShape.new(name: 'Channels')
|
44
45
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
46
|
+
ContainerFormat = Shapes::StringShape.new(name: 'ContainerFormat')
|
45
47
|
CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
|
46
48
|
CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
|
47
49
|
CreatePlaybackRestrictionPolicyRequest = Shapes::StructureShape.new(name: 'CreatePlaybackRestrictionPolicyRequest')
|
@@ -74,11 +76,13 @@ module Aws::IVS
|
|
74
76
|
ImportPlaybackKeyPairRequest = Shapes::StructureShape.new(name: 'ImportPlaybackKeyPairRequest')
|
75
77
|
ImportPlaybackKeyPairResponse = Shapes::StructureShape.new(name: 'ImportPlaybackKeyPairResponse')
|
76
78
|
IngestConfiguration = Shapes::StructureShape.new(name: 'IngestConfiguration')
|
79
|
+
IngestConfigurations = Shapes::StructureShape.new(name: 'IngestConfigurations')
|
77
80
|
IngestEndpoint = Shapes::StringShape.new(name: 'IngestEndpoint')
|
78
81
|
InsecureIngest = Shapes::BooleanShape.new(name: 'InsecureIngest')
|
79
82
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
80
83
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
81
84
|
IsAuthorized = Shapes::BooleanShape.new(name: 'IsAuthorized')
|
85
|
+
IsMultitrackInputEnabled = Shapes::BooleanShape.new(name: 'IsMultitrackInputEnabled')
|
82
86
|
ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
|
83
87
|
ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
|
84
88
|
ListPlaybackKeyPairsRequest = Shapes::StructureShape.new(name: 'ListPlaybackKeyPairsRequest')
|
@@ -101,6 +105,9 @@ module Aws::IVS
|
|
101
105
|
MaxRecordingConfigurationResults = Shapes::IntegerShape.new(name: 'MaxRecordingConfigurationResults')
|
102
106
|
MaxStreamKeyResults = Shapes::IntegerShape.new(name: 'MaxStreamKeyResults')
|
103
107
|
MaxStreamResults = Shapes::IntegerShape.new(name: 'MaxStreamResults')
|
108
|
+
MultitrackInputConfiguration = Shapes::StructureShape.new(name: 'MultitrackInputConfiguration')
|
109
|
+
MultitrackMaximumResolution = Shapes::StringShape.new(name: 'MultitrackMaximumResolution')
|
110
|
+
MultitrackPolicy = Shapes::StringShape.new(name: 'MultitrackPolicy')
|
104
111
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
105
112
|
PendingVerification = Shapes::StructureShape.new(name: 'PendingVerification')
|
106
113
|
PlaybackKeyPair = Shapes::StructureShape.new(name: 'PlaybackKeyPair')
|
@@ -192,6 +199,7 @@ module Aws::IVS
|
|
192
199
|
UpdatePlaybackRestrictionPolicyResponse = Shapes::StructureShape.new(name: 'UpdatePlaybackRestrictionPolicyResponse')
|
193
200
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
194
201
|
VideoConfiguration = Shapes::StructureShape.new(name: 'VideoConfiguration')
|
202
|
+
VideoConfigurationList = Shapes::ListShape.new(name: 'VideoConfigurationList')
|
195
203
|
ViewerId = Shapes::StringShape.new(name: 'ViewerId')
|
196
204
|
ViewerSessionVersion = Shapes::IntegerShape.new(name: 'ViewerSessionVersion')
|
197
205
|
errorCode = Shapes::StringShape.new(name: 'errorCode')
|
@@ -204,8 +212,11 @@ module Aws::IVS
|
|
204
212
|
AudioConfiguration.add_member(:codec, Shapes::ShapeRef.new(shape: String, location_name: "codec"))
|
205
213
|
AudioConfiguration.add_member(:sample_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "sampleRate"))
|
206
214
|
AudioConfiguration.add_member(:target_bitrate, Shapes::ShapeRef.new(shape: Integer, location_name: "targetBitrate"))
|
215
|
+
AudioConfiguration.add_member(:track, Shapes::ShapeRef.new(shape: String, location_name: "track"))
|
207
216
|
AudioConfiguration.struct_class = Types::AudioConfiguration
|
208
217
|
|
218
|
+
AudioConfigurationList.member = Shapes::ShapeRef.new(shape: AudioConfiguration)
|
219
|
+
|
209
220
|
BatchError.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "arn"))
|
210
221
|
BatchError.add_member(:code, Shapes::ShapeRef.new(shape: errorCode, location_name: "code"))
|
211
222
|
BatchError.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
@@ -250,9 +261,11 @@ module Aws::IVS
|
|
250
261
|
|
251
262
|
Channel.add_member(:arn, Shapes::ShapeRef.new(shape: ChannelArn, location_name: "arn"))
|
252
263
|
Channel.add_member(:authorized, Shapes::ShapeRef.new(shape: IsAuthorized, location_name: "authorized"))
|
264
|
+
Channel.add_member(:container_format, Shapes::ShapeRef.new(shape: ContainerFormat, location_name: "containerFormat"))
|
253
265
|
Channel.add_member(:ingest_endpoint, Shapes::ShapeRef.new(shape: IngestEndpoint, location_name: "ingestEndpoint"))
|
254
266
|
Channel.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: InsecureIngest, location_name: "insecureIngest"))
|
255
267
|
Channel.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
268
|
+
Channel.add_member(:multitrack_input_configuration, Shapes::ShapeRef.new(shape: MultitrackInputConfiguration, location_name: "multitrackInputConfiguration"))
|
256
269
|
Channel.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
257
270
|
Channel.add_member(:playback_restriction_policy_arn, Shapes::ShapeRef.new(shape: ChannelPlaybackRestrictionPolicyArn, location_name: "playbackRestrictionPolicyArn"))
|
258
271
|
Channel.add_member(:playback_url, Shapes::ShapeRef.new(shape: PlaybackURL, location_name: "playbackUrl"))
|
@@ -288,8 +301,10 @@ module Aws::IVS
|
|
288
301
|
ConflictException.struct_class = Types::ConflictException
|
289
302
|
|
290
303
|
CreateChannelRequest.add_member(:authorized, Shapes::ShapeRef.new(shape: Boolean, location_name: "authorized"))
|
304
|
+
CreateChannelRequest.add_member(:container_format, Shapes::ShapeRef.new(shape: ContainerFormat, location_name: "containerFormat"))
|
291
305
|
CreateChannelRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: Boolean, location_name: "insecureIngest"))
|
292
306
|
CreateChannelRequest.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
307
|
+
CreateChannelRequest.add_member(:multitrack_input_configuration, Shapes::ShapeRef.new(shape: MultitrackInputConfiguration, location_name: "multitrackInputConfiguration"))
|
293
308
|
CreateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
294
309
|
CreateChannelRequest.add_member(:playback_restriction_policy_arn, Shapes::ShapeRef.new(shape: ChannelPlaybackRestrictionPolicyArn, location_name: "playbackRestrictionPolicyArn"))
|
295
310
|
CreateChannelRequest.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
@@ -405,6 +420,10 @@ module Aws::IVS
|
|
405
420
|
IngestConfiguration.add_member(:video, Shapes::ShapeRef.new(shape: VideoConfiguration, location_name: "video"))
|
406
421
|
IngestConfiguration.struct_class = Types::IngestConfiguration
|
407
422
|
|
423
|
+
IngestConfigurations.add_member(:audio_configurations, Shapes::ShapeRef.new(shape: AudioConfigurationList, required: true, location_name: "audioConfigurations"))
|
424
|
+
IngestConfigurations.add_member(:video_configurations, Shapes::ShapeRef.new(shape: VideoConfigurationList, required: true, location_name: "videoConfigurations"))
|
425
|
+
IngestConfigurations.struct_class = Types::IngestConfigurations
|
426
|
+
|
408
427
|
InternalServerException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
|
409
428
|
InternalServerException.struct_class = Types::InternalServerException
|
410
429
|
|
@@ -476,6 +495,11 @@ module Aws::IVS
|
|
476
495
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, required: true, location_name: "tags"))
|
477
496
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
478
497
|
|
498
|
+
MultitrackInputConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: IsMultitrackInputEnabled, location_name: "enabled"))
|
499
|
+
MultitrackInputConfiguration.add_member(:maximum_resolution, Shapes::ShapeRef.new(shape: MultitrackMaximumResolution, location_name: "maximumResolution"))
|
500
|
+
MultitrackInputConfiguration.add_member(:policy, Shapes::ShapeRef.new(shape: MultitrackPolicy, location_name: "policy"))
|
501
|
+
MultitrackInputConfiguration.struct_class = Types::MultitrackInputConfiguration
|
502
|
+
|
479
503
|
PendingVerification.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
|
480
504
|
PendingVerification.struct_class = Types::PendingVerification
|
481
505
|
|
@@ -610,6 +634,7 @@ module Aws::IVS
|
|
610
634
|
StreamSession.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, location_name: "channel"))
|
611
635
|
StreamSession.add_member(:end_time, Shapes::ShapeRef.new(shape: Time, location_name: "endTime"))
|
612
636
|
StreamSession.add_member(:ingest_configuration, Shapes::ShapeRef.new(shape: IngestConfiguration, location_name: "ingestConfiguration"))
|
637
|
+
StreamSession.add_member(:ingest_configurations, Shapes::ShapeRef.new(shape: IngestConfigurations, location_name: "ingestConfigurations"))
|
613
638
|
StreamSession.add_member(:recording_configuration, Shapes::ShapeRef.new(shape: RecordingConfiguration, location_name: "recordingConfiguration"))
|
614
639
|
StreamSession.add_member(:start_time, Shapes::ShapeRef.new(shape: Time, location_name: "startTime"))
|
615
640
|
StreamSession.add_member(:stream_id, Shapes::ShapeRef.new(shape: StreamId, location_name: "streamId"))
|
@@ -665,8 +690,10 @@ module Aws::IVS
|
|
665
690
|
|
666
691
|
UpdateChannelRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ChannelArn, required: true, location_name: "arn"))
|
667
692
|
UpdateChannelRequest.add_member(:authorized, Shapes::ShapeRef.new(shape: Boolean, location_name: "authorized"))
|
693
|
+
UpdateChannelRequest.add_member(:container_format, Shapes::ShapeRef.new(shape: ContainerFormat, location_name: "containerFormat"))
|
668
694
|
UpdateChannelRequest.add_member(:insecure_ingest, Shapes::ShapeRef.new(shape: Boolean, location_name: "insecureIngest"))
|
669
695
|
UpdateChannelRequest.add_member(:latency_mode, Shapes::ShapeRef.new(shape: ChannelLatencyMode, location_name: "latencyMode"))
|
696
|
+
UpdateChannelRequest.add_member(:multitrack_input_configuration, Shapes::ShapeRef.new(shape: MultitrackInputConfiguration, location_name: "multitrackInputConfiguration"))
|
670
697
|
UpdateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: ChannelName, location_name: "name"))
|
671
698
|
UpdateChannelRequest.add_member(:playback_restriction_policy_arn, Shapes::ShapeRef.new(shape: ChannelPlaybackRestrictionPolicyArn, location_name: "playbackRestrictionPolicyArn"))
|
672
699
|
UpdateChannelRequest.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
@@ -694,12 +721,17 @@ module Aws::IVS
|
|
694
721
|
VideoConfiguration.add_member(:avc_profile, Shapes::ShapeRef.new(shape: String, location_name: "avcProfile"))
|
695
722
|
VideoConfiguration.add_member(:codec, Shapes::ShapeRef.new(shape: String, location_name: "codec"))
|
696
723
|
VideoConfiguration.add_member(:encoder, Shapes::ShapeRef.new(shape: String, location_name: "encoder"))
|
724
|
+
VideoConfiguration.add_member(:level, Shapes::ShapeRef.new(shape: String, location_name: "level"))
|
725
|
+
VideoConfiguration.add_member(:profile, Shapes::ShapeRef.new(shape: String, location_name: "profile"))
|
697
726
|
VideoConfiguration.add_member(:target_bitrate, Shapes::ShapeRef.new(shape: Integer, location_name: "targetBitrate"))
|
698
727
|
VideoConfiguration.add_member(:target_framerate, Shapes::ShapeRef.new(shape: Integer, location_name: "targetFramerate"))
|
728
|
+
VideoConfiguration.add_member(:track, Shapes::ShapeRef.new(shape: String, location_name: "track"))
|
699
729
|
VideoConfiguration.add_member(:video_height, Shapes::ShapeRef.new(shape: Integer, location_name: "videoHeight"))
|
700
730
|
VideoConfiguration.add_member(:video_width, Shapes::ShapeRef.new(shape: Integer, location_name: "videoWidth"))
|
701
731
|
VideoConfiguration.struct_class = Types::VideoConfiguration
|
702
732
|
|
733
|
+
VideoConfigurationList.member = Shapes::ShapeRef.new(shape: VideoConfiguration)
|
734
|
+
|
703
735
|
|
704
736
|
# @api private
|
705
737
|
API = Seahorse::Model::Api.new.tap do |api|
|
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
|