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.
@@ -159,6 +159,28 @@ module Aws::MediaLive
159
159
  include Aws::Structure
160
160
  end
161
161
 
162
+ # @note When making an API call, you may pass AcceptInputDeviceTransferRequest
163
+ # data as a hash:
164
+ #
165
+ # {
166
+ # input_device_id: "__string", # required
167
+ # }
168
+ #
169
+ # @!attribute [rw] input_device_id
170
+ # @return [String]
171
+ #
172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferRequest AWS API Documentation
173
+ #
174
+ class AcceptInputDeviceTransferRequest < Struct.new(
175
+ :input_device_id)
176
+ SENSITIVE = []
177
+ include Aws::Structure
178
+ end
179
+
180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AcceptInputDeviceTransferResponse AWS API Documentation
181
+ #
182
+ class AcceptInputDeviceTransferResponse < Aws::EmptyStructure; end
183
+
162
184
  # @!attribute [rw] message
163
185
  # @return [String]
164
186
  #
@@ -964,6 +986,35 @@ module Aws::MediaLive
964
986
  include Aws::Structure
965
987
  end
966
988
 
989
+ # @note When making an API call, you may pass AudioSilenceFailoverSettings
990
+ # data as a hash:
991
+ #
992
+ # {
993
+ # audio_selector_name: "__string", # required
994
+ # audio_silence_threshold_msec: 1,
995
+ # }
996
+ #
997
+ # @!attribute [rw] audio_selector_name
998
+ # The name of the audio selector in the input that MediaLive should
999
+ # monitor to detect silence. Select your most important rendition. If
1000
+ # you didn't create an audio selector in this input, leave blank.
1001
+ # @return [String]
1002
+ #
1003
+ # @!attribute [rw] audio_silence_threshold_msec
1004
+ # The amount of time (in milliseconds) that the active input must be
1005
+ # silent before automatic input failover occurs. Silence is defined as
1006
+ # audio loss or audio quieter than -50 dBFS.
1007
+ # @return [Integer]
1008
+ #
1009
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSilenceFailoverSettings AWS API Documentation
1010
+ #
1011
+ class AudioSilenceFailoverSettings < Struct.new(
1012
+ :audio_selector_name,
1013
+ :audio_silence_threshold_msec)
1014
+ SENSITIVE = []
1015
+ include Aws::Structure
1016
+ end
1017
+
967
1018
  # Audio Track
968
1019
  #
969
1020
  # @note When making an API call, you may pass AudioTrack
@@ -1016,10 +1067,42 @@ module Aws::MediaLive
1016
1067
  # data as a hash:
1017
1068
  #
1018
1069
  # {
1070
+ # error_clear_time_msec: 1,
1071
+ # failover_conditions: [
1072
+ # {
1073
+ # failover_condition_settings: {
1074
+ # audio_silence_settings: {
1075
+ # audio_selector_name: "__string", # required
1076
+ # audio_silence_threshold_msec: 1,
1077
+ # },
1078
+ # input_loss_settings: {
1079
+ # input_loss_threshold_msec: 1,
1080
+ # },
1081
+ # video_black_settings: {
1082
+ # black_detect_threshold: 1.0,
1083
+ # video_black_threshold_msec: 1,
1084
+ # },
1085
+ # },
1086
+ # },
1087
+ # ],
1019
1088
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
1020
1089
  # secondary_input_id: "__string", # required
1021
1090
  # }
1022
1091
  #
1092
+ # @!attribute [rw] error_clear_time_msec
1093
+ # This clear time defines the requirement a recovered input must meet
1094
+ # to be considered healthy. The input must have no failover conditions
1095
+ # for this length of time. Enter a time in milliseconds. This value is
1096
+ # particularly important if the input\_preference for the failover
1097
+ # pair is set to PRIMARY\_INPUT\_PREFERRED, because after this time,
1098
+ # MediaLive will switch back to the primary input.
1099
+ # @return [Integer]
1100
+ #
1101
+ # @!attribute [rw] failover_conditions
1102
+ # A list of failover conditions. If any of these conditions occur,
1103
+ # MediaLive will perform a failover to the other input.
1104
+ # @return [Array<Types::FailoverCondition>]
1105
+ #
1023
1106
  # @!attribute [rw] input_preference
1024
1107
  # Input preference when deciding which input to make active when a
1025
1108
  # previously failed input has recovered.
@@ -1033,6 +1116,8 @@ module Aws::MediaLive
1033
1116
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AutomaticInputFailoverSettings AWS API Documentation
1034
1117
  #
1035
1118
  class AutomaticInputFailoverSettings < Struct.new(
1119
+ :error_clear_time_msec,
1120
+ :failover_conditions,
1036
1121
  :input_preference,
1037
1122
  :secondary_input_id)
1038
1123
  SENSITIVE = []
@@ -2064,6 +2149,28 @@ module Aws::MediaLive
2064
2149
  include Aws::Structure
2065
2150
  end
2066
2151
 
2152
+ # @note When making an API call, you may pass CancelInputDeviceTransferRequest
2153
+ # data as a hash:
2154
+ #
2155
+ # {
2156
+ # input_device_id: "__string", # required
2157
+ # }
2158
+ #
2159
+ # @!attribute [rw] input_device_id
2160
+ # @return [String]
2161
+ #
2162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferRequest AWS API Documentation
2163
+ #
2164
+ class CancelInputDeviceTransferRequest < Struct.new(
2165
+ :input_device_id)
2166
+ SENSITIVE = []
2167
+ include Aws::Structure
2168
+ end
2169
+
2170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CancelInputDeviceTransferResponse AWS API Documentation
2171
+ #
2172
+ class CancelInputDeviceTransferResponse < Aws::EmptyStructure; end
2173
+
2067
2174
  # Caption Description
