aws-sdk-medialive 1.41.0 → 1.46.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::MediaLive
9
- # This class provides a resource oriented interface for MediaLive.
10
- # To create a resource object:
11
- # resource = Aws::MediaLive::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::MediaLive::Client.new(region: 'us-west-2')
15
- # resource = Aws::MediaLive::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
@@ -826,6 +826,13 @@ module Aws::MediaLive
826
826
  # audio_pid_selection: {
827
827
  # pid: 1, # required
828
828
  # },
829
+ # audio_track_selection: {
830
+ # tracks: [ # required
831
+ # {
832
+ # track: 1, # required
833
+ # },
834
+ # ],
835
+ # },
829
836
  # },
830
837
  # }
831
838
  #
@@ -860,6 +867,13 @@ module Aws::MediaLive
860
867
  # audio_pid_selection: {
861
868
  # pid: 1, # required
862
869
  # },
870
+ # audio_track_selection: {
871
+ # tracks: [ # required
872
+ # {
873
+ # track: 1, # required
874
+ # },
875
+ # ],
876
+ # },
863
877
  # }
864
878
  #
865
879
  # @!attribute [rw] audio_language_selection
@@ -870,11 +884,88 @@ module Aws::MediaLive
870
884
  # Audio Pid Selection
871
885
  # @return [Types::AudioPidSelection]
872
886
  #
887
+ # @!attribute [rw] audio_track_selection
888
+ # Audio Track Selection
889
+ # @return [Types::AudioTrackSelection]
890
+ #
873
891
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSelectorSettings AWS API Documentation
874
892
  #
875
893
  class AudioSelectorSettings < Struct.new(
876
894
  :audio_language_selection,
877
- :audio_pid_selection)
895
+ :audio_pid_selection,
896
+ :audio_track_selection)
897
+ include Aws::Structure
898
+ end
899
+
900
+ # Audio Track
901
+ #
902
+ # @note When making an API call, you may pass AudioTrack
903
+ # data as a hash:
904
+ #
905
+ # {
906
+ # track: 1, # required
907
+ # }
908
+ #
909
+ # @!attribute [rw] track
910
+ # 1-based integer value that maps to a specific audio track
911
+ # @return [Integer]
912
+ #
913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioTrack AWS API Documentation
914
+ #
915
+ class AudioTrack < Struct.new(
916
+ :track)
917
+ include Aws::Structure
918
+ end
919
+
920
+ # Audio Track Selection
921
+ #
922
+ # @note When making an API call, you may pass AudioTrackSelection
923
+ # data as a hash:
924
+ #
925
+ # {
926
+ # tracks: [ # required
927
+ # {
928
+ # track: 1, # required
929
+ # },
930
+ # ],
931
+ # }
932
+ #
933
+ # @!attribute [rw] tracks
934
+ # Selects one or more unique audio tracks from within an mp4 source.
935
+ # @return [Array<Types::AudioTrack>]
936
+ #
937
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioTrackSelection AWS API Documentation
938
+ #
939
+ class AudioTrackSelection < Struct.new(
940
+ :tracks)
941
+ include Aws::Structure
942
+ end
943
+
944
+ # The settings for Automatic Input Failover.
945
+ #
946
+ # @note When making an API call, you may pass AutomaticInputFailoverSettings
947
+ # data as a hash:
948
+ #
949
+ # {
950
+ # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
951
+ # secondary_input_id: "__string", # required
952
+ # }
953
+ #
954
+ # @!attribute [rw] input_preference
955
+ # Input preference when deciding which input to make active when a
956
+ # previously failed input has recovered.
957
+ # @return [String]
958
+ #
959
+ # @!attribute [rw] secondary_input_id
960
+ # The input ID of the secondary input in the automatic input failover
961
+ # pair.
962
+ # @return [String]
963
+ #
964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AutomaticInputFailoverSettings AWS API Documentation
965
+ #
966
+ class AutomaticInputFailoverSettings < Struct.new(
967
+ :input_preference,
968
+ :secondary_input_id)
878
969
  include Aws::Structure
879
970
  end
880
971
 
@@ -2614,7 +2705,7 @@ module Aws::MediaLive
2614
2705
  # restart_delay: 1,
2615
2706
  # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
2616
2707
  # send_delay_ms: 1,
2617
- # sparse_track_type: "NONE", # accepts NONE, SCTE_35
2708
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
2618
2709
  # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
2619
2710
  # timestamp_offset: "__string",
2620
2711
  # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
@@ -2725,6 +2816,8 @@ module Aws::MediaLive
2725
2816
  # },
2726
2817
  # fmp_4_hls_settings: {
2727
2818
  # audio_rendition_sets: "__string",
2819
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
2820
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
2728
2821
  # },
2729
2822
  # standard_hls_settings: {
2730
2823
  # audio_rendition_sets: "__string",
@@ -2877,8 +2970,15 @@ module Aws::MediaLive
2877
2970
  # },
2878
2971
  # },
2879
2972
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
2973
+ # filter_settings: {
2974
+ # temporal_filter_settings: {
2975
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
2976
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
2977
+ # },
2978
+ # },
2880
2979
  # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
2881
2980
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
2981
+ # force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
2882
2982
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
2883
2983
  # framerate_denominator: 1,
2884
2984
  # framerate_numerator: 1,
@@ -2896,6 +2996,7 @@ module Aws::MediaLive
2896
2996
  # par_denominator: 1,
2897
2997
  # par_numerator: 1,
2898
2998
  # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
2999
+ # quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
2899
3000
  # qvbr_quality_level: 1,
2900
3001
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
2901
3002
  # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
@@ -2961,6 +3062,10 @@ module Aws::MediaLive
2961
3062
  # },
2962
3063
  # input_attachments: [
2963
3064
  # {
3065
+ # automatic_input_failover_settings: {
3066
+ # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
3067
+ # secondary_input_id: "__string", # required
3068
+ # },
2964
3069
  # input_attachment_name: "__string",
2965
3070
  # input_id: "__string",
2966
3071
  # input_settings: {
@@ -2975,6 +3080,13 @@ module Aws::MediaLive
2975
3080
  # audio_pid_selection: {
2976
3081
  # pid: 1, # required
2977
3082
  # },
3083
+ # audio_track_selection: {
3084
+ # tracks: [ # required
3085
+ # {
3086
+ # track: 1, # required
3087
+ # },
3088
+ # ],
3089
+ # },
2978
3090
  # },
2979
3091
  # },
2980
3092
  # ],
@@ -3020,6 +3132,7 @@ module Aws::MediaLive
3020
3132
  # },
3021
3133
  # server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
3022
3134
  # },
3135
+ # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
3023
3136
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
3024
3137
  # video_selector: {
3025
3138
  # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
@@ -3131,6 +3244,10 @@ module Aws::MediaLive
3131
3244
  # Destination settings for PUSH type inputs.
3132
3245
  # @return [Array<Types::InputDestinationRequest>]
3133
3246
  #
3247
+ # @!attribute [rw] input_devices
3248
+ # Settings for the devices.
3249
+ # @return [Array<Types::InputDeviceSettings>]
3250
+ #
3134
3251
  # @!attribute [rw] input_security_groups
3135
3252
  # A list of security groups referenced by IDs to attach to the input.
3136
3253
  # @return [Array<String>]
@@ -3182,6 +3299,7 @@ module Aws::MediaLive
3182
3299
  #
