aws-sdk-medialive 1.47.1 → 1.52.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: 803ba51e1996475f19bc9301eb3626a4cf6512de1fb43512051dd4040464cbea
4
- data.tar.gz: '097d529209548aa50976926bc58f6c50c4b5098a17d1274d240c356107a61aff'
3
+ metadata.gz: 15bf9b1efa3dd468cebf515f53f817f21da1ac4617e27145c1aaab9068fb6140
4
+ data.tar.gz: 341bbfd4abebc32834c08d8d2c64f7576a5bb02c9684f0be6ce63758fec13918
5
5
  SHA512:
6
- metadata.gz: 2dc2d595aad2312b60f3aa8052c0291445f6b77a9f24a9db46faf2d95507b93fc67a5de3ef35ac73218667ee4e95be18c31ce945ec8963a07227d52246369b7c
7
- data.tar.gz: e8a9bcde42a654f25e20ae89c48c60b2e7c065991d81d544cff7f9f8af783f7416786877d7fcaa9d78fa60b430bcffc2caa60cc8a29e520247d72276f385a46e
6
+ metadata.gz: 1a77ca3a22e45723f0154d8d703477c5000787168d1a36f3ccad637552f199e43e6ab143ea6f9c331f545df9437be56db25985fdc94797edc8f0efd5ec53886a
7
+ data.tar.gz: 9701c6f2399db56da7e9eb706f481dbf8437a278ca89126d72aa31086edb33ba19154e611d7f3aa09fd3c07833c2a316a5328f0e47ee8b0d2f0e16f2b03f1f00
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-medialive/customizations'
43
45
  #
44
46
  # See {Errors} for more information.
45
47
  #
46
- # @service
48
+ # @!group service
47
49
  module Aws::MediaLive
48
50
 
49
- GEM_VERSION = '1.47.1'
51
+ GEM_VERSION = '1.52.0'
50
52
 
51
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -83,13 +85,28 @@ module Aws::MediaLive
83
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
84
86
  # credentials.
85
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
+ #
86
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
87
103
  # from an EC2 IMDS on an EC2 instance.
88
104
  #
89
- # * `Aws::SharedCredentials` - Used for loading credentials from a
90
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
91
107
  #
92
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
93
110
  #
94
111
  # When `:credentials` are not configured directly, the following
95
112
  # locations will be searched for credentials:
@@ -99,10 +116,10 @@ module Aws::MediaLive
99
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
100
117
  # * `~/.aws/credentials`
101
118
  # * `~/.aws/config`
102
- # * EC2 IMDS instance profile - When used by default, the timeouts are
103
- # very aggressive. Construct and pass an instance of
104
- # `Aws::InstanceProfileCredentails` to enable retries and extended
105
- # 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.
106
123
  #
107
124
  # @option options [required, String] :region
108
125
  # The AWS region to connect to. The configured `:region` is
@@ -340,6 +357,20 @@ module Aws::MediaLive
340
357
  # hls_timed_metadata_settings: {
341
358
  # id_3: "__string", # required
342
359
  # },
360
+ # input_prepare_settings: {
361
+ # input_attachment_name_reference: "__string",
362
+ # input_clipping_settings: {
363
+ # input_timecode_source: "ZEROBASED", # required, accepts ZEROBASED, EMBEDDED
364
+ # start_timecode: {
365
+ # timecode: "__string",
366
+ # },
367
+ # stop_timecode: {
368
+ # last_frame_clipping_behavior: "EXCLUDE_LAST_FRAME", # accepts EXCLUDE_LAST_FRAME, INCLUDE_LAST_FRAME
369
+ # timecode: "__string",
370
+ # },
371
+ # },
372
+ # url_path: ["__string"],
373
+ # },
343
374
  # input_switch_settings: {
344
375
  # input_attachment_name_reference: "__string", # required
345
376
  # input_clipping_settings: {