2068
2175
  #
2069
2176
  # @note When making an API call, you may pass CaptionDescription
@@ -3115,6 +3222,7 @@ module Aws::MediaLive
3115
3222
  # destination_ref_id: "__string",
3116
3223
  # },
3117
3224
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
3225
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
3118
3226
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
3119
3227
  # hls_cdn_settings: {
3120
3228
  # hls_akamai_settings: {
@@ -3149,6 +3257,7 @@ module Aws::MediaLive
3149
3257
  # },
3150
3258
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
3151
3259
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
3260
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
3152
3261
  # index_n_segments: 1,
3153
3262
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
3154
3263
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -3214,6 +3323,7 @@ module Aws::MediaLive
3214
3323
  # multiplex_group_settings: {
3215
3324
  # },
3216
3325
  # rtmp_group_settings: {
3326
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
3217
3327
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
3218
3328
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
3219
3329
  # cache_length: 1,
@@ -3595,6 +3705,24 @@ module Aws::MediaLive
3595
3705
  # input_attachments: [
3596
3706
  # {
3597
3707
  # automatic_input_failover_settings: {
3708
+ # error_clear_time_msec: 1,
3709
+ # failover_conditions: [
3710
+ # {
3711
+ # failover_condition_settings: {
3712
+ # audio_silence_settings: {
3713
+ # audio_selector_name: "__string", # required
3714
+ # audio_silence_threshold_msec: 1,
3715
+ # },
3716
+ # input_loss_settings: {
3717
+ # input_loss_threshold_msec: 1,
3718
+ # },
3719
+ # video_black_settings: {
3720
+ # black_detect_threshold: 1.0,
3721
+ # video_black_threshold_msec: 1,
3722
+ # },
3723
+ # },
3724
+ # },
3725
+ # ],
3598
3726
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
3599
3727
  # secondary_input_id: "__string", # required
3600
3728
  # },
@@ -4786,6 +4914,10 @@ module Aws::MediaLive
4786
4914
  # its configuration.
4787
4915
  # @return [String]
4788
4916
  #
4917
+ # @!attribute [rw] device_update_status
4918
+ # The status of software on the input device.
4919
+ # @return [String]
4920
+ #
4789
4921
  # @!attribute [rw] hd_device_settings
4790
4922
  # Settings that describe the active source from the input device, and
4791
4923
  # the video characteristics of that source.
@@ -4812,19 +4944,26 @@ module Aws::MediaLive
4812
4944
  # outputs resolutions up to 1080, choose "HD".
4813
4945
  # @return [String]
4814
4946
  #
4947
+ # @!attribute [rw] uhd_device_settings
4948
+ # Settings that describe the active source from the input device, and
4949
+ # the video characteristics of that source.
4950
+ # @return [Types::InputDeviceUhdSettings]
4951
+ #
4815
4952
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceResponse AWS API Documentation
4816
4953
  #
4817
4954
  class DescribeInputDeviceResponse < Struct.new(
4818
4955
  :arn,
4819
4956
  :connection_state,
4820
4957
  :device_settings_sync_state,
4958
+ :device_update_status,
4821
4959
  :hd_device_settings,
4822
4960
  :id,
4823
4961
  :mac_address,
4824
4962
  :name,
4825
4963
  :network_settings,
4826
4964
  :serial_number,
4827
- :type)
4965
+ :type,
4966
+ :uhd_device_settings)
4828
4967
  SENSITIVE = []
4829
4968
  include Aws::Structure
4830
4969
  end
@@ -6211,6 +6350,7 @@ module Aws::MediaLive
6211
6350
  # destination_ref_id: "__string",
6212
6351
  # },
6213
6352
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
6353
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
6214
6354
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
6215
6355
  # hls_cdn_settings: {
6216
6356
  # hls_akamai_settings: {
@@ -6245,6 +6385,7 @@ module Aws::MediaLive
6245
6385
  # },
6246
6386
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
6247
6387
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
6388
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
6248
6389
  # index_n_segments: 1,
6249
6390
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
6250
6391
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -6310,6 +6451,7 @@ module Aws::MediaLive
6310
6451
  # multiplex_group_settings: {
6311
6452
  # },
6312
6453
  # rtmp_group_settings: {
6454
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
6313
6455
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
6314
6456
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
6315
6457
  # cache_length: 1,
@@ -6749,6 +6891,84 @@ module Aws::MediaLive
6749
6891
  include Aws::Structure
6750
6892
  end
6751
6893
 