3183
3300
  class CreateInput < Struct.new(
3184
3301
  :destinations,
3302
+ :input_devices,
3185
3303
  :input_security_groups,
3186
3304
  :media_connect_flows,
3187
3305
  :name,
@@ -3203,6 +3321,11 @@ module Aws::MediaLive
3203
3321
  # stream_name: "__string",
3204
3322
  # },
3205
3323
  # ],
3324
+ # input_devices: [
3325
+ # {
3326
+ # id: "__string",
3327
+ # },
3328
+ # ],
3206
3329
  # input_security_groups: ["__string"],
3207
3330
  # media_connect_flows: [
3208
3331
  # {
@@ -3222,7 +3345,7 @@ module Aws::MediaLive
3222
3345
  # tags: {
3223
3346
  # "__string" => "__string",
3224
3347
  # },
3225
- # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT
3348
+ # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
3226
3349
  # vpc: {
3227
3350
  # security_group_ids: ["__string"],
3228
3351
  # subnet_ids: ["__string"], # required
@@ -3232,6 +3355,9 @@ module Aws::MediaLive
3232
3355
  # @!attribute [rw] destinations
3233
3356
  # @return [Array<Types::InputDestinationRequest>]
3234
3357
  #
3358
+ # @!attribute [rw] input_devices
3359
+ # @return [Array<Types::InputDeviceSettings>]
3360
+ #
3235
3361
  # @!attribute [rw] input_security_groups
3236
3362
  # @return [Array<String>]
3237
3363
  #
@@ -3270,6 +3396,7 @@ module Aws::MediaLive
3270
3396
  #
3271
3397
  class CreateInputRequest < Struct.new(
3272
3398
  :destinations,
3399
+ :input_devices,
3273
3400
  :input_security_groups,
3274
3401
  :media_connect_flows,
3275
3402
  :name,
@@ -4040,6 +4167,81 @@ module Aws::MediaLive
4040
4167
  include Aws::Structure
4041
4168
  end
4042
4169
 
4170
+ # @note When making an API call, you may pass DescribeInputDeviceRequest
4171
+ # data as a hash:
4172
+ #
4173
+ # {
4174
+ # input_device_id: "__string", # required
4175
+ # }
4176
+ #
4177
+ # @!attribute [rw] input_device_id
4178
+ # @return [String]
4179
+ #
4180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceRequest AWS API Documentation
4181
+ #
4182
+ class DescribeInputDeviceRequest < Struct.new(
4183
+ :input_device_id)
4184
+ include Aws::Structure
4185
+ end
4186
+
4187
+ # @!attribute [rw] arn
4188
+ # @return [String]
4189
+ #
4190
+ # @!attribute [rw] connection_state
4191
+ # The state of the connection between the input device and AWS.
4192
+ # @return [String]
4193
+ #
4194
+ # @!attribute [rw] device_settings_sync_state
4195
+ # The status of the action to synchronize the device configuration. If
4196
+ # you change the configuration of the input device (for example, the
4197
+ # maximum bitrate), MediaLive sends the new data to the device. The
4198
+ # device might not update itself immediately. SYNCED means the device
4199
+ # has updated its configuration. SYNCING means that it has not updated
4200
+ # its configuration.
4201
+ # @return [String]
4202
+ #
4203
+ # @!attribute [rw] hd_device_settings
4204
+ # Settings that describe the active source from the input device, and
4205
+ # the video characteristics of that source.
4206
+ # @return [Types::InputDeviceHdSettings]
4207
+ #
4208
+ # @!attribute [rw] id
4209
+ # @return [String]
4210
+ #
4211
+ # @!attribute [rw] mac_address
4212
+ # @return [String]
4213
+ #
4214
+ # @!attribute [rw] name
4215
+ # @return [String]
4216
+ #
4217
+ # @!attribute [rw] network_settings
4218
+ # The network settings for the input device.
4219
+ # @return [Types::InputDeviceNetworkSettings]
4220
+ #
4221
+ # @!attribute [rw] serial_number
4222
+ # @return [String]
4223
+ #
4224
+ # @!attribute [rw] type
4225
+ # The type of the input device. For an AWS Elemental Link device that
4226
+ # outputs resolutions up to 1080, choose "HD".
4227
+ # @return [String]
4228
+ #
4229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceResponse AWS API Documentation
4230
+ #
4231
+ class DescribeInputDeviceResponse < Struct.new(
4232
+ :arn,
4233
+ :connection_state,
4234
+ :device_settings_sync_state,
4235
+ :hd_device_settings,
4236
+ :id,
4237
+ :mac_address,
4238
+ :name,
4239
+ :network_settings,
4240
+ :serial_number,
4241
+ :type)
4242
+ include Aws::Structure
4243
+ end
4244
+
4043
4245
  # @note When making an API call, you may pass DescribeInputRequest
4044
4246
  # data as a hash:
4045
4247
  #
@@ -4074,6 +4276,9 @@ module Aws::MediaLive
4074
4276
  # has one.
4075
4277
  # @return [String]
4076
4278
  #
4279
+ # @!attribute [rw] input_devices
4280
+ # @return [Array<Types::InputDeviceSettings>]
4281
+ #
4077
4282
  # @!attribute [rw] input_source_type
4078
4283
  # There are two types of input sources, static and dynamic. If an
4079
4284
  # input source is dynamic you can change the source url of the input
@@ -4114,6 +4319,7 @@ module Aws::MediaLive
4114
4319
  :destinations,
4115
4320
  :id,
4116
4321
  :input_class,
4322
+ :input_devices,
4117
4323
  :input_source_type,
4118
4324
  :media_connect_flows,
4119
4325
  :name,
@@ -5365,7 +5571,7 @@ module Aws::MediaLive
5365
5571
  # restart_delay: 1,
5366
5572
  # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
5367
5573
  # send_delay_ms: 1,
5368
- # sparse_track_type: "NONE", # accepts NONE, SCTE_35
5574
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
5369
5575
  # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
5370
5576
  # timestamp_offset: "__string",
5371
5577
  # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
@@ -5476,6 +5682,8 @@ module Aws::MediaLive
5476
5682
  # },
5477
5683
  # fmp_4_hls_settings: {
5478
5684
  # audio_rendition_sets: "__string",
5685
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
5686
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
5479
5687
  # },
5480
5688
  # standard_hls_settings: {
5481
5689
  # audio_rendition_sets: "__string",
@@ -5628,8 +5836,15 @@ module Aws::MediaLive
5628
5836
  # },
5629
5837
  # },
5630
5838
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
5839
+ # filter_settings: {
5840
+ # temporal_filter_settings: {
5841
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
5842
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
5843
+ # },
5844
+ # },
5631
5845
  # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
5632
5846
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
5847
+ # force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
5633
5848
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
5634
5849
  # framerate_denominator: 1,
5635
5850
  # framerate_numerator: 1,
@@ -5647,6 +5862,7 @@ module Aws::MediaLive
5647
5862
  # par_denominator: 1,
5648
5863
  # par_numerator: 1,
5649
5864
  # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
5865
+ # quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
5650
5866
  # qvbr_quality_level: 1,
5651
5867
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
5652
5868
  # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
@@ -5836,6 +6052,8 @@ module Aws::MediaLive
5836
6052
  #
5837
6053
  # {
5838
6054
  # audio_rendition_sets: "__string",
6055
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
6056
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
5839
6057
  # }
5840
6058
  #
5841
6059
  # @!attribute [rw] audio_rendition_sets
@@ -5844,10 +6062,23 @@ module Aws::MediaLive
5844
6062
  # video, separate by ','.
5845
6063
  # @return [String]
5846
6064
  #
6065
+ # @!attribute [rw] nielsen_id_3_behavior
6066
+ # If set to passthrough, Nielsen inaudible tones for media tracking
6067
+ # will be detected in the input audio and an equivalent ID3 tag will
6068
+ # be inserted in the output.
6069
+ # @return [String]
6070
+ #
6071
+ # @!attribute [rw] timed_metadata_behavior
6072
+ # When set to passthrough, timed metadata is passed through from input
6073
+ # to output.
6074
+ # @return [String]
6075
+ #
5847
6076
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Fmp4HlsSettings AWS API Documentation
5848
6077
  #
5849
6078
  class Fmp4HlsSettings < Struct.new(
5850
- :audio_rendition_sets)
6079
+ :audio_rendition_sets,
6080
+ :nielsen_id_3_behavior,
6081
+ :timed_metadata_behavior)
5851
6082
  include Aws::Structure
5852
6083
  end
5853
6084
 
@@ -6020,10 +6251,11 @@ module Aws::MediaLive
6020
6251
  # @return [Types::InputLossBehavior]
6021
6252
  #
6022
6253
  # @!attribute [rw] output_locking_mode
6023
- # Indicates how MediaLive pipelines are synchronized. PIPELINELOCKING
6024
- # - MediaLive will attempt to synchronize the output of each pipeline
6025
- # to the other. EPOCHLOCKING - MediaLive will attempt to synchronize
6026
- # the output of each pipeline to the Unix epoch.
6254
+ # Indicates how MediaLive pipelines are synchronized.
6255
+ # PIPELINE\_LOCKING - MediaLive will attempt to synchronize the output
6256
+ # of each pipeline to the other. EPOCH\_LOCKING - MediaLive will
6257
+ # attempt to synchronize the output of each pipeline to the Unix
6258
+ # epoch.
6027
6259
  # @return [String]
6028
6260
  #
6029
6261
  # @!attribute [rw] output_timing_source
@@ -6086,6 +6318,29 @@ module Aws::MediaLive
6086
6318
  include Aws::Structure
6087
6319
  end
6088
6320
 
6321
+ # H264 Filter Settings
6322
+ #
6323
+ # @note When making an API call, you may pass H264FilterSettings
6324
+ # data as a hash:
6325
+ #
6326
+ # {
6327
+ # temporal_filter_settings: {
6328
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
6329
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
6330
+ # },
6331
+ # }
6332
+ #
6333
+ # @!attribute [rw] temporal_filter_settings
6334
+ # Temporal Filter Settings
6335
+ # @return [Types::TemporalFilterSettings]
6336
+ #
6337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/H264FilterSettings AWS API Documentation
6338
+ #
6339
+ class H264FilterSettings < Struct.new(
6340
+ :temporal_filter_settings)
6341
+ include Aws::Structure
6342
+ end
6343
+
6089
6344
  # H264 Settings
6090
6345
  #
6091
6346
  # @note When making an API call, you may pass H264Settings
@@ -6107,8 +6362,15 @@ module Aws::MediaLive
6107
6362
  # },
6108
6363
  # },
6109
6364
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
6365
+ # filter_settings: {
6366
+ # temporal_filter_settings: {
6367
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
6368
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
6369
+ # },
6370
+ # },
6110
6371
  # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
6111
6372
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
6373
+ # force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
6112
6374
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
6113
6375
  # framerate_denominator: 1,
6114
6376
  # framerate_numerator: 1,
@@ -6126,6 +6388,7 @@ module Aws::MediaLive
6126
6388
  # par_denominator: 1,
6127
6389
  # par_numerator: 1,
6128
6390
  # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
6391
+ # quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
6129
6392
  # qvbr_quality_level: 1,
6130
6393
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
6131
6394
  # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
@@ -6181,6 +6444,10 @@ module Aws::MediaLive
6181
6444
  # or cavlc.
6182
6445
  # @return [String]
6183
6446
  #
6447
+ # @!attribute [rw] filter_settings
6448
+ # Optional filters that you can apply to an encode.
6449
+ # @return [Types::H264FilterSettings]
6450
+ #
6184
6451
  # @!attribute [rw] fixed_afd
6185
6452
  # Four bit AFD value to write on all frames of video in the output
6186
6453
  # stream. Only valid when afdSignaling is set to 'Fixed'.
@@ -6191,6 +6458,17 @@ module Aws::MediaLive
6191
6458
  # flicker or 'pop' on I-frames.
6192
6459
  # @return [String]
6193
6460
  #
6461
+ # @!attribute [rw] force_field_pictures
6462
+ # This setting applies only when scan type is "interlaced." It
6463
+ # controls whether coding is performed on a field basis or on a frame
6464
+ # basis. (When the video is progressive, the coding is always
6465
+ # performed on a frame basis.) enabled: Force MediaLive to code on a
6466
+ # field basis, so that odd and even sets of fields are coded
6467
+ # separately. disabled: Code the two sets of fields separately (on a
6468
+ # field basis) or together (on a frame basis using PAFF), depending on
6469
+ # what is most appropriate for the content.
6470
+ # @return [String]
6471
+ #
6194
6472
  # @!attribute [rw] framerate_control
6195
6473
  # This field indicates how the output video frame rate is specified.
6196
6474
  # If "specified" is selected then the output video frame rate is
@@ -6290,6 +6568,16 @@ module Aws::MediaLive
6290
6568
  # H.264 Profile.
6291
6569
  # @return [String]
6292
6570
  #
6571
+ # @!attribute [rw] quality_level
6572
+ # Leave as STANDARD\_QUALITY or choose a different value (which might
6573
+ # result in additional costs to run the channel). - ENHANCED\_QUALITY:
6574
+ # Produces a slightly better video quality without an increase in the
6575
+ # bitrate. Has an effect only when the Rate control mode is QVBR or
6576
+ # CBR. If this channel is in a MediaLive multiplex, the value must be
6577
+ # ENHANCED\_QUALITY. - STANDARD\_QUALITY: Valid for any Rate control
6578
+ # mode.
6579
+ # @return [String]
6580
+ #
6293
6581
  # @!attribute [rw] qvbr_quality_level
6294
6582
  # Controls the target quality for the video encode. Applies only when
6295
6583
  # the rate control mode is QVBR. Set values for the QVBR quality level
@@ -6377,8 +6665,10 @@ module Aws::MediaLive
6377
6665
  :color_metadata,
6378
6666
  :color_space_settings,
6379
6667
  :entropy_encoding,
6668
+ :filter_settings,
6380
6669
  :fixed_afd,
6381
6670
  :flicker_aq,
6671
+ :force_field_pictures,
6382
6672
  :framerate_control,
6383
6673
  :framerate_denominator,
6384
6674
  :framerate_numerator,
@@ -6396,6 +6686,7 @@ module Aws::MediaLive
6396
6686
  :par_denominator,
6397
6687
  :par_numerator,
6398
6688
  :profile,
6689
+ :quality_level,
6399
6690
  :qvbr_quality_level,
6400
6691
  :rate_control_mode,
6401
6692
  :scan_type,
@@ -7159,9 +7450,11 @@ module Aws::MediaLive
7159
7450
  # @return [String]
7160
7451
  #
7161
7452
  # @!attribute [rw] output_selection
7162
- # MANIFESTSANDSEGMENTS: Generates manifests (master manifest, if
7453
+ # MANIFESTS\_AND\_SEGMENTS: Generates manifests (master manifest, if
7163
7454
  # applicable, and media manifests) for this output group.
7164
- # SEGMENTSONLY: Does not generate any manifests for this output group.
7455
+ # VARIANT\_MANIFESTS\_AND\_SEGMENTS: Generates media manifests for
7456
+ # this output group, but not a master manifest. SEGMENTS\_ONLY: Does
7457
+ # not generate any manifests for this output group.
7165
7458
  # @return [String]
7166
7459
  #
7167
7460
  # @!attribute [rw] program_date_time
@@ -7227,8 +7520,8 @@ module Aws::MediaLive
7227
7520
  # @return [Integer]
7228
7521
  #
7229
7522
  # @!attribute [rw] ts_file_mode
7230
- # SEGMENTEDFILES: Emit the program as segments - multiple .ts media
7231
- # files. SINGLEFILE: Applies only if Mode field is VOD. Emit the
7523
+ # SEGMENTED\_FILES: Emit the program as segments - multiple .ts media
7524
+ # files. SINGLE\_FILE: Applies only if Mode field is VOD. Emit the
7232
7525
  # program as a single .ts media file. The media manifest includes
7233
7526
  # #EXT-X-BYTERANGE tags to index segments for playback. A typical use
7234
7527
  # for this value is when sending the output to AWS Elemental
@@ -7421,6 +7714,8 @@ module Aws::MediaLive
7421
7714
  # },
7422
7715
  # fmp_4_hls_settings: {
7423
7716
  # audio_rendition_sets: "__string",
7717
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
7718
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
7424
7719
  # },
7425
7720
  # standard_hls_settings: {
7426
7721
  # audio_rendition_sets: "__string",
@@ -7497,6 +7792,8 @@ module Aws::MediaLive
7497
7792
  # },
7498
7793
  # fmp_4_hls_settings: {
7499
7794
  # audio_rendition_sets: "__string",
7795
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
7796
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
7500
7797
  # },
7501
7798
  # standard_hls_settings: {
7502
7799
  # audio_rendition_sets: "__string",
@@ -7611,8 +7908,7 @@ module Aws::MediaLive
7611
7908
  include Aws::Structure
7612
7909
  end
7613
7910
 
7614
- # Settings to configure an action so that it occurs immediately. This is
7615
- # only supported for input switch actions currently.
7911
+ # Settings to configure an action so that it occurs as soon as possible.
7616
7912
  #
7617
7913
  # @api private
7618
7914
  #
@@ -7648,6 +7944,10 @@ module Aws::MediaLive
7648
7944
  # not valid because the channel requires two sources in the input.
7649
7945
  # @return [String]
7650
7946
  #
7947
+ # @!attribute [rw] input_devices
7948
+ # Settings for the input devices.
7949
+ # @return [Array<Types::InputDeviceSettings>]
7950
+ #
7651
7951
  # @!attribute [rw] input_source_type
7652
7952
  # Certain pull input sources can be dynamic, meaning that they can
7653
7953
  # have their URL's dynamically changes during input switch actions.
@@ -7694,6 +7994,7 @@ module Aws::MediaLive
7694
7994
  :destinations,
7695
7995
  :id,
7696
7996
  :input_class,
7997
+ :input_devices,
7697
7998
  :input_source_type,
7698
7999
  :media_connect_flows,
7699
8000
  :name,
@@ -7710,6 +8011,10 @@ module Aws::MediaLive
7710
8011
  # data as a hash:
7711
8012
  #
7712
8013
  # {
8014
+ # automatic_input_failover_settings: {
8015
+ # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
8016
+ # secondary_input_id: "__string", # required
8017
+ # },
7713
8018
  # input_attachment_name: "__string",
7714
8019
  # input_id: "__string",
7715
8020
  # input_settings: {
@@ -7724,6 +8029,13 @@ module Aws::MediaLive
7724
8029
  # audio_pid_selection: {
7725
8030
  # pid: 1, # required
7726
8031
  # },
8032
+ # audio_track_selection: {
8033
+ # tracks: [ # required
8034
+ # {
8035
+ # track: 1, # required
8036
+ # },
8037
+ # ],
8038
+ # },
7727
8039
  # },
7728
8040
  # },
7729
8041
  # ],
@@ -7769,6 +8081,7 @@ module Aws::MediaLive
7769
8081
  # },
7770
8082
  # server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
7771
8083
  # },
8084
+ # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
7772
8085
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
7773
8086
  # video_selector: {
7774
8087
  # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
@@ -7785,6 +8098,11 @@ module Aws::MediaLive
7785
8098
  # },
7786
8099
  # }
7787
8100
  #
8101
+ # @!attribute [rw] automatic_input_failover_settings
8102
+ # User-specified settings for defining what the conditions are for
8103
+ # declaring the input unhealthy and failing over to a different input.
8104
+ # @return [Types::AutomaticInputFailoverSettings]
8105
+ #
7788
8106
  # @!attribute [rw] input_attachment_name
7789
8107
  # User-specified name for the attachment. This is required if the user
7790
8108
  # wants to use this input in an input switch action.
@@ -7801,6 +8119,7 @@ module Aws::MediaLive
7801
8119
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputAttachment AWS API Documentation
7802
8120
  #
7803
8121
  class InputAttachment < Struct.new(
8122
+ :automatic_input_failover_settings,
7804
8123
  :input_attachment_name,
7805
8124
  :input_id,
7806
8125
  :input_settings)
@@ -7940,6 +8259,306 @@ module Aws::MediaLive
7940
8259
  include Aws::Structure
7941
8260
  end
7942
8261
 
8262
+ # An input device.
8263
+ #
8264
+ # @!attribute [rw] arn
8265
+ # The unique ARN of the input device.
8266
+ # @return [String]
8267
+ #
8268
+ # @!attribute [rw] connection_state
8269
+ # The state of the connection between the input device and AWS.
8270
+ # @return [String]
8271
+ #
8272
+ # @!attribute [rw] device_settings_sync_state
8273
+ # The status of the action to synchronize the device configuration. If
8274
+ # you change the configuration of the input device (for example, the
8275
+ # maximum bitrate), MediaLive sends the new data to the device. The
8276
+ # device might not update itself immediately. SYNCED means the device
8277
+ # has updated its configuration. SYNCING means that it has not updated
8278
+ # its configuration.
8279
+ # @return [String]
8280
+ #
8281
+ # @!attribute [rw] hd_device_settings
8282
+ # Settings that describe an input device that is type HD.
8283
+ # @return [Types::InputDeviceHdSettings]
8284
+ #
8285
+ # @!attribute [rw] id
8286
+ # The unique ID of the input device.
8287
+ # @return [String]
8288
+ #
8289
+ # @!attribute [rw] mac_address
8290
+ # The network MAC address of the input device.
8291
+ # @return [String]
8292
+ #
8293
+ # @!attribute [rw] name
8294
+ # A name that you specify for the input device.
8295
+ # @return [String]
8296
+ #
8297
+ # @!attribute [rw] network_settings
8298
+ # The network settings for the input device.
8299
+ # @return [Types::InputDeviceNetworkSettings]
8300
+ #
8301
+ # @!attribute [rw] serial_number
8302
+ # The unique serial number of the input device.
8303
+ # @return [String]
8304
+ #
8305
+ # @!attribute [rw] type
8306
+ # The type of the input device.
8307
+ # @return [String]
8308
+ #
8309
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDevice AWS API Documentation
8310
+ #
8311
+ class InputDevice < Struct.new(
8312
+ :arn,
8313
+ :connection_state,
8314
+ :device_settings_sync_state,
8315
+ :hd_device_settings,
8316
+ :id,
8317
+ :mac_address,
8318
+ :name,
8319
+ :network_settings,
8320
+ :serial_number,
8321
+ :type)
8322
+ include Aws::Structure
8323
+ end
8324
+
8325
+ # Configurable settings for the input device.
8326
+ #
8327
+ # @note When making an API call, you may pass InputDeviceConfigurableSettings
8328
+ # data as a hash:
8329
+ #
8330
+ # {
8331
+ # configured_input: "AUTO", # accepts AUTO, HDMI, SDI
8332
+ # max_bitrate: 1,
8333
+ # }
8334
+ #
8335
+ # @!attribute [rw] configured_input
8336
+ # The input source that you want to use. If the device has a source
8337
+ # connected to only one of its input ports, or if you don't care
8338
+ # which source the device sends, specify Auto. If the device has
8339
+ # sources connected to both its input ports, and you want to use a
8340
+ # specific source, specify the source.
8341
+ # @return [String]
8342
+ #
8343
+ # @!attribute [rw] max_bitrate
8344
+ # The maximum bitrate in bits per second. Set a value here to throttle
8345
+ # the bitrate of the source video.
8346
+ # @return [Integer]
8347
+ #
8348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceConfigurableSettings AWS API Documentation
8349
+ #
8350
+ class InputDeviceConfigurableSettings < Struct.new(
8351
+ :configured_input,
8352
+ :max_bitrate)
8353
+ include Aws::Structure
8354
+ end
8355
+
8356
+ # @!attribute [rw] message
8357
+ # The error message.
8358
+ # @return [String]
8359
+ #
8360
+ # @!attribute [rw] validation_errors
8361
+ # A collection of validation error responses.
8362
+ # @return [Array<Types::ValidationError>]
8363
+ #
8364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceConfigurationValidationError AWS API Documentation
8365
+ #
8366
+ class InputDeviceConfigurationValidationError < Struct.new(
8367
+ :message,
8368
+ :validation_errors)
8369
+ include Aws::Structure
8370
+ end
8371
+
8372
+ # Settings that describe the active source from the input device, and
8373
+ # the video characteristics of that source.
8374
+ #
8375
+ # @!attribute [rw] active_input
8376
+ # If you specified Auto as the configured input, specifies which of
8377
+ # the sources is currently active (SDI or HDMI).
8378
+ # @return [String]
8379
+ #
8380
+ # @!attribute [rw] configured_input
8381
+ # The source at the input device that is currently active. You can
8382
+ # specify this source.
8383
+ # @return [String]
8384
+ #
8385
+ # @!attribute [rw] device_state
8386
+ # The state of the input device.
8387
+ # @return [String]
8388
+ #
8389
+ # @!attribute [rw] framerate
8390
+ # The frame rate of the video source.
8391
+ # @return [Float]
8392
+ #
8393
+ # @!attribute [rw] height
8394
+ # The height of the video source, in pixels.
8395
+ # @return [Integer]
8396
+ #
8397
+ # @!attribute [rw] max_bitrate
8398
+ # The current maximum bitrate for ingesting this source, in bits per
8399
+ # second. You can specify this maximum.
8400
+ # @return [Integer]
8401
+ #
8402
+ # @!attribute [rw] scan_type
8403
+ # The scan type of the video source.
8404
+ # @return [String]
8405
+ #
8406
+ # @!attribute [rw] width
8407
+ # The width of the video source, in pixels.
8408
+ # @return [Integer]
8409
+ #
8410
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceHdSettings AWS API Documentation
8411
+ #
8412
+ class InputDeviceHdSettings < Struct.new(
8413
+ :active_input,
8414
+ :configured_input,
8415
+ :device_state,
8416
+ :framerate,
8417
+ :height,
8418
+ :max_bitrate,
8419
+ :scan_type,
8420
+ :width)
8421
+ include Aws::Structure
8422
+ end
8423
+
8424
+ # The network settings for the input device.
8425
+ #
8426
+ # @!attribute [rw] dns_addresses
8427
+ # The DNS addresses of the input device.
8428
+ # @return [Array<String>]
8429
+ #
8430
+ # @!attribute [rw] gateway
8431
+ # The network gateway IP address.
8432
+ # @return [String]
8433
+ #
8434
+ # @!attribute [rw] ip_address
8435
+ # The IP address of the input device.
8436
+ # @return [String]
8437
+ #
8438
+ # @!attribute [rw] ip_scheme
8439
+ # Specifies whether the input device has been configured (outside of
8440
+ # MediaLive) to use a dynamic IP address assignment (DHCP) or a static
8441
+ # IP address.
8442
+ # @return [String]
8443
+ #
8444
+ # @!attribute [rw] subnet_mask
8445
+ # The subnet mask of the input device.
8446
+ # @return [String]
8447
+ #
8448
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceNetworkSettings AWS API Documentation
8449
+ #
8450
+ class InputDeviceNetworkSettings < Struct.new(
8451
+ :dns_addresses,
8452
+ :gateway,
8453
+ :ip_address,
8454
+ :ip_scheme,
8455
+ :subnet_mask)
8456
+ include Aws::Structure
8457
+ end
8458
+
8459
+ # Settings for an input device.
8460
+ #
8461
+ # @note When making an API call, you may pass InputDeviceRequest
8462
+ # data as a hash:
8463
+ #
8464
+ # {
8465
+ # id: "__string",
8466
+ # }
8467
+ #
8468
+ # @!attribute [rw] id
8469
+ # The unique ID for the device.
8470
+ # @return [String]
8471
+ #
8472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceRequest AWS API Documentation
8473
+ #
8474
+ class InputDeviceRequest < Struct.new(
8475
+ :id)
8476
+ include Aws::Structure
8477
+ end
8478
+
8479
+ # Settings for an input device.
8480
+ #
8481
+ # @note When making an API call, you may pass InputDeviceSettings
8482
+ # data as a hash:
8483
+ #
8484
+ # {
8485
+ # id: "__string",
8486
+ # }
8487
+ #
8488
+ # @!attribute [rw] id
8489
+ # The unique ID for the device.
8490
+ # @return [String]
8491
+ #
8492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceSettings AWS API Documentation
8493
+ #
8494
+ class InputDeviceSettings < Struct.new(
8495
+ :id)
8496
+ include Aws::Structure
8497
+ end
8498
+
8499
+ # Details of the input device.
8500
+ #
8501
+ # @!attribute [rw] arn
8502
+ # The unique ARN of the input device.
8503
+ # @return [String]
8504
+ #
8505
+ # @!attribute [rw] connection_state
8506
+ # The state of the connection between the input device and AWS.
8507
+ # @return [String]
8508
+ #
8509
+ # @!attribute [rw] device_settings_sync_state
8510
+ # The status of the action to synchronize the device configuration. If
8511
+ # you change the configuration of the input device (for example, the
8512
+ # maximum bitrate), MediaLive sends the new data to the device. The
8513
+ # device might not update itself immediately. SYNCED means the device
8514
+ # has updated its configuration. SYNCING means that it has not updated
8515
+ # its configuration.
8516
+ # @return [String]
8517
+ #
8518
+ # @!attribute [rw] hd_device_settings
8519
+ # Settings that describe an input device that is type HD.
8520
+ # @return [Types::InputDeviceHdSettings]
8521
+ #
8522
+ # @!attribute [rw] id
8523
+ # The unique ID of the input device.
8524
+ # @return [String]
8525
+ #
8526
+ # @!attribute [rw] mac_address
8527
+ # The network MAC address of the input device.
8528
+ # @return [String]
8529
+ #
8530
+ # @!attribute [rw] name
8531
+ # A name that you specify for the input device.
8532
+ # @return [String]
8533
+ #
8534
+ # @!attribute [rw] network_settings
8535
+ # Network settings for the input device.
8536
+ # @return [Types::InputDeviceNetworkSettings]
8537
+ #
8538
+ # @!attribute [rw] serial_number
8539
+ # The unique serial number of the input device.
8540
+ # @return [String]
8541
+ #
8542
+ # @!attribute [rw] type
8543
+ # The type of the input device.
8544
+ # @return [String]
8545
+ #
8546
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceSummary AWS API Documentation
8547
+ #
8548
+ class InputDeviceSummary < Struct.new(
8549
+ :arn,
8550
+ :connection_state,
8551
+ :device_settings_sync_state,
8552
+ :hd_device_settings,
8553
+ :id,
8554
+ :mac_address,
8555
+ :name,
8556
+ :network_settings,
8557
+ :serial_number,
8558
+ :type)
8559
+ include Aws::Structure
8560
+ end
8561
+
7943
8562
  # Input Location
7944
8563
  #
7945
8564
  # @note When making an API call, you may pass InputLocation
@@ -8111,6 +8730,13 @@ module Aws::MediaLive
8111
8730
  # audio_pid_selection: {
8112
8731
  # pid: 1, # required
8113
8732
  # },
8733
+ # audio_track_selection: {
8734
+ # tracks: [ # required
8735
+ # {
8736
+ # track: 1, # required
8737
+ # },
8738
+ # ],
8739
+ # },
8114
8740
  # },
8115
8741
  # },
8116
8742
  # ],
@@ -8156,6 +8782,7 @@ module Aws::MediaLive
8156
8782
  # },
8157
8783
  # server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
8158
8784
  # },
8785
+ # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
8159
8786
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
8160
8787
  # video_selector: {
8161
8788
  # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
@@ -8206,6 +8833,15 @@ module Aws::MediaLive
8206
8833
  # Input settings.
8207
8834
  # @return [Types::NetworkInputSettings]
8208
8835
  #
8836
+ # @!attribute [rw] smpte_2038_data_preference
8837
+ # Specifies whether to extract applicable ancillary data from a
8838
+ # SMPTE-2038 source in this input. Applicable data types are captions,
8839
+ # timecode, AFD, and SCTE-104 messages. - PREFER: Extract from
8840
+ # SMPTE-2038 if present in this input, otherwise extract from another
8841
+ # source (if any). - IGNORE: Never extract any ancillary data from
8842
+ # SMPTE-2038.
8843
+ # @return [String]
8844
+ #
8209
8845
  # @!attribute [rw] source_end_behavior
8210
8846
  # Loop input if it is a file. This allows a file input to be streamed
8211
8847
  # indefinitely.
@@ -8226,6 +8862,7 @@ module Aws::MediaLive
8226
8862
  :filter_strength,
8227
8863
  :input_filter,
8228
8864
  :network_input_settings,
8865
+ :smpte_2038_data_preference,
8229
8866
  :source_end_behavior,
8230
8867
  :video_selector)
