aws-sdk-medialive 1.49.0 → 1.54.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6cb6b17636568c0e453598f6032f01fbd1d60b5a34449ac17a5c2e741694bb4
4
- data.tar.gz: d772cd32b3289616b2686d2a0dcd1ebe9411d5e73b726c177310e000897c4bc1
3
+ metadata.gz: 532f85ba58b5cb15e0d09fb17d961a82e71cff07caa98c1fadf2b50559327df1
4
+ data.tar.gz: 49df3345647102a384c219d4f3b85c52c904f47890e075362469895fc10e19c0
5
5
  SHA512:
6
- metadata.gz: 47e62474dbf328c1353a13922843221176afdb2b2e2f0d571a1373ab55d1bf35f976ec79e9b0be5ccebada80c1f2c33b26dc4d922e647bbe91cd67daf40ff9e8
7
- data.tar.gz: '028b810b58b133fcc0c637e9b84bbc23405eca3f61681468d98ec8b88e01af38098af25a59fab93a75104fdc9f4eb5acf4e8080c948fb98aebd2c9c217abd4e4'
6
+ metadata.gz: a801afa08b5336ed23c0dca34e056fdd869b5295db083f3df2fe240dd2c8d04dc54e67c46d87a07992de476339c21242417956829fb8ab905003b853f77bf560
7
+ data.tar.gz: eaa120673edd0b8fac663653e1b9a1decb1ff973e27bc7726c9ece0a6d76703772530dfa31f8389b5ba1edc449b19a85711b92297bff1f12397c70d21d775ddc
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -28,7 +29,7 @@ require_relative 'aws-sdk-medialive/customizations'
28
29
  # structure.
29
30
  #
30
31
  # media_live = Aws::MediaLive::Client.new
31
- # resp = media_live.batch_update_schedule(params)
32
+ # resp = media_live.batch_delete(params)
32
33
  #
33
34
  # See {Client} for more information.
34
35
  #
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-medialive/customizations'
45
46
  #
46
47
  # See {Errors} for more information.
47
48
  #
48
- # @service
49
+ # @!group service
49
50
  module Aws::MediaLive
50
51
 
51
- GEM_VERSION = '1.49.0'
52
+ GEM_VERSION = '1.54.0'
52
53
 
53
54
  end
@@ -85,13 +85,28 @@ module Aws::MediaLive
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::MediaLive
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -312,6 +327,129 @@ module Aws::MediaLive
312
327
 
313
328
  # @!group API Operations
314
329
 