6894
+ # Failover Condition settings. There can be multiple failover conditions
6895
+ # inside AutomaticInputFailoverSettings.
6896
+ #
6897
+ # @note When making an API call, you may pass FailoverCondition
6898
+ # data as a hash:
6899
+ #
6900
+ # {
6901
+ # failover_condition_settings: {
6902
+ # audio_silence_settings: {
6903
+ # audio_selector_name: "__string", # required
6904
+ # audio_silence_threshold_msec: 1,
6905
+ # },
6906
+ # input_loss_settings: {
6907
+ # input_loss_threshold_msec: 1,
6908
+ # },
6909
+ # video_black_settings: {
6910
+ # black_detect_threshold: 1.0,
6911
+ # video_black_threshold_msec: 1,
6912
+ # },
6913
+ # },
6914
+ # }
6915
+ #
6916
+ # @!attribute [rw] failover_condition_settings
6917
+ # Failover condition type-specific settings.
6918
+ # @return [Types::FailoverConditionSettings]
6919
+ #
6920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverCondition AWS API Documentation
6921
+ #
6922
+ class FailoverCondition < Struct.new(
6923
+ :failover_condition_settings)
6924
+ SENSITIVE = []
6925
+ include Aws::Structure
6926
+ end
6927
+
6928
+ # Settings for one failover condition.
6929
+ #
6930
+ # @note When making an API call, you may pass FailoverConditionSettings
6931
+ # data as a hash:
6932
+ #
6933
+ # {
6934
+ # audio_silence_settings: {
6935
+ # audio_selector_name: "__string", # required
6936
+ # audio_silence_threshold_msec: 1,
6937
+ # },
6938
+ # input_loss_settings: {
6939
+ # input_loss_threshold_msec: 1,
6940
+ # },
6941
+ # video_black_settings: {
6942
+ # black_detect_threshold: 1.0,
6943
+ # video_black_threshold_msec: 1,
6944
+ # },
6945
+ # }
6946
+ #
6947
+ # @!attribute [rw] audio_silence_settings
6948
+ # MediaLive will perform a failover if the specified audio selector is
6949
+ # silent for the specified period.
6950
+ # @return [Types::AudioSilenceFailoverSettings]
6951
+ #
6952
+ # @!attribute [rw] input_loss_settings
6953
+ # MediaLive will perform a failover if content is not detected in this
6954
+ # input for the specified period.
6955
+ # @return [Types::InputLossFailoverSettings]
6956
+ #
6957
+ # @!attribute [rw] video_black_settings
6958
+ # MediaLive will perform a failover if content is considered black for
6959
+ # the specified period.
6960
+ # @return [Types::VideoBlackFailoverSettings]
6961
+ #
6962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FailoverConditionSettings AWS API Documentation
6963
+ #
6964
+ class FailoverConditionSettings < Struct.new(
6965
+ :audio_silence_settings,
6966
+ :input_loss_settings,
6967
+ :video_black_settings)
6968
+ SENSITIVE = []
6969
+ include Aws::Structure
6970
+ end
6971
+
6752
6972
  # Feature Activations
6753
6973
  #
6754
6974
  # @note When making an API call, you may pass FeatureActivations
@@ -8056,6 +8276,7 @@ module Aws::MediaLive
8056
8276
  # destination_ref_id: "__string",
8057
8277
  # },
8058
8278
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
8279
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
8059
8280
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
8060
8281
  # hls_cdn_settings: {
8061
8282
  # hls_akamai_settings: {
@@ -8090,6 +8311,7 @@ module Aws::MediaLive
8090
8311
  # },
8091
8312
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
8092
8313
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
8314
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
8093
8315
  # index_n_segments: 1,
8094
8316
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
8095
8317
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -8202,6 +8424,16 @@ module Aws::MediaLive
8202
8424
  # Place segments in subdirectories.
8203
8425
  # @return [String]
8204
8426
  #
8427
+ # @!attribute [rw] discontinuity_tags
8428
+ # Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS
8429
+ # child manifests for this output group. Typically, choose Insert
8430
+ # because these tags are required in the manifest (according to the
8431
+ # HLS specification) and serve an important purpose. Choose Never
8432
+ # Insert only if the downstream system is doing real-time failover
8433
+ # (without using the MediaLive automatic failover feature) and only if
8434
+ # that downstream system has advised you to exclude the tags.
8435
+ # @return [String]
8436
+ #
8205
8437
  # @!attribute [rw] encryption_type
8206
8438
  # Encrypts the segments with the given encryption scheme. Exclude this
8207
8439
  # parameter if no encryption is desired.
@@ -8226,6 +8458,16 @@ module Aws::MediaLive
8226
8458
  # example, #EXT-X-BYTERANGE:160364@1461888"
8227
8459
  # @return [String]
8228
8460
  #
8461
+ # @!attribute [rw] incomplete_segment_behavior
8462
+ # Specifies whether to include the final (incomplete) segment in the
8463
+ # media output when the pipeline stops producing output because of a
8464
+ # channel stop, a channel pause or a loss of input to the pipeline.
8465
+ # Auto means that MediaLive decides whether to include the final
8466
+ # segment, depending on the channel class and the types of output
8467
+ # groups. Suppress means to never include the incomplete segment. We
8468
+ # recommend you choose Auto and let MediaLive control the behavior.
8469
+ # @return [String]
8470
+ #
8229
8471
  # @!attribute [rw] index_n_segments
8230
8472
  # Applies only if Mode field is LIVE. Specifies the maximum number of
8231
8473
  # segments in the media manifest file. After this maximum, older
@@ -8401,10 +8643,12 @@ module Aws::MediaLive
8401
8643
  :constant_iv,
8402
8644
  :destination,
8403
8645
  :directory_structure,
8646
+ :discontinuity_tags,
8404
8647
  :encryption_type,
8405
8648
  :hls_cdn_settings,
8406
8649
  :hls_id_3_segment_tagging,
8407
8650
  :i_frame_only_playlists,