@@ -440,6 +471,13 @@ module Aws::MediaLive
440
471
  # resp.creates.schedule_actions[0].action_name #=> String
441
472
  # resp.creates.schedule_actions[0].schedule_action_settings.hls_id_3_segment_tagging_settings.tag #=> String
442
473
  # resp.creates.schedule_actions[0].schedule_action_settings.hls_timed_metadata_settings.id_3 #=> String
474
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_attachment_name_reference #=> String
475
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.input_timecode_source #=> String, one of "ZEROBASED", "EMBEDDED"
476
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.start_timecode.timecode #=> String
477
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.stop_timecode.last_frame_clipping_behavior #=> String, one of "EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"
478
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.stop_timecode.timecode #=> String
479
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.url_path #=> Array
480
+ # resp.creates.schedule_actions[0].schedule_action_settings.input_prepare_settings.url_path[0] #=> String
443
481
  # resp.creates.schedule_actions[0].schedule_action_settings.input_switch_settings.input_attachment_name_reference #=> String
444
482
  # resp.creates.schedule_actions[0].schedule_action_settings.input_switch_settings.input_clipping_settings.input_timecode_source #=> String, one of "ZEROBASED", "EMBEDDED"
445
483
  # resp.creates.schedule_actions[0].schedule_action_settings.input_switch_settings.input_clipping_settings.start_timecode.timecode #=> String
@@ -488,6 +526,13 @@ module Aws::MediaLive
488
526
  # resp.deletes.schedule_actions[0].action_name #=> String
489
527
  # resp.deletes.schedule_actions[0].schedule_action_settings.hls_id_3_segment_tagging_settings.tag #=> String
490
528
  # resp.deletes.schedule_actions[0].schedule_action_settings.hls_timed_metadata_settings.id_3 #=> String
529
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_attachment_name_reference #=> String
530
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.input_timecode_source #=> String, one of "ZEROBASED", "EMBEDDED"
531
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.start_timecode.timecode #=> String
532
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.stop_timecode.last_frame_clipping_behavior #=> String, one of "EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"
533
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.stop_timecode.timecode #=> String
534
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.url_path #=> Array
535
+ # resp.deletes.schedule_actions[0].schedule_action_settings.input_prepare_settings.url_path[0] #=> String
491
536
  # resp.deletes.schedule_actions[0].schedule_action_settings.input_switch_settings.input_attachment_name_reference #=> String
492
537
  # resp.deletes.schedule_actions[0].schedule_action_settings.input_switch_settings.input_clipping_settings.input_timecode_source #=> String, one of "ZEROBASED", "EMBEDDED"
493
538
  # resp.deletes.schedule_actions[0].schedule_action_settings.input_switch_settings.input_clipping_settings.start_timecode.timecode #=> String
@@ -664,7 +709,7 @@ module Aws::MediaLive
664
709
  # pass_through_settings: {
665
710
  # },
666
711
  # },
667
- # language_code: "__stringMin3Max3",
712
+ # language_code: "__stringMin1Max35",
668
713
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
669
714
  # name: "__string", # required
670
715
  # remix_settings: {
@@ -774,6 +819,11 @@ module Aws::MediaLive
774
819
  # x_position: 1,
775
820
  # y_position: 1,
776
821
  # },
822
+ # ebu_tt_d_destination_settings: {
823
+ # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
824
+ # font_family: "__string",
825
+ # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
826
+ # },
777
827
  # embedded_destination_settings: {
778
828
  # },
779
829
  # embedded_plus_scte_20_destination_settings: {
@@ -799,6 +849,9 @@ module Aws::MediaLive
799
849
  # name: "__string", # required
800
850
  # },
801
851
  # ],
852
+ # feature_activations: {
853
+ # input_prepare_schedule_actions: "DISABLED", # accepts DISABLED, ENABLED
854
+ # },
802
855
  # global_configuration: {
803
856
  # initial_audio_gain: 1,