330
+ # Starts delete of resources.
331
+ #
332
+ # @option params [Array<String>] :channel_ids
333
+ #
334
+ # @option params [Array<String>] :input_ids
335
+ #
336
+ # @option params [Array<String>] :input_security_group_ids
337
+ #
338
+ # @option params [Array<String>] :multiplex_ids
339
+ #
340
+ # @return [Types::BatchDeleteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
341
+ #
342
+ # * {Types::BatchDeleteResponse#failed #failed} => Array&lt;Types::BatchFailedResultModel&gt;
343
+ # * {Types::BatchDeleteResponse#successful #successful} => Array&lt;Types::BatchSuccessfulResultModel&gt;
344
+ #
345
+ # @example Request syntax with placeholder values
346
+ #
347
+ # resp = client.batch_delete({
348
+ # channel_ids: ["__string"],
349
+ # input_ids: ["__string"],
350
+ # input_security_group_ids: ["__string"],
351
+ # multiplex_ids: ["__string"],
352
+ # })
353
+ #
354
+ # @example Response structure
355
+ #
356
+ # resp.failed #=> Array
357
+ # resp.failed[0].arn #=> String
358
+ # resp.failed[0].code #=> String
359
+ # resp.failed[0].id #=> String
360
+ # resp.failed[0].message #=> String
361
+ # resp.successful #=> Array
362
+ # resp.successful[0].arn #=> String
363
+ # resp.successful[0].id #=> String
364
+ # resp.successful[0].state #=> String
365
+ #
366
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchDelete AWS API Documentation
367
+ #
368
+ # @overload batch_delete(params = {})
369
+ # @param [Hash] params ({})
370
+ def batch_delete(params = {}, options = {})
371
+ req = build_request(:batch_delete, params)
372
+ req.send_request(options)
373
+ end
374
+
375
+ # Starts existing resources
376
+ #
377
+ # @option params [Array<String>] :channel_ids
378
+ #
379
+ # @option params [Array<String>] :multiplex_ids
380
+ #
381
+ # @return [Types::BatchStartResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
382
+ #
383
+ # * {Types::BatchStartResponse#failed #failed} => Array&lt;Types::BatchFailedResultModel&gt;
384
+ # * {Types::BatchStartResponse#successful #successful} => Array&lt;Types::BatchSuccessfulResultModel&gt;
385
+ #
386
+ # @example Request syntax with placeholder values
387
+ #
388
+ # resp = client.batch_start({
389
+ # channel_ids: ["__string"],
390
+ # multiplex_ids: ["__string"],
391
+ # })
392
+ #
393
+ # @example Response structure
394
+ #
395
+ # resp.failed #=> Array
396
+ # resp.failed[0].arn #=> String
397
+ # resp.failed[0].code #=> String
398
+ # resp.failed[0].id #=> String
399
+ # resp.failed[0].message #=> String
400
+ # resp.successful #=> Array
401
+ # resp.successful[0].arn #=> String
402
+ # resp.successful[0].id #=> String
403
+ # resp.successful[0].state #=> String
404
+ #
405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStart AWS API Documentation
406
+ #
407
+ # @overload batch_start(params = {})
408
+ # @param [Hash] params ({})
409
+ def batch_start(params = {}, options = {})
410
+ req = build_request(:batch_start, params)
411
+ req.send_request(options)
412
+ end
413
+
414
+ # Stops running resources
415
+ #
416
+ # @option params [Array<String>] :channel_ids
417
+ #
418
+ # @option params [Array<String>] :multiplex_ids
419
+ #
420
+ # @return [Types::BatchStopResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
421
+ #
422
+ # * {Types::BatchStopResponse#failed #failed} => Array&lt;Types::BatchFailedResultModel&gt;
423
+ # * {Types::BatchStopResponse#successful #successful} => Array&lt;Types::BatchSuccessfulResultModel&gt;
424
+ #
425
+ # @example Request syntax with placeholder values
426
+ #
427
+ # resp = client.batch_stop({
428
+ # channel_ids: ["__string"],
429
+ # multiplex_ids: ["__string"],
430
+ # })
431
+ #
432
+ # @example Response structure
433
+ #
434
+ # resp.failed #=> Array
435
+ # resp.failed[0].arn #=> String
436
+ # resp.failed[0].code #=> String
437
+ # resp.failed[0].id #=> String
438
+ # resp.failed[0].message #=> String
439
+ # resp.successful #=> Array
440
+ # resp.successful[0].arn #=> String
441
+ # resp.successful[0].id #=> String
442
+ # resp.successful[0].state #=> String
443
+ #
444
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchStop AWS API Documentation
445
+ #
446
+ # @overload batch_stop(params = {})
447
+ # @param [Hash] params ({})
448
+ def batch_stop(params = {}, options = {})
449
+ req = build_request(:batch_stop, params)
450
+ req.send_request(options)
451
+ end
452
+
315
453
  # Update a channel schedule
316
454
  #
317
455
  # @option params [required, String] :channel_id
@@ -343,7 +481,7 @@ module Aws::MediaLive
343
481
  # id_3: "__string", # required
344
482
  # },
345
483
  # input_prepare_settings: {
346
- # input_attachment_name_reference: "__string", # required
484
+ # input_attachment_name_reference: "__string",
347
485
  # input_clipping_settings: {
348
486
  # input_timecode_source: "ZEROBASED", # required, accepts ZEROBASED, EMBEDDED
349
487
  # start_timecode: {
@@ -694,7 +832,7 @@ module Aws::MediaLive
694
832
  # pass_through_settings: {
695
833
  # },
696
834
  # },
697
- # language_code: "__stringMin3Max3",
835
+ # language_code: "__stringMin1Max35",
698
836
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
699
837
  # name: "__string", # required
700
838
  # remix_settings: {
@@ -804,6 +942,11 @@ module Aws::MediaLive
804
942
  # x_position: 1,
805
943
  # y_position: 1,