8651
+ :incomplete_segment_behavior,
8408
8652
  :index_n_segments,
8409
8653
  :input_loss_action,
8410
8654
  :iv_in_manifest,
@@ -8877,6 +9121,24 @@ module Aws::MediaLive
8877
9121
  #
8878
9122
  # {
8879
9123
  # automatic_input_failover_settings: {
9124
+ # error_clear_time_msec: 1,
9125
+ # failover_conditions: [
9126
+ # {
9127
+ # failover_condition_settings: {
9128
+ # audio_silence_settings: {
9129
+ # audio_selector_name: "__string", # required
9130
+ # audio_silence_threshold_msec: 1,
9131
+ # },
9132
+ # input_loss_settings: {
9133
+ # input_loss_threshold_msec: 1,
9134
+ # },
9135
+ # video_black_settings: {
9136
+ # black_detect_threshold: 1.0,
9137
+ # video_black_threshold_msec: 1,
9138
+ # },
9139
+ # },
9140
+ # },
9141
+ # ],
8880
9142
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
8881
9143
  # secondary_input_id: "__string", # required
8882
9144
  # },
@@ -9152,6 +9414,10 @@ module Aws::MediaLive
9152
9414
  # its configuration.
9153
9415
  # @return [String]
9154
9416
  #
9417
+ # @!attribute [rw] device_update_status
9418
+ # The status of software on the input device.
9419
+ # @return [String]
9420
+ #
9155
9421
  # @!attribute [rw] hd_device_settings
9156
9422
  # Settings that describe an input device that is type HD.
9157
9423
  # @return [Types::InputDeviceHdSettings]
@@ -9180,19 +9446,25 @@ module Aws::MediaLive
9180
9446
  # The type of the input device.
9181
9447
  # @return [String]
9182
9448
  #
9449
+ # @!attribute [rw] uhd_device_settings
9450
+ # Settings that describe an input device that is type UHD.
9451
+ # @return [Types::InputDeviceUhdSettings]
9452
+ #
9183
9453
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDevice AWS API Documentation
9184
9454
  #
9185
9455
  class InputDevice < Struct.new(
9186
9456
  :arn,
9187
9457
  :connection_state,
9188
9458
  :device_settings_sync_state,
9459
+ :device_update_status,
9189
9460
  :hd_device_settings,
9190
9461
  :id,
9191
9462
  :mac_address,
9192
9463
  :name,
9193
9464
  :network_settings,
9194
9465
  :serial_number,
9195
- :type)
9466
+ :type,
9467
+ :uhd_device_settings)
9196
9468
  SENSITIVE = []
9197
9469
  include Aws::Structure
9198
9470
  end
@@ -9396,6 +9668,10 @@ module Aws::MediaLive
9396
9668
  # its configuration.
9397
9669
  # @return [String]
9398
9670
  #
9671
+ # @!attribute [rw] device_update_status
9672
+ # The status of software on the input device.
9673
+ # @return [String]
9674
+ #
9399
9675
  # @!attribute [rw] hd_device_settings
9400
9676
  # Settings that describe an input device that is type HD.
9401
9677
  # @return [Types::InputDeviceHdSettings]
@@ -9424,19 +9700,78 @@ module Aws::MediaLive
9424
9700
  # The type of the input device.
9425
9701
  # @return [String]
9426
9702
  #
9703
+ # @!attribute [rw] uhd_device_settings
9704
+ # Settings that describe an input device that is type UHD.
9705
+ # @return [Types::InputDeviceUhdSettings]
9706
+ #
9427
9707
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceSummary AWS API Documentation
9428
9708
  #
9429
9709
  class InputDeviceSummary < Struct.new(
9430
9710
  :arn,
9431
9711
  :connection_state,
9432
9712
  :device_settings_sync_state,
9713
+ :device_update_status,
9433
9714
  :hd_device_settings,
9434
9715
  :id,
9435
9716
  :mac_address,
9436
9717
  :name,
9437
9718
  :network_settings,
9438
9719
  :serial_number,
9439
- :type)
9720
+ :type,
9721
+ :uhd_device_settings)
9722
+ SENSITIVE = []
9723
+ include Aws::Structure
9724
+ end
9725
+
9726
+ # Settings that describe the active source from the input device, and
9727
+ # the video characteristics of that source.
9728
+ #
9729
+ # @!attribute [rw] active_input
9730
+ # If you specified Auto as the configured input, specifies which of
9731
+ # the sources is currently active (SDI or HDMI).
9732
+ # @return [String]
9733
+ #
9734
+ # @!attribute [rw] configured_input
9735
+ # The source at the input device that is currently active. You can
9736
+ # specify this source.
9737
+ # @return [String]
9738
+ #
9739
+ # @!attribute [rw] device_state
9740
+ # The state of the input device.
9741
+ # @return [String]
9742
+ #
9743
+ # @!attribute [rw] framerate
9744
+ # The frame rate of the video source.
9745
+ # @return [Float]
9746
+ #
9747
+ # @!attribute [rw] height
9748
+ # The height of the video source, in pixels.
9749
+ # @return [Integer]
9750
+ #
9751
+ # @!attribute [rw] max_bitrate
9752
+ # The current maximum bitrate for ingesting this source, in bits per
9753
+ # second. You can specify this maximum.
9754
+ # @return [Integer]
9755
+ #
9756
+ # @!attribute [rw] scan_type
9757
+ # The scan type of the video source.
9758
+ # @return [String]
9759
+ #
9760
+ # @!attribute [rw] width
9761
+ # The width of the video source, in pixels.
9762
+ # @return [Integer]
9763
+ #
9764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceUhdSettings AWS API Documentation
9765
+ #
9766
+ class InputDeviceUhdSettings < Struct.new(
9767
+ :active_input,
9768
+ :configured_input,
9769
+ :device_state,
9770
+ :framerate,
9771
+ :height,
9772
+ :max_bitrate,
9773
+ :scan_type,
9774
+ :width)
9440
9775
  SENSITIVE = []
