aws-sdk-medialive 1.42.0 → 1.47.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +1 -1
- data/lib/aws-sdk-medialive/client.rb +329 -18
- data/lib/aws-sdk-medialive/client_api.rb +226 -9
- data/lib/aws-sdk-medialive/types.rb +869 -55
- data/lib/aws-sdk-medialive/waiters.rb +159 -0
- metadata +4 -4
@@ -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,60 @@ 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)
|
878
941
|
include Aws::Structure
|
879
942
|
end
|
880
943
|
|
@@ -2642,7 +2705,7 @@ module Aws::MediaLive
|
|
2642
2705
|
# restart_delay: 1,
|
2643
2706
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
2644
2707
|
# send_delay_ms: 1,
|
2645
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
2708
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
2646
2709
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
2647
2710
|
# timestamp_offset: "__string",
|
2648
2711
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -2753,6 +2816,8 @@ module Aws::MediaLive
|
|
2753
2816
|
# },
|
2754
2817
|
# fmp_4_hls_settings: {
|
2755
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
|
2756
2821
|
# },
|
2757
2822
|
# standard_hls_settings: {
|
2758
2823
|
# audio_rendition_sets: "__string",
|
@@ -2905,6 +2970,12 @@ module Aws::MediaLive
|
|
2905
2970
|
# },
|
2906
2971
|
# },
|
2907
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
|
+
# },
|
2908
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
|
2909
2980
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
2910
2981
|
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -2925,6 +2996,7 @@ module Aws::MediaLive
|
|
2925
2996
|
# par_denominator: 1,
|
2926
2997
|
# par_numerator: 1,
|
2927
2998
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
2999
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
2928
3000
|
# qvbr_quality_level: 1,
|
2929
3001
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
2930
3002
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -3008,6 +3080,13 @@ module Aws::MediaLive
|
|
3008
3080
|
# audio_pid_selection: {
|
3009
3081
|
# pid: 1, # required
|
3010
3082
|
# },
|
3083
|
+
# audio_track_selection: {
|
3084
|
+
# tracks: [ # required
|
3085
|
+
# {
|
3086
|
+
# track: 1, # required
|
3087
|
+
# },
|
3088
|
+
# ],
|
3089
|
+
# },
|
3011
3090
|
# },
|
3012
3091
|
# },
|
3013
3092
|
# ],
|
@@ -3053,6 +3132,7 @@ module Aws::MediaLive
|
|
3053
3132
|
# },
|
3054
3133
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
3055
3134
|
# },
|
3135
|
+
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
3056
3136
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
3057
3137
|
# video_selector: {
|
3058
3138
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
|
@@ -3164,6 +3244,10 @@ module Aws::MediaLive
|
|
3164
3244
|
# Destination settings for PUSH type inputs.
|
3165
3245
|
# @return [Array<Types::InputDestinationRequest>]
|
3166
3246
|
#
|
3247
|
+
# @!attribute [rw] input_devices
|
3248
|
+
# Settings for the devices.
|
3249
|
+
# @return [Array<Types::InputDeviceSettings>]
|
3250
|
+
#
|
3167
3251
|
# @!attribute [rw] input_security_groups
|
3168
3252
|
# A list of security groups referenced by IDs to attach to the input.
|
3169
3253
|
# @return [Array<String>]
|
@@ -3215,6 +3299,7 @@ module Aws::MediaLive
|
|
3215
3299
|
#
|
3216
3300
|
class CreateInput < Struct.new(
|
3217
3301
|
:destinations,
|
3302
|
+
:input_devices,
|
3218
3303
|
:input_security_groups,
|
3219
3304
|
:media_connect_flows,
|
3220
3305
|
:name,
|
@@ -3236,6 +3321,11 @@ module Aws::MediaLive
|
|
3236
3321
|
# stream_name: "__string",
|
3237
3322
|
# },
|
3238
3323
|
# ],
|
3324
|
+
# input_devices: [
|
3325
|
+
# {
|
3326
|
+
# id: "__string",
|
3327
|
+
# },
|
3328
|
+
# ],
|
3239
3329
|
# input_security_groups: ["__string"],
|
3240
3330
|
# media_connect_flows: [
|
3241
3331
|
# {
|
@@ -3255,7 +3345,7 @@ module Aws::MediaLive
|
|
3255
3345
|
# tags: {
|
3256
3346
|
# "__string" => "__string",
|
3257
3347
|
# },
|
3258
|
-
# 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
|
3259
3349
|
# vpc: {
|
3260
3350
|
# security_group_ids: ["__string"],
|
3261
3351
|
# subnet_ids: ["__string"], # required
|
@@ -3265,6 +3355,9 @@ module Aws::MediaLive
|
|
3265
3355
|
# @!attribute [rw] destinations
|
3266
3356
|
# @return [Array<Types::InputDestinationRequest>]
|
3267
3357
|
#
|
3358
|
+
# @!attribute [rw] input_devices
|
3359
|
+
# @return [Array<Types::InputDeviceSettings>]
|
3360
|
+
#
|
3268
3361
|
# @!attribute [rw] input_security_groups
|
3269
3362
|
# @return [Array<String>]
|
3270
3363
|
#
|
@@ -3303,6 +3396,7 @@ module Aws::MediaLive
|
|
3303
3396
|
#
|
3304
3397
|
class CreateInputRequest < Struct.new(
|
3305
3398
|
:destinations,
|
3399
|
+
:input_devices,
|
3306
3400
|
:input_security_groups,
|
3307
3401
|
:media_connect_flows,
|
3308
3402
|
:name,
|
@@ -4073,6 +4167,81 @@ module Aws::MediaLive
|
|
4073
4167
|
include Aws::Structure
|
4074
4168
|
end
|
4075
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
|
+
|
4076
4245
|
# @note When making an API call, you may pass DescribeInputRequest
|
4077
4246
|
# data as a hash:
|
4078
4247
|
#
|
@@ -4107,6 +4276,9 @@ module Aws::MediaLive
|
|
4107
4276
|
# has one.
|
4108
4277
|
# @return [String]
|
4109
4278
|
#
|
4279
|
+
# @!attribute [rw] input_devices
|
4280
|
+
# @return [Array<Types::InputDeviceSettings>]
|
4281
|
+
#
|
4110
4282
|
# @!attribute [rw] input_source_type
|
4111
4283
|
# There are two types of input sources, static and dynamic. If an
|
4112
4284
|
# input source is dynamic you can change the source url of the input
|
@@ -4147,6 +4319,7 @@ module Aws::MediaLive
|
|
4147
4319
|
:destinations,
|
4148
4320
|
:id,
|
4149
4321
|
:input_class,
|
4322
|
+
:input_devices,
|
4150
4323
|
:input_source_type,
|
4151
4324
|
:media_connect_flows,
|
4152
4325
|
:name,
|
@@ -5398,7 +5571,7 @@ module Aws::MediaLive
|
|
5398
5571
|
# restart_delay: 1,
|
5399
5572
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
5400
5573
|
# send_delay_ms: 1,
|
5401
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
5574
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
5402
5575
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
5403
5576
|
# timestamp_offset: "__string",
|
5404
5577
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -5509,6 +5682,8 @@ module Aws::MediaLive
|
|
5509
5682
|
# },
|
5510
5683
|
# fmp_4_hls_settings: {
|
5511
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
|
5512
5687
|
# },
|
5513
5688
|
# standard_hls_settings: {
|
5514
5689
|
# audio_rendition_sets: "__string",
|
@@ -5661,6 +5836,12 @@ module Aws::MediaLive
|
|
5661
5836
|
# },
|
5662
5837
|
# },
|
5663
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
|
+
# },
|
5664
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
|
5665
5846
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
5666
5847
|
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -5681,6 +5862,7 @@ module Aws::MediaLive
|
|
5681
5862
|
# par_denominator: 1,
|
5682
5863
|
# par_numerator: 1,
|
5683
5864
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
5865
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
5684
5866
|
# qvbr_quality_level: 1,
|
5685
5867
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
5686
5868
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -5870,6 +6052,8 @@ module Aws::MediaLive
|
|
5870
6052
|
#
|
5871
6053
|
# {
|
5872
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
|
5873
6057
|
# }
|
5874
6058
|
#
|
5875
6059
|
# @!attribute [rw] audio_rendition_sets
|
@@ -5878,10 +6062,23 @@ module Aws::MediaLive
|
|
5878
6062
|
# video, separate by ','.
|
5879
6063
|
# @return [String]
|
5880
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
|
+
#
|
5881
6076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Fmp4HlsSettings AWS API Documentation
|
5882
6077
|
#
|
5883
6078
|
class Fmp4HlsSettings < Struct.new(
|
5884
|
-
:audio_rendition_sets
|
6079
|
+
:audio_rendition_sets,
|
6080
|
+
:nielsen_id_3_behavior,
|
6081
|
+
:timed_metadata_behavior)
|
5885
6082
|
include Aws::Structure
|
5886
6083
|
end
|
5887
6084
|
|
@@ -6054,10 +6251,11 @@ module Aws::MediaLive
|
|
6054
6251
|
# @return [Types::InputLossBehavior]
|
6055
6252
|
#
|
6056
6253
|
# @!attribute [rw] output_locking_mode
|
6057
|
-
# Indicates how MediaLive pipelines are synchronized.
|
6058
|
-
# - MediaLive will attempt to synchronize the output
|
6059
|
-
# to the other.
|
6060
|
-
# the output of each pipeline to the Unix
|
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.
|
6061
6259
|
# @return [String]
|
6062
6260
|
#
|
6063
6261
|
# @!attribute [rw] output_timing_source
|
@@ -6120,6 +6318,29 @@ module Aws::MediaLive
|
|
6120
6318
|
include Aws::Structure
|
6121
6319
|
end
|
6122
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
|
+
|
6123
6344
|
# H264 Settings
|
6124
6345
|
#
|
6125
6346
|
# @note When making an API call, you may pass H264Settings
|
@@ -6141,6 +6362,12 @@ module Aws::MediaLive
|
|
6141
6362
|
# },
|
6142
6363
|
# },
|
6143
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
|
+
# },
|
6144
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
|
6145
6372
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
6146
6373
|
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -6161,6 +6388,7 @@ module Aws::MediaLive
|
|
6161
6388
|
# par_denominator: 1,
|
6162
6389
|
# par_numerator: 1,
|
6163
6390
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
6391
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
6164
6392
|
# qvbr_quality_level: 1,
|
6165
6393
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
6166
6394
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -6216,6 +6444,10 @@ module Aws::MediaLive
|
|
6216
6444
|
# or cavlc.
|
6217
6445
|
# @return [String]
|
6218
6446
|
#
|
6447
|
+
# @!attribute [rw] filter_settings
|
6448
|
+
# Optional filters that you can apply to an encode.
|
6449
|
+
# @return [Types::H264FilterSettings]
|
6450
|
+
#
|
6219
6451
|
# @!attribute [rw] fixed_afd
|
6220
6452
|
# Four bit AFD value to write on all frames of video in the output
|
6221
6453
|
# stream. Only valid when afdSignaling is set to 'Fixed'.
|
@@ -6228,13 +6460,13 @@ module Aws::MediaLive
|
|
6228
6460
|
#
|
6229
6461
|
# @!attribute [rw] force_field_pictures
|
6230
6462
|
# This setting applies only when scan type is "interlaced." It
|
6231
|
-
# controls whether coding is on a field basis or a frame
|
6232
|
-
# the video is progressive, the coding is always
|
6233
|
-
#
|
6234
|
-
#
|
6235
|
-
# separately
|
6236
|
-
#
|
6237
|
-
# content.
|
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.
|
6238
6470
|
# @return [String]
|
6239
6471
|
#
|
6240
6472
|
# @!attribute [rw] framerate_control
|
@@ -6336,6 +6568,16 @@ module Aws::MediaLive
|
|
6336
6568
|
# H.264 Profile.
|
6337
6569
|
# @return [String]
|
6338
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
|
+
#
|
6339
6581
|
# @!attribute [rw] qvbr_quality_level
|
6340
6582
|
# Controls the target quality for the video encode. Applies only when
|
6341
6583
|
# the rate control mode is QVBR. Set values for the QVBR quality level
|
@@ -6423,6 +6665,7 @@ module Aws::MediaLive
|
|
6423
6665
|
:color_metadata,
|
6424
6666
|
:color_space_settings,
|
6425
6667
|
:entropy_encoding,
|
6668
|
+
:filter_settings,
|
6426
6669
|
:fixed_afd,
|
6427
6670
|
:flicker_aq,
|
6428
6671
|
:force_field_pictures,
|
@@ -6443,6 +6686,7 @@ module Aws::MediaLive
|
|
6443
6686
|
:par_denominator,
|
6444
6687
|
:par_numerator,
|
6445
6688
|
:profile,
|
6689
|
+
:quality_level,
|
6446
6690
|
:qvbr_quality_level,
|
6447
6691
|
:rate_control_mode,
|
6448
6692
|
:scan_type,
|
@@ -7206,9 +7450,11 @@ module Aws::MediaLive
|
|
7206
7450
|
# @return [String]
|
7207
7451
|
#
|
7208
7452
|
# @!attribute [rw] output_selection
|
7209
|
-
#
|
7453
|
+
# MANIFESTS\_AND\_SEGMENTS: Generates manifests (master manifest, if
|
7210
7454
|
# applicable, and media manifests) for this output group.
|
7211
|
-
#
|
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.
|
7212
7458
|
# @return [String]
|
7213
7459
|
#
|
7214
7460
|
# @!attribute [rw] program_date_time
|
@@ -7274,8 +7520,8 @@ module Aws::MediaLive
|
|
7274
7520
|
# @return [Integer]
|
7275
7521
|
#
|
7276
7522
|
# @!attribute [rw] ts_file_mode
|
7277
|
-
#
|
7278
|
-
# files.
|
7523
|
+
# SEGMENTED\_FILES: Emit the program as segments - multiple .ts media
|
7524
|
+
# files. SINGLE\_FILE: Applies only if Mode field is VOD. Emit the
|
7279
7525
|
# program as a single .ts media file. The media manifest includes
|
7280
7526
|
# #EXT-X-BYTERANGE tags to index segments for playback. A typical use
|
7281
7527
|
# for this value is when sending the output to AWS Elemental
|
@@ -7468,6 +7714,8 @@ module Aws::MediaLive
|
|
7468
7714
|
# },
|
7469
7715
|
# fmp_4_hls_settings: {
|
7470
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
|
7471
7719
|
# },
|
7472
7720
|
# standard_hls_settings: {
|
7473
7721
|
# audio_rendition_sets: "__string",
|
@@ -7544,6 +7792,8 @@ module Aws::MediaLive
|
|
7544
7792
|
# },
|
7545
7793
|
# fmp_4_hls_settings: {
|
7546
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
|
7547
7797
|
# },
|
7548
7798
|
# standard_hls_settings: {
|
7549
7799
|
# audio_rendition_sets: "__string",
|
@@ -7658,8 +7908,7 @@ module Aws::MediaLive
|
|
7658
7908
|
include Aws::Structure
|
7659
7909
|
end
|
7660
7910
|
|
7661
|
-
# Settings to configure an action so that it occurs
|
7662
|
-
# only supported for input switch actions currently.
|
7911
|
+
# Settings to configure an action so that it occurs as soon as possible.
|
7663
7912
|
#
|
7664
7913
|
# @api private
|
7665
7914
|
#
|
@@ -7695,6 +7944,10 @@ module Aws::MediaLive
|
|
7695
7944
|
# not valid because the channel requires two sources in the input.
|
7696
7945
|
# @return [String]
|
7697
7946
|
#
|
7947
|
+
# @!attribute [rw] input_devices
|
7948
|
+
# Settings for the input devices.
|
7949
|
+
# @return [Array<Types::InputDeviceSettings>]
|
7950
|
+
#
|
7698
7951
|
# @!attribute [rw] input_source_type
|
7699
7952
|
# Certain pull input sources can be dynamic, meaning that they can
|
7700
7953
|
# have their URL's dynamically changes during input switch actions.
|
@@ -7741,6 +7994,7 @@ module Aws::MediaLive
|
|
7741
7994
|
:destinations,
|
7742
7995
|
:id,
|
7743
7996
|
:input_class,
|
7997
|
+
:input_devices,
|
7744
7998
|
:input_source_type,
|
7745
7999
|
:media_connect_flows,
|
7746
8000
|
:name,
|
@@ -7775,6 +8029,13 @@ module Aws::MediaLive
|
|
7775
8029
|
# audio_pid_selection: {
|
7776
8030
|
# pid: 1, # required
|
7777
8031
|
# },
|
8032
|
+
# audio_track_selection: {
|
8033
|
+
# tracks: [ # required
|
8034
|
+
# {
|
8035
|
+
# track: 1, # required
|
8036
|
+
# },
|
8037
|
+
# ],
|
8038
|
+
# },
|
7778
8039
|
# },
|
7779
8040
|
# },
|
7780
8041
|
# ],
|
@@ -7820,6 +8081,7 @@ module Aws::MediaLive
|
|
7820
8081
|
# },
|
7821
8082
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
7822
8083
|
# },
|
8084
|
+
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
7823
8085
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
7824
8086
|
# video_selector: {
|
7825
8087
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
|
@@ -7997,6 +8259,306 @@ module Aws::MediaLive
|
|
7997
8259
|
include Aws::Structure
|
7998
8260
|
end
|
7999
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
|
+
|
8000
8562
|
# Input Location
|
8001
8563
|
#
|
8002
8564
|
# @note When making an API call, you may pass InputLocation
|
@@ -8168,6 +8730,13 @@ module Aws::MediaLive
|
|
8168
8730
|
# audio_pid_selection: {
|
8169
8731
|
# pid: 1, # required
|
8170
8732
|
# },
|
8733
|
+
# audio_track_selection: {
|
8734
|
+
# tracks: [ # required
|
8735
|
+
# {
|
8736
|
+
# track: 1, # required
|
8737
|
+
# },
|
8738
|
+
# ],
|
8739
|
+
# },
|
8171
8740
|
# },
|
8172
8741
|
# },
|
8173
8742
|
# ],
|
@@ -8213,6 +8782,7 @@ module Aws::MediaLive
|
|
8213
8782
|
# },
|
8214
8783
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
8215
8784
|
# },
|
8785
|
+
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
8216
8786
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
8217
8787
|
# video_selector: {
|
8218
8788
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
|
@@ -8263,6 +8833,15 @@ module Aws::MediaLive
|
|
8263
8833
|
# Input settings.
|
8264
8834
|
# @return [Types::NetworkInputSettings]
|
8265
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
|
+
#
|
8266
8845
|
# @!attribute [rw] source_end_behavior
|
8267
8846
|
# Loop input if it is a file. This allows a file input to be streamed
|
8268
8847
|
# indefinitely.
|
@@ -8283,6 +8862,7 @@ module Aws::MediaLive
|
|
8283
8862
|
:filter_strength,
|
8284
8863
|
:input_filter,
|
8285
8864
|
:network_input_settings,
|
8865
|
+
:smpte_2038_data_preference,
|
8286
8866
|
:source_end_behavior,
|
8287
8867
|
:video_selector)
|
8288
8868
|
include Aws::Structure
|
@@ -8605,6 +9185,60 @@ module Aws::MediaLive
|
|
8605
9185
|
include Aws::Structure
|
8606
9186
|
end
|
8607
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
|
+
|
8608
9242
|
# @note When making an API call, you may pass ListInputSecurityGroupsRequest
|
8609
9243
|
# data as a hash:
|
8610
9244
|
#
|
@@ -9376,7 +10010,7 @@ module Aws::MediaLive
|
|
9376
10010
|
#
|
9377
10011
|
# @!attribute [rw] segmentation_time
|
9378
10012
|
# The length in seconds of each segment. Required unless markers is
|
9379
|
-
# set to
|
10013
|
+
# set to \_none\_.
|
9380
10014
|
# @return [Float]
|
9381
10015
|
#
|
9382
10016
|
# @!attribute [rw] timed_metadata_behavior
|
@@ -9735,16 +10369,15 @@ module Aws::MediaLive
|
|
9735
10369
|
# restart_delay: 1,
|
9736
10370
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
9737
10371
|
# send_delay_ms: 1,
|
9738
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
10372
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
9739
10373
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
9740
10374
|
# timestamp_offset: "__string",
|
9741
10375
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
9742
10376
|
# }
|
9743
10377
|
#
|
9744
10378
|
# @!attribute [rw] acquisition_point_id
|
9745
|
-
# The
|
9746
|
-
#
|
9747
|
-
# is not "none".
|
10379
|
+
# The ID to include in each message in the sparse track. Ignored if
|
10380
|
+
# sparseTrackType is NONE.
|
9748
10381
|
# @return [String]
|
9749
10382
|
#
|
9750
10383
|
# @!attribute [rw] audio_only_timecode_control
|
@@ -9824,8 +10457,13 @@ module Aws::MediaLive
|
|
9824
10457
|
# @return [Integer]
|
9825
10458
|
#
|
9826
10459
|
# @!attribute [rw] sparse_track_type
|
9827
|
-
#
|
9828
|
-
#
|
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.
|
9829
10467
|
# @return [String]
|
9830
10468
|
#
|
9831
10469
|
# @!attribute [rw] stream_manifest_behavior
|
@@ -9962,7 +10600,7 @@ module Aws::MediaLive
|
|
9962
10600
|
#
|
9963
10601
|
# @!attribute [rw] validation_errors
|
9964
10602
|
# A collection of validation error responses.
|
9965
|
-
# @return [Array<Types::
|
10603
|
+
# @return [Array<Types::ValidationError>]
|
9966
10604
|
#
|
9967
10605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexConfigurationValidationError AWS API Documentation
|
9968
10606
|
#
|
@@ -10368,22 +11006,6 @@ module Aws::MediaLive
|
|
10368
11006
|
include Aws::Structure
|
10369
11007
|
end
|
10370
11008
|
|
10371
|
-
# @!attribute [rw] element_path
|
10372
|
-
# Path to the source of the error.
|
10373
|
-
# @return [String]
|
10374
|
-
#
|
10375
|
-
# @!attribute [rw] error_message
|
10376
|
-
# The error message.
|
10377
|
-
# @return [String]
|
10378
|
-
#
|
10379
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MultiplexValidationError AWS API Documentation
|
10380
|
-
#
|
10381
|
-
class MultiplexValidationError < Struct.new(
|
10382
|
-
:element_path,
|
10383
|
-
:error_message)
|
10384
|
-
include Aws::Structure
|
10385
|
-
end
|
10386
|
-
|
10387
11009
|
# The video configuration for each program in a multiplex.
|
10388
11010
|
#
|
10389
11011
|
# @note When making an API call, you may pass MultiplexVideoSettings
|
@@ -10650,6 +11272,8 @@ module Aws::MediaLive
|
|
10650
11272
|
# },
|
10651
11273
|
# fmp_4_hls_settings: {
|
10652
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
|
10653
11277
|
# },
|
10654
11278
|
# standard_hls_settings: {
|
10655
11279
|
# audio_rendition_sets: "__string",
|
@@ -11027,7 +11651,7 @@ module Aws::MediaLive
|
|
11027
11651
|
# restart_delay: 1,
|
11028
11652
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
11029
11653
|
# send_delay_ms: 1,
|
11030
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
11654
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
11031
11655
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
11032
11656
|
# timestamp_offset: "__string",
|
11033
11657
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -11138,6 +11762,8 @@ module Aws::MediaLive
|
|
11138
11762
|
# },
|
11139
11763
|
# fmp_4_hls_settings: {
|
11140
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
|
11141
11767
|
# },
|
11142
11768
|
# standard_hls_settings: {
|
11143
11769
|
# audio_rendition_sets: "__string",
|
@@ -11414,7 +12040,7 @@ module Aws::MediaLive
|
|
11414
12040
|
# restart_delay: 1,
|
11415
12041
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
11416
12042
|
# send_delay_ms: 1,
|
11417
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
12043
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
11418
12044
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
11419
12045
|
# timestamp_offset: "__string",
|
11420
12046
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -11591,6 +12217,8 @@ module Aws::MediaLive
|
|
11591
12217
|
# },
|
11592
12218
|
# fmp_4_hls_settings: {
|
11593
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
|
11594
12222
|
# },
|
11595
12223
|
# standard_hls_settings: {
|
11596
12224
|
# audio_rendition_sets: "__string",
|
@@ -13702,6 +14330,38 @@ module Aws::MediaLive
|
|
13702
14330
|
include Aws::Structure
|
13703
14331
|
end
|
13704
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
|
+
|
13705
14365
|
# Timecode Config
|
13706
14366
|
#
|
13707
14367
|
# @note When making an API call, you may pass TimecodeConfig
|
@@ -14505,7 +15165,7 @@ module Aws::MediaLive
|
|
14505
15165
|
# restart_delay: 1,
|
14506
15166
|
# segmentation_mode: "USE_INPUT_SEGMENTATION", # accepts USE_INPUT_SEGMENTATION, USE_SEGMENT_DURATION
|
14507
15167
|
# send_delay_ms: 1,
|
14508
|
-
# sparse_track_type: "NONE", # accepts NONE, SCTE_35
|
15168
|
+
# sparse_track_type: "NONE", # accepts NONE, SCTE_35, SCTE_35_WITHOUT_SEGMENTATION
|
14509
15169
|
# stream_manifest_behavior: "DO_NOT_SEND", # accepts DO_NOT_SEND, SEND
|
14510
15170
|
# timestamp_offset: "__string",
|
14511
15171
|
# timestamp_offset_mode: "USE_CONFIGURED_OFFSET", # accepts USE_CONFIGURED_OFFSET, USE_EVENT_START_DATE
|
@@ -14616,6 +15276,8 @@ module Aws::MediaLive
|
|
14616
15276
|
# },
|
14617
15277
|
# fmp_4_hls_settings: {
|
14618
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
|
14619
15281
|
# },
|
14620
15282
|
# standard_hls_settings: {
|
14621
15283
|
# audio_rendition_sets: "__string",
|
@@ -14768,6 +15430,12 @@ module Aws::MediaLive
|
|
14768
15430
|
# },
|
14769
15431
|
# },
|
14770
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
|
+
# },
|
14771
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
|
14772
15440
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
14773
15441
|
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -14788,6 +15456,7 @@ module Aws::MediaLive
|
|
14788
15456
|
# par_denominator: 1,
|
14789
15457
|
# par_numerator: 1,
|
14790
15458
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
15459
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
14791
15460
|
# qvbr_quality_level: 1,
|
14792
15461
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
14793
15462
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -14871,6 +15540,13 @@ module Aws::MediaLive
|
|
14871
15540
|
# audio_pid_selection: {
|
14872
15541
|
# pid: 1, # required
|
14873
15542
|
# },
|
15543
|
+
# audio_track_selection: {
|
15544
|
+
# tracks: [ # required
|
15545
|
+
# {
|
15546
|
+
# track: 1, # required
|
15547
|
+
# },
|
15548
|
+
# ],
|
15549
|
+
# },
|
14874
15550
|
# },
|
14875
15551
|
# },
|
14876
15552
|
# ],
|
@@ -14916,6 +15592,7 @@ module Aws::MediaLive
|
|
14916
15592
|
# },
|
14917
15593
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
14918
15594
|
# },
|
15595
|
+
# smpte_2038_data_preference: "IGNORE", # accepts IGNORE, PREFER
|
14919
15596
|
# source_end_behavior: "CONTINUE", # accepts CONTINUE, LOOP
|
14920
15597
|
# video_selector: {
|
14921
15598
|
# color_space: "FOLLOW", # accepts FOLLOW, REC_601, REC_709
|
@@ -15008,6 +15685,10 @@ module Aws::MediaLive
|
|
15008
15685
|
# Destination settings for PUSH type inputs.
|
15009
15686
|
# @return [Array<Types::InputDestinationRequest>]
|
15010
15687
|
#
|
15688
|
+
# @!attribute [rw] input_devices
|
15689
|
+
# Settings for the devices.
|
15690
|
+
# @return [Array<Types::InputDeviceRequest>]
|
15691
|
+
#
|
15011
15692
|
# @!attribute [rw] input_security_groups
|
15012
15693
|
# A list of security groups referenced by IDs to attach to the input.
|
15013
15694
|
# @return [Array<String>]
|
@@ -15039,6 +15720,7 @@ module Aws::MediaLive
|
|
15039
15720
|
#
|
15040
15721
|
class UpdateInput < Struct.new(
|
15041
15722
|
:destinations,
|
15723
|
+
:input_devices,
|
15042
15724
|
:input_security_groups,
|
15043
15725
|
:media_connect_flows,
|
15044
15726
|
:name,
|
@@ -15047,6 +15729,113 @@ module Aws::MediaLive
|
|
15047
15729
|
include Aws::Structure
|
15048
15730
|
end
|
15049
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
|
+
|
15050
15839
|
# @note When making an API call, you may pass UpdateInputRequest
|
15051
15840
|
# data as a hash:
|
15052
15841
|
#
|
@@ -15056,6 +15845,11 @@ module Aws::MediaLive
|
|
15056
15845
|
# stream_name: "__string",
|
15057
15846
|
# },
|
15058
15847
|
# ],
|
15848
|
+
# input_devices: [
|
15849
|
+
# {
|
15850
|
+
# id: "__string",
|
15851
|
+
# },
|
15852
|
+
# ],
|
15059
15853
|
# input_id: "__string", # required
|
15060
15854
|
# input_security_groups: ["__string"],
|
15061
15855
|
# media_connect_flows: [
|
@@ -15077,6 +15871,9 @@ module Aws::MediaLive
|
|
15077
15871
|
# @!attribute [rw] destinations
|
15078
15872
|
# @return [Array<Types::InputDestinationRequest>]
|
15079
15873
|
#
|
15874
|
+
# @!attribute [rw] input_devices
|
15875
|
+
# @return [Array<Types::InputDeviceRequest>]
|
15876
|
+
#
|
15080
15877
|
# @!attribute [rw] input_id
|
15081
15878
|
# @return [String]
|
15082
15879
|
#
|
@@ -15099,6 +15896,7 @@ module Aws::MediaLive
|
|
15099
15896
|
#
|
15100
15897
|
class UpdateInputRequest < Struct.new(
|
15101
15898
|
:destinations,
|
15899
|
+
:input_devices,
|
15102
15900
|
:input_id,
|
15103
15901
|
:input_security_groups,
|
15104
15902
|
:media_connect_flows,
|
@@ -15389,9 +16187,11 @@ module Aws::MediaLive
|
|
15389
16187
|
end
|
15390
16188
|
|
15391
16189
|
# @!attribute [rw] element_path
|
16190
|
+
# Path to the source of the error.
|
15392
16191
|
# @return [String]
|
15393
16192
|
#
|
15394
16193
|
# @!attribute [rw] error_message
|
16194
|
+
# The error message.
|
15395
16195
|
# @return [String]
|
15396
16196
|
#
|
15397
16197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ValidationError AWS API Documentation
|
@@ -15428,6 +16228,12 @@ module Aws::MediaLive
|
|
15428
16228
|
# },
|
15429
16229
|
# },
|
15430
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
|
+
# },
|
15431
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
|
15432
16238
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
15433
16239
|
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -15448,6 +16254,7 @@ module Aws::MediaLive
|
|
15448
16254
|
# par_denominator: 1,
|
15449
16255
|
# par_numerator: 1,
|
15450
16256
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
16257
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
15451
16258
|
# qvbr_quality_level: 1,
|
15452
16259
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
15453
16260
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -15551,6 +16358,12 @@ module Aws::MediaLive
|
|
15551
16358
|
# },
|
15552
16359
|
# },
|
15553
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
|
+
# },
|
15554
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
|
15555
16368
|
# flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
|
15556
16369
|
# force_field_pictures: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -15571,6 +16384,7 @@ module Aws::MediaLive
|
|
15571
16384
|
# par_denominator: 1,
|
15572
16385
|
# par_numerator: 1,
|
15573
16386
|
# profile: "BASELINE", # accepts BASELINE, HIGH, HIGH_10BIT, HIGH_422, HIGH_422_10BIT, MAIN
|
16387
|
+
# quality_level: "ENHANCED_QUALITY", # accepts ENHANCED_QUALITY, STANDARD_QUALITY
|
15574
16388
|
# qvbr_quality_level: 1,
|
15575
16389
|
# rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR, VBR
|
15576
16390
|
# scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
|
@@ -15655,18 +16469,18 @@ module Aws::MediaLive
|
|
15655
16469
|
# Indicates how to respond to the AFD values in the input stream.
|
15656
16470
|
# RESPOND causes input video to be clipped, depending on the AFD
|
15657
16471
|
# value, input display aspect ratio, and output display aspect ratio,
|
15658
|
-
# and (except for
|
15659
|
-
# output. PASSTHROUGH (does not apply to
|
16472
|
+
# and (except for FRAME\_CAPTURE codec) includes the values in the
|
16473
|
+
# output. PASSTHROUGH (does not apply to FRAME\_CAPTURE codec) ignores
|
15660
16474
|
# the AFD values and includes the values in the output, so input video
|
15661
16475
|
# is not clipped. NONE ignores the AFD values and does not include the
|
15662
16476
|
# values through to the output, so input video is not clipped.
|
15663
16477
|
# @return [String]
|
15664
16478
|
#
|
15665
16479
|
# @!attribute [rw] scaling_behavior
|
15666
|
-
#
|
15667
|
-
# to the specified output resolution (height and width). This
|
15668
|
-
# will override any position value. DEFAULT may insert black
|
15669
|
-
# (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
|
15670
16484
|
# specified output resolution.
|
15671
16485
|
# @return [String]
|
15672
16486
|
#
|