806
944
  # },
945
+ # ebu_tt_d_destination_settings: {
946
+ # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
947
+ # font_family: "__string",
948
+ # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
949
+ # },
807
950
  # embedded_destination_settings: {
808
951
  # },
809
952
  # embedded_plus_scte_20_destination_settings: {
@@ -945,7 +1088,7 @@ module Aws::MediaLive
945
1088
  # manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
946
1089
  # min_segment_length: 1,
947
1090
  # mode: "LIVE", # accepts LIVE, VOD
948
- # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY
1091
+ # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
949
1092
  # program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
950
1093
  # program_date_time_period: 1,
951
1094
  # redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
@@ -1304,6 +1447,12 @@ module Aws::MediaLive
1304
1447
  # rec_709_settings: {
1305
1448
  # },
1306
1449
  # },
1450
+ # filter_settings: {
1451
+ # temporal_filter_settings: {
1452
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
1453
+ # 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
1454
+ # },
1455
+ # },
1307
1456
  # 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
1308
1457
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
1309
1458
  # framerate_denominator: 1, # required
@@ -1320,7 +1469,7 @@ module Aws::MediaLive
1320
1469
  # profile: "MAIN", # accepts MAIN, MAIN_10BIT
1321
1470
  # qvbr_quality_level: 1,
1322
1471
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR
1323
- # scan_type: "PROGRESSIVE", # accepts PROGRESSIVE
1472
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
1324
1473
  # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED
1325
1474
  # slices: 1,
1326
1475
  # tier: "HIGH", # accepts HIGH, MAIN
@@ -1573,6 +1722,9 @@ module Aws::MediaLive
1573
1722
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
1574
1723
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
1575
1724
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
1725
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
1726
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
1727
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
1576
1728
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
1577
1729
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
1578
1730
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -1652,7 +1804,7 @@ module Aws::MediaLive
1652
1804
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
1653
1805
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
1654
1806
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
1655
- # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
1807
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
1656
1808
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
1657
1809
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
1658
1810
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -1903,6 +2055,8 @@ module Aws::MediaLive
1903
2055
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
1904
2056
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
1905
2057
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
2058
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
2059
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
1906
2060
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
1907
2061
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
1908
2062
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -1919,7 +2073,7 @@ module Aws::MediaLive
1919
2073
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
1920
2074
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
1921
2075
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
1922
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
2076
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
1923
2077
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
1924
2078
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
1925
2079
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -2061,7 +2215,7 @@ module Aws::MediaLive
2061
2215
  # tags: {
2062
2216
  # "__string" => "__string",
2063
2217
  # },
2064
- # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE
2218
+ # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI
2065
2219
  # vpc: {
2066
2220
  # security_group_ids: ["__string"],
2067
2221
  # subnet_ids: ["__string"], # required
@@ -2097,7 +2251,7 @@ module Aws::MediaLive
2097
2251
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
2098
2252
  # resp.input.tags #=> Hash
2099
2253
  # resp.input.tags["__string"] #=> String
2100
- # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
2254
+ # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
2101
2255
  #
2102
2256
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
2103
2257
  #
@@ -2481,6 +2635,9 @@ module Aws::MediaLive
2481
2635
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
2482
2636
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
2483
2637
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
2638
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
2639
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
2640
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
2484
2641
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
2485
2642
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
2486
2643
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -2560,7 +2717,7 @@ module Aws::MediaLive
2560
2717
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
2561
2718
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
2562
2719
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
2563
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
2720
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
2564
2721
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
2565
2722
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
2566
2723
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -2811,6 +2968,8 @@ module Aws::MediaLive
2811
2968
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
2812
2969
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
2813
2970
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
2971
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
2972
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
2814
2973
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
2815
2974
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
2816
2975
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -2827,7 +2986,7 @@ module Aws::MediaLive
2827
2986
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
2828
2987
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
2829
2988
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
2830
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
2989
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
2831
2990
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
2832
2991
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
2833
2992
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -3100,7 +3259,7 @@ module Aws::MediaLive
3100
3259
  # resp.region #=> String
3101
3260
  # resp.reservation_id #=> String
3102
3261
  # resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
3103
- # resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
3262
+ # resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
3104
3263
  # resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