8231
8868
  include Aws::Structure
@@ -8548,6 +9185,60 @@ module Aws::MediaLive
8548
9185
  include Aws::Structure
8549
9186
  end
8550
9187
 
9188
+ # @note When making an API call, you may pass ListInputDevicesRequest
9189
+ # data as a hash:
9190
+ #
9191
+ # {
9192
+ # max_results: 1,
9193
+ # next_token: "__string",
9194
+ # }
9195
+ #
9196
+ # @!attribute [rw] max_results
9197
+ # @return [Integer]
9198
+ #
9199
+ # @!attribute [rw] next_token
9200
+ # @return [String]
9201
+ #
9202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevicesRequest AWS API Documentation
9203
+ #
9204
+ class ListInputDevicesRequest < Struct.new(
9205
+ :max_results,
9206
+ :next_token)
9207
+ include Aws::Structure
9208
+ end
9209
+
9210
+ # @!attribute [rw] input_devices
9211
+ # @return [Array<Types::InputDeviceSummary>]
9212
+ #
9213
+ # @!attribute [rw] next_token
9214
+ # @return [String]
9215
+ #
9216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevicesResponse AWS API Documentation
9217
+ #
9218
+ class ListInputDevicesResponse < Struct.new(
9219
+ :input_devices,
9220
+ :next_token)
9221
+ include Aws::Structure
9222
+ end
9223
+
9224
+ # The list of input devices owned by the AWS account.
9225
+ #
9226
+ # @!attribute [rw] input_devices
9227
+ # The list of input devices.
9228
+ # @return [Array<Types::InputDeviceSummary>]
9229
+ #
9230
+ # @!attribute [rw] next_token
9231
+ # A token to get additional list results.
9232
+ # @return [String]
9233
+ #
9234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputDevicesResultModel AWS API Documentation
9235
+ #
9236
+ class ListInputDevicesResultModel < Struct.new(
9237
+ :input_devices,
9238
+ :next_token)
9239
+ include Aws::Structure
9240
+ end
9241
+
8551
9242
  # @note When making an API call, you may pass ListInputSecurityGroupsRequest