804
857
  # input_end_action: "NONE", # accepts NONE, SWITCH_AND_LOOP_INPUTS
@@ -912,7 +965,7 @@ module Aws::MediaLive
912
965
  # manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
913
966
  # min_segment_length: 1,
914
967
  # mode: "LIVE", # accepts LIVE, VOD
915
- # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY
968
+ # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
916
969
  # program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
917
970
  # program_date_time_period: 1,
918
971
  # redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
@@ -1271,6 +1324,12 @@ module Aws::MediaLive
1271
1324
  # rec_709_settings: {
1272
1325
  # },
1273
1326
  # },
1327
+ # filter_settings: {
1328
+ # temporal_filter_settings: {
1329
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
1330
+ # 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
1331
+ # },
1332
+ # },
1274
1333
  # 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
1275
1334
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
1276
1335
  # framerate_denominator: 1, # required
@@ -1287,7 +1346,7 @@ module Aws::MediaLive
1287
1346
  # profile: "MAIN", # accepts MAIN, MAIN_10BIT
1288
1347
  # qvbr_quality_level: 1,
1289
1348
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR
1290
- # scan_type: "PROGRESSIVE", # accepts PROGRESSIVE
1349
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
1291
1350
  # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED
1292
1351
  # slices: 1,
1293
1352
  # tier: "HIGH", # accepts HIGH, MAIN
@@ -1540,10 +1599,14 @@ module Aws::MediaLive
1540
1599
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
1541
1600
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
1542
1601
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
1602
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
1603
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
1604
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
1543
1605
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
1544
1606
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
1545
1607
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
1546
1608
  # resp.channel.encoder_settings.caption_descriptions[0].name #=> String
1609
+ # resp.channel.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
1547
1610
  # resp.channel.encoder_settings.global_configuration.initial_audio_gain #=> Integer
1548
1611
  # resp.channel.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
1549
1612
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -1618,7 +1681,7 @@ module Aws::MediaLive
1618
1681
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
1619
1682
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
1620
1683
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
1621
- # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
1684
+ # 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"
1622
1685
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
1623
1686
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
1624
1687
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -1869,6 +1932,8 @@ module Aws::MediaLive
1869
1932
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
1870
1933
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
1871
1934
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
1935
+ # 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"
1936
+ # 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"
1872
1937
  # 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"
1873
1938
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
1874
1939
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -1885,7 +1950,7 @@ module Aws::MediaLive
1885
1950
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
1886
1951
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
1887
1952
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
1888
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
1953
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
1889
1954
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
1890
1955
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
1891
1956
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -2447,10 +2512,14 @@ module Aws::MediaLive
2447
2512
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
2448
2513
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
2449
2514
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
2515
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
2516
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
2517
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
2450
2518
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
2451
2519
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
2452
2520
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
2453
2521
  # resp.encoder_settings.caption_descriptions[0].name #=> String
2522
+ # resp.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
2454
2523
  # resp.encoder_settings.global_configuration.initial_audio_gain #=> Integer
2455
2524
  # resp.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
2456
2525
  # resp.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -2525,7 +2594,7 @@ module Aws::MediaLive
2525
2594
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
2526
2595
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
2527
2596
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
2528
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
2597
+ # 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"
2529
2598
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
2530
2599
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
2531
2600
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -2776,6 +2845,8 @@ module Aws::MediaLive
2776
2845
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
2777
2846
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
2778
2847
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
2848
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
2849
+ # 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"
2779
2850
  # 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"
2780
2851
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
2781
2852
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -2792,7 +2863,7 @@ module Aws::MediaLive
2792
2863
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
2793
2864
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
2794
2865
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
2795
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
2866
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
2796
2867
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
2797
2868
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
2798
2869
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -3293,10 +3364,14 @@ module Aws::MediaLive
3293
3364
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
3294
3365
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
3295
3366
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
3367
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
3368
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
3369
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
3296
3370
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
3297
3371
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
3298
3372
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
3299
3373
  # resp.encoder_settings.caption_descriptions[0].name #=> String