3105
3264
  # resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
3106
3265
  # resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -3328,6 +3487,9 @@ module Aws::MediaLive
3328
3487
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
3329
3488
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
3330
3489
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
3490
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
3491
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
3492
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
3331
3493
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
3332
3494
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
3333
3495
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -3407,7 +3569,7 @@ module Aws::MediaLive
3407
3569
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
3408
3570
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
3409
3571
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
3410
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
3572
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
3411
3573
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
3412
3574
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
3413
3575
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -3658,6 +3820,8 @@ module Aws::MediaLive
3658
3820
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
3659
3821
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
3660
3822
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
3823
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
3824
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
3661
3825
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
3662
3826
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
3663
3827
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -3674,7 +3838,7 @@ module Aws::MediaLive
3674
3838
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
3675
3839
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
3676
3840
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
3677
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
3841
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
3678
3842
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
3679
3843
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
3680
3844
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -3814,7 +3978,7 @@ module Aws::MediaLive
3814
3978
  # resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
3815
3979
  # resp.tags #=> Hash
3816
3980
  # resp.tags["__string"] #=> String
3817
- # resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
3981
+ # resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
3818
3982
  #
3819
3983
  #
3820
3984
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -3889,6 +4053,44 @@ module Aws::MediaLive
3889
4053
  req.send_request(options)
3890
4054
  end
3891
4055
 
4056
+ # Get the latest thumbnail data for the input device.
4057
+ #
4058
+ # @option params [required, String] :input_device_id
4059
+ #
4060
+ # @option params [required, String] :accept
4061
+ #
4062
+ # @return [Types::DescribeInputDeviceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4063
+ #
4064
+ # * {Types::DescribeInputDeviceThumbnailResponse#body #body} => IO
4065
+ # * {Types::DescribeInputDeviceThumbnailResponse#content_type #content_type} => String
4066
+ # * {Types::DescribeInputDeviceThumbnailResponse#content_length #content_length} => Integer
4067
+ # * {Types::DescribeInputDeviceThumbnailResponse#etag #etag} => String
4068
+ # * {Types::DescribeInputDeviceThumbnailResponse#last_modified #last_modified} => Time
4069
+ #
4070
+ # @example Request syntax with placeholder values
4071
+ #
4072
+ # resp = client.describe_input_device_thumbnail({
4073
+ # input_device_id: "__string", # required
4074
+ # accept: "image/jpeg", # required, accepts image/jpeg
4075
+ # })
4076
+ #
4077
+ # @example Response structure
4078
+ #
4079
+ # resp.body #=> IO
4080
+ # resp.content_type #=> String, one of "image/jpeg"
4081
+ # resp.content_length #=> Integer
4082
+ # resp.etag #=> String
4083
+ # resp.last_modified #=> Time
4084
+ #
4085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceThumbnail AWS API Documentation
4086
+ #
4087
+ # @overload describe_input_device_thumbnail(params = {})
4088
+ # @param [Hash] params ({})
4089
+ def describe_input_device_thumbnail(params = {}, options = {}, &block)
4090
+ req = build_request(:describe_input_device_thumbnail, params)
4091
+ req.send_request(options, &block)
4092
+ end
4093
+
3892
4094
  # Produces a summary of an Input Security Group
3893
4095
  #
3894
4096
  # @option params [required, String] :input_security_group_id
@@ -4082,7 +4284,7 @@ module Aws::MediaLive
4082
4284
  # resp.offering_type #=> String, one of "NO_UPFRONT"
4083
4285
  # resp.region #=> String
4084
4286
  # resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4085
- # resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
4287
+ # resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
4086
4288
  # resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
4087
4289
  # resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
4088
4290
  # resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -4147,7 +4349,7 @@ module Aws::MediaLive
4147
4349
  # resp.region #=> String
4148
4350
  # resp.reservation_id #=> String
4149
4351
  # resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4150
- # resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
4352
+ # resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
4151
4353
  # resp.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
4152
4354
  # resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
4153
4355
  # resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -4508,7 +4710,7 @@ module Aws::MediaLive
4508
4710
  # resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
4509
4711
  # resp.inputs[0].tags #=> Hash
4510
4712
  # resp.inputs[0].tags["__string"] #=> String