8552
9243
  # data as a hash:
8553
9244
  #
@@ -9319,7 +10010,7 @@ module Aws::MediaLive
9319
10010
  #
9320
10011
  # @!attribute [rw] segmentation_time
9321
10012
  # The length in seconds of each segment. Required unless markers is
9322
- # set to None\_.
10013
+ # set to \_none\_.
9323
10014
  # @return [Float]
9324
10015
  #
9325
10016
  # @!attribute [rw] timed_metadata_behavior
@@ -9678,16 +10369,15 @@ module Aws::MediaLive
9678
10369
  # restart_delay: 1,
9679
10370
  # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
9680
10371
  # send_delay_ms: 1,
9681
- # sparse_track_type: "NONE", # accepts NONE, SCTE_35
10372
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
9682
10373
  # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
9683
10374
  # timestamp_offset: "__string",
9684
10375
  # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
9685
10376
  # }
9686
10377
  #
9687
10378
  # @!attribute [rw] acquisition_point_id
9688
- # The value of the "Acquisition Point Identity" element used in each
9689
- # message placed in the sparse track. Only enabled if sparseTrackType
9690
- # is not "none".
10379
+ # The ID to include in each message in the sparse track. Ignored if
10380
+ # sparseTrackType is NONE.
9691
10381
  # @return [String]