3374
+ # resp.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
3300
3375
  # resp.encoder_settings.global_configuration.initial_audio_gain #=> Integer
3301
3376
  # resp.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
3302
3377
  # resp.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -3371,7 +3446,7 @@ module Aws::MediaLive
3371
3446
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
3372
3447
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
3373
3448
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
3374
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
3449
+ # 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"
3375
3450
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
3376
3451
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
3377
3452
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -3622,6 +3697,8 @@ module Aws::MediaLive
3622
3697
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
3623
3698
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
3624
3699
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
3700
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
3701
+ # 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"
3625
3702
  # 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"
3626
3703
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
3627
3704
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -3638,7 +3715,7 @@ module Aws::MediaLive
3638
3715
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
3639
3716
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
3640
3717
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
3641
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
3718
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
3642
3719
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
3643
3720
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
3644
3721
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -3853,6 +3930,45 @@ module Aws::MediaLive
3853
3930
  req.send_request(options)
3854
3931
  end
3855
3932
 
3933
+ # Get the latest thumbnail data for the input device.
3934
+ #
3935
+ # @option params [required, String] :input_device_id
3936
+ #
3937
+ # @option params [required, String] :accept
3938
+ # Accept Header
3939
+ #
3940
+ # @return [Types::DescribeInputDeviceThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3941
+ #
3942
+ # * {Types::DescribeInputDeviceThumbnailResponse#body #body} => IO
3943
+ # * {Types::DescribeInputDeviceThumbnailResponse#content_type #content_type} => String
3944
+ # * {Types::DescribeInputDeviceThumbnailResponse#content_length #content_length} => Integer
3945
+ # * {Types::DescribeInputDeviceThumbnailResponse#etag #etag} => String
3946
+ # * {Types::DescribeInputDeviceThumbnailResponse#last_modified #last_modified} => Time
3947
+ #
3948
+ # @example Request syntax with placeholder values
3949
+ #
3950
+ # resp = client.describe_input_device_thumbnail({
3951
+ # input_device_id: "__string", # required
3952
+ # accept: "image/jpeg", # required, accepts image/jpeg
3953
+ # })
3954
+ #
3955
+ # @example Response structure
3956
+ #
3957
+ # resp.body #=> IO
3958
+ # resp.content_type #=> String, one of "image/jpeg"
3959
+ # resp.content_length #=> Integer
3960
+ # resp.etag #=> String
3961
+ # resp.last_modified #=> Time
3962
+ #
3963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceThumbnail AWS API Documentation
3964
+ #
3965
+ # @overload describe_input_device_thumbnail(params = {})
3966
+ # @param [Hash] params ({})
3967
+ def describe_input_device_thumbnail(params = {}, options = {}, &block)
3968
+ req = build_request(:describe_input_device_thumbnail, params)
3969
+ req.send_request(options, &block)
3970
+ end
3971
+
3856
3972
  # Produces a summary of an Input Security Group
3857
3973
  #
3858
3974
  # @option params [required, String] :input_security_group_id
@@ -4163,6 +4279,13 @@ module Aws::MediaLive
4163
4279
  # resp.schedule_actions[0].action_name #=> String
4164
4280
  # resp.schedule_actions[0].schedule_action_settings.hls_id_3_segment_tagging_settings.tag #=> String
4165
4281
  # resp.schedule_actions[0].schedule_action_settings.hls_timed_metadata_settings.id_3 #=> String
