aws-sdk-medialive 1.56.0 → 1.61.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +2 -2
- data/lib/aws-sdk-medialive/client.rb +300 -1
- data/lib/aws-sdk-medialive/client_api.rb +217 -0
- data/lib/aws-sdk-medialive/types.rb +644 -7
- 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: 47d192261df9222efa8d0eb14c1eac6d90b59f319d872d26976a61fce017239c
|
4
|
+
data.tar.gz: 7a0ef0355612a050079926eec76698937bcdb117e27ebc7575dacf78c894c167
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae6c26847c096b2fe749525c419336c31b86fb74157c697952ad8eb7632f647484bada6c88c3c1069da214482bdce050685fc39e350b23fab25c4ca01ec6e197
|
7
|
+
data.tar.gz: c6313dd1b91d7bcc679a955ab31fcef614d004f995852cb6ac9339ebf4750c5ebf0e6597af0f1ca0cf9f514c4d093eaecd47ef6be2596b54ca052a6d5b302f1a
|
data/lib/aws-sdk-medialive.rb
CHANGED
@@ -29,7 +29,7 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
29
29
|
# structure.
|
30
30
|
#
|
31
31
|
# media_live = Aws::MediaLive::Client.new
|
32
|
-
# resp = media_live.
|
32
|
+
# resp = media_live.accept_input_device_transfer(params)
|
33
33
|
#
|
34
34
|
# See {Client} for more information.
|
35
35
|
#
|
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
|
|
49
49
|
# @!group service
|
50
50
|
module Aws::MediaLive
|
51
51
|
|
52
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.61.0'
|
53
53
|
|
54
54
|
end
|
@@ -327,6 +327,28 @@ module Aws::MediaLive
|
|
327
327
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
|
+
# Accept an incoming input device transfer. The ownership of the device
|
331
|
+
# will transfer to your AWS account.
|
332
|
+
#
|
333
|
+
# @option params [required, String] :input_device_id
|
334
|
+
#
|
335
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
336
|
+
#
|
337
|
+
# @example Request syntax with placeholder values
|
338
|
+
#
|
339
|
+
# resp = client.accept_input_device_transfer({
|
340
|
+
# input_device_id: "__string", # required
|
341
|
+
# })
|
342
|
+
#
|
343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransfer AWS API Documentation
|
344
|
+
#
|
345
|
+
# @overload accept_input_device_transfer(params = {})
|
346
|
+
# @param [Hash] params ({})
|
347
|
+
def accept_input_device_transfer(params = {}, options = {})
|
348
|
+
req = build_request(:accept_input_device_transfer, params)
|
349
|
+
req.send_request(options)
|
350
|
+
end
|
351
|
+
|
330
352
|
# Starts delete of resources.
|
331
353
|
#
|
332
354
|
# @option params [Array<String>] :channel_ids
|
@@ -710,6 +732,27 @@ module Aws::MediaLive
|
|
710
732
|
req.send_request(options)
|
711
733
|
end
|
712
734
|
|
735
|
+
# Cancel an input device transfer that you have requested.
|
736
|
+
#
|
737
|
+
# @option params [required, String] :input_device_id
|
738
|
+
#
|
739
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
740
|
+
#
|
741
|
+
# @example Request syntax with placeholder values
|
742
|
+
#
|
743
|
+
# resp = client.cancel_input_device_transfer({
|
744
|
+
# input_device_id: "__string", # required
|
745
|
+
# })
|
746
|
+
#
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransfer AWS API Documentation
|
748
|
+
#
|
749
|
+
# @overload cancel_input_device_transfer(params = {})
|
750
|
+
# @param [Hash] params ({})
|
751
|
+
def cancel_input_device_transfer(params = {}, options = {})
|
752
|
+
req = build_request(:cancel_input_device_transfer, params)
|
753
|
+
req.send_request(options)
|
754
|
+
end
|
755
|
+
|
713
756
|
# Creates a new channel
|
714
757
|
#
|
715
758
|
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
@@ -1043,6 +1086,7 @@ module Aws::MediaLive
|
|
1043
1086
|
# destination_ref_id: "__string",
|
1044
1087
|
# },
|
1045
1088
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
1089
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
1046
1090
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
1047
1091
|
# hls_cdn_settings: {
|
1048
1092
|
# hls_akamai_settings: {
|
@@ -1077,6 +1121,7 @@ module Aws::MediaLive
|
|
1077
1121
|
# },
|
1078
1122
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
1079
1123
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
1124
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
1080
1125
|
# index_n_segments: 1,
|
1081
1126
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
1082
1127
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -1142,6 +1187,7 @@ module Aws::MediaLive
|
|
1142
1187
|
# multiplex_group_settings: {
|
1143
1188
|
# },
|
1144
1189
|
# rtmp_group_settings: {
|
1190
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
1145
1191
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
1146
1192
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
1147
1193
|
# cache_length: 1,
|
@@ -1523,6 +1569,24 @@ module Aws::MediaLive
|
|
1523
1569
|
# input_attachments: [
|
1524
1570
|
# {
|
1525
1571
|
# automatic_input_failover_settings: {
|
1572
|
+
# error_clear_time_msec: 1,
|
1573
|
+
# failover_conditions: [
|
1574
|
+
# {
|
1575
|
+
# failover_condition_settings: {
|
1576
|
+
# audio_silence_settings: {
|
1577
|
+
# audio_selector_name: "__string", # required
|
1578
|
+
# audio_silence_threshold_msec: 1,
|
1579
|
+
# },
|
1580
|
+
# input_loss_settings: {
|
1581
|
+
# input_loss_threshold_msec: 1,
|
1582
|
+
# },
|
1583
|
+
# video_black_settings: {
|
1584
|
+
# black_detect_threshold: 1.0,
|
1585
|
+
# video_black_threshold_msec: 1,
|
1586
|
+
# },
|
1587
|
+
# },
|
1588
|
+
# },
|
1589
|
+
# ],
|
1526
1590
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
1527
1591
|
# secondary_input_id: "__string", # required
|
1528
1592
|
# },
|
@@ -1807,6 +1871,7 @@ module Aws::MediaLive
|
|
1807
1871
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
1808
1872
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
1809
1873
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
1874
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
1810
1875
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
1811
1876
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
1812
1877
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -1831,6 +1896,7 @@ module Aws::MediaLive
|
|
1831
1896
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
1832
1897
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
1833
1898
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
1899
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
1834
1900
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
1835
1901
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
1836
1902
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -1878,6 +1944,8 @@ module Aws::MediaLive
|
|
1878
1944
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
1879
1945
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
1880
1946
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
1947
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
1948
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
1881
1949
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
1882
1950
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
1883
1951
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -2145,6 +2213,13 @@ module Aws::MediaLive
|
|
2145
2213
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
2146
2214
|
# resp.channel.id #=> String
|
2147
2215
|
# resp.channel.input_attachments #=> Array
|
2216
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
2217
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
2218
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
2219
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
2220
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
2221
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
2222
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
2148
2223
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
2149
2224
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
2150
2225
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
@@ -2748,6 +2823,7 @@ module Aws::MediaLive
|
|
2748
2823
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
2749
2824
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
2750
2825
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
2826
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
2751
2827
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
2752
2828
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
2753
2829
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -2772,6 +2848,7 @@ module Aws::MediaLive
|
|
2772
2848
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
2773
2849
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
2774
2850
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
2851
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
2775
2852
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
2776
2853
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
2777
2854
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -2819,6 +2896,8 @@ module Aws::MediaLive
|
|
2819
2896
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
2820
2897
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
2821
2898
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
2899
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
2900
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
2822
2901
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
2823
2902
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
2824
2903
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -3086,6 +3165,13 @@ module Aws::MediaLive
|
|
3086
3165
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
3087
3166
|
# resp.id #=> String
|
3088
3167
|
# resp.input_attachments #=> Array
|
3168
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
3169
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
3170
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
3171
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
3172
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
3173
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
3174
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
3089
3175
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
3090
3176
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
3091
3177
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -3628,6 +3714,7 @@ module Aws::MediaLive
|
|
3628
3714
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
3629
3715
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
3630
3716
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
3717
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
3631
3718
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
3632
3719
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
3633
3720
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -3652,6 +3739,7 @@ module Aws::MediaLive
|
|
3652
3739
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
3653
3740
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
3654
3741
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
3742
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
3655
3743
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
3656
3744
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
3657
3745
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -3699,6 +3787,8 @@ module Aws::MediaLive
|
|
3699
3787
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
3700
3788
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
3701
3789
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
3790
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
3791
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
3702
3792
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
3703
3793
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
3704
3794
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -3966,6 +4056,13 @@ module Aws::MediaLive
|
|
3966
4056
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
3967
4057
|
# resp.id #=> String
|
3968
4058
|
# resp.input_attachments #=> Array
|
4059
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
4060
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
4061
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
4062
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
4063
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
4064
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
4065
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
3969
4066
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
3970
4067
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
3971
4068
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -4121,6 +4218,7 @@ module Aws::MediaLive
|
|
4121
4218
|
# * {Types::DescribeInputDeviceResponse#arn #arn} => String
|
4122
4219
|
# * {Types::DescribeInputDeviceResponse#connection_state #connection_state} => String
|
4123
4220
|
# * {Types::DescribeInputDeviceResponse#device_settings_sync_state #device_settings_sync_state} => String
|
4221
|
+
# * {Types::DescribeInputDeviceResponse#device_update_status #device_update_status} => String
|
4124
4222
|
# * {Types::DescribeInputDeviceResponse#hd_device_settings #hd_device_settings} => Types::InputDeviceHdSettings
|
4125
4223
|
# * {Types::DescribeInputDeviceResponse#id #id} => String
|
4126
4224
|
# * {Types::DescribeInputDeviceResponse#mac_address #mac_address} => String
|
@@ -4128,6 +4226,7 @@ module Aws::MediaLive
|
|
4128
4226
|
# * {Types::DescribeInputDeviceResponse#network_settings #network_settings} => Types::InputDeviceNetworkSettings
|
4129
4227
|
# * {Types::DescribeInputDeviceResponse#serial_number #serial_number} => String
|
4130
4228
|
# * {Types::DescribeInputDeviceResponse#type #type} => String
|
4229
|
+
# * {Types::DescribeInputDeviceResponse#uhd_device_settings #uhd_device_settings} => Types::InputDeviceUhdSettings
|
4131
4230
|
#
|
4132
4231
|
# @example Request syntax with placeholder values
|
4133
4232
|
#
|
@@ -4140,6 +4239,7 @@ module Aws::MediaLive
|
|
4140
4239
|
# resp.arn #=> String
|
4141
4240
|
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
4142
4241
|
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
4242
|
+
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
4143
4243
|
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4144
4244
|
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4145
4245
|
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -4159,6 +4259,14 @@ module Aws::MediaLive
|
|
4159
4259
|
# resp.network_settings.subnet_mask #=> String
|
4160
4260
|
# resp.serial_number #=> String
|
4161
4261
|
# resp.type #=> String, one of "HD"
|
4262
|
+
# resp.uhd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4263
|
+
# resp.uhd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4264
|
+
# resp.uhd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
4265
|
+
# resp.uhd_device_settings.framerate #=> Float
|
4266
|
+
# resp.uhd_device_settings.height #=> Integer
|
4267
|
+
# resp.uhd_device_settings.max_bitrate #=> Integer
|
4268
|
+
# resp.uhd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4269
|
+
# resp.uhd_device_settings.width #=> Integer
|
4162
4270
|
#
|
4163
4271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDevice AWS API Documentation
|
4164
4272
|
#
|
@@ -4624,6 +4732,13 @@ module Aws::MediaLive
|
|
4624
4732
|
# resp.channels[0].egress_endpoints[0].source_ip #=> String
|
4625
4733
|
# resp.channels[0].id #=> String
|
4626
4734
|
# resp.channels[0].input_attachments #=> Array
|
4735
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
4736
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
4737
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
4738
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
4739
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
4740
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
4741
|
+
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
4627
4742
|
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
4628
4743
|
# resp.channels[0].input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
4629
4744
|
# resp.channels[0].input_attachments[0].input_attachment_name #=> String
|
@@ -4684,6 +4799,49 @@ module Aws::MediaLive
|
|
4684
4799
|
req.send_request(options)
|
4685
4800
|
end
|
4686
4801
|
|
4802
|
+
# List input devices that are currently being transferred. List input
|
4803
|
+
# devices that you are transferring from your AWS account or input
|
4804
|
+
# devices that another AWS account is transferring to you.
|
4805
|
+
#
|
4806
|
+
# @option params [Integer] :max_results
|
4807
|
+
#
|
4808
|
+
# @option params [String] :next_token
|
4809
|
+
#
|
4810
|
+
# @option params [required, String] :transfer_type
|
4811
|
+
#
|
4812
|
+
# @return [Types::ListInputDeviceTransfersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4813
|
+
#
|
4814
|
+
# * {Types::ListInputDeviceTransfersResponse#input_device_transfers #input_device_transfers} => Array<Types::TransferringInputDeviceSummary>
|
4815
|
+
# * {Types::ListInputDeviceTransfersResponse#next_token #next_token} => String
|
4816
|
+
#
|
4817
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4818
|
+
#
|
4819
|
+
# @example Request syntax with placeholder values
|
4820
|
+
#
|
4821
|
+
# resp = client.list_input_device_transfers({
|
4822
|
+
# max_results: 1,
|
4823
|
+
# next_token: "__string",
|
4824
|
+
# transfer_type: "__string", # required
|
4825
|
+
# })
|
4826
|
+
#
|
4827
|
+
# @example Response structure
|
4828
|
+
#
|
4829
|
+
# resp.input_device_transfers #=> Array
|
4830
|
+
# resp.input_device_transfers[0].id #=> String
|
4831
|
+
# resp.input_device_transfers[0].message #=> String
|
4832
|
+
# resp.input_device_transfers[0].target_customer_id #=> String
|
4833
|
+
# resp.input_device_transfers[0].transfer_type #=> String, one of "OUTGOING", "INCOMING"
|
4834
|
+
# resp.next_token #=> String
|
4835
|
+
#
|
4836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfers AWS API Documentation
|
4837
|
+
#
|
4838
|
+
# @overload list_input_device_transfers(params = {})
|
4839
|
+
# @param [Hash] params ({})
|
4840
|
+
def list_input_device_transfers(params = {}, options = {})
|
4841
|
+
req = build_request(:list_input_device_transfers, params)
|
4842
|
+
req.send_request(options)
|
4843
|
+
end
|
4844
|
+
|
4687
4845
|
# List input devices
|
4688
4846
|
#
|
4689
4847
|
# @option params [Integer] :max_results
|
@@ -4710,6 +4868,7 @@ module Aws::MediaLive
|
|
4710
4868
|
# resp.input_devices[0].arn #=> String
|
4711
4869
|
# resp.input_devices[0].connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
4712
4870
|
# resp.input_devices[0].device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
4871
|
+
# resp.input_devices[0].device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
4713
4872
|
# resp.input_devices[0].hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4714
4873
|
# resp.input_devices[0].hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4715
4874
|
# resp.input_devices[0].hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -4729,6 +4888,14 @@ module Aws::MediaLive
|
|
4729
4888
|
# resp.input_devices[0].network_settings.subnet_mask #=> String
|
4730
4889
|
# resp.input_devices[0].serial_number #=> String
|
4731
4890
|
# resp.input_devices[0].type #=> String, one of "HD"
|
4891
|
+
# resp.input_devices[0].uhd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4892
|
+
# resp.input_devices[0].uhd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4893
|
+
# resp.input_devices[0].uhd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
4894
|
+
# resp.input_devices[0].uhd_device_settings.framerate #=> Float
|
4895
|
+
# resp.input_devices[0].uhd_device_settings.height #=> Integer
|
4896
|
+
# resp.input_devices[0].uhd_device_settings.max_bitrate #=> Integer
|
4897
|
+
# resp.input_devices[0].uhd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
4898
|
+
# resp.input_devices[0].uhd_device_settings.width #=> Integer
|
4732
4899
|
# resp.next_token #=> String
|
4733
4900
|
#
|
4734
4901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevices AWS API Documentation
|
@@ -5194,6 +5361,27 @@ module Aws::MediaLive
|
|
5194
5361
|
req.send_request(options)
|
5195
5362
|
end
|
5196
5363
|
|
5364
|
+
# Reject the transfer of the specified input device to your AWS account.
|
5365
|
+
#
|
5366
|
+
# @option params [required, String] :input_device_id
|
5367
|
+
#
|
5368
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5369
|
+
#
|
5370
|
+
# @example Request syntax with placeholder values
|
5371
|
+
#
|
5372
|
+
# resp = client.reject_input_device_transfer({
|
5373
|
+
# input_device_id: "__string", # required
|
5374
|
+
# })
|
5375
|
+
#
|
5376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransfer AWS API Documentation
|
5377
|
+
#
|
5378
|
+
# @overload reject_input_device_transfer(params = {})
|
5379
|
+
# @param [Hash] params ({})
|
5380
|
+
def reject_input_device_transfer(params = {}, options = {})
|
5381
|
+
req = build_request(:reject_input_device_transfer, params)
|
5382
|
+
req.send_request(options)
|
5383
|
+
end
|
5384
|
+
|
5197
5385
|
# Starts an existing channel
|
5198
5386
|
#
|
5199
5387
|
# @option params [required, String] :channel_id
|
@@ -5403,6 +5591,7 @@ module Aws::MediaLive
|
|
5403
5591
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
5404
5592
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
5405
5593
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
5594
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
5406
5595
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
5407
5596
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
5408
5597
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -5427,6 +5616,7 @@ module Aws::MediaLive
|
|
5427
5616
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
5428
5617
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
5429
5618
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
5619
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
5430
5620
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
5431
5621
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
5432
5622
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -5474,6 +5664,8 @@ module Aws::MediaLive
|
|
5474
5664
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
5475
5665
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
5476
5666
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
5667
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
5668
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
5477
5669
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
5478
5670
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
5479
5671
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -5741,6 +5933,13 @@ module Aws::MediaLive
|
|
5741
5933
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
5742
5934
|
# resp.id #=> String
|
5743
5935
|
# resp.input_attachments #=> Array
|
5936
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
5937
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
5938
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
5939
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
5940
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
5941
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
5942
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
5744
5943
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
5745
5944
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
5746
5945
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -6065,6 +6264,7 @@ module Aws::MediaLive
|
|
6065
6264
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
6066
6265
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
6067
6266
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
6267
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
6068
6268
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
6069
6269
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
6070
6270
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -6089,6 +6289,7 @@ module Aws::MediaLive
|
|
6089
6289
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
6090
6290
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
6091
6291
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
6292
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
6092
6293
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
6093
6294
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
6094
6295
|
# resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -6136,6 +6337,8 @@ module Aws::MediaLive
|
|
6136
6337
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
6137
6338
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
6138
6339
|
# resp.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
6340
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
6341
|
+
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
6139
6342
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
6140
6343
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
6141
6344
|
# resp.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -6403,6 +6606,13 @@ module Aws::MediaLive
|
|
6403
6606
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
6404
6607
|
# resp.id #=> String
|
6405
6608
|
# resp.input_attachments #=> Array
|
6609
|
+
# resp.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
6610
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
6611
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
6612
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
6613
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
6614
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
6615
|
+
# resp.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
6406
6616
|
# resp.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
6407
6617
|
# resp.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
6408
6618
|
# resp.input_attachments[0].input_attachment_name #=> String
|
@@ -6518,6 +6728,34 @@ module Aws::MediaLive
|
|
6518
6728
|
req.send_request(options)
|
6519
6729
|
end
|
6520
6730
|
|
6731
|
+
# Start an input device transfer to another AWS account. After you make
|
6732
|
+
# the request, the other account must accept or reject the transfer.
|
6733
|
+
#
|
6734
|
+
# @option params [required, String] :input_device_id
|
6735
|
+
#
|
6736
|
+
# @option params [String] :target_customer_id
|
6737
|
+
#
|
6738
|
+
# @option params [String] :transfer_message
|
6739
|
+
#
|
6740
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
6741
|
+
#
|
6742
|
+
# @example Request syntax with placeholder values
|
6743
|
+
#
|
6744
|
+
# resp = client.transfer_input_device({
|
6745
|
+
# input_device_id: "__string", # required
|
6746
|
+
# target_customer_id: "__string",
|
6747
|
+
# transfer_message: "__string",
|
6748
|
+
# })
|
6749
|
+
#
|
6750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
|
6751
|
+
#
|
6752
|
+
# @overload transfer_input_device(params = {})
|
6753
|
+
# @param [Hash] params ({})
|
6754
|
+
def transfer_input_device(params = {}, options = {})
|
6755
|
+
req = build_request(:transfer_input_device, params)
|
6756
|
+
req.send_request(options)
|
6757
|
+
end
|
6758
|
+
|
6521
6759
|
# Updates a channel.
|
6522
6760
|
#
|
6523
6761
|
# @option params [Types::CdiInputSpecification] :cdi_input_specification
|
@@ -6841,6 +7079,7 @@ module Aws::MediaLive
|
|
6841
7079
|
# destination_ref_id: "__string",
|
6842
7080
|
# },
|
6843
7081
|
# directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
|
7082
|
+
# discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
|
6844
7083
|
# encryption_type: "AES128", # accepts AES128, SAMPLE_AES
|
6845
7084
|
# hls_cdn_settings: {
|
6846
7085
|
# hls_akamai_settings: {
|
@@ -6875,6 +7114,7 @@ module Aws::MediaLive
|
|
6875
7114
|
# },
|
6876
7115
|
# hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
|
6877
7116
|
# i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
|
7117
|
+
# incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
|
6878
7118
|
# index_n_segments: 1,
|
6879
7119
|
# input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
|
6880
7120
|
# iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
|
@@ -6940,6 +7180,7 @@ module Aws::MediaLive
|
|
6940
7180
|
# multiplex_group_settings: {
|
6941
7181
|
# },
|
6942
7182
|
# rtmp_group_settings: {
|
7183
|
+
# ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
|
6943
7184
|
# authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
|
6944
7185
|
# cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
|
6945
7186
|
# cache_length: 1,
|
@@ -7321,6 +7562,24 @@ module Aws::MediaLive
|
|
7321
7562
|
# input_attachments: [
|
7322
7563
|
# {
|
7323
7564
|
# automatic_input_failover_settings: {
|
7565
|
+
# error_clear_time_msec: 1,
|
7566
|
+
# failover_conditions: [
|
7567
|
+
# {
|
7568
|
+
# failover_condition_settings: {
|
7569
|
+
# audio_silence_settings: {
|
7570
|
+
# audio_selector_name: "__string", # required
|
7571
|
+
# audio_silence_threshold_msec: 1,
|
7572
|
+
# },
|
7573
|
+
# input_loss_settings: {
|
7574
|
+
# input_loss_threshold_msec: 1,
|
7575
|
+
# },
|
7576
|
+
# video_black_settings: {
|
7577
|
+
# black_detect_threshold: 1.0,
|
7578
|
+
# video_black_threshold_msec: 1,
|
7579
|
+
# },
|
7580
|
+
# },
|
7581
|
+
# },
|
7582
|
+
# ],
|
7324
7583
|
# input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
|
7325
7584
|
# secondary_input_id: "__string", # required
|
7326
7585
|
# },
|
@@ -7600,6 +7859,7 @@ module Aws::MediaLive
|
|
7600
7859
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
7601
7860
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
7602
7861
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
7862
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
7603
7863
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
7604
7864
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
7605
7865
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -7624,6 +7884,7 @@ module Aws::MediaLive
|
|
7624
7884
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
7625
7885
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
7626
7886
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
7887
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
7627
7888
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
7628
7889
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
7629
7890
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -7671,6 +7932,8 @@ module Aws::MediaLive
|
|
7671
7932
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
7672
7933
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
7673
7934
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
7935
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
7936
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
7674
7937
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
7675
7938
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
7676
7939
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -7938,6 +8201,13 @@ module Aws::MediaLive
|
|
7938
8201
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
7939
8202
|
# resp.channel.id #=> String
|
7940
8203
|
# resp.channel.input_attachments #=> Array
|
8204
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
8205
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
8206
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
8207
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
8208
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
8209
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
8210
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
7941
8211
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
7942
8212
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
7943
8213
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
@@ -8224,6 +8494,7 @@ module Aws::MediaLive
|
|
8224
8494
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.constant_iv #=> String
|
8225
8495
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.destination.destination_ref_id #=> String
|
8226
8496
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.directory_structure #=> String, one of "SINGLE_DIRECTORY", "SUBDIRECTORY_PER_STREAM"
|
8497
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.discontinuity_tags #=> String, one of "INSERT", "NEVER_INSERT"
|
8227
8498
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.encryption_type #=> String, one of "AES128", "SAMPLE_AES"
|
8228
8499
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.connection_retry_interval #=> Integer
|
8229
8500
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_akamai_settings.filecache_duration #=> Integer
|
@@ -8248,6 +8519,7 @@ module Aws::MediaLive
|
|
8248
8519
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_cdn_settings.hls_webdav_settings.restart_delay #=> Integer
|
8249
8520
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.hls_id_3_segment_tagging #=> String, one of "DISABLED", "ENABLED"
|
8250
8521
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.i_frame_only_playlists #=> String, one of "DISABLED", "STANDARD"
|
8522
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.incomplete_segment_behavior #=> String, one of "AUTO", "SUPPRESS"
|
8251
8523
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.index_n_segments #=> Integer
|
8252
8524
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.input_loss_action #=> String, one of "EMIT_OUTPUT", "PAUSE_OUTPUT"
|
8253
8525
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.iv_in_manifest #=> String, one of "EXCLUDE", "INCLUDE"
|
@@ -8295,6 +8567,8 @@ module Aws::MediaLive
|
|
8295
8567
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.stream_manifest_behavior #=> String, one of "DO_NOT_SEND", "SEND"
|
8296
8568
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset #=> String
|
8297
8569
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.ms_smooth_group_settings.timestamp_offset_mode #=> String, one of "USE_CONFIGURED_OFFSET", "USE_EVENT_START_DATE"
|
8570
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers #=> Array
|
8571
|
+
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.ad_markers[0] #=> String, one of "ON_CUE_POINT_SCTE35"
|
8298
8572
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.authentication_scheme #=> String, one of "AKAMAI", "COMMON"
|
8299
8573
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_full_behavior #=> String, one of "DISCONNECT_IMMEDIATELY", "WAIT_FOR_SERVER"
|
8300
8574
|
# resp.channel.encoder_settings.output_groups[0].output_group_settings.rtmp_group_settings.cache_length #=> Integer
|
@@ -8562,6 +8836,13 @@ module Aws::MediaLive
|
|
8562
8836
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
8563
8837
|
# resp.channel.id #=> String
|
8564
8838
|
# resp.channel.input_attachments #=> Array
|
8839
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.error_clear_time_msec #=> Integer
|
8840
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions #=> Array
|
8841
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_selector_name #=> String
|
8842
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.audio_silence_settings.audio_silence_threshold_msec #=> Integer
|
8843
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.input_loss_settings.input_loss_threshold_msec #=> Integer
|
8844
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.black_detect_threshold #=> Float
|
8845
|
+
# resp.channel.input_attachments[0].automatic_input_failover_settings.failover_conditions[0].failover_condition_settings.video_black_settings.video_black_threshold_msec #=> Integer
|
8565
8846
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.input_preference #=> String, one of "EQUAL_INPUT_PREFERENCE", "PRIMARY_INPUT_PREFERRED"
|
8566
8847
|
# resp.channel.input_attachments[0].automatic_input_failover_settings.secondary_input_id #=> String
|
8567
8848
|
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
@@ -8727,11 +9008,15 @@ module Aws::MediaLive
|
|
8727
9008
|
#
|
8728
9009
|
# @option params [String] :name
|
8729
9010
|
#
|
9011
|
+
# @option params [Types::InputDeviceConfigurableSettings] :uhd_device_settings
|
9012
|
+
# Configurable settings for the input device.
|
9013
|
+
#
|
8730
9014
|
# @return [Types::UpdateInputDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8731
9015
|
#
|
8732
9016
|
# * {Types::UpdateInputDeviceResponse#arn #arn} => String
|
8733
9017
|
# * {Types::UpdateInputDeviceResponse#connection_state #connection_state} => String
|
8734
9018
|
# * {Types::UpdateInputDeviceResponse#device_settings_sync_state #device_settings_sync_state} => String
|
9019
|
+
# * {Types::UpdateInputDeviceResponse#device_update_status #device_update_status} => String
|
8735
9020
|
# * {Types::UpdateInputDeviceResponse#hd_device_settings #hd_device_settings} => Types::InputDeviceHdSettings
|
8736
9021
|
# * {Types::UpdateInputDeviceResponse#id #id} => String
|
8737
9022
|
# * {Types::UpdateInputDeviceResponse#mac_address #mac_address} => String
|
@@ -8739,6 +9024,7 @@ module Aws::MediaLive
|
|
8739
9024
|
# * {Types::UpdateInputDeviceResponse#network_settings #network_settings} => Types::InputDeviceNetworkSettings
|
8740
9025
|
# * {Types::UpdateInputDeviceResponse#serial_number #serial_number} => String
|
8741
9026
|
# * {Types::UpdateInputDeviceResponse#type #type} => String
|
9027
|
+
# * {Types::UpdateInputDeviceResponse#uhd_device_settings #uhd_device_settings} => Types::InputDeviceUhdSettings
|
8742
9028
|
#
|
8743
9029
|
# @example Request syntax with placeholder values
|
8744
9030
|
#
|
@@ -8749,6 +9035,10 @@ module Aws::MediaLive
|
|
8749
9035
|
# },
|
8750
9036
|
# input_device_id: "__string", # required
|
8751
9037
|
# name: "__string",
|
9038
|
+
# uhd_device_settings: {
|
9039
|
+
# configured_input: "AUTO", # accepts AUTO, HDMI, SDI
|
9040
|
+
# max_bitrate: 1,
|
9041
|
+
# },
|
8752
9042
|
# })
|
8753
9043
|
#
|
8754
9044
|
# @example Response structure
|
@@ -8756,6 +9046,7 @@ module Aws::MediaLive
|
|
8756
9046
|
# resp.arn #=> String
|
8757
9047
|
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
8758
9048
|
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
9049
|
+
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
8759
9050
|
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
8760
9051
|
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
8761
9052
|
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -8775,6 +9066,14 @@ module Aws::MediaLive
|
|
8775
9066
|
# resp.network_settings.subnet_mask #=> String
|
8776
9067
|
# resp.serial_number #=> String
|
8777
9068
|
# resp.type #=> String, one of "HD"
|
9069
|
+
# resp.uhd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
9070
|
+
# resp.uhd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
9071
|
+
# resp.uhd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
9072
|
+
# resp.uhd_device_settings.framerate #=> Float
|
9073
|
+
# resp.uhd_device_settings.height #=> Integer
|
9074
|
+
# resp.uhd_device_settings.max_bitrate #=> Integer
|
9075
|
+
# resp.uhd_device_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
|
9076
|
+
# resp.uhd_device_settings.width #=> Integer
|
8778
9077
|
#
|
8779
9078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
|
8780
9079
|
#
|
@@ -9032,7 +9331,7 @@ module Aws::MediaLive
|
|
9032
9331
|
params: params,
|
9033
9332
|
config: config)
|
9034
9333
|
context[:gem_name] = 'aws-sdk-medialive'
|
9035
|
-
context[:gem_version] = '1.
|
9334
|
+
context[:gem_version] = '1.61.0'
|
9036
9335
|
Seahorse::Client::Request.new(handlers, context)
|
9037
9336
|
end
|
9038
9337
|
|