9692
10382
  #
9693
10383
  # @!attribute [rw] audio_only_timecode_control
@@ -9767,8 +10457,13 @@ module Aws::MediaLive
9767
10457
  # @return [Integer]
9768
10458
  #
9769
10459
  # @!attribute [rw] sparse_track_type
9770
- # If set to scte35, use incoming SCTE-35 messages to generate a sparse
9771
- # track in this group of MS-Smooth outputs.
10460
+ # Identifies the type of data to place in the sparse track: - SCTE35:
10461
+ # Insert SCTE-35 messages from the source content. With each message,
10462
+ # insert an IDR frame to start a new segment. -
10463
+ # SCTE35\_WITHOUT\_SEGMENTATION: Insert SCTE-35 messages from the
10464
+ # source content. With each message, insert an IDR frame but don't
10465
+ # start a new segment. - NONE: Don't generate a sparse track for any
10466
+ # outputs in this output group.
9772
10467
  # @return [String]
9773
10468
  #
9774
10469
  # @!attribute [rw] stream_manifest_behavior
@@ -9905,7 +10600,7 @@ module Aws::MediaLive
9905
10600
  #
9906
10601
  # @!attribute [rw] validation_errors
9907
10602
  # A collection of validation error responses.
9908
- # @return [Array<Types::MultiplexValidationError>]
10603
+ # @return [Array<Types::ValidationError>]
9909
10604
  #