4282
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_attachment_name_reference #=> String
4283
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.input_timecode_source #=> String, one of "ZEROBASED", "EMBEDDED"
4284
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.start_timecode.timecode #=> String
4285
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.stop_timecode.last_frame_clipping_behavior #=> String, one of "EXCLUDE_LAST_FRAME", "INCLUDE_LAST_FRAME"
4286
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.input_clipping_settings.stop_timecode.timecode #=> String
4287
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.url_path #=> Array
4288
+ # resp.schedule_actions[0].schedule_action_settings.input_prepare_settings.url_path[0] #=> String
4166
4289
  # resp.schedule_actions[0].schedule_action_settings.input_switch_settings.input_attachment_name_reference #=> String
4167
4290
  # resp.schedule_actions[0].schedule_action_settings.input_switch_settings.input_clipping_settings.input_timecode_source #=> String, one of "ZEROBASED", "EMBEDDED"
4168
4291
  # resp.schedule_actions[0].schedule_action_settings.input_switch_settings.input_clipping_settings.start_timecode.timecode #=> String
@@ -4987,10 +5110,14 @@ module Aws::MediaLive
4987
5110
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
4988
5111
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
4989
5112
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
5113
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
5114
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
5115
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
4990
5116
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
4991
5117
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
4992
5118
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
4993
5119
  # resp.encoder_settings.caption_descriptions[0].name #=> String
5120
+ # resp.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
4994
5121
  # resp.encoder_settings.global_configuration.initial_audio_gain #=> Integer
4995
5122
  # resp.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
4996
5123
  # resp.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -5065,7 +5192,7 @@ module Aws::MediaLive
5065
5192
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
5066
5193
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
5067
5194
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
5068
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
5195
+ # 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"
5069
5196
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
5070
5197
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
5071
5198
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -5316,6 +5443,8 @@ module Aws::MediaLive
5316
5443
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
5317
5444
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
5318
5445
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
5446
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
5447
+ # 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"
5319
5448
  # 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"
5320
5449
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
5321
5450
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -5332,7 +5461,7 @@ module Aws::MediaLive
5332
5461
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
5333
5462
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
5334
5463
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
5335
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
5464
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
5336
5465
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
5337
5466
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
5338
5467
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -5620,10 +5749,14 @@ module Aws::MediaLive
5620
5749
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
5621
5750
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
5622
5751
  # resp.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
5752
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
5753
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
5754
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
5623
5755
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
5624
5756
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
5625
5757
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
5626
5758
  # resp.encoder_settings.caption_descriptions[0].name #=> String
5759
+ # resp.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
5627
5760
  # resp.encoder_settings.global_configuration.initial_audio_gain #=> Integer
5628
5761
  # resp.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
5629
5762
  # resp.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -5698,7 +5831,7 @@ module Aws::MediaLive
5698
5831
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
5699
5832
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
5700
5833
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
5701
- # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
5834
+ # 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"
5702
5835
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
5703
5836
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
5704
5837
  # resp.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -5949,6 +6082,8 @@ module Aws::MediaLive
5949
6082
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
5950
6083
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
5951
6084
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
6085
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.filter_settings.temporal_filter_settings.post_filter_sharpening #=> String, one of "AUTO", "DISABLED", "ENABLED"
6086
+ # 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"
5952
6087
  # 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"
5953
6088
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
5954
6089
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -5965,7 +6100,7 @@ module Aws::MediaLive
5965
6100
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
5966
6101
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
5967
6102
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
5968
- # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
6103
+ # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
5969
6104
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
5970
6105
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
5971
6106
  # resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -6204,7 +6339,7 @@ module Aws::MediaLive
6204
6339
  # pass_through_settings: {
6205
6340
  # },
6206
6341
  # },
6207
- # language_code: "__stringMin3Max3",
6342
+ # language_code: "__stringMin1Max35",
6208
6343
  # language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
6209
6344
  # name: "__string", # required
6210
6345
  # remix_settings: {
@@ -6314,6 +6449,11 @@ module Aws::MediaLive
6314
6449
  # x_position: 1,
6315
6450
  # y_position: 1,
6316
6451
  # },