9441
9776
  include Aws::Structure
9442
9777
  end
@@ -9540,6 +9875,29 @@ module Aws::MediaLive
9540
9875
  include Aws::Structure
9541
9876
  end
9542
9877
 
9878
+ # MediaLive will perform a failover if content is not detected in this
9879
+ # input for the specified period.
9880
+ #
9881
+ # @note When making an API call, you may pass InputLossFailoverSettings
9882
+ # data as a hash:
9883
+ #
9884
+ # {
9885
+ # input_loss_threshold_msec: 1,
9886
+ # }
9887
+ #
9888
+ # @!attribute [rw] input_loss_threshold_msec
9889
+ # The amount of time (in milliseconds) that no input is detected.
9890
+ # After that time, an input failover will occur.
9891
+ # @return [Integer]
9892
+ #
9893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputLossFailoverSettings AWS API Documentation
9894
+ #
9895
+ class InputLossFailoverSettings < Struct.new(
9896
+ :input_loss_threshold_msec)
9897
+ SENSITIVE = []
9898
+ include Aws::Structure
9899
+ end
9900
+
9543
9901
  # Action to prepare an input for a future immediate input switch.
9544
9902
  #
9545
9903
  # @note When making an API call, you may pass InputPrepareScheduleActionSettings
@@ -10138,6 +10496,70 @@ module Aws::MediaLive
10138
10496
  include Aws::Structure
10139
10497
  end
10140
10498
 
10499
+ # @note When making an API call, you may pass ListInputDeviceTransfersRequest
10500
+ # data as a hash:
10501
+ #
10502
+ # {
10503
+ # max_results: 1,
10504
+ # next_token: "__string",
10505
+ # transfer_type: "__string", # required
10506
+ # }
10507
+ #
10508
+ # @!attribute [rw] max_results
10509
+ # @return [Integer]
10510
+ #
10511
+ # @!attribute [rw] next_token
10512
+ # @return [String]
10513
+ #
10514
+ # @!attribute [rw] transfer_type
10515
+ # @return [String]
10516
+ #
10517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersRequest AWS API Documentation
10518
+ #
10519
+ class ListInputDeviceTransfersRequest < Struct.new(
10520
+ :max_results,
10521
+ :next_token,
10522
+ :transfer_type)
10523
+ SENSITIVE = []
10524
+ include Aws::Structure
10525
+ end
10526
+
10527
+ # @!attribute [rw] input_device_transfers
10528
+ # @return [Array<Types::TransferringInputDeviceSummary>]
10529
+ #
10530
+ # @!attribute [rw] next_token
10531
+ # @return [String]
10532
+ #
10533
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResponse AWS API Documentation
10534
+ #
10535
+ class ListInputDeviceTransfersResponse < Struct.new(
10536
+ :input_device_transfers,
10537
+ :next_token)
10538
+ SENSITIVE = []
10539
+ include Aws::Structure
10540
+ end
10541
+
10542
+ # The list of input devices in the transferred state. The recipient
10543
+ # hasn't yet accepted or rejected the transfer.
10544
+ #
10545
+ # @!attribute [rw] input_device_transfers
10546
+ # The list of devices that you are transferring or are being
10547
+ # transferred to you.
10548
+ # @return [Array<Types::TransferringInputDeviceSummary>]
10549
+ #
10550
+ # @!attribute [rw] next_token
10551
+ # A token to get additional list results.
10552
+ # @return [String]
10553
+ #
10554
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDeviceTransfersResultModel AWS API Documentation
10555
+ #
10556
+ class ListInputDeviceTransfersResultModel < Struct.new(
10557
+ :input_device_transfers,
10558
+ :next_token)
10559
+ SENSITIVE = []
10560
+ include Aws::Structure
10561
+ end
10562
+
10141
10563
  # @note When making an API call, you may pass ListInputDevicesRequest
10142
10564
  # data as a hash:
10143
10565
  #
@@ -12805,6 +13227,7 @@ module Aws::MediaLive
12805
13227
  # destination_ref_id: "__string",
12806
13228
  # },
12807
13229
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
13230
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
12808
13231
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
12809
13232
  # hls_cdn_settings: {
12810
13233
  # hls_akamai_settings: {
@@ -12839,6 +13262,7 @@ module Aws::MediaLive
12839
13262
  # },
12840
13263
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
12841
13264
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
13265
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
12842
13266
  # index_n_segments: 1,
12843
13267
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
12844
13268
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -12904,6 +13328,7 @@ module Aws::MediaLive
12904
13328
  # multiplex_group_settings: {
12905
13329
  # },
12906
13330
  # rtmp_group_settings: {
13331
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
12907
13332
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
12908
13333
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
12909
13334
  # cache_length: 1,