9910
10605
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexConfigurationValidationError AWS API Documentation
9911
10606
  #
@@ -10311,22 +11006,6 @@ module Aws::MediaLive
10311
11006
  include Aws::Structure
10312
11007
  end
10313
11008
 
10314
- # @!attribute [rw] element_path
10315
- # Path to the source of the error.
10316
- # @return [String]
10317
- #
10318
- # @!attribute [rw] error_message
10319
- # The error message.
10320
- # @return [String]
10321
- #
10322
- # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexValidationError AWS API Documentation
10323
- #
10324
- class MultiplexValidationError < Struct.new(
10325
- :element_path,
10326
- :error_message)
10327
- include Aws::Structure
10328
- end
10329
-
10330
11009
  # The video configuration for each program in a multiplex.
10331
11010
  #
10332
11011
  # @note When making an API call, you may pass MultiplexVideoSettings
@@ -10593,6 +11272,8 @@ module Aws::MediaLive
10593
11272
  # },
10594
11273
  # fmp_4_hls_settings: {
10595
11274
  # audio_rendition_sets: "__string",
11275
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
11276
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
10596
11277
  # },
10597
11278
  # standard_hls_settings: {
10598
11279
  # audio_rendition_sets: "__string",
@@ -10970,7 +11651,7 @@ module Aws::MediaLive
10970
11651
  # restart_delay: 1,
10971
11652
  # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
10972
11653
  # send_delay_ms: 1,
10973
- # sparse_track_type: "NONE", # accepts NONE, SCTE_35
11654
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
10974
11655
  # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
10975
11656
  # timestamp_offset: "__string",
10976
11657
  # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
@@ -11081,6 +11762,8 @@ module Aws::MediaLive
11081
11762
  # },
11082
11763
  # fmp_4_hls_settings: {
11083
11764
  # audio_rendition_sets: "__string",
11765
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
11766
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
11084
11767
  # },
11085
11768
  # standard_hls_settings: {
11086
11769
  # audio_rendition_sets: "__string",
@@ -11357,7 +12040,7 @@ module Aws::MediaLive
11357
12040
  # restart_delay: 1,
11358
12041
  # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
11359
12042
  # send_delay_ms: 1,