6452
+ # ebu_tt_d_destination_settings: {
6453
+ # fill_line_gap: "DISABLED", # accepts DISABLED, ENABLED
6454
+ # font_family: "__string",
6455
+ # style_control: "EXCLUDE", # accepts EXCLUDE, INCLUDE
6456
+ # },
6317
6457
  # embedded_destination_settings: {
6318
6458
  # },
6319
6459
  # embedded_plus_scte_20_destination_settings: {
@@ -6339,6 +6479,9 @@ module Aws::MediaLive
6339
6479
  # name: "__string", # required
6340
6480
  # },
6341
6481
  # ],
6482
+ # feature_activations: {
6483
+ # input_prepare_schedule_actions: "DISABLED", # accepts DISABLED, ENABLED
6484
+ # },
6342
6485
  # global_configuration: {
6343
6486
  # initial_audio_gain: 1,
6344
6487
  # input_end_action: "NONE", # accepts NONE, SWITCH_AND_LOOP_INPUTS
@@ -6452,7 +6595,7 @@ module Aws::MediaLive
6452
6595
  # manifest_duration_format: "FLOATING_POINT", # accepts FLOATING_POINT, INTEGER
6453
6596
  # min_segment_length: 1,
6454
6597
  # mode: "LIVE", # accepts LIVE, VOD
6455
- # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY
6598
+ # output_selection: "MANIFESTS_AND_SEGMENTS", # accepts MANIFESTS_AND_SEGMENTS, SEGMENTS_ONLY, VARIANT_MANIFESTS_AND_SEGMENTS
6456
6599
  # program_date_time: "EXCLUDE", # accepts EXCLUDE, INCLUDE
6457
6600
  # program_date_time_period: 1,
6458
6601
  # redundant_manifest: "DISABLED", # accepts DISABLED, ENABLED
@@ -6811,6 +6954,12 @@ module Aws::MediaLive
6811
6954
  # rec_709_settings: {
6812
6955
  # },
6813
6956
  # },
6957
+ # filter_settings: {
6958
+ # temporal_filter_settings: {
6959
+ # post_filter_sharpening: "AUTO", # accepts AUTO, DISABLED, ENABLED
6960
+ # 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
6961
+ # },
6962
+ # },
6814
6963
  # 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
6815
6964
  # flicker_aq: "DISABLED", # accepts DISABLED, ENABLED
6816
6965
  # framerate_denominator: 1, # required
@@ -6827,7 +6976,7 @@ module Aws::MediaLive
6827
6976
  # profile: "MAIN", # accepts MAIN, MAIN_10BIT
6828
6977
  # qvbr_quality_level: 1,
6829
6978
  # rate_control_mode: "CBR", # accepts CBR, MULTIPLEX, QVBR
6830
- # scan_type: "PROGRESSIVE", # accepts PROGRESSIVE
6979
+ # scan_type: "INTERLACED", # accepts INTERLACED, PROGRESSIVE
6831
6980
  # scene_change_detect: "DISABLED", # accepts DISABLED, ENABLED
6832
6981
  # slices: 1,
6833
6982
  # tier: "HIGH", # accepts HIGH, MAIN
@@ -7075,10 +7224,14 @@ module Aws::MediaLive
7075
7224
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
7076
7225
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
7077
7226
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
7227
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
7228
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
7229
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
7078
7230
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
7079
7231
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
7080
7232
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
7081
7233
  # resp.channel.encoder_settings.caption_descriptions[0].name #=> String
7234
+ # resp.channel.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
7082
7235
  # resp.channel.encoder_settings.global_configuration.initial_audio_gain #=> Integer
7083
7236
  # resp.channel.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
7084
7237
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -7153,7 +7306,7 @@ module Aws::MediaLive
7153
7306
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
7154
7307
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
7155
7308
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
7156
- # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
7309
+ # 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"
7157
7310
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
7158
7311
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
7159
7312
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -7404,6 +7557,8 @@ module Aws::MediaLive
7404
7557
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
7405
7558
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
7406
7559
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
7560
+ # 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"
7561
+ # 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"
7407
7562
  # 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"
