aws-sdk-ivs 1.45.0 → 1.46.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 +16 -7
- data/lib/aws-sdk-ivs/client_api.rb +8 -0
- data/lib/aws-sdk-ivs/types.rb +36 -10
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/types.rbs +7 -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: b403c17bcfacaba3005bef4f5c2841774b57287460c67032c24177d86c1dde2a
|
4
|
+
data.tar.gz: 347984ef565c4f2b1aad75b210e75f48ee020a9930d77e1c4862352905eb736a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7265c17eb3ee0cd74ae739576c578fae234da4ec154ec7330168d39fa8aa0d390109ac74a0632845679834612a50d869e210f3da712cee7a731e1d22c673f28e
|
7
|
+
data.tar.gz: c704609566ba5e6ffec31413f42627e7037a67a2b34536d99a9c3aae9a02139a0c829fd9887750081a9455cb4a42c9eb1fe0837914e4c6c8e31cd2717d288f8f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.46.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -417,6 +417,8 @@ module Aws::IVS
|
|
417
417
|
# resp.channels[0].playback_url #=> String
|
418
418
|
# resp.channels[0].preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
419
419
|
# resp.channels[0].recording_configuration_arn #=> String
|
420
|
+
# resp.channels[0].srt.endpoint #=> String
|
421
|
+
# resp.channels[0].srt.passphrase #=> String
|
420
422
|
# resp.channels[0].tags #=> Hash
|
421
423
|
# resp.channels[0].tags["TagKey"] #=> String
|
422
424
|
# resp.channels[0].type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -518,13 +520,13 @@ module Aws::IVS
|
|
518
520
|
# Default: `false`.
|
519
521
|
#
|
520
522
|
# @option params [Boolean] :insecure_ingest
|
521
|
-
# Whether the channel allows insecure RTMP ingest. Default:
|
523
|
+
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
524
|
+
# `false`.
|
522
525
|
#
|
523
526
|
# @option params [String] :latency_mode
|
524
527
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
525
528
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
526
|
-
#
|
527
|
-
# Ultra-low and Standard, respectively.) Default: `LOW`.
|
529
|
+
# Default: `LOW`.
|
528
530
|
#
|
529
531
|
# @option params [String] :name
|
530
532
|
# Channel name.
|
@@ -600,6 +602,8 @@ module Aws::IVS
|
|
600
602
|
# resp.channel.playback_url #=> String
|
601
603
|
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
602
604
|
# resp.channel.recording_configuration_arn #=> String
|
605
|
+
# resp.channel.srt.endpoint #=> String
|
606
|
+
# resp.channel.srt.passphrase #=> String
|
603
607
|
# resp.channel.tags #=> Hash
|
604
608
|
# resp.channel.tags["TagKey"] #=> String
|
605
609
|
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -1015,6 +1019,8 @@ module Aws::IVS
|
|
1015
1019
|
# resp.channel.playback_url #=> String
|
1016
1020
|
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1017
1021
|
# resp.channel.recording_configuration_arn #=> String
|
1022
|
+
# resp.channel.srt.endpoint #=> String
|
1023
|
+
# resp.channel.srt.passphrase #=> String
|
1018
1024
|
# resp.channel.tags #=> Hash
|
1019
1025
|
# resp.channel.tags["TagKey"] #=> String
|
1020
1026
|
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -1246,6 +1252,8 @@ module Aws::IVS
|
|
1246
1252
|
# resp.stream_session.channel.playback_url #=> String
|
1247
1253
|
# resp.stream_session.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1248
1254
|
# resp.stream_session.channel.recording_configuration_arn #=> String
|
1255
|
+
# resp.stream_session.channel.srt.endpoint #=> String
|
1256
|
+
# resp.stream_session.channel.srt.passphrase #=> String
|
1249
1257
|
# resp.stream_session.channel.tags #=> Hash
|
1250
1258
|
# resp.stream_session.channel.tags["TagKey"] #=> String
|
1251
1259
|
# resp.stream_session.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -1919,13 +1927,12 @@ module Aws::IVS
|
|
1919
1927
|
# Whether the channel is private (enabled for playback authorization).
|
1920
1928
|
#
|
1921
1929
|
# @option params [Boolean] :insecure_ingest
|
1922
|
-
# Whether the channel allows insecure RTMP ingest. Default:
|
1930
|
+
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
1931
|
+
# `false`.
|
1923
1932
|
#
|
1924
1933
|
# @option params [String] :latency_mode
|
1925
1934
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
1926
1935
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
1927
|
-
# (Note: In the Amazon IVS console, `LOW` and `NORMAL` correspond to
|
1928
|
-
# Ultra-low and Standard, respectively.)
|
1929
1936
|
#
|
1930
1937
|
# @option params [String] :name
|
1931
1938
|
# Channel name.
|
@@ -1987,6 +1994,8 @@ module Aws::IVS
|
|
1987
1994
|
# resp.channel.playback_url #=> String
|
1988
1995
|
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1989
1996
|
# resp.channel.recording_configuration_arn #=> String
|
1997
|
+
# resp.channel.srt.endpoint #=> String
|
1998
|
+
# resp.channel.srt.passphrase #=> String
|
1990
1999
|
# resp.channel.tags #=> Hash
|
1991
2000
|
# resp.channel.tags["TagKey"] #=> String
|
1992
2001
|
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -2080,7 +2089,7 @@ module Aws::IVS
|
|
2080
2089
|
params: params,
|
2081
2090
|
config: config)
|
2082
2091
|
context[:gem_name] = 'aws-sdk-ivs'
|
2083
|
-
context[:gem_version] = '1.
|
2092
|
+
context[:gem_version] = '1.46.0'
|
2084
2093
|
Seahorse::Client::Request.new(handlers, context)
|
2085
2094
|
end
|
2086
2095
|
|
@@ -138,6 +138,9 @@ module Aws::IVS
|
|
138
138
|
S3DestinationBucketName = Shapes::StringShape.new(name: 'S3DestinationBucketName')
|
139
139
|
S3DestinationConfiguration = Shapes::StructureShape.new(name: 'S3DestinationConfiguration')
|
140
140
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
141
|
+
Srt = Shapes::StructureShape.new(name: 'Srt')
|
142
|
+
SrtEndpoint = Shapes::StringShape.new(name: 'SrtEndpoint')
|
143
|
+
SrtPassphrase = Shapes::StringShape.new(name: 'SrtPassphrase')
|
141
144
|
StartViewerSessionRevocationRequest = Shapes::StructureShape.new(name: 'StartViewerSessionRevocationRequest')
|
142
145
|
StartViewerSessionRevocationResponse = Shapes::StructureShape.new(name: 'StartViewerSessionRevocationResponse')
|
143
146
|
StopStreamRequest = Shapes::StructureShape.new(name: 'StopStreamRequest')
|
@@ -254,6 +257,7 @@ module Aws::IVS
|
|
254
257
|
Channel.add_member(:playback_url, Shapes::ShapeRef.new(shape: PlaybackURL, location_name: "playbackUrl"))
|
255
258
|
Channel.add_member(:preset, Shapes::ShapeRef.new(shape: TranscodePreset, location_name: "preset"))
|
256
259
|
Channel.add_member(:recording_configuration_arn, Shapes::ShapeRef.new(shape: ChannelRecordingConfigurationArn, location_name: "recordingConfigurationArn"))
|
260
|
+
Channel.add_member(:srt, Shapes::ShapeRef.new(shape: Srt, location_name: "srt"))
|
257
261
|
Channel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
258
262
|
Channel.add_member(:type, Shapes::ShapeRef.new(shape: ChannelType, location_name: "type"))
|
259
263
|
Channel.struct_class = Types::Channel
|
@@ -547,6 +551,10 @@ module Aws::IVS
|
|
547
551
|
ServiceQuotaExceededException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
|
548
552
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
549
553
|
|
554
|
+
Srt.add_member(:endpoint, Shapes::ShapeRef.new(shape: SrtEndpoint, location_name: "endpoint"))
|
555
|
+
Srt.add_member(:passphrase, Shapes::ShapeRef.new(shape: SrtPassphrase, location_name: "passphrase"))
|
556
|
+
Srt.struct_class = Types::Srt
|
557
|
+
|
550
558
|
StartViewerSessionRevocationRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChannelArn, required: true, location_name: "channelArn"))
|
551
559
|
StartViewerSessionRevocationRequest.add_member(:viewer_id, Shapes::ShapeRef.new(shape: ViewerId, required: true, location_name: "viewerId"))
|
552
560
|
StartViewerSessionRevocationRequest.add_member(:viewer_session_versions_less_than_or_equal_to, Shapes::ShapeRef.new(shape: ViewerSessionVersion, location_name: "viewerSessionVersionsLessThanOrEqualTo"))
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -241,8 +241,7 @@ module Aws::IVS
|
|
241
241
|
# @!attribute [rw] latency_mode
|
242
242
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
243
243
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
244
|
-
# viewers. Default: `LOW`.
|
245
|
-
# `NORMAL` correspond to Ultra-low and Standard, respectively.)
|
244
|
+
# viewers. Default: `LOW`.
|
246
245
|
# @return [String]
|
247
246
|
#
|
248
247
|
# @!attribute [rw] name
|
@@ -273,6 +272,11 @@ module Aws::IVS
|
|
273
272
|
# recording is disabled).
|
274
273
|
# @return [String]
|
275
274
|
#
|
275
|
+
# @!attribute [rw] srt
|
276
|
+
# Specifies the endpoint and optional passphrase for streaming with
|
277
|
+
# the SRT protocol.
|
278
|
+
# @return [Types::Srt]
|
279
|
+
#
|
276
280
|
# @!attribute [rw] tags
|
277
281
|
# Tags attached to the resource. Array of 1-50 maps, each of the form
|
278
282
|
# `string:string (key:value)`. See [Tagging Amazon Web Services
|
@@ -309,6 +313,7 @@ module Aws::IVS
|
|
309
313
|
:playback_url,
|
310
314
|
:preset,
|
311
315
|
:recording_configuration_arn,
|
316
|
+
:srt,
|
312
317
|
:tags,
|
313
318
|
:type)
|
314
319
|
SENSITIVE = []
|
@@ -345,8 +350,7 @@ module Aws::IVS
|
|
345
350
|
# @!attribute [rw] latency_mode
|
346
351
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
347
352
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
348
|
-
# viewers. Default: `LOW`.
|
349
|
-
# `NORMAL` correspond to Ultra-low and Standard, respectively.)
|
353
|
+
# viewers. Default: `LOW`.
|
350
354
|
# @return [String]
|
351
355
|
#
|
352
356
|
# @!attribute [rw] name
|
@@ -431,14 +435,14 @@ module Aws::IVS
|
|
431
435
|
# @return [Boolean]
|
432
436
|
#
|
433
437
|
# @!attribute [rw] insecure_ingest
|
434
|
-
# Whether the channel allows insecure RTMP ingest. Default:
|
438
|
+
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
439
|
+
# `false`.
|
435
440
|
# @return [Boolean]
|
436
441
|
#
|
437
442
|
# @!attribute [rw] latency_mode
|
438
443
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
439
444
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
440
|
-
# viewers.
|
441
|
-
# correspond to Ultra-low and Standard, respectively.) Default: `LOW`.
|
445
|
+
# viewers. Default: `LOW`.
|
442
446
|
# @return [String]
|
443
447
|
#
|
444
448
|
# @!attribute [rw] name
|
@@ -1737,6 +1741,28 @@ module Aws::IVS
|
|
1737
1741
|
include Aws::Structure
|
1738
1742
|
end
|
1739
1743
|
|
1744
|
+
# Specifies information needed to stream using the SRT protocol.
|
1745
|
+
#
|
1746
|
+
# @!attribute [rw] endpoint
|
1747
|
+
# The endpoint to be used when streaming with IVS using the SRT
|
1748
|
+
# protocol.
|
1749
|
+
# @return [String]
|
1750
|
+
#
|
1751
|
+
# @!attribute [rw] passphrase
|
1752
|
+
# Auto-generated passphrase to enable encryption. This field is
|
1753
|
+
# applicable only if the end user has *not* enabled the
|
1754
|
+
# `insecureIngest` option for the channel.
|
1755
|
+
# @return [String]
|
1756
|
+
#
|
1757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/Srt AWS API Documentation
|
1758
|
+
#
|
1759
|
+
class Srt < Struct.new(
|
1760
|
+
:endpoint,
|
1761
|
+
:passphrase)
|
1762
|
+
SENSITIVE = [:passphrase]
|
1763
|
+
include Aws::Structure
|
1764
|
+
end
|
1765
|
+
|
1740
1766
|
# @!attribute [rw] channel_arn
|
1741
1767
|
# The ARN of the channel associated with the viewer session to revoke.
|
1742
1768
|
# @return [String]
|
@@ -2239,14 +2265,14 @@ module Aws::IVS
|
|
2239
2265
|
# @return [Boolean]
|
2240
2266
|
#
|
2241
2267
|
# @!attribute [rw] insecure_ingest
|
2242
|
-
# Whether the channel allows insecure RTMP ingest. Default:
|
2268
|
+
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
2269
|
+
# `false`.
|
2243
2270
|
# @return [Boolean]
|
2244
2271
|
#
|
2245
2272
|
# @!attribute [rw] latency_mode
|
2246
2273
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live
|
2247
2274
|
# video up to Full HD. Use `LOW` for near-real-time interaction with
|
2248
|
-
# viewers.
|
2249
|
-
# correspond to Ultra-low and Standard, respectively.)
|
2275
|
+
# viewers.
|
2250
2276
|
# @return [String]
|
2251
2277
|
#
|
2252
2278
|
# @!attribute [rw] name
|
data/lib/aws-sdk-ivs.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -86,6 +86,7 @@ module Aws::IVS
|
|
86
86
|
attr_accessor playback_url: ::String
|
87
87
|
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
88
88
|
attr_accessor recording_configuration_arn: ::String
|
89
|
+
attr_accessor srt: Types::Srt
|
89
90
|
attr_accessor tags: ::Hash[::String, ::String]
|
90
91
|
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
91
92
|
SENSITIVE: []
|
@@ -489,6 +490,12 @@ module Aws::IVS
|
|
489
490
|
SENSITIVE: []
|
490
491
|
end
|
491
492
|
|
493
|
+
class Srt
|
494
|
+
attr_accessor endpoint: ::String
|
495
|
+
attr_accessor passphrase: ::String
|
496
|
+
SENSITIVE: [:passphrase]
|
497
|
+
end
|
498
|
+
|
492
499
|
class StartViewerSessionRevocationRequest
|
493
500
|
attr_accessor channel_arn: ::String
|
494
501
|
attr_accessor viewer_id: ::String
|
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.46.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-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|