11360
- # sparse_track_type: "NONE", # accepts NONE, SCTE_35
12043
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
11361
12044
  # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
11362
12045
  # timestamp_offset: "__string",
11363
12046
  # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
@@ -11534,6 +12217,8 @@ module Aws::MediaLive
11534
12217
  # },
11535
12218
  # fmp_4_hls_settings: {
11536
12219
  # audio_rendition_sets: "__string",
12220
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
12221
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
11537
12222
  # },
11538
12223
  # standard_hls_settings: {
11539
12224
  # audio_rendition_sets: "__string",
@@ -13645,6 +14330,38 @@ module Aws::MediaLive
13645
14330
  include Aws::Structure
13646
14331
  end
13647
14332
 
14333
+ # Temporal Filter Settings
14334
+ #
14335
+ # @note When making an API call, you may pass TemporalFilterSettings
14336
+ # data as a hash:
14337
+ #
14338
+ # {
14339
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
14340
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
14341
+ # }
14342
+ #
14343
+ # @!attribute [rw] post_filter_sharpening
14344
+ # If you enable this filter, the results are the following: - If the
14345
+ # source content is noisy (it contains excessive digital artifacts),
14346
+ # the filter cleans up the source. - If the source content is already
14347
+ # clean, the filter tends to decrease the bitrate, especially when the
14348
+ # rate control mode is QVBR.
14349
+ # @return [String]
14350
+ #
14351
+ # @!attribute [rw] strength
14352
+ # Choose a filter strength. We recommend a strength of 1 or 2. A
14353
+ # higher strength might take out good information, resulting in an
14354
+ # image that is overly soft.
14355
+ # @return [String]
14356
+ #
14357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TemporalFilterSettings AWS API Documentation
14358
+ #
14359
+ class TemporalFilterSettings < Struct.new(
14360
+ :post_filter_sharpening,
14361
+ :strength)
14362
+ include Aws::Structure
14363
+ end
14364
+
13648
14365
  # Timecode Config
13649
14366
  #
13650
14367
  # @note When making an API call, you may pass TimecodeConfig
@@ -14448,7 +15165,7 @@ module Aws::MediaLive
14448
15165
  # restart_delay: 1,
14449
15166
  # segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
14450
15167
  # send_delay_ms: 1,
14451
- # sparse_track_type: "NONE", # accepts NONE, SCTE_35
15168
+ # sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
14452
15169
  # stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
14453
15170
  # timestamp_offset: "__string",
14454
15171
  # timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
@@ -14559,6 +15276,8 @@ module Aws::MediaLive
14559
15276
  # },
14560
15277
  # fmp_4_hls_settings: {
14561
15278
  # audio_rendition_sets: "__string",
15279
+ # nielsen_id_3_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
15280
+ # timed_metadata_behavior: "NO_PASSTHROUGH", # accepts NO_PASSTHROUGH, PASSTHROUGH
14562
15281
  # },
14563
15282
  # standard_hls_settings: {
14564
15283
  # audio_rendition_sets: "__string",
@@ -14711,8 +15430,15 @@ module Aws::MediaLive
14711
15430
  # },
14712
15431
  # },
14713
15432
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
15433
+ # filter_settings: {
15434
+ # temporal_filter_settings: {
15435
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
15436
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
15437
+ # },
15438
+ # },
14714
15439
  # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
14715
15440
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
15441
+ # force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
14716
15442
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
14717
15443
  # framerate_denominator: 1,
14718
15444
  # framerate_numerator: 1,
@@ -14730,6 +15456,7 @@ module Aws::MediaLive
14730
15456
  # par_denominator: 1,
14731
15457
  # par_numerator: 1,
14732
15458
  # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
15459
+ # quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
14733
15460
  # qvbr_quality_level: 1,
14734
15461
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
14735
15462
  # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
@@ -14795,6 +15522,10 @@ module Aws::MediaLive
14795
15522
  # },
14796
15523
  # input_attachments: [
14797
15524
  # {
15525
+ # automatic_input_failover_settings: {
15526
+ # input_preference: "EQUAL_INPUT_PREFERENCE", # accepts EQUAL_INPUT_PREFERENCE, PRIMARY_INPUT_PREFERRED
15527
+ # secondary_input_id: "__string", # required
15528
+ # },
14798
15529
  # input_attachment_name: "__string",
14799
15530
  # input_id: "__string",
14800
15531
  # input_settings: {
@@ -14809,6 +15540,13 @@ module Aws::MediaLive
14809
15540
  # audio_pid_selection: {
14810
15541
  # pid: 1, # required
14811
15542
  # },
15543
+ # audio_track_selection: {
15544
+ # tracks: [ # required
15545
+ # {
15546
+ # track: 1, # required
15547
+ # },
15548
+ # ],
15549
+ # },
14812
15550
  # },
14813
15551
  # },
14814
15552
  # ],
@@ -14854,6 +15592,7 @@ module Aws::MediaLive
14854
15592
  # },
14855
15593
  # server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
14856
15594
  # },
15595
+ # smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
14857
15596
  # source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
14858
15597
  # video_selector: {
14859
15598
  # color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
@@ -14946,6 +15685,10 @@ module Aws::MediaLive
14946
15685
  # Destination settings for PUSH type inputs.
14947
15686
  # @return [Array<Types::InputDestinationRequest>]
14948
15687
  #
15688
+ # @!attribute [rw] input_devices
15689
+ # Settings for the devices.
15690
+ # @return [Array<Types::InputDeviceRequest>]
15691
+ #
14949
15692
  # @!attribute [rw] input_security_groups
14950
15693
  # A list of security groups referenced by IDs to attach to the input.
14951
15694
  # @return [Array<String>]
@@ -14977,6 +15720,7 @@ module Aws::MediaLive
14977
15720
  #
