aws-sdk-medialive 1.126.0 → 1.128.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-medialive/client.rb +124 -7
- data/lib/aws-sdk-medialive/client_api.rb +58 -0
- data/lib/aws-sdk-medialive/types.rb +247 -12
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +52 -4
- data/sig/types.rbs +56 -4
- 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: faa37629e91849bf2fe9c3599bc382409c7d6563017a001a24233ca8e777f0bb
|
4
|
+
data.tar.gz: e3bd361d97aa8cd920d5339ab246fb4f987431d141b59e0fb809c52d2a9b86e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1073eba8a57abb7dc507ca27ca712b3fc6e236a750e17e15b815077717f0d03b2af307891c202779620de575a5174c7d9d76ef2ffe8b6addc6e8827c02aa6b2
|
7
|
+
data.tar.gz: fcbbae8fa59a3e13996fdfcc95e0b3c07c0c105e4381b44dee0fc6de6432fc260d2aa95d2e800e4b4c4bdc134eb7ed54baf23f98e52513a28883cae0c162d377
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.128.0 (2024-08-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Elemental MediaLive now supports now supports editing the PID values for a Multiplex.
|
8
|
+
|
9
|
+
1.127.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
|
13
|
+
|
4
14
|
1.126.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.128.0
|
@@ -1728,6 +1728,11 @@ module Aws::MediaLive
|
|
1728
1728
|
# property on Input creation. Not compatible with the
|
1729
1729
|
# inputSecurityGroups property.
|
1730
1730
|
#
|
1731
|
+
# @option params [Types::SrtSettingsRequest] :srt_settings
|
1732
|
+
# Configures the sources for this SRT input. For a single-pipeline
|
1733
|
+
# input, include one srtCallerSource in the array. For a
|
1734
|
+
# standard-pipeline input, include two srtCallerSource.
|
1735
|
+
#
|
1731
1736
|
# @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1732
1737
|
#
|
1733
1738
|
# * {Types::CreateInputResponse#input #input} => Types::Input
|
@@ -1764,11 +1769,25 @@ module Aws::MediaLive
|
|
1764
1769
|
# tags: {
|
1765
1770
|
# "__string" => "__string",
|
1766
1771
|
# },
|
1767
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE
|
1772
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE, SRT_CALLER
|
1768
1773
|
# vpc: {
|
1769
1774
|
# security_group_ids: ["__string"],
|
1770
1775
|
# subnet_ids: ["__string"], # required
|
1771
1776
|
# },
|
1777
|
+
# srt_settings: {
|
1778
|
+
# srt_caller_sources: [
|
1779
|
+
# {
|
1780
|
+
# decryption: {
|
1781
|
+
# algorithm: "AES128", # accepts AES128, AES192, AES256
|
1782
|
+
# passphrase_secret_arn: "__string",
|
1783
|
+
# },
|
1784
|
+
# minimum_latency: 1,
|
1785
|
+
# srt_listener_address: "__string",
|
1786
|
+
# srt_listener_port: "__string",
|
1787
|
+
# stream_id: "__string",
|
1788
|
+
# },
|
1789
|
+
# ],
|
1790
|
+
# },
|
1772
1791
|
# })
|
1773
1792
|
#
|
1774
1793
|
# @example Response structure
|
@@ -1802,7 +1821,14 @@ module Aws::MediaLive
|
|
1802
1821
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
1803
1822
|
# resp.input.tags #=> Hash
|
1804
1823
|
# resp.input.tags["__string"] #=> String
|
1805
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
1824
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
|
1825
|
+
# resp.input.srt_settings.srt_caller_sources #=> Array
|
1826
|
+
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
1827
|
+
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
1828
|
+
# resp.input.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
|
1829
|
+
# resp.input.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
|
1830
|
+
# resp.input.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
|
1831
|
+
# resp.input.srt_settings.srt_caller_sources[0].stream_id #=> String
|
1806
1832
|
#
|
1807
1833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
1808
1834
|
#
|
@@ -1990,6 +2016,11 @@ module Aws::MediaLive
|
|
1990
2016
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
1991
2017
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
1992
2018
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
2019
|
+
# resp.multiplex_program.packet_identifiers_map.arib_captions_pid #=> Integer
|
2020
|
+
# resp.multiplex_program.packet_identifiers_map.dvb_teletext_pids #=> Array
|
2021
|
+
# resp.multiplex_program.packet_identifiers_map.dvb_teletext_pids[0] #=> Integer
|
2022
|
+
# resp.multiplex_program.packet_identifiers_map.ecm_pid #=> Integer
|
2023
|
+
# resp.multiplex_program.packet_identifiers_map.smpte_2038_pid #=> Integer
|
1993
2024
|
# resp.multiplex_program.pipeline_details #=> Array
|
1994
2025
|
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
1995
2026
|
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
@@ -2059,7 +2090,14 @@ module Aws::MediaLive
|
|
2059
2090
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2060
2091
|
# resp.input.tags #=> Hash
|
2061
2092
|
# resp.input.tags["__string"] #=> String
|
2062
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
2093
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
|
2094
|
+
# resp.input.srt_settings.srt_caller_sources #=> Array
|
2095
|
+
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
2096
|
+
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
2097
|
+
# resp.input.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
|
2098
|
+
# resp.input.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
|
2099
|
+
# resp.input.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
|
2100
|
+
# resp.input.srt_settings.srt_caller_sources[0].stream_id #=> String
|
2063
2101
|
#
|
2064
2102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
|
2065
2103
|
#
|
@@ -2962,6 +3000,11 @@ module Aws::MediaLive
|
|
2962
3000
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
2963
3001
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
2964
3002
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
3003
|
+
# resp.packet_identifiers_map.arib_captions_pid #=> Integer
|
3004
|
+
# resp.packet_identifiers_map.dvb_teletext_pids #=> Array
|
3005
|
+
# resp.packet_identifiers_map.dvb_teletext_pids[0] #=> Integer
|
3006
|
+
# resp.packet_identifiers_map.ecm_pid #=> Integer
|
3007
|
+
# resp.packet_identifiers_map.smpte_2038_pid #=> Integer
|
2965
3008
|
# resp.pipeline_details #=> Array
|
2966
3009
|
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
2967
3010
|
# resp.pipeline_details[0].pipeline_id #=> String
|
@@ -3866,6 +3909,7 @@ module Aws::MediaLive
|
|
3866
3909
|
# * {Types::DescribeInputResponse#state #state} => String
|
3867
3910
|
# * {Types::DescribeInputResponse#tags #tags} => Hash<String,String>
|
3868
3911
|
# * {Types::DescribeInputResponse#type #type} => String
|
3912
|
+
# * {Types::DescribeInputResponse#srt_settings #srt_settings} => Types::SrtSettings
|
3869
3913
|
#
|
3870
3914
|
# @example Request syntax with placeholder values
|
3871
3915
|
#
|
@@ -3904,7 +3948,14 @@ module Aws::MediaLive
|
|
3904
3948
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
3905
3949
|
# resp.tags #=> Hash
|
3906
3950
|
# resp.tags["__string"] #=> String
|
3907
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
3951
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
|
3952
|
+
# resp.srt_settings.srt_caller_sources #=> Array
|
3953
|
+
# resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
3954
|
+
# resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
3955
|
+
# resp.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
|
3956
|
+
# resp.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
|
3957
|
+
# resp.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
|
3958
|
+
# resp.srt_settings.srt_caller_sources[0].stream_id #=> String
|
3908
3959
|
#
|
3909
3960
|
#
|
3910
3961
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4197,6 +4248,11 @@ module Aws::MediaLive
|
|
4197
4248
|
# resp.packet_identifiers_map.scte_35_pid #=> Integer
|
4198
4249
|
# resp.packet_identifiers_map.timed_metadata_pid #=> Integer
|
4199
4250
|
# resp.packet_identifiers_map.video_pid #=> Integer
|
4251
|
+
# resp.packet_identifiers_map.arib_captions_pid #=> Integer
|
4252
|
+
# resp.packet_identifiers_map.dvb_teletext_pids #=> Array
|
4253
|
+
# resp.packet_identifiers_map.dvb_teletext_pids[0] #=> Integer
|
4254
|
+
# resp.packet_identifiers_map.ecm_pid #=> Integer
|
4255
|
+
# resp.packet_identifiers_map.smpte_2038_pid #=> Integer
|
4200
4256
|
# resp.pipeline_details #=> Array
|
4201
4257
|
# resp.pipeline_details[0].active_channel_pipeline #=> String
|
4202
4258
|
# resp.pipeline_details[0].pipeline_id #=> String
|
@@ -4844,7 +4900,14 @@ module Aws::MediaLive
|
|
4844
4900
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
4845
4901
|
# resp.inputs[0].tags #=> Hash
|
4846
4902
|
# resp.inputs[0].tags["__string"] #=> String
|
4847
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
4903
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
|
4904
|
+
# resp.inputs[0].srt_settings.srt_caller_sources #=> Array
|
4905
|
+
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
4906
|
+
# resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
4907
|
+
# resp.inputs[0].srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
|
4908
|
+
# resp.inputs[0].srt_settings.srt_caller_sources[0].srt_listener_address #=> String
|
4909
|
+
# resp.inputs[0].srt_settings.srt_caller_sources[0].srt_listener_port #=> String
|
4910
|
+
# resp.inputs[0].srt_settings.srt_caller_sources[0].stream_id #=> String
|
4848
4911
|
# resp.next_token #=> String
|
4849
4912
|
#
|
4850
4913
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -8427,6 +8490,11 @@ module Aws::MediaLive
|
|
8427
8490
|
#
|
8428
8491
|
# @option params [Array<Types::InputSourceRequest>] :sources
|
8429
8492
|
#
|
8493
|
+
# @option params [Types::SrtSettingsRequest] :srt_settings
|
8494
|
+
# Configures the sources for this SRT input. For a single-pipeline
|
8495
|
+
# input, include one srtCallerSource in the array. For a
|
8496
|
+
# standard-pipeline input, include two srtCallerSource.
|
8497
|
+
#
|
8430
8498
|
# @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8431
8499
|
#
|
8432
8500
|
# * {Types::UpdateInputResponse#input #input} => Types::Input
|
@@ -8460,6 +8528,20 @@ module Aws::MediaLive
|
|
8460
8528
|
# username: "__string",
|
8461
8529
|
# },
|
8462
8530
|
# ],
|
8531
|
+
# srt_settings: {
|
8532
|
+
# srt_caller_sources: [
|
8533
|
+
# {
|
8534
|
+
# decryption: {
|
8535
|
+
# algorithm: "AES128", # accepts AES128, AES192, AES256
|
8536
|
+
# passphrase_secret_arn: "__string",
|
8537
|
+
# },
|
8538
|
+
# minimum_latency: 1,
|
8539
|
+
# srt_listener_address: "__string",
|
8540
|
+
# srt_listener_port: "__string",
|
8541
|
+
# stream_id: "__string",
|
8542
|
+
# },
|
8543
|
+
# ],
|
8544
|
+
# },
|
8463
8545
|
# })
|
8464
8546
|
#
|
8465
8547
|
# @example Response structure
|
@@ -8493,7 +8575,14 @@ module Aws::MediaLive
|
|
8493
8575
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
8494
8576
|
# resp.input.tags #=> Hash
|
8495
8577
|
# resp.input.tags["__string"] #=> String
|
8496
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
|
8578
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
|
8579
|
+
# resp.input.srt_settings.srt_caller_sources #=> Array
|
8580
|
+
# resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
|
8581
|
+
# resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
|
8582
|
+
# resp.input.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
|
8583
|
+
# resp.input.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
|
8584
|
+
# resp.input.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
|
8585
|
+
# resp.input.srt_settings.srt_caller_sources[0].stream_id #=> String
|
8497
8586
|
#
|
8498
8587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
8499
8588
|
#
|
@@ -8696,6 +8785,8 @@ module Aws::MediaLive
|
|
8696
8785
|
#
|
8697
8786
|
# @option params [String] :name
|
8698
8787
|
#
|
8788
|
+
# @option params [Hash<String,Types::MultiplexProgramPacketIdentifiersMap>] :packet_identifiers_mapping
|
8789
|
+
#
|
8699
8790
|
# @return [Types::UpdateMultiplexResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8700
8791
|
#
|
8701
8792
|
# * {Types::UpdateMultiplexResponse#multiplex #multiplex} => Types::Multiplex
|
@@ -8711,6 +8802,27 @@ module Aws::MediaLive
|
|
8711
8802
|
# transport_stream_reserved_bitrate: 1,
|
8712
8803
|
# },
|
8713
8804
|
# name: "__string",
|
8805
|
+
# packet_identifiers_mapping: {
|
8806
|
+
# "__string" => {
|
8807
|
+
# audio_pids: [1],
|
8808
|
+
# dvb_sub_pids: [1],
|
8809
|
+
# dvb_teletext_pid: 1,
|
8810
|
+
# etv_platform_pid: 1,
|
8811
|
+
# etv_signal_pid: 1,
|
8812
|
+
# klv_data_pids: [1],
|
8813
|
+
# pcr_pid: 1,
|
8814
|
+
# pmt_pid: 1,
|
8815
|
+
# private_metadata_pid: 1,
|
8816
|
+
# scte_27_pids: [1],
|
8817
|
+
# scte_35_pid: 1,
|
8818
|
+
# timed_metadata_pid: 1,
|
8819
|
+
# video_pid: 1,
|
8820
|
+
# arib_captions_pid: 1,
|
8821
|
+
# dvb_teletext_pids: [1],
|
8822
|
+
# ecm_pid: 1,
|
8823
|
+
# smpte_2038_pid: 1,
|
8824
|
+
# },
|
8825
|
+
# },
|
8714
8826
|
# })
|
8715
8827
|
#
|
8716
8828
|
# @example Response structure
|
@@ -8805,6 +8917,11 @@ module Aws::MediaLive
|
|
8805
8917
|
# resp.multiplex_program.packet_identifiers_map.scte_35_pid #=> Integer
|
8806
8918
|
# resp.multiplex_program.packet_identifiers_map.timed_metadata_pid #=> Integer
|
8807
8919
|
# resp.multiplex_program.packet_identifiers_map.video_pid #=> Integer
|
8920
|
+
# resp.multiplex_program.packet_identifiers_map.arib_captions_pid #=> Integer
|
8921
|
+
# resp.multiplex_program.packet_identifiers_map.dvb_teletext_pids #=> Array
|
8922
|
+
# resp.multiplex_program.packet_identifiers_map.dvb_teletext_pids[0] #=> Integer
|
8923
|
+
# resp.multiplex_program.packet_identifiers_map.ecm_pid #=> Integer
|
8924
|
+
# resp.multiplex_program.packet_identifiers_map.smpte_2038_pid #=> Integer
|
8808
8925
|
# resp.multiplex_program.pipeline_details #=> Array
|
8809
8926
|
# resp.multiplex_program.pipeline_details[0].active_channel_pipeline #=> String
|
8810
8927
|
# resp.multiplex_program.pipeline_details[0].pipeline_id #=> String
|
@@ -11172,7 +11289,7 @@ module Aws::MediaLive
|
|
11172
11289
|
params: params,
|
11173
11290
|
config: config)
|
11174
11291
|
context[:gem_name] = 'aws-sdk-medialive'
|
11175
|
-
context[:gem_version] = '1.
|
11292
|
+
context[:gem_version] = '1.128.0'
|
11176
11293
|
Seahorse::Client::Request.new(handlers, context)
|
11177
11294
|
end
|
11178
11295
|
|
@@ -35,6 +35,7 @@ module Aws::MediaLive
|
|
35
35
|
AccessibilityType = Shapes::StringShape.new(name: 'AccessibilityType')
|
36
36
|
AccountConfiguration = Shapes::StructureShape.new(name: 'AccountConfiguration')
|
37
37
|
AfdSignaling = Shapes::StringShape.new(name: 'AfdSignaling')
|
38
|
+
Algorithm = Shapes::StringShape.new(name: 'Algorithm')
|
38
39
|
AncillarySourceSettings = Shapes::StructureShape.new(name: 'AncillarySourceSettings')
|
39
40
|
ArchiveCdnSettings = Shapes::StructureShape.new(name: 'ArchiveCdnSettings')
|
40
41
|
ArchiveContainerSettings = Shapes::StructureShape.new(name: 'ArchiveContainerSettings')
|
@@ -607,6 +608,7 @@ module Aws::MediaLive
|
|
607
608
|
MultiplexMediaConnectOutputDestinationSettings = Shapes::StructureShape.new(name: 'MultiplexMediaConnectOutputDestinationSettings')
|
608
609
|
MultiplexOutputDestination = Shapes::StructureShape.new(name: 'MultiplexOutputDestination')
|
609
610
|
MultiplexOutputSettings = Shapes::StructureShape.new(name: 'MultiplexOutputSettings')
|
611
|
+
MultiplexPacketIdentifiersMapping = Shapes::MapShape.new(name: 'MultiplexPacketIdentifiersMapping')
|
610
612
|
MultiplexProgram = Shapes::StructureShape.new(name: 'MultiplexProgram')
|
611
613
|
MultiplexProgramChannelDestinationSettings = Shapes::StructureShape.new(name: 'MultiplexProgramChannelDestinationSettings')
|
612
614
|
MultiplexProgramPacketIdentifiersMap = Shapes::StructureShape.new(name: 'MultiplexProgramPacketIdentifiersMap')
|
@@ -734,6 +736,12 @@ module Aws::MediaLive
|
|
734
736
|
SmoothGroupTimestampOffsetMode = Shapes::StringShape.new(name: 'SmoothGroupTimestampOffsetMode')
|
735
737
|
Smpte2038DataPreference = Shapes::StringShape.new(name: 'Smpte2038DataPreference')
|
736
738
|
SmpteTtDestinationSettings = Shapes::StructureShape.new(name: 'SmpteTtDestinationSettings')
|
739
|
+
SrtCallerDecryption = Shapes::StructureShape.new(name: 'SrtCallerDecryption')
|
740
|
+
SrtCallerDecryptionRequest = Shapes::StructureShape.new(name: 'SrtCallerDecryptionRequest')
|
741
|
+
SrtCallerSource = Shapes::StructureShape.new(name: 'SrtCallerSource')
|
742
|
+
SrtCallerSourceRequest = Shapes::StructureShape.new(name: 'SrtCallerSourceRequest')
|
743
|
+
SrtSettings = Shapes::StructureShape.new(name: 'SrtSettings')
|
744
|
+
SrtSettingsRequest = Shapes::StructureShape.new(name: 'SrtSettingsRequest')
|
737
745
|
StandardHlsSettings = Shapes::StructureShape.new(name: 'StandardHlsSettings')
|
738
746
|
StartChannelRequest = Shapes::StructureShape.new(name: 'StartChannelRequest')
|
739
747
|
StartChannelResponse = Shapes::StructureShape.new(name: 'StartChannelResponse')
|
@@ -995,6 +1003,8 @@ module Aws::MediaLive
|
|
995
1003
|
__listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
|
996
1004
|
__listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
|
997
1005
|
__listOfSignalMapSummary = Shapes::ListShape.new(name: '__listOfSignalMapSummary')
|
1006
|
+
__listOfSrtCallerSource = Shapes::ListShape.new(name: '__listOfSrtCallerSource')
|
1007
|
+
__listOfSrtCallerSourceRequest = Shapes::ListShape.new(name: '__listOfSrtCallerSourceRequest')
|
998
1008
|
__listOfThumbnail = Shapes::ListShape.new(name: '__listOfThumbnail')
|
999
1009
|
__listOfThumbnailDetail = Shapes::ListShape.new(name: '__listOfThumbnailDetail')
|
1000
1010
|
__listOfTransferringInputDeviceSummary = Shapes::ListShape.new(name: '__listOfTransferringInputDeviceSummary')
|
@@ -1697,6 +1707,7 @@ module Aws::MediaLive
|
|
1697
1707
|
CreateInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1698
1708
|
CreateInput.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
|
1699
1709
|
CreateInput.add_member(:vpc, Shapes::ShapeRef.new(shape: InputVpcRequest, location_name: "vpc"))
|
1710
|
+
CreateInput.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
1700
1711
|
CreateInput.struct_class = Types::CreateInput
|
1701
1712
|
|
1702
1713
|
CreateInputRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfInputDestinationRequest, location_name: "destinations"))
|
@@ -1710,6 +1721,7 @@ module Aws::MediaLive
|
|
1710
1721
|
CreateInputRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1711
1722
|
CreateInputRequest.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
|
1712
1723
|
CreateInputRequest.add_member(:vpc, Shapes::ShapeRef.new(shape: InputVpcRequest, location_name: "vpc"))
|
1724
|
+
CreateInputRequest.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
1713
1725
|
CreateInputRequest.struct_class = Types::CreateInputRequest
|
1714
1726
|
|
1715
1727
|
CreateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
|
@@ -2031,6 +2043,7 @@ module Aws::MediaLive
|
|
2031
2043
|
DescribeInputResponse.add_member(:state, Shapes::ShapeRef.new(shape: InputState, location_name: "state"))
|
2032
2044
|
DescribeInputResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
2033
2045
|
DescribeInputResponse.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
|
2046
|
+
DescribeInputResponse.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettings, location_name: "srtSettings"))
|
2034
2047
|
DescribeInputResponse.struct_class = Types::DescribeInputResponse
|
2035
2048
|
|
2036
2049
|
DescribeInputSecurityGroupRequest.add_member(:input_security_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputSecurityGroupId"))
|
@@ -2728,6 +2741,7 @@ module Aws::MediaLive
|
|
2728
2741
|
Input.add_member(:state, Shapes::ShapeRef.new(shape: InputState, location_name: "state"))
|
2729
2742
|
Input.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
2730
2743
|
Input.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
|
2744
|
+
Input.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettings, location_name: "srtSettings"))
|
2731
2745
|
Input.struct_class = Types::Input
|
2732
2746
|
|
2733
2747
|
InputAttachment.add_member(:automatic_input_failover_settings, Shapes::ShapeRef.new(shape: AutomaticInputFailoverSettings, location_name: "automaticInputFailoverSettings"))
|
@@ -3372,6 +3386,9 @@ module Aws::MediaLive
|
|
3372
3386
|
MultiplexOutputSettings.add_member(:destination, Shapes::ShapeRef.new(shape: OutputLocationRef, required: true, location_name: "destination"))
|
3373
3387
|
MultiplexOutputSettings.struct_class = Types::MultiplexOutputSettings
|
3374
3388
|
|
3389
|
+
MultiplexPacketIdentifiersMapping.key = Shapes::ShapeRef.new(shape: __string)
|
3390
|
+
MultiplexPacketIdentifiersMapping.value = Shapes::ShapeRef.new(shape: MultiplexProgramPacketIdentifiersMap)
|
3391
|
+
|
3375
3392
|
MultiplexProgram.add_member(:channel_id, Shapes::ShapeRef.new(shape: __string, location_name: "channelId"))
|
3376
3393
|
MultiplexProgram.add_member(:multiplex_program_settings, Shapes::ShapeRef.new(shape: MultiplexProgramSettings, location_name: "multiplexProgramSettings"))
|
3377
3394
|
MultiplexProgram.add_member(:packet_identifiers_map, Shapes::ShapeRef.new(shape: MultiplexProgramPacketIdentifiersMap, location_name: "packetIdentifiersMap"))
|
@@ -3396,6 +3413,10 @@ module Aws::MediaLive
|
|
3396
3413
|
MultiplexProgramPacketIdentifiersMap.add_member(:scte_35_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "scte35Pid"))
|
3397
3414
|
MultiplexProgramPacketIdentifiersMap.add_member(:timed_metadata_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "timedMetadataPid"))
|
3398
3415
|
MultiplexProgramPacketIdentifiersMap.add_member(:video_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "videoPid"))
|
3416
|
+
MultiplexProgramPacketIdentifiersMap.add_member(:arib_captions_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "aribCaptionsPid"))
|
3417
|
+
MultiplexProgramPacketIdentifiersMap.add_member(:dvb_teletext_pids, Shapes::ShapeRef.new(shape: __listOf__integer, location_name: "dvbTeletextPids"))
|
3418
|
+
MultiplexProgramPacketIdentifiersMap.add_member(:ecm_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "ecmPid"))
|
3419
|
+
MultiplexProgramPacketIdentifiersMap.add_member(:smpte_2038_pid, Shapes::ShapeRef.new(shape: __integer, location_name: "smpte2038Pid"))
|
3399
3420
|
MultiplexProgramPacketIdentifiersMap.struct_class = Types::MultiplexProgramPacketIdentifiersMap
|
3400
3421
|
|
3401
3422
|
MultiplexProgramPipelineDetail.add_member(:active_channel_pipeline, Shapes::ShapeRef.new(shape: __string, location_name: "activeChannelPipeline"))
|
@@ -3796,6 +3817,34 @@ module Aws::MediaLive
|
|
3796
3817
|
|
3797
3818
|
SmpteTtDestinationSettings.struct_class = Types::SmpteTtDestinationSettings
|
3798
3819
|
|
3820
|
+
SrtCallerDecryption.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
|
3821
|
+
SrtCallerDecryption.add_member(:passphrase_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "passphraseSecretArn"))
|
3822
|
+
SrtCallerDecryption.struct_class = Types::SrtCallerDecryption
|
3823
|
+
|
3824
|
+
SrtCallerDecryptionRequest.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
|
3825
|
+
SrtCallerDecryptionRequest.add_member(:passphrase_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "passphraseSecretArn"))
|
3826
|
+
SrtCallerDecryptionRequest.struct_class = Types::SrtCallerDecryptionRequest
|
3827
|
+
|
3828
|
+
SrtCallerSource.add_member(:decryption, Shapes::ShapeRef.new(shape: SrtCallerDecryption, location_name: "decryption"))
|
3829
|
+
SrtCallerSource.add_member(:minimum_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minimumLatency"))
|
3830
|
+
SrtCallerSource.add_member(:srt_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerAddress"))
|
3831
|
+
SrtCallerSource.add_member(:srt_listener_port, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerPort"))
|
3832
|
+
SrtCallerSource.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
3833
|
+
SrtCallerSource.struct_class = Types::SrtCallerSource
|
3834
|
+
|
3835
|
+
SrtCallerSourceRequest.add_member(:decryption, Shapes::ShapeRef.new(shape: SrtCallerDecryptionRequest, location_name: "decryption"))
|
3836
|
+
SrtCallerSourceRequest.add_member(:minimum_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minimumLatency"))
|
3837
|
+
SrtCallerSourceRequest.add_member(:srt_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerAddress"))
|
3838
|
+
SrtCallerSourceRequest.add_member(:srt_listener_port, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerPort"))
|
3839
|
+
SrtCallerSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
3840
|
+
SrtCallerSourceRequest.struct_class = Types::SrtCallerSourceRequest
|
3841
|
+
|
3842
|
+
SrtSettings.add_member(:srt_caller_sources, Shapes::ShapeRef.new(shape: __listOfSrtCallerSource, location_name: "srtCallerSources"))
|
3843
|
+
SrtSettings.struct_class = Types::SrtSettings
|
3844
|
+
|
3845
|
+
SrtSettingsRequest.add_member(:srt_caller_sources, Shapes::ShapeRef.new(shape: __listOfSrtCallerSourceRequest, location_name: "srtCallerSources"))
|
3846
|
+
SrtSettingsRequest.struct_class = Types::SrtSettingsRequest
|
3847
|
+
|
3799
3848
|
StandardHlsSettings.add_member(:audio_rendition_sets, Shapes::ShapeRef.new(shape: __string, location_name: "audioRenditionSets"))
|
3800
3849
|
StandardHlsSettings.add_member(:m3u_8_settings, Shapes::ShapeRef.new(shape: M3u8Settings, required: true, location_name: "m3u8Settings"))
|
3801
3850
|
StandardHlsSettings.struct_class = Types::StandardHlsSettings
|
@@ -4395,6 +4444,7 @@ module Aws::MediaLive
|
|
4395
4444
|
UpdateInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
4396
4445
|
UpdateInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
4397
4446
|
UpdateInput.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfInputSourceRequest, location_name: "sources"))
|
4447
|
+
UpdateInput.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
4398
4448
|
UpdateInput.struct_class = Types::UpdateInput
|
4399
4449
|
|
4400
4450
|
UpdateInputDevice.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
|
@@ -4436,6 +4486,7 @@ module Aws::MediaLive
|
|
4436
4486
|
UpdateInputRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
4437
4487
|
UpdateInputRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
4438
4488
|
UpdateInputRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfInputSourceRequest, location_name: "sources"))
|
4489
|
+
UpdateInputRequest.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
|
4439
4490
|
UpdateInputRequest.struct_class = Types::UpdateInputRequest
|
4440
4491
|
|
4441
4492
|
UpdateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
|
@@ -4457,6 +4508,7 @@ module Aws::MediaLive
|
|
4457
4508
|
|
4458
4509
|
UpdateMultiplex.add_member(:multiplex_settings, Shapes::ShapeRef.new(shape: MultiplexSettings, location_name: "multiplexSettings"))
|
4459
4510
|
UpdateMultiplex.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
4511
|
+
UpdateMultiplex.add_member(:packet_identifiers_mapping, Shapes::ShapeRef.new(shape: MultiplexPacketIdentifiersMapping, location_name: "packetIdentifiersMapping"))
|
4460
4512
|
UpdateMultiplex.struct_class = Types::UpdateMultiplex
|
4461
4513
|
|
4462
4514
|
UpdateMultiplexProgram.add_member(:multiplex_program_settings, Shapes::ShapeRef.new(shape: MultiplexProgramSettings, location_name: "multiplexProgramSettings"))
|
@@ -4476,6 +4528,7 @@ module Aws::MediaLive
|
|
4476
4528
|
UpdateMultiplexRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
|
4477
4529
|
UpdateMultiplexRequest.add_member(:multiplex_settings, Shapes::ShapeRef.new(shape: MultiplexSettings, location_name: "multiplexSettings"))
|
4478
4530
|
UpdateMultiplexRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
4531
|
+
UpdateMultiplexRequest.add_member(:packet_identifiers_mapping, Shapes::ShapeRef.new(shape: MultiplexPacketIdentifiersMapping, location_name: "packetIdentifiersMapping"))
|
4479
4532
|
UpdateMultiplexRequest.struct_class = Types::UpdateMultiplexRequest
|
4480
4533
|
|
4481
4534
|
UpdateMultiplexResponse.add_member(:multiplex, Shapes::ShapeRef.new(shape: Multiplex, location_name: "multiplex"))
|
@@ -4674,6 +4727,10 @@ module Aws::MediaLive
|
|
4674
4727
|
|
4675
4728
|
__listOfSignalMapSummary.member = Shapes::ShapeRef.new(shape: SignalMapSummary)
|
4676
4729
|
|
4730
|
+
__listOfSrtCallerSource.member = Shapes::ShapeRef.new(shape: SrtCallerSource)
|
4731
|
+
|
4732
|
+
__listOfSrtCallerSourceRequest.member = Shapes::ShapeRef.new(shape: SrtCallerSourceRequest)
|
4733
|
+
|
4677
4734
|
__listOfThumbnail.member = Shapes::ShapeRef.new(shape: Thumbnail)
|
4678
4735
|
|
4679
4736
|
__listOfThumbnailDetail.member = Shapes::ShapeRef.new(shape: ThumbnailDetail)
|
@@ -4700,6 +4757,7 @@ module Aws::MediaLive
|
|
4700
4757
|
|
4701
4758
|
api.metadata = {
|
4702
4759
|
"apiVersion" => "2017-10-14",
|
4760
|
+
"auth" => ["aws.auth#sigv4"],
|
4703
4761
|
"endpointPrefix" => "medialive",
|
4704
4762
|
"jsonVersion" => "1.1",
|
4705
4763
|
"protocol" => "rest-json",
|
@@ -2322,6 +2322,10 @@ module Aws::MediaLive
|
|
2322
2322
|
# inputSecurityGroups property.
|
2323
2323
|
# @return [Types::InputVpcRequest]
|
2324
2324
|
#
|
2325
|
+
# @!attribute [rw] srt_settings
|
2326
|
+
# The settings associated with an SRT input.
|
2327
|
+
# @return [Types::SrtSettingsRequest]
|
2328
|
+
#
|
2325
2329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2326
2330
|
#
|
2327
2331
|
class CreateInput < Struct.new(
|
@@ -2335,7 +2339,8 @@ module Aws::MediaLive
|
|
2335
2339
|
:sources,
|
2336
2340
|
:tags,
|
2337
2341
|
:type,
|
2338
|
-
:vpc
|
2342
|
+
:vpc,
|
2343
|
+
:srt_settings)
|
2339
2344
|
SENSITIVE = []
|
2340
2345
|
include Aws::Structure
|
2341
2346
|
end
|
@@ -2381,6 +2386,12 @@ module Aws::MediaLive
|
|
2381
2386
|
# inputSecurityGroups property.
|
2382
2387
|
# @return [Types::InputVpcRequest]
|
2383
2388
|
#
|
2389
|
+
# @!attribute [rw] srt_settings
|
2390
|
+
# Configures the sources for this SRT input. For a single-pipeline
|
2391
|
+
# input, include one srtCallerSource in the array. For a
|
2392
|
+
# standard-pipeline input, include two srtCallerSource.
|
2393
|
+
# @return [Types::SrtSettingsRequest]
|
2394
|
+
#
|
2384
2395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest AWS API Documentation
|
2385
2396
|
#
|
2386
2397
|
class CreateInputRequest < Struct.new(
|
@@ -2394,7 +2405,8 @@ module Aws::MediaLive
|
|
2394
2405
|
:sources,
|
2395
2406
|
:tags,
|
2396
2407
|
:type,
|
2397
|
-
:vpc
|
2408
|
+
:vpc,
|
2409
|
+
:srt_settings)
|
2398
2410
|
SENSITIVE = []
|
2399
2411
|
include Aws::Structure
|
2400
2412
|
end
|
@@ -3393,6 +3405,10 @@ module Aws::MediaLive
|
|
3393
3405
|
# The different types of inputs that AWS Elemental MediaLive supports.
|
3394
3406
|
# @return [String]
|
3395
3407
|
#
|
3408
|
+
# @!attribute [rw] srt_settings
|
3409
|
+
# The configured sources for this SRT input.
|
3410
|
+
# @return [Types::SrtSettings]
|
3411
|
+
#
|
3396
3412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
|
3397
3413
|
#
|
3398
3414
|
class DescribeInputResponse < Struct.new(
|
@@ -3411,7 +3427,8 @@ module Aws::MediaLive
|
|
3411
3427
|
:sources,
|
3412
3428
|
:state,
|
3413
3429
|
:tags,
|
3414
|
-
:type
|
3430
|
+
:type,
|
3431
|
+
:srt_settings)
|
3415
3432
|
SENSITIVE = []
|
3416
3433
|
include Aws::Structure
|
3417
3434
|
end
|
@@ -4069,7 +4086,7 @@ module Aws::MediaLive
|
|
4069
4086
|
#
|
4070
4087
|
# @!attribute [rw] bitrate
|
4071
4088
|
# Average bitrate in bits/second. Valid bitrates depend on the coding
|
4072
|
-
# mode.
|
4089
|
+
# mode.
|
4073
4090
|
# @return [Float]
|
4074
4091
|
#
|
4075
4092
|
# @!attribute [rw] coding_mode
|
@@ -4954,7 +4971,16 @@ module Aws::MediaLive
|
|
4954
4971
|
# @return [String]
|
4955
4972
|
#
|
4956
4973
|
# @!attribute [rw] filter_settings
|
4957
|
-
# Optional filters
|
4974
|
+
# Optional. Both filters reduce bandwidth by removing imperceptible
|
4975
|
+
# details. You can enable one of the filters. We recommend that you
|
4976
|
+
# try both filters and observe the results to decide which one to use.
|
4977
|
+
# The Temporal Filter reduces bandwidth by removing imperceptible
|
4978
|
+
# details in the content. It combines perceptual filtering and motion
|
4979
|
+
# compensated temporal filtering (MCTF). It operates independently of
|
4980
|
+
# the compression level. The Bandwidth Reduction filter is a
|
4981
|
+
# perceptual filter located within the encoding loop. It adapts to the
|
4982
|
+
# current compression level to filter imperceptible signals. This
|
4983
|
+
# filter works only when the resolution is 1080p or lower.
|
4958
4984
|
# @return [Types::H264FilterSettings]
|
4959
4985
|
#
|
4960
4986
|
# @!attribute [rw] fixed_afd
|
@@ -5340,7 +5366,16 @@ module Aws::MediaLive
|
|
5340
5366
|
# @return [Types::H265ColorSpaceSettings]
|
5341
5367
|
#
|
5342
5368
|
# @!attribute [rw] filter_settings
|
5343
|
-
# Optional filters
|
5369
|
+
# Optional. Both filters reduce bandwidth by removing imperceptible
|
5370
|
+
# details. You can enable one of the filters. We recommend that you
|
5371
|
+
# try both filters and observe the results to decide which one to use.
|
5372
|
+
# The Temporal Filter reduces bandwidth by removing imperceptible
|
5373
|
+
# details in the content. It combines perceptual filtering and motion
|
5374
|
+
# compensated temporal filtering (MCTF). It operates independently of
|
5375
|
+
# the compression level. The Bandwidth Reduction filter is a
|
5376
|
+
# perceptual filter located within the encoding loop. It adapts to the
|
5377
|
+
# current compression level to filter imperceptible signals. This
|
5378
|
+
# filter works only when the resolution is 1080p or lower.
|
5344
5379
|
# @return [Types::H265FilterSettings]
|
5345
5380
|
#
|
5346
5381
|
# @!attribute [rw] fixed_afd
|
@@ -6373,6 +6408,10 @@ module Aws::MediaLive
|
|
6373
6408
|
# The different types of inputs that AWS Elemental MediaLive supports.
|
6374
6409
|
# @return [String]
|
6375
6410
|
#
|
6411
|
+
# @!attribute [rw] srt_settings
|
6412
|
+
# The settings associated with an SRT input.
|
6413
|
+
# @return [Types::SrtSettings]
|
6414
|
+
#
|
6376
6415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
|
6377
6416
|
#
|
6378
6417
|
class Input < Struct.new(
|
@@ -6391,7 +6430,8 @@ module Aws::MediaLive
|
|
6391
6430
|
:sources,
|
6392
6431
|
:state,
|
6393
6432
|
:tags,
|
6394
|
-
:type
|
6433
|
+
:type,
|
6434
|
+
:srt_settings)
|
6395
6435
|
SENSITIVE = []
|
6396
6436
|
include Aws::Structure
|
6397
6437
|
end
|
@@ -9353,6 +9393,18 @@ module Aws::MediaLive
|
|
9353
9393
|
# @!attribute [rw] video_pid
|
9354
9394
|
# @return [Integer]
|
9355
9395
|
#
|
9396
|
+
# @!attribute [rw] arib_captions_pid
|
9397
|
+
# @return [Integer]
|
9398
|
+
#
|
9399
|
+
# @!attribute [rw] dvb_teletext_pids
|
9400
|
+
# @return [Array<Integer>]
|
9401
|
+
#
|
9402
|
+
# @!attribute [rw] ecm_pid
|
9403
|
+
# @return [Integer]
|
9404
|
+
#
|
9405
|
+
# @!attribute [rw] smpte_2038_pid
|
9406
|
+
# @return [Integer]
|
9407
|
+
#
|
9356
9408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexProgramPacketIdentifiersMap AWS API Documentation
|
9357
9409
|
#
|
9358
9410
|
class MultiplexProgramPacketIdentifiersMap < Struct.new(
|
@@ -9368,7 +9420,11 @@ module Aws::MediaLive
|
|
9368
9420
|
:scte_27_pids,
|
9369
9421
|
:scte_35_pid,
|
9370
9422
|
:timed_metadata_pid,
|
9371
|
-
:video_pid
|
9423
|
+
:video_pid,
|
9424
|
+
:arib_captions_pid,
|
9425
|
+
:dvb_teletext_pids,
|
9426
|
+
:ecm_pid,
|
9427
|
+
:smpte_2038_pid)
|
9372
9428
|
SENSITIVE = []
|
9373
9429
|
include Aws::Structure
|
9374
9430
|
end
|
@@ -12508,6 +12564,10 @@ module Aws::MediaLive
|
|
12508
12564
|
# PULL type Inputs. Leave Destinations empty.
|
12509
12565
|
# @return [Array<Types::InputSourceRequest>]
|
12510
12566
|
#
|
12567
|
+
# @!attribute [rw] srt_settings
|
12568
|
+
# The settings associated with an SRT input.
|
12569
|
+
# @return [Types::SrtSettingsRequest]
|
12570
|
+
#
|
12511
12571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
12512
12572
|
#
|
12513
12573
|
class UpdateInput < Struct.new(
|
@@ -12517,7 +12577,8 @@ module Aws::MediaLive
|
|
12517
12577
|
:media_connect_flows,
|
12518
12578
|
:name,
|
12519
12579
|
:role_arn,
|
12520
|
-
:sources
|
12580
|
+
:sources,
|
12581
|
+
:srt_settings)
|
12521
12582
|
SENSITIVE = []
|
12522
12583
|
include Aws::Structure
|
12523
12584
|
end
|
@@ -12691,6 +12752,12 @@ module Aws::MediaLive
|
|
12691
12752
|
# @!attribute [rw] sources
|
12692
12753
|
# @return [Array<Types::InputSourceRequest>]
|
12693
12754
|
#
|
12755
|
+
# @!attribute [rw] srt_settings
|
12756
|
+
# Configures the sources for this SRT input. For a single-pipeline
|
12757
|
+
# input, include one srtCallerSource in the array. For a
|
12758
|
+
# standard-pipeline input, include two srtCallerSource.
|
12759
|
+
# @return [Types::SrtSettingsRequest]
|
12760
|
+
#
|
12694
12761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
|
12695
12762
|
#
|
12696
12763
|
class UpdateInputRequest < Struct.new(
|
@@ -12701,7 +12768,8 @@ module Aws::MediaLive
|
|
12701
12768
|
:media_connect_flows,
|
12702
12769
|
:name,
|
12703
12770
|
:role_arn,
|
12704
|
-
:sources
|
12771
|
+
:sources,
|
12772
|
+
:srt_settings)
|
12705
12773
|
SENSITIVE = []
|
12706
12774
|
include Aws::Structure
|
12707
12775
|
end
|
@@ -12779,11 +12847,15 @@ module Aws::MediaLive
|
|
12779
12847
|
# Name of the multiplex.
|
12780
12848
|
# @return [String]
|
12781
12849
|
#
|
12850
|
+
# @!attribute [rw] packet_identifiers_mapping
|
12851
|
+
# @return [Hash<String,Types::MultiplexProgramPacketIdentifiersMap>]
|
12852
|
+
#
|
12782
12853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplex AWS API Documentation
|
12783
12854
|
#
|
12784
12855
|
class UpdateMultiplex < Struct.new(
|
12785
12856
|
:multiplex_settings,
|
12786
|
-
:name
|
12857
|
+
:name,
|
12858
|
+
:packet_identifiers_mapping)
|
12787
12859
|
SENSITIVE = []
|
12788
12860
|
include Aws::Structure
|
12789
12861
|
end
|
@@ -12854,12 +12926,16 @@ module Aws::MediaLive
|
|
12854
12926
|
# @!attribute [rw] name
|
12855
12927
|
# @return [String]
|
12856
12928
|
#
|
12929
|
+
# @!attribute [rw] packet_identifiers_mapping
|
12930
|
+
# @return [Hash<String,Types::MultiplexProgramPacketIdentifiersMap>]
|
12931
|
+
#
|
12857
12932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateMultiplexRequest AWS API Documentation
|
12858
12933
|
#
|
12859
12934
|
class UpdateMultiplexRequest < Struct.new(
|
12860
12935
|
:multiplex_id,
|
12861
12936
|
:multiplex_settings,
|
12862
|
-
:name
|
12937
|
+
:name,
|
12938
|
+
:packet_identifiers_mapping)
|
12863
12939
|
SENSITIVE = []
|
12864
12940
|
include Aws::Structure
|
12865
12941
|
end
|
@@ -17390,5 +17466,164 @@ module Aws::MediaLive
|
|
17390
17466
|
include Aws::Structure
|
17391
17467
|
end
|
17392
17468
|
|
17469
|
+
# The decryption settings for the SRT caller source. Present only if the
|
17470
|
+
# source has decryption enabled.
|
17471
|
+
#
|
17472
|
+
# @!attribute [rw] algorithm
|
17473
|
+
# The algorithm used to encrypt content.
|
17474
|
+
# @return [String]
|
17475
|
+
#
|
17476
|
+
# @!attribute [rw] passphrase_secret_arn
|
17477
|
+
# The ARN for the secret in Secrets Manager. Someone in your
|
17478
|
+
# organization must create a secret and provide you with its ARN. The
|
17479
|
+
# secret holds the passphrase that MediaLive uses to decrypt the
|
17480
|
+
# source content.
|
17481
|
+
# @return [String]
|
17482
|
+
#
|
17483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerDecryption AWS API Documentation
|
17484
|
+
#
|
17485
|
+
class SrtCallerDecryption < Struct.new(
|
17486
|
+
:algorithm,
|
17487
|
+
:passphrase_secret_arn)
|
17488
|
+
SENSITIVE = []
|
17489
|
+
include Aws::Structure
|
17490
|
+
end
|
17491
|
+
|
17492
|
+
# Complete these parameters only if the content is encrypted.
|
17493
|
+
#
|
17494
|
+
# @!attribute [rw] algorithm
|
17495
|
+
# The algorithm used to encrypt content.
|
17496
|
+
# @return [String]
|
17497
|
+
#
|
17498
|
+
# @!attribute [rw] passphrase_secret_arn
|
17499
|
+
# The ARN for the secret in Secrets Manager. Someone in your
|
17500
|
+
# organization must create a secret and provide you with its ARN. This
|
17501
|
+
# secret holds the passphrase that MediaLive will use to decrypt the
|
17502
|
+
# source content.
|
17503
|
+
# @return [String]
|
17504
|
+
#
|
17505
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerDecryptionRequest AWS API Documentation
|
17506
|
+
#
|
17507
|
+
class SrtCallerDecryptionRequest < Struct.new(
|
17508
|
+
:algorithm,
|
17509
|
+
:passphrase_secret_arn)
|
17510
|
+
SENSITIVE = []
|
17511
|
+
include Aws::Structure
|
17512
|
+
end
|
17513
|
+
|
17514
|
+
# The configuration for a source that uses SRT as the connection
|
17515
|
+
# protocol. In terms of establishing the connection, MediaLive is always
|
17516
|
+
# caller and the upstream system is always the listener. In terms of
|
17517
|
+
# transmission of the source content, MediaLive is always the receiver
|
17518
|
+
# and the upstream system is always the sender.
|
17519
|
+
#
|
17520
|
+
# @!attribute [rw] decryption
|
17521
|
+
# The decryption settings for the SRT caller source. Present only if
|
17522
|
+
# the source has decryption enabled.
|
17523
|
+
# @return [Types::SrtCallerDecryption]
|
17524
|
+
#
|
17525
|
+
# @!attribute [rw] minimum_latency
|
17526
|
+
# The preferred latency (in milliseconds) for implementing packet loss
|
17527
|
+
# and recovery. Packet recovery is a key feature of SRT.
|
17528
|
+
# @return [Integer]
|
17529
|
+
#
|
17530
|
+
# @!attribute [rw] srt_listener_address
|
17531
|
+
# The IP address at the upstream system (the listener) that MediaLive
|
17532
|
+
# (the caller) connects to.
|
17533
|
+
# @return [String]
|
17534
|
+
#
|
17535
|
+
# @!attribute [rw] srt_listener_port
|
17536
|
+
# The port at the upstream system (the listener) that MediaLive (the
|
17537
|
+
# caller) connects to.
|
17538
|
+
# @return [String]
|
17539
|
+
#
|
17540
|
+
# @!attribute [rw] stream_id
|
17541
|
+
# The stream ID, if the upstream system uses this identifier.
|
17542
|
+
# @return [String]
|
17543
|
+
#
|
17544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerSource AWS API Documentation
|
17545
|
+
#
|
17546
|
+
class SrtCallerSource < Struct.new(
|
17547
|
+
:decryption,
|
17548
|
+
:minimum_latency,
|
17549
|
+
:srt_listener_address,
|
17550
|
+
:srt_listener_port,
|
17551
|
+
:stream_id)
|
17552
|
+
SENSITIVE = []
|
17553
|
+
include Aws::Structure
|
17554
|
+
end
|
17555
|
+
|
17556
|
+
# Configures the connection for a source that uses SRT as the connection
|
17557
|
+
# protocol. In terms of establishing the connection, MediaLive is always
|
17558
|
+
# the caller and the upstream system is always the listener. In terms of
|
17559
|
+
# transmission of the source content, MediaLive is always the receiver
|
17560
|
+
# and the upstream system is always the sender.
|
17561
|
+
#
|
17562
|
+
# @!attribute [rw] decryption
|
17563
|
+
# Complete these parameters only if the content is encrypted.
|
17564
|
+
# @return [Types::SrtCallerDecryptionRequest]
|
17565
|
+
#
|
17566
|
+
# @!attribute [rw] minimum_latency
|
17567
|
+
# The preferred latency (in milliseconds) for implementing packet loss
|
17568
|
+
# and recovery. Packet recovery is a key feature of SRT. Obtain this
|
17569
|
+
# value from the operator at the upstream system.
|
17570
|
+
# @return [Integer]
|
17571
|
+
#
|
17572
|
+
# @!attribute [rw] srt_listener_address
|
17573
|
+
# The IP address at the upstream system (the listener) that MediaLive
|
17574
|
+
# (the caller) will connect to.
|
17575
|
+
# @return [String]
|
17576
|
+
#
|
17577
|
+
# @!attribute [rw] srt_listener_port
|
17578
|
+
# The port at the upstream system (the listener) that MediaLive (the
|
17579
|
+
# caller) will connect to.
|
17580
|
+
# @return [String]
|
17581
|
+
#
|
17582
|
+
# @!attribute [rw] stream_id
|
17583
|
+
# This value is required if the upstream system uses this identifier
|
17584
|
+
# because without it, the SRT handshake between MediaLive (the caller)
|
17585
|
+
# and the upstream system (the listener) might fail.
|
17586
|
+
# @return [String]
|
17587
|
+
#
|
17588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerSourceRequest AWS API Documentation
|
17589
|
+
#
|
17590
|
+
class SrtCallerSourceRequest < Struct.new(
|
17591
|
+
:decryption,
|
17592
|
+
:minimum_latency,
|
17593
|
+
:srt_listener_address,
|
17594
|
+
:srt_listener_port,
|
17595
|
+
:stream_id)
|
17596
|
+
SENSITIVE = []
|
17597
|
+
include Aws::Structure
|
17598
|
+
end
|
17599
|
+
|
17600
|
+
# The configured sources for this SRT input.
|
17601
|
+
#
|
17602
|
+
# @!attribute [rw] srt_caller_sources
|
17603
|
+
# @return [Array<Types::SrtCallerSource>]
|
17604
|
+
#
|
17605
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtSettings AWS API Documentation
|
17606
|
+
#
|
17607
|
+
class SrtSettings < Struct.new(
|
17608
|
+
:srt_caller_sources)
|
17609
|
+
SENSITIVE = []
|
17610
|
+
include Aws::Structure
|
17611
|
+
end
|
17612
|
+
|
17613
|
+
# Configures the sources for this SRT input. For a single-pipeline
|
17614
|
+
# input, include one srtCallerSource in the array. For a
|
17615
|
+
# standard-pipeline input, include two srtCallerSource.
|
17616
|
+
#
|
17617
|
+
# @!attribute [rw] srt_caller_sources
|
17618
|
+
# @return [Array<Types::SrtCallerSourceRequest>]
|
17619
|
+
#
|
17620
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtSettingsRequest AWS API Documentation
|
17621
|
+
#
|
17622
|
+
class SrtSettingsRequest < Struct.new(
|
17623
|
+
:srt_caller_sources)
|
17624
|
+
SENSITIVE = []
|
17625
|
+
include Aws::Structure
|
17626
|
+
end
|
17627
|
+
|
17393
17628
|
end
|
17394
17629
|
end
|
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1401,10 +1401,24 @@ module Aws
|
|
1401
1401
|
},
|
1402
1402
|
],
|
1403
1403
|
?tags: Hash[::String, ::String],
|
1404
|
-
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE"),
|
1404
|
+
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER"),
|
1405
1405
|
?vpc: {
|
1406
1406
|
security_group_ids: Array[::String]?,
|
1407
1407
|
subnet_ids: Array[::String]
|
1408
|
+
},
|
1409
|
+
?srt_settings: {
|
1410
|
+
srt_caller_sources: Array[
|
1411
|
+
{
|
1412
|
+
decryption: {
|
1413
|
+
algorithm: ("AES128" | "AES192" | "AES256")?,
|
1414
|
+
passphrase_secret_arn: ::String?
|
1415
|
+
}?,
|
1416
|
+
minimum_latency: ::Integer?,
|
1417
|
+
srt_listener_address: ::String?,
|
1418
|
+
srt_listener_port: ::String?,
|
1419
|
+
stream_id: ::String?
|
1420
|
+
},
|
1421
|
+
]?
|
1408
1422
|
}
|
1409
1423
|
) -> _CreateInputResponseSuccess
|
1410
1424
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
|
@@ -1666,7 +1680,8 @@ module Aws
|
|
1666
1680
|
def sources: () -> ::Array[Types::InputSource]
|
1667
1681
|
def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1668
1682
|
def tags: () -> ::Hash[::String, ::String]
|
1669
|
-
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
|
1683
|
+
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
|
1684
|
+
def srt_settings: () -> Types::SrtSettings
|
1670
1685
|
end
|
1671
1686
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
|
1672
1687
|
def describe_input: (
|
@@ -3279,7 +3294,21 @@ module Aws
|
|
3279
3294
|
url: ::String?,
|
3280
3295
|
username: ::String?
|
3281
3296
|
},
|
3282
|
-
]
|
3297
|
+
],
|
3298
|
+
?srt_settings: {
|
3299
|
+
srt_caller_sources: Array[
|
3300
|
+
{
|
3301
|
+
decryption: {
|
3302
|
+
algorithm: ("AES128" | "AES192" | "AES256")?,
|
3303
|
+
passphrase_secret_arn: ::String?
|
3304
|
+
}?,
|
3305
|
+
minimum_latency: ::Integer?,
|
3306
|
+
srt_listener_address: ::String?,
|
3307
|
+
srt_listener_port: ::String?,
|
3308
|
+
stream_id: ::String?
|
3309
|
+
},
|
3310
|
+
]?
|
3311
|
+
}
|
3283
3312
|
) -> _UpdateInputResponseSuccess
|
3284
3313
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
|
3285
3314
|
|
@@ -3375,7 +3404,26 @@ module Aws
|
|
3375
3404
|
transport_stream_id: ::Integer,
|
3376
3405
|
transport_stream_reserved_bitrate: ::Integer?
|
3377
3406
|
},
|
3378
|
-
?name: ::String
|
3407
|
+
?name: ::String,
|
3408
|
+
?packet_identifiers_mapping: Hash[::String, {
|
3409
|
+
audio_pids: Array[::Integer]?,
|
3410
|
+
dvb_sub_pids: Array[::Integer]?,
|
3411
|
+
dvb_teletext_pid: ::Integer?,
|
3412
|
+
etv_platform_pid: ::Integer?,
|
3413
|
+
etv_signal_pid: ::Integer?,
|
3414
|
+
klv_data_pids: Array[::Integer]?,
|
3415
|
+
pcr_pid: ::Integer?,
|
3416
|
+
pmt_pid: ::Integer?,
|
3417
|
+
private_metadata_pid: ::Integer?,
|
3418
|
+
scte_27_pids: Array[::Integer]?,
|
3419
|
+
scte_35_pid: ::Integer?,
|
3420
|
+
timed_metadata_pid: ::Integer?,
|
3421
|
+
video_pid: ::Integer?,
|
3422
|
+
arib_captions_pid: ::Integer?,
|
3423
|
+
dvb_teletext_pids: Array[::Integer]?,
|
3424
|
+
ecm_pid: ::Integer?,
|
3425
|
+
smpte_2038_pid: ::Integer?
|
3426
|
+
}]
|
3379
3427
|
) -> _UpdateMultiplexResponseSuccess
|
3380
3428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMultiplexResponseSuccess
|
3381
3429
|
|
data/sig/types.rbs
CHANGED
@@ -608,8 +608,9 @@ module Aws::MediaLive
|
|
608
608
|
attr_accessor role_arn: ::String
|
609
609
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
610
610
|
attr_accessor tags: ::Hash[::String, ::String]
|
611
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
|
611
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
|
612
612
|
attr_accessor vpc: Types::InputVpcRequest
|
613
|
+
attr_accessor srt_settings: Types::SrtSettingsRequest
|
613
614
|
SENSITIVE: []
|
614
615
|
end
|
615
616
|
|
@@ -623,8 +624,9 @@ module Aws::MediaLive
|
|
623
624
|
attr_accessor role_arn: ::String
|
624
625
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
625
626
|
attr_accessor tags: ::Hash[::String, ::String]
|
626
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
|
627
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
|
627
628
|
attr_accessor vpc: Types::InputVpcRequest
|
629
|
+
attr_accessor srt_settings: Types::SrtSettingsRequest
|
628
630
|
SENSITIVE: []
|
629
631
|
end
|
630
632
|
|
@@ -956,7 +958,8 @@ module Aws::MediaLive
|
|
956
958
|
attr_accessor sources: ::Array[Types::InputSource]
|
957
959
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
958
960
|
attr_accessor tags: ::Hash[::String, ::String]
|
959
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
|
961
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
|
962
|
+
attr_accessor srt_settings: Types::SrtSettings
|
960
963
|
SENSITIVE: []
|
961
964
|
end
|
962
965
|
|
@@ -1600,7 +1603,8 @@ module Aws::MediaLive
|
|
1600
1603
|
attr_accessor sources: ::Array[Types::InputSource]
|
1601
1604
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1602
1605
|
attr_accessor tags: ::Hash[::String, ::String]
|
1603
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
|
1606
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
|
1607
|
+
attr_accessor srt_settings: Types::SrtSettings
|
1604
1608
|
SENSITIVE: []
|
1605
1609
|
end
|
1606
1610
|
|
@@ -2354,6 +2358,10 @@ module Aws::MediaLive
|
|
2354
2358
|
attr_accessor scte_35_pid: ::Integer
|
2355
2359
|
attr_accessor timed_metadata_pid: ::Integer
|
2356
2360
|
attr_accessor video_pid: ::Integer
|
2361
|
+
attr_accessor arib_captions_pid: ::Integer
|
2362
|
+
attr_accessor dvb_teletext_pids: ::Array[::Integer]
|
2363
|
+
attr_accessor ecm_pid: ::Integer
|
2364
|
+
attr_accessor smpte_2038_pid: ::Integer
|
2357
2365
|
SENSITIVE: []
|
2358
2366
|
end
|
2359
2367
|
|
@@ -3230,6 +3238,7 @@ module Aws::MediaLive
|
|
3230
3238
|
attr_accessor name: ::String
|
3231
3239
|
attr_accessor role_arn: ::String
|
3232
3240
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
3241
|
+
attr_accessor srt_settings: Types::SrtSettingsRequest
|
3233
3242
|
SENSITIVE: []
|
3234
3243
|
end
|
3235
3244
|
|
@@ -3279,6 +3288,7 @@ module Aws::MediaLive
|
|
3279
3288
|
attr_accessor name: ::String
|
3280
3289
|
attr_accessor role_arn: ::String
|
3281
3290
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
3291
|
+
attr_accessor srt_settings: Types::SrtSettingsRequest
|
3282
3292
|
SENSITIVE: []
|
3283
3293
|
end
|
3284
3294
|
|
@@ -3312,6 +3322,7 @@ module Aws::MediaLive
|
|
3312
3322
|
class UpdateMultiplex
|
3313
3323
|
attr_accessor multiplex_settings: Types::MultiplexSettings
|
3314
3324
|
attr_accessor name: ::String
|
3325
|
+
attr_accessor packet_identifiers_mapping: ::Hash[::String, Types::MultiplexProgramPacketIdentifiersMap]
|
3315
3326
|
SENSITIVE: []
|
3316
3327
|
end
|
3317
3328
|
|
@@ -3341,6 +3352,7 @@ module Aws::MediaLive
|
|
3341
3352
|
attr_accessor multiplex_id: ::String
|
3342
3353
|
attr_accessor multiplex_settings: Types::MultiplexSettings
|
3343
3354
|
attr_accessor name: ::String
|
3355
|
+
attr_accessor packet_identifiers_mapping: ::Hash[::String, Types::MultiplexProgramPacketIdentifiersMap]
|
3344
3356
|
SENSITIVE: []
|
3345
3357
|
end
|
3346
3358
|
|
@@ -4577,5 +4589,45 @@ module Aws::MediaLive
|
|
4577
4589
|
attr_accessor tags: ::Hash[::String, ::String]
|
4578
4590
|
SENSITIVE: []
|
4579
4591
|
end
|
4592
|
+
|
4593
|
+
class SrtCallerDecryption
|
4594
|
+
attr_accessor algorithm: ("AES128" | "AES192" | "AES256")
|
4595
|
+
attr_accessor passphrase_secret_arn: ::String
|
4596
|
+
SENSITIVE: []
|
4597
|
+
end
|
4598
|
+
|
4599
|
+
class SrtCallerDecryptionRequest
|
4600
|
+
attr_accessor algorithm: ("AES128" | "AES192" | "AES256")
|
4601
|
+
attr_accessor passphrase_secret_arn: ::String
|
4602
|
+
SENSITIVE: []
|
4603
|
+
end
|
4604
|
+
|
4605
|
+
class SrtCallerSource
|
4606
|
+
attr_accessor decryption: Types::SrtCallerDecryption
|
4607
|
+
attr_accessor minimum_latency: ::Integer
|
4608
|
+
attr_accessor srt_listener_address: ::String
|
4609
|
+
attr_accessor srt_listener_port: ::String
|
4610
|
+
attr_accessor stream_id: ::String
|
4611
|
+
SENSITIVE: []
|
4612
|
+
end
|
4613
|
+
|
4614
|
+
class SrtCallerSourceRequest
|
4615
|
+
attr_accessor decryption: Types::SrtCallerDecryptionRequest
|
4616
|
+
attr_accessor minimum_latency: ::Integer
|
4617
|
+
attr_accessor srt_listener_address: ::String
|
4618
|
+
attr_accessor srt_listener_port: ::String
|
4619
|
+
attr_accessor stream_id: ::String
|
4620
|
+
SENSITIVE: []
|
4621
|
+
end
|
4622
|
+
|
4623
|
+
class SrtSettings
|
4624
|
+
attr_accessor srt_caller_sources: ::Array[Types::SrtCallerSource]
|
4625
|
+
SENSITIVE: []
|
4626
|
+
end
|
4627
|
+
|
4628
|
+
class SrtSettingsRequest
|
4629
|
+
attr_accessor srt_caller_sources: ::Array[Types::SrtCallerSourceRequest]
|
4630
|
+
SENSITIVE: []
|
4631
|
+
end
|
4580
4632
|
end
|
4581
4633
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.128.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-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS Elemental MediaLive (MediaLive). This gem
|
48
48
|
is part of the AWS SDK for Ruby.
|
49
49
|
email:
|