aws-sdk-ivs 1.45.0 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +85 -52
- data/lib/aws-sdk-ivs/client_api.rb +8 -0
- data/lib/aws-sdk-ivs/types.rb +37 -11
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/types.rbs +7 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa5ea38e1aa7c7187fe8947bef0b2b43af24629b685c21cff002f63160b8222f
|
4
|
+
data.tar.gz: 990dfce096c265cf9f0d94f2ed0da04f9c0f8303635a2d39398453ba521da6f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05541030dfbdc90581fa3da6c8da5bd5e9b803c21b8aa239b53f2855fd36ee80dfe8b05b74dcff09563ee7a4b24b07082655903531524573cefae902492e7c6c
|
7
|
+
data.tar.gz: faab2b8d441ee8040457bfbe31c5268b752cbceee6e989175c75ad195d1a9e5def28a7e85bb569cc63c2af0c25305c41a36703dbbff49559199d7aff4eb9efc5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Bug Fix: IVS does not support arns with the `svs` prefix
|
8
|
+
|
9
|
+
1.46.0 (2024-04-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - API update to include an SRT ingest endpoint and passphrase for all channels.
|
13
|
+
|
4
14
|
1.45.0 (2024-02-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::IVS
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::IVS
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::IVS
|
|
337
346
|
# @option options [Aws::IVS::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::IVS::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -417,6 +441,8 @@ module Aws::IVS
|
|
417
441
|
# resp.channels[0].playback_url #=> String
|
418
442
|
# resp.channels[0].preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
419
443
|
# resp.channels[0].recording_configuration_arn #=> String
|
444
|
+
# resp.channels[0].srt.endpoint #=> String
|
445
|
+
# resp.channels[0].srt.passphrase #=> String
|
420
446
|
# resp.channels[0].tags #=> Hash
|
421
447
|
# resp.channels[0].tags["TagKey"] #=> String
|
422
448
|
# resp.channels[0].type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -518,13 +544,13 @@ module Aws::IVS
|
|
518
544
|
# Default: `false`.
|
519
545
|
#
|
520
546
|
# @option params [Boolean] :insecure_ingest
|
521
|
-
# Whether the channel allows insecure RTMP ingest. Default:
|
547
|
+
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
548
|
+
# `false`.
|
522
549
|
#
|
523
550
|
# @option params [String] :latency_mode
|
524
551
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
525
552
|
# up to Full HD. Use `LOW` for near-real-time interaction with viewers.
|
526
|
-
#
|
527
|
-
# Ultra-low and Standard, respectively.) Default: `LOW`.
|
553
|
+
# Default: `LOW`.
|
528
554
|
#
|
529
555
|
# @option params [String] :name
|
530
556
|
# Channel name.
|
@@ -600,6 +626,8 @@ module Aws::IVS
|
|
600
626
|
# resp.channel.playback_url #=> String
|
601
627
|
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
602
628
|
# resp.channel.recording_configuration_arn #=> String
|
629
|
+
# resp.channel.srt.endpoint #=> String
|
630
|
+
# resp.channel.srt.passphrase #=> String
|
603
631
|
# resp.channel.tags #=> Hash
|
604
632
|
# resp.channel.tags["TagKey"] #=> String
|
605
633
|
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -1015,6 +1043,8 @@ module Aws::IVS
|
|
1015
1043
|
# resp.channel.playback_url #=> String
|
1016
1044
|
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1017
1045
|
# resp.channel.recording_configuration_arn #=> String
|
1046
|
+
# resp.channel.srt.endpoint #=> String
|
1047
|
+
# resp.channel.srt.passphrase #=> String
|
1018
1048
|
# resp.channel.tags #=> Hash
|
1019
1049
|
# resp.channel.tags["TagKey"] #=> String
|
1020
1050
|
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -1246,6 +1276,8 @@ module Aws::IVS
|
|
1246
1276
|
# resp.stream_session.channel.playback_url #=> String
|
1247
1277
|
# resp.stream_session.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1248
1278
|
# resp.stream_session.channel.recording_configuration_arn #=> String
|
1279
|
+
# resp.stream_session.channel.srt.endpoint #=> String
|
1280
|
+
# resp.stream_session.channel.srt.passphrase #=> String
|
1249
1281
|
# resp.stream_session.channel.tags #=> Hash
|
1250
1282
|
# resp.stream_session.channel.tags["TagKey"] #=> String
|
1251
1283
|
# resp.stream_session.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -1919,13 +1951,12 @@ module Aws::IVS
|
|
1919
1951
|
# Whether the channel is private (enabled for playback authorization).
|
1920
1952
|
#
|
1921
1953
|
# @option params [Boolean] :insecure_ingest
|
1922
|
-
# Whether the channel allows insecure RTMP ingest. Default:
|
1954
|
+
# Whether the channel allows insecure RTMP and SRT ingest. Default:
|
1955
|
+
# `false`.
|
1923
1956
|
#
|
1924
1957
|
# @option params [String] :latency_mode
|
1925
1958
|
# Channel latency mode. Use `NORMAL` to broadcast and deliver live video
|
1926
1959
|
# 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
1960
|
#
|
1930
1961
|
# @option params [String] :name
|
1931
1962
|
# Channel name.
|
@@ -1987,6 +2018,8 @@ module Aws::IVS
|
|
1987
2018
|
# resp.channel.playback_url #=> String
|
1988
2019
|
# resp.channel.preset #=> String, one of "HIGHER_BANDWIDTH_DELIVERY", "CONSTRAINED_BANDWIDTH_DELIVERY"
|
1989
2020
|
# resp.channel.recording_configuration_arn #=> String
|
2021
|
+
# resp.channel.srt.endpoint #=> String
|
2022
|
+
# resp.channel.srt.passphrase #=> String
|
1990
2023
|
# resp.channel.tags #=> Hash
|
1991
2024
|
# resp.channel.tags["TagKey"] #=> String
|
1992
2025
|
# resp.channel.type #=> String, one of "BASIC", "STANDARD", "ADVANCED_SD", "ADVANCED_HD"
|
@@ -2080,7 +2113,7 @@ module Aws::IVS
|
|
2080
2113
|
params: params,
|
2081
2114
|
config: config)
|
2082
2115
|
context[:gem_name] = 'aws-sdk-ivs'
|
2083
|
-
context[:gem_version] = '1.
|
2116
|
+
context[:gem_version] = '1.47.0'
|
2084
2117
|
Seahorse::Client::Request.new(handlers, context)
|
2085
2118
|
end
|
2086
2119
|
|
@@ -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
@@ -57,7 +57,7 @@ module Aws::IVS
|
|
57
57
|
# Error related to a specific channel, specified by its ARN.
|
58
58
|
#
|
59
59
|
# @!attribute [rw] arn
|
60
|
-
#
|
60
|
+
# ARN of an IVS resource; e.g., channel.
|
61
61
|
# @return [String]
|
62
62
|
#
|
63
63
|
# @!attribute [rw] code
|
@@ -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.47.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-25 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|