14978
15721
  class UpdateInput < Struct.new(
14979
15722
  :destinations,
15723
+ :input_devices,
14980
15724
  :input_security_groups,
14981
15725
  :media_connect_flows,
14982
15726
  :name,
@@ -14985,6 +15729,113 @@ module Aws::MediaLive
14985
15729
  include Aws::Structure
14986
15730
  end
14987
15731
 
15732
+ # Updates an input device.
15733
+ #
15734
+ # @!attribute [rw] hd_device_settings
15735
+ # The settings that you want to apply to the input device.
15736
+ # @return [Types::InputDeviceConfigurableSettings]
15737
+ #
15738
+ # @!attribute [rw] name
15739
+ # The name that you assigned to this input device (not the unique ID).
15740
+ # @return [String]
15741
+ #
15742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDevice AWS API Documentation
15743
+ #
15744
+ class UpdateInputDevice < Struct.new(
15745
+ :hd_device_settings,
15746
+ :name)
15747
+ include Aws::Structure
15748
+ end
15749
+
15750
+ # @note When making an API call, you may pass UpdateInputDeviceRequest
15751
+ # data as a hash:
15752
+ #
15753
+ # {
15754
+ # hd_device_settings: {
15755
+ # configured_input: "AUTO", # accepts AUTO, HDMI, SDI
15756
+ # max_bitrate: 1,
15757
+ # },
15758
+ # input_device_id: "__string", # required
15759
+ # name: "__string",
15760
+ # }
15761
+ #
15762
+ # @!attribute [rw] hd_device_settings
15763
+ # Configurable settings for the input device.
15764
+ # @return [Types::InputDeviceConfigurableSettings]
15765
+ #
15766
+ # @!attribute [rw] input_device_id
15767
+ # @return [String]
15768
+ #
15769
+ # @!attribute [rw] name
15770
+ # @return [String]
15771
+ #
15772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDeviceRequest AWS API Documentation
15773
+ #
15774
+ class UpdateInputDeviceRequest < Struct.new(
15775
+ :hd_device_settings,
15776
+ :input_device_id,
15777
+ :name)
15778
+ include Aws::Structure
15779
+ end
15780
+
15781
+ # @!attribute [rw] arn
15782
+ # @return [String]
15783
+ #
15784
+ # @!attribute [rw] connection_state
15785
+ # The state of the connection between the input device and AWS.
15786
+ # @return [String]
15787
+ #
15788
+ # @!attribute [rw] device_settings_sync_state
15789
+ # The status of the action to synchronize the device configuration. If
15790
+ # you change the configuration of the input device (for example, the
15791
+ # maximum bitrate), MediaLive sends the new data to the device. The
15792
+ # device might not update itself immediately. SYNCED means the device
15793
+ # has updated its configuration. SYNCING means that it has not updated
15794
+ # its configuration.
15795
+ # @return [String]
15796
+ #
15797
+ # @!attribute [rw] hd_device_settings
15798
+ # Settings that describe the active source from the input device, and
15799
+ # the video characteristics of that source.
15800
+ # @return [Types::InputDeviceHdSettings]
15801
+ #
15802
+ # @!attribute [rw] id
15803
+ # @return [String]
15804
+ #
15805
+ # @!attribute [rw] mac_address
15806
+ # @return [String]
15807
+ #
15808
+ # @!attribute [rw] name
15809
+ # @return [String]
15810
+ #
15811
+ # @!attribute [rw] network_settings
15812
+ # The network settings for the input device.
15813
+ # @return [Types::InputDeviceNetworkSettings]
15814
+ #
15815
+ # @!attribute [rw] serial_number
15816
+ # @return [String]
15817
+ #
15818
+ # @!attribute [rw] type
15819
+ # The type of the input device. For an AWS Elemental Link device that
15820
+ # outputs resolutions up to 1080, choose "HD".
15821
+ # @return [String]
15822
+ #
15823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputDeviceResponse AWS API Documentation
15824
+ #
15825
+ class UpdateInputDeviceResponse < Struct.new(
15826
+ :arn,
15827
+ :connection_state,
15828
+ :device_settings_sync_state,
15829
+ :hd_device_settings,
15830
+ :id,
15831
+ :mac_address,
15832
+ :name,
15833
+ :network_settings,
15834
+ :serial_number,
15835
+ :type)
15836
+ include Aws::Structure
15837
+ end
15838
+
14988
15839
  # @note When making an API call, you may pass UpdateInputRequest
14989
15840
  # data as a hash:
14990
15841
  #
@@ -14994,6 +15845,11 @@ module Aws::MediaLive
14994
15845
  # stream_name: "__string",
14995
15846
  # },
14996
15847
  # ],
15848
+ # input_devices: [
15849
+ # {
15850
+ # id: "__string",
15851
+ # },
15852
+ # ],
14997
15853
  # input_id: "__string", # required
14998
15854
  # input_security_groups: ["__string"],
14999
15855
  # media_connect_flows: [
@@ -15015,6 +15871,9 @@ module Aws::MediaLive
15015
15871
  # @!attribute [rw] destinations
15016
15872
  # @return [Array<Types::InputDestinationRequest>]
15017
15873
  #
15874
+ # @!attribute [rw] input_devices
15875
+ # @return [Array<Types::InputDeviceRequest>]
15876
+ #
15018
15877
  # @!attribute [rw] input_id
15019
15878
  # @return [String]
15020
15879
  #
@@ -15037,6 +15896,7 @@ module Aws::MediaLive
15037
15896
  #
15038
15897
  class UpdateInputRequest < Struct.new(
15039
15898
  :destinations,
15899
+ :input_devices,
15040
15900
  :input_id,
15041
15901
  :input_security_groups,
15042
15902
  :media_connect_flows,
@@ -15327,9 +16187,11 @@ module Aws::MediaLive
15327
16187
  end
15328
16188
 
15329
16189
  # @!attribute [rw] element_path
16190
+ # Path to the source of the error.
15330
16191
  # @return [String]
15331
16192
  #
15332
16193
  # @!attribute [rw] error_message
16194
+ # The error message.
15333
16195
  # @return [String]
15334
16196
  #
15335
16197
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ValidationError AWS API Documentation
@@ -15366,8 +16228,15 @@ module Aws::MediaLive
15366
16228
  # },
15367
16229
  # },
15368
16230
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
16231
+ # filter_settings: {
16232
+ # temporal_filter_settings: {
16233
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
16234
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
16235
+ # },
16236
+ # },
15369
16237
  # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
15370
16238
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
16239
+ # force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
15371
16240
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
15372
16241
  # framerate_denominator: 1,
15373
16242
  # framerate_numerator: 1,
@@ -15385,6 +16254,7 @@ module Aws::MediaLive
15385
16254
  # par_denominator: 1,
15386
16255
  # par_numerator: 1,
15387
16256
  # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
16257
+ # quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
15388
16258
  # qvbr_quality_level: 1,
15389
16259
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
15390
16260
  # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
@@ -15488,8 +16358,15 @@ module Aws::MediaLive
15488
16358
  # },
15489
16359
  # },
15490
16360
  # entropy_encoding: "CABAC", # accepts CABAC, CAVLC
16361
+ # filter_settings: {
16362
+ # temporal_filter_settings: {
16363
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
16364
+ # strength: "AUTO", # accepts AUTO, STRENGTH_1, STRENGTH_2, STRENGTH_3, STRENGTH_4, STRENGTH_5, STRENGTH_6, STRENGTH_7, STRENGTH_8, STRENGTH_9, STRENGTH_10, STRENGTH_11, STRENGTH_12, STRENGTH_13, STRENGTH_14, STRENGTH_15, STRENGTH_16
16365
+ # },
16366
+ # },
15491
16367
  # fixed_afd: "AFD_0000", # accepts AFD_0000, AFD_0010, AFD_0011, AFD_0100, AFD_1000, AFD_1001, AFD_1010, AFD_1011, AFD_1101, AFD_1110, AFD_1111
15492
16368
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
16369
+ # force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
15493
16370
  # framerate_control: "INITIALIZE_FROM_SOURCE", # accepts INITIALIZE_FROM_SOURCE, SPECIFIED
15494
16371
  # framerate_denominator: 1,
15495
16372
  # framerate_numerator: 1,
@@ -15507,6 +16384,7 @@ module Aws::MediaLive
15507
16384
  # par_denominator: 1,
15508
16385
  # par_numerator: 1,
15509
16386
  # profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
16387
+ # quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
15510
16388
  # qvbr_quality_level: 1,
15511
16389
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
15512
16390
  # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
@@ -15591,18 +16469,18 @@ module Aws::MediaLive
15591
16469
  # Indicates how to respond to the AFD values in the input stream.
15592
16470
  # RESPOND causes input video to be clipped, depending on the AFD
15593
16471
  # value, input display aspect ratio, and output display aspect ratio,
15594
- # and (except for FRAMECAPTURE codec) includes the values in the
15595
- # output. PASSTHROUGH (does not apply to FRAMECAPTURE codec) ignores
16472
+ # and (except for FRAME\_CAPTURE codec) includes the values in the
16473
+ # output. PASSTHROUGH (does not apply to FRAME\_CAPTURE codec) ignores
15596
16474
  # the AFD values and includes the values in the output, so input video
15597
16475
  # is not clipped. NONE ignores the AFD values and does not include the
15598
16476
  # values through to the output, so input video is not clipped.
15599
16477
  # @return [String]
15600
16478
  #
15601
16479
  # @!attribute [rw] scaling_behavior
15602
- # STRETCHTOOUTPUT configures the output position to stretch the video
15603
- # to the specified output resolution (height and width). This option
15604
- # will override any position value. DEFAULT may insert black boxes
15605
- # (pillar boxes or letter boxes) around the video to provide the
16480
+ # STRETCH\_TO\_OUTPUT configures the output position to stretch the
16481
+ # video to the specified output resolution (height and width). This
16482
+ # option will override any position value. DEFAULT may insert black
16483
+ # boxes (pillar boxes or letter boxes) around the video to provide the
15606
16484
  # specified output resolution.
15607
16485
  # @return [String]
15608
16486
  #