4511
- # resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
4713
+ # resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
4512
4714
  # resp.next_token #=> String
4513
4715
  #
4514
4716
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
@@ -4668,7 +4870,7 @@ module Aws::MediaLive
4668
4870
  # resp.offerings[0].offering_type #=> String, one of "NO_UPFRONT"
4669
4871
  # resp.offerings[0].region #=> String
4670
4872
  # resp.offerings[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4671
- # resp.offerings[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
4873
+ # resp.offerings[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
4672
4874
  # resp.offerings[0].resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
4673
4875
  # resp.offerings[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
4674
4876
  # resp.offerings[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -4748,7 +4950,7 @@ module Aws::MediaLive
4748
4950
  # resp.reservations[0].region #=> String
4749
4951
  # resp.reservations[0].reservation_id #=> String
4750
4952
  # resp.reservations[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4751
- # resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
4953
+ # resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
4752
4954
  # resp.reservations[0].resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
4753
4955
  # resp.reservations[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
4754
4956
  # resp.reservations[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -4847,7 +5049,7 @@ module Aws::MediaLive
4847
5049
  # resp.reservation.region #=> String
4848
5050
  # resp.reservation.reservation_id #=> String
4849
5051
  # resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
4850
- # resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
5052
+ # resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
4851
5053
  # resp.reservation.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
4852
5054
  # resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
4853
5055
  # resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -5030,6 +5232,9 @@ module Aws::MediaLive
5030
5232
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
5031
5233
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
5032
5234
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
5235
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
5236
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
5237
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
5033
5238
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
5034
5239
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
5035
5240
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -5109,7 +5314,7 @@ module Aws::MediaLive
5109
5314
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
5110
5315
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
5111
5316
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
5112
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
5317
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
5113
5318
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
5114
5319
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
5115
5320
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -5360,6 +5565,8 @@ module Aws::MediaLive
5360
5565
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
5361
5566
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
5362
5567
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
5568
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
5569
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
5363
5570
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
5364
5571
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
5365
5572
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -5376,7 +5583,7 @@ module Aws::MediaLive
5376
5583
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
5377
5584
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
5378
5585
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
5379
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
5586
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
5380
5587
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
5381
5588
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
5382
5589
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -5664,6 +5871,9 @@ module Aws::MediaLive
5664
5871
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
5665
5872
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
5666
5873
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
5874
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
5875
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
5876
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
5667
5877
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
5668
5878
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
5669
5879
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -5743,7 +5953,7 @@ module Aws::MediaLive
5743
5953
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
5744
5954
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
5745
5955
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
5746
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
5956
+ # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
5747
5957
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
5748
5958
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
5749
5959
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -5994,6 +6204,8 @@ module Aws::MediaLive
5994
6204
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
5995
6205
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
5996
6206
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
6207
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
6208
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
5997
6209
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
5998
6210
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
5999
6211
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -6010,7 +6222,7 @@ module Aws::MediaLive
6010
6222
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
6011
6223
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
6012
6224
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
6013
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
6225
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
6014
6226
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
6015
6227
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
6016
6228
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -6249,7 +6461,7 @@ module Aws::MediaLive
6249
6461
  # pass_through_settings: {
6250
6462
  # },
6251
6463
  # },
6252
- # language_code: "__stringMin3Max3",
6464
+ # language_code: "__stringMin1Max35",
6253
6465
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
6254
6466
  # name: "__string", # required
6255
6467
  # remix_settings: {
@@ -6359,6 +6571,11 @@ module Aws::MediaLive
6359
6571
  # x_position: 1,
6360
6572
  # y_position: 1,
6361
6573
  # },
6574
+ # ebu_tt_d_destination_settings: {
6575
+ # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
6576
+ # font_family: "__string",
6577
+ # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
6578
+ # },
6362
6579
  # embedded_destination_settings: {
6363
6580
  # },
6364
6581
  # embedded_plus_scte_20_destination_settings: {
@@ -6500,7 +6717,7 @@ module Aws::MediaLive
6500
6717
  # manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
6501
6718
  # min_segment_length: 1,
6502
6719
  # mode: "LIVE", # accepts LIVE, VOD
6503
- # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY
6720
+ # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
6504
6721
  # program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