@@ -13197,6 +13622,7 @@ module Aws::MediaLive
13197
13622
  # destination_ref_id: "__string",
13198
13623
  # },
13199
13624
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
13625
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
13200
13626
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
13201
13627
  # hls_cdn_settings: {
13202
13628
  # hls_akamai_settings: {
@@ -13231,6 +13657,7 @@ module Aws::MediaLive
13231
13657
  # },
13232
13658
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
13233
13659
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
13660
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
13234
13661
  # index_n_segments: 1,
13235
13662
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
13236
13663
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -13296,6 +13723,7 @@ module Aws::MediaLive
13296
13723
  # multiplex_group_settings: {
13297
13724
  # },
13298
13725
  # rtmp_group_settings: {
13726
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
13299
13727
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
13300
13728
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
13301
13729
  # cache_length: 1,
@@ -13853,6 +14281,28 @@ module Aws::MediaLive
13853
14281
  #
13854
14282
  class Rec709Settings < Aws::EmptyStructure; end
13855
14283
 
14284
+ # @note When making an API call, you may pass RejectInputDeviceTransferRequest
14285
+ # data as a hash:
14286
+ #
14287
+ # {
14288
+ # input_device_id: "__string", # required
14289
+ # }
14290
+ #
14291
+ # @!attribute [rw] input_device_id
14292
+ # @return [String]
14293
+ #
14294
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferRequest AWS API Documentation
14295
+ #
14296
+ class RejectInputDeviceTransferRequest < Struct.new(
14297
+ :input_device_id)
14298
+ SENSITIVE = []
14299
+ include Aws::Structure
14300
+ end
14301
+
14302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RejectInputDeviceTransferResponse AWS API Documentation
14303
+ #
14304
+ class RejectInputDeviceTransferResponse < Aws::EmptyStructure; end
14305
+
13856
14306
  # Remix Settings
13857
14307
  #
13858
14308
  # @note When making an API call, you may pass RemixSettings
@@ -14088,6 +14538,7 @@ module Aws::MediaLive
14088
14538
  # data as a hash:
14089
14539
  #
14090
14540
  # {
14541
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
14091
14542
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
14092
14543
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
14093
14544
  # cache_length: 1,
@@ -14096,6 +14547,12 @@ module Aws::MediaLive
14096
14547
  # restart_delay: 1,
14097
14548
  # }
14098
14549
  #
14550
+ # @!attribute [rw] ad_markers
14551
+ # Choose the ad marker type for this output group. MediaLive will
14552
+ # create a message based on the content of each SCTE-35 message,
14553
+ # format it for that marker type, and insert it in the datastream.
14554
+ # @return [Array<String>]
14555
+ #
14099
14556
  # @!attribute [rw] authentication_scheme
14100
14557
  # Authentication scheme to use when connecting with CDN
14101
14558
  # @return [String]
@@ -14140,6 +14597,7 @@ module Aws::MediaLive
14140
14597
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RtmpGroupSettings AWS API Documentation
14141
14598
  #