7408
7563
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
7409
7564
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -7420,7 +7575,7 @@ module Aws::MediaLive
7420
7575
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
7421
7576
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
7422
7577
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
7423
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
7578
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
7424
7579
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
7425
7580
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
7426
7581
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -7671,10 +7826,14 @@ module Aws::MediaLive
7671
7826
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.teletext_grid_control #=> String, one of "FIXED", "SCALED"
7672
7827
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.x_position #=> Integer
7673
7828
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.dvb_sub_destination_settings.y_position #=> Integer
7829
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.fill_line_gap #=> String, one of "DISABLED", "ENABLED"
7830
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
7831
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
7674
7832
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
7675
7833
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
7676
7834
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
7677
7835
  # resp.channel.encoder_settings.caption_descriptions[0].name #=> String
7836
+ # resp.channel.encoder_settings.feature_activations.input_prepare_schedule_actions #=> String, one of "DISABLED", "ENABLED"
7678
7837
  # resp.channel.encoder_settings.global_configuration.initial_audio_gain #=> Integer
7679
7838
  # resp.channel.encoder_settings.global_configuration.input_end_action #=> String, one of "NONE", "SWITCH_AND_LOOP_INPUTS"
7680
7839
  # resp.channel.encoder_settings.global_configuration.input_loss_behavior.black_frame_msec #=> Integer
@@ -7749,7 +7908,7 @@ module Aws::MediaLive
7749
7908
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.manifest_duration_format #=> String, one of "FLOATING_POINT", "INTEGER"
7750
7909
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.min_segment_length #=> Integer
7751
7910
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.mode #=> String, one of "LIVE", "VOD"
7752
- # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.output_selection #=> String, one of "MANIFESTS_AND_SEGMENTS", "SEGMENTS_ONLY"
7911
+ # 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"
7753
7912
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time #=> String, one of "EXCLUDE", "INCLUDE"
7754
7913
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.program_date_time_period #=> Integer
7755
7914
  # resp.channel.encoder_settings.output_groups[0].output_group_settings.hls_group_settings.redundant_manifest #=> String, one of "DISABLED", "ENABLED"
@@ -8000,6 +8159,8 @@ module Aws::MediaLive
8000
8159
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_metadata #=> String, one of "IGNORE", "INSERT"
8001
8160
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_cll #=> Integer
8002
8161
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.color_space_settings.hdr_10_settings.max_fall #=> Integer
8162
+ # 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"
8163
+ # 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"
8003
8164
  # 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"
8004
8165
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.flicker_aq #=> String, one of "DISABLED", "ENABLED"
8005
8166
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.framerate_denominator #=> Integer
@@ -8016,7 +8177,7 @@ module Aws::MediaLive
8016
8177
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.profile #=> String, one of "MAIN", "MAIN_10BIT"
8017
8178
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.qvbr_quality_level #=> Integer
8018
8179
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.rate_control_mode #=> String, one of "CBR", "MULTIPLEX", "QVBR"
8019
- # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "PROGRESSIVE"
8180
+ # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scan_type #=> String, one of "INTERLACED", "PROGRESSIVE"
8020
8181
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.scene_change_detect #=> String, one of "DISABLED", "ENABLED"
8021
8182
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.slices #=> Integer
8022
8183
  # resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.tier #=> String, one of "HIGH", "MAIN"
@@ -8493,7 +8654,7 @@ module Aws::MediaLive
8493
8654
  params: params,
8494
8655
  config: config)
8495
8656
  context[:gem_name] = 'aws-sdk-medialive'
8496
- context[:gem_version] = '1.47.1'
8657
+ context[:gem_version] = '1.52.0'
8497
8658
  Seahorse::Client::Request.new(handlers, context)
8498
8659
  end
8499
8660