6505
6722
  # program_date_time_period: 1,
6506
6723
  # redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
@@ -6859,6 +7076,12 @@ module Aws::MediaLive
6859
7076
  # rec_709_settings: {
6860
7077
  # },
6861
7078
  # },
7079
+ # filter_settings: {
7080
+ # temporal_filter_settings: {
7081
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
7082
+ # 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
7083
+ # },
7084
+ # },
6862
7085
  # 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
6863
7086
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
6864
7087
  # framerate_denominator: 1, # required
@@ -6875,7 +7098,7 @@ module Aws::MediaLive
6875
7098
  # profile: "MAIN", # accepts MAIN, MAIN_10BIT
6876
7099
  # qvbr_quality_level: 1,
6877
7100
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR
6878
- # scan_type: "PROGRESSIVE", # accepts PROGRESSIVE
7101
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
6879
7102
  # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED
6880
7103
  # slices: 1,
6881
7104
  # tier: "HIGH", # accepts HIGH, MAIN
@@ -7123,6 +7346,9 @@ module Aws::MediaLive
7123
7346
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
7124
7347
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
7125
7348
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
7349
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
7350
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
7351
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
7126
7352
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
7127
7353
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
7128
7354
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -7202,7 +7428,7 @@ module Aws::MediaLive
7202
7428
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
7203
7429
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
7204
7430
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
7205
- # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
7431
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
7206
7432
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
7207
7433
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
7208
7434
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -7453,6 +7679,8 @@ module Aws::MediaLive
7453
7679
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
7454
7680
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
7455
7681
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
7682
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
7683
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
7456
7684
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
7457
7685
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
7458
7686
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -7469,7 +7697,7 @@ module Aws::MediaLive
7469
7697
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
7470
7698
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
7471
7699
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
7472
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
7700
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
7473
7701
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
7474
7702
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
7475
7703
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -7720,6 +7948,9 @@ module Aws::MediaLive
7720
7948
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
7721
7949
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
7722
7950
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
7951
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
7952
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
7953
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
7723
7954
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
7724
7955
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
7725
7956
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
@@ -7799,7 +8030,7 @@ module Aws::MediaLive
7799
8030
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
7800
8031
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
7801
8032
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
7802
- # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
8033
+ # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY", "VARIANT_MANIFESTS_AND_SEGMENTS"
7803
8034
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
7804
8035
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
7805
8036
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -8050,6 +8281,8 @@ module Aws::MediaLive
8050
8281
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
8051
8282
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
8052
8283
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
8284
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
8285
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.strength #=> String, one of "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"
8053
8286
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.fixed_afd #=> String, one of "AFD_0000", "AFD_0010", "AFD_0011", "AFD_0100", "AFD_1000", "AFD_1001", "AFD_1010", "AFD_1011", "AFD_1101", "AFD_1110", "AFD_1111"
8054
8287
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
8055
8288
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -8066,7 +8299,7 @@ module Aws::MediaLive
8066
8299
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
8067
8300
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
8068
8301
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
8069
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
8302
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
8070
8303
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
8071
8304
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
8072
8305
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -8223,7 +8456,7 @@ module Aws::MediaLive
8223
8456
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
8224
8457
  # resp.input.tags #=> Hash
8225
8458
  # resp.input.tags["__string"] #=> String
8226
- # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE"
8459
+ # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI"
8227
8460
  #
8228
8461
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
8229
8462
  #
@@ -8508,7 +8741,7 @@ module Aws::MediaLive
8508
8741
  # resp.reservation.region #=> String
8509
8742
  # resp.reservation.reservation_id #=> String
8510
8743
  # resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
8511
- # resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO"
8744
+ # resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
8512
8745
  # resp.reservation.resource_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
8513
8746
  # resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
8514
8747
  # resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
@@ -8543,7 +8776,7 @@ module Aws::MediaLive
8543
8776
  params: params,
8544
8777
  config: config)
8545
8778
  context[:gem_name] = 'aws-sdk-medialive'
8546
- context[:gem_version] = '1.49.0'
8779
+ context[:gem_version] = '1.54.0'
8547
8780
  Seahorse::Client::Request.new(handlers, context)
8548
8781
  end
8549
8782