14142
14599
  class RtmpGroupSettings < Struct.new(
14600
+ :ad_markers,
14143
14601
  :authentication_scheme,
14144
14602
  :cache_full_behavior,
14145
14603
  :cache_length,
@@ -15710,6 +16168,22 @@ module Aws::MediaLive
15710
16168
  include Aws::Structure
15711
16169
  end
15712
16170
 
16171
+ # The binary data for the thumbnail that the Link device has most
16172
+ # recently sent to MediaLive.
16173
+ #
16174
+ # @!attribute [rw] body
16175
+ # The binary data for the thumbnail that the Link device has most
16176
+ # recently sent to MediaLive.
16177
+ # @return [String]
16178
+ #
16179
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ThumbnailData AWS API Documentation
16180
+ #
16181
+ class ThumbnailData < Struct.new(
16182
+ :body)
16183
+ SENSITIVE = []
16184
+ include Aws::Structure
16185
+ end
16186
+
15713
16187
  # Timecode Config
15714
16188
  #
15715
16189
  # @note When making an API call, you may pass TimecodeConfig
@@ -15757,6 +16231,87 @@ module Aws::MediaLive
15757
16231
  include Aws::Structure
15758
16232
  end
15759
16233
 
16234
+ # The transfer details of the input device.
16235
+ #
16236
+ # @!attribute [rw] target_customer_id
16237
+ # The AWS account ID (12 digits) for the recipient of the device
16238
+ # transfer.
16239
+ # @return [String]
16240
+ #
16241
+ # @!attribute [rw] transfer_message
16242
+ # An optional message for the recipient. Maximum 280 characters.
16243
+ # @return [String]
16244
+ #
16245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDevice AWS API Documentation
16246
+ #
16247
+ class TransferInputDevice < Struct.new(
16248
+ :target_customer_id,
16249
+ :transfer_message)
16250
+ SENSITIVE = []
16251
+ include Aws::Structure
16252
+ end
16253
+
16254
+ # @note When making an API call, you may pass TransferInputDeviceRequest
16255
+ # data as a hash:
16256
+ #
16257
+ # {
16258
+ # input_device_id: "__string", # required
16259
+ # target_customer_id: "__string",
16260
+ # transfer_message: "__string",
16261
+ # }
16262
+ #
16263
+ # @!attribute [rw] input_device_id
16264
+ # @return [String]
16265
+ #
16266
+ # @!attribute [rw] target_customer_id
16267
+ # @return [String]
16268
+ #
16269
+ # @!attribute [rw] transfer_message
16270
+ # @return [String]
16271
+ #
16272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceRequest AWS API Documentation
16273
+ #
16274
+ class TransferInputDeviceRequest < Struct.new(
16275
+ :input_device_id,
16276
+ :target_customer_id,
16277
+ :transfer_message)
16278
+ SENSITIVE = []
16279
+ include Aws::Structure
16280
+ end
16281
+
16282
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferInputDeviceResponse AWS API Documentation
16283
+ #
16284
+ class TransferInputDeviceResponse < Aws::EmptyStructure; end
16285
+
16286
+ # Details about the input device that is being transferred.
16287
+ #
16288
+ # @!attribute [rw] id
16289
+ # The unique ID of the input device.
16290
+ # @return [String]
16291
+ #
16292
+ # @!attribute [rw] message
16293
+ # The optional message that the sender has attached to the transfer.
16294
+ # @return [String]
16295
+ #
16296
+ # @!attribute [rw] target_customer_id
16297
+ # The AWS account ID for the recipient of the input device transfer.
16298
+ # @return [String]
16299
+ #
16300
+ # @!attribute [rw] transfer_type
16301
+ # The type (direction) of the input device transfer.
16302
+ # @return [String]
16303
+ #
16304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TransferringInputDeviceSummary AWS API Documentation
16305
+ #
16306
+ class TransferringInputDeviceSummary < Struct.new(
16307
+ :id,
16308
+ :message,
16309
+ :target_customer_id,
16310
+ :transfer_type)
16311
+ SENSITIVE = []
16312
+ include Aws::Structure
16313
+ end
16314
+
15760
16315
  # Ttml Destination Settings
15761
16316
  #
15762
16317
  # @note When making an API call, you may pass TtmlDestinationSettings
@@ -16453,6 +17008,7 @@ module Aws::MediaLive
16453
17008
  # destination_ref_id: "__string",
16454
17009
  # },
16455
17010
  # directory_structure: "SINGLE_DIRECTORY", # accepts SINGLE_DIRECTORY, SUBDIRECTORY_PER_STREAM
17011
+ # discontinuity_tags: "INSERT", # accepts INSERT, NEVER_INSERT
16456
17012
  # encryption_type: "AES128", # accepts AES128, SAMPLE_AES
16457
17013
  # hls_cdn_settings: {
16458
17014
  # hls_akamai_settings: {
@@ -16487,6 +17043,7 @@ module Aws::MediaLive
16487
17043
  # },
16488
17044
  # hls_id_3_segment_tagging: "DISABLED", # accepts DISABLED, ENABLED
16489
17045
  # i_frame_only_playlists: "DISABLED", # accepts DISABLED, STANDARD
17046
+ # incomplete_segment_behavior: "AUTO", # accepts AUTO, SUPPRESS
16490
17047
  # index_n_segments: 1,
16491
17048
  # input_loss_action: "EMIT_OUTPUT", # accepts EMIT_OUTPUT, PAUSE_OUTPUT
16492
17049
  # iv_in_manifest: "EXCLUDE", # accepts EXCLUDE, INCLUDE
@@ -16552,6 +17109,7 @@ module Aws::MediaLive
16552
17109
  # multiplex_group_settings: {
16553
17110
  # },
16554
17111
  # rtmp_group_settings: {
17112
+ # ad_markers: ["ON_CUE_POINT_SCTE35"], # accepts ON_CUE_POINT_SCTE35
16555
17113
  # authentication_scheme: "AKAMAI", # accepts AKAMAI, COMMON
16556
17114
  # cache_full_behavior: "DISCONNECT_IMMEDIATELY", # accepts DISCONNECT_IMMEDIATELY, WAIT_FOR_SERVER
16557
17115
  # cache_length: 1,
@@ -16933,6 +17491,24 @@ module Aws::MediaLive
16933
17491
  # input_attachments: [
16934
17492
  # {
16935
17493
  # automatic_input_failover_settings: {
17494
+ # error_clear_time_msec: 1,
17495
+ # failover_conditions: [
17496
+ # {
17497
+ # failover_condition_settings: {
17498
+ # audio_silence_settings: {
17499
+ # audio_selector_name: "__string", # required
17500
+ # audio_silence_threshold_msec: 1,
17501
+ # },
17502
+ # input_loss_settings: {
17503
+ # input_loss_threshold_msec: 1,
17504
+ # },
17505
+ # video_black_settings: {
17506
+ # black_detect_threshold: 1.0,
17507
+ # video_black_threshold_msec: 1,
17508
+ # },
17509
+ # },
17510
+ # },
17511
+ # ],
16936
17512
  # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
16937
17513
  # secondary_input_id: "__string", # required
16938
17514
  # },
@@ -17153,18 +17729,23 @@ module Aws::MediaLive
17153
17729
  # Updates an input device.
17154
17730
  #
17155
17731
  # @!attribute [rw] hd_device_settings
17156
- # The settings that you want to apply to the input device.
17732
+ # The settings that you want to apply to the HD input device.
17157
17733
  # @return [Types::InputDeviceConfigurableSettings]
17158
17734
  #
17159
17735
  # @!attribute [rw] name
17160
17736
  # The name that you assigned to this input device (not the unique ID).
17161
17737
  # @return [String]
17162
17738
  #
17739
+ # @!attribute [rw] uhd_device_settings
17740
+ # The settings that you want to apply to the UHD input device.
17741
+ # @return [Types::InputDeviceConfigurableSettings]
17742
+ #
17163
17743
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
17164
17744
  #
17165
17745
  class UpdateInputDevice < Struct.new(
17166
17746
  :hd_device_settings,
17167
- :name)
17747
+ :name,
17748
+ :uhd_device_settings)
17168
17749
  SENSITIVE = []
17169
17750
  include Aws::Structure
17170
17751
  end
@@ -17179,6 +17760,10 @@ module Aws::MediaLive
17179
17760
  # },
17180
17761
  # input_device_id: "__string", # required
17181
17762
  # name: "__string",
17763
+ # uhd_device_settings: {
17764
+ # configured_input: "AUTO", # accepts AUTO, HDMI, SDI
17765
+ # max_bitrate: 1,
17766
+ # },
17182
17767
  # }
17183
17768
  #
17184
17769
  # @!attribute [rw] hd_device_settings
@@ -17191,12 +17776,17 @@ module Aws::MediaLive
17191
17776
  # @!attribute [rw] name
17192
17777
  # @return [String]
17193
17778
  #
17779
+ # @!attribute [rw] uhd_device_settings
17780
+ # Configurable settings for the input device.
17781
+ # @return [Types::InputDeviceConfigurableSettings]
17782
+ #
17194
17783
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDeviceRequest AWS API Documentation
17195
17784
  #
17196
17785
  class UpdateInputDeviceRequest < Struct.new(
17197
17786
  :hd_device_settings,
17198
17787
  :input_device_id,
17199
- :name)
17788
+ :name,
17789
+ :uhd_device_settings)
17200
17790
  SENSITIVE = []
17201
17791
  include Aws::Structure
17202
17792
  end
@@ -17217,6 +17807,10 @@ module Aws::MediaLive
17217
17807
  # its configuration.
17218
17808
  # @return [String]
17219
17809
  #
17810
+ # @!attribute [rw] device_update_status
17811
+ # The status of software on the input device.
17812
+ # @return [String]
17813
+ #
17220
17814
  # @!attribute [rw] hd_device_settings
17221
17815
  # Settings that describe the active source from the input device, and
17222
17816
  # the video characteristics of that source.
@@ -17243,19 +17837,26 @@ module Aws::MediaLive
17243
17837
  # outputs resolutions up to 1080, choose "HD".
17244
17838
  # @return [String]
17245
17839
  #
17840
+ # @!attribute [rw] uhd_device_settings
17841
+ # Settings that describe the active source from the input device, and
17842
+ # the video characteristics of that source.
17843
+ # @return [Types::InputDeviceUhdSettings]
17844
+ #
17246
17845
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDeviceResponse AWS API Documentation
17247
17846
  #
17248
17847
  class UpdateInputDeviceResponse < Struct.new(
17249
17848
  :arn,
17250
17849
  :connection_state,
17251
17850
  :device_settings_sync_state,
17851
+ :device_update_status,
17252
17852
  :hd_device_settings,
17253
17853
  :id,
17254
17854
  :mac_address,
17255
17855
  :name,
17256
17856
  :network_settings,
17257
17857
  :serial_number,
17258
- :type)
17858
+ :type,
17859
+ :uhd_device_settings)
17259
17860
  SENSITIVE = []
17260
17861
  include Aws::Structure
17261
17862
  end
@@ -17646,6 +18247,42 @@ module Aws::MediaLive
17646
18247
  include Aws::Structure
17647
18248
  end
17648
18249
 
18250
+ # @note When making an API call, you may pass VideoBlackFailoverSettings
18251
+ # data as a hash:
18252
+ #
18253
+ # {
18254
+ # black_detect_threshold: 1.0,
18255
+ # video_black_threshold_msec: 1,
18256
+ # }
18257
+ #
18258
+ # @!attribute [rw] black_detect_threshold
18259
+ # A value used in calculating the threshold below which MediaLive
18260
+ # considers a pixel to be 'black'. For the input to be considered
18261
+ # black, every pixel in a frame must be below this threshold. The
18262
+ # threshold is calculated as a percentage (expressed as a decimal) of
18263
+ # white. Therefore .1 means 10% white (or 90% black). Note how the
18264
+ # formula works for any color depth. For example, if you set this
18265
+ # field to 0.1 in 10-bit color depth: (1023*0.1=102.3), which means a
18266
+ # pixel value of 102 or less is 'black'. If you set this field to .1
18267
+ # in an 8-bit color depth: (255*0.1=25.5), which means a pixel value
18268
+ # of 25 or less is 'black'. The range is 0.0 to 1.0, with any number
18269
+ # of decimal places.
18270
+ # @return [Float]
18271
+ #
18272
+ # @!attribute [rw] video_black_threshold_msec
18273
+ # The amount of time (in milliseconds) that the active input must be
18274
+ # black before automatic input failover occurs.
18275
+ # @return [Integer]
18276
+ #
18277
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VideoBlackFailoverSettings AWS API Documentation
18278
+ #
18279
+ class VideoBlackFailoverSettings < Struct.new(
18280
+ :black_detect_threshold,
18281
+ :video_black_threshold_msec)
18282
+ SENSITIVE = []
18283
+ include Aws::Structure
18284
+ end
18285
+
17649
18286
  # Video Codec Settings
17650
18287
  #
17651
18288
  # @note When making an API call, you may pass VideoCodecSettings