aws-sdk-medialive 1.72.0 → 1.73.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: 5b71042c59b89c69171cd6963b591c396a77e789c0ab973a1c16ac19b6a36053
4
- data.tar.gz: f5303474b06427766630e6b7782cb6ad2abb126528baa00c9c6d76bc752fbcc5
3
+ metadata.gz: e1d08e9432489b7d6e924f43c02b423966f44c8ff6f47aad623b2616d089285c
4
+ data.tar.gz: b6a3a35b7ffd6cc6f37279630bfed7c97fc5d8e3b450cc3855c133f7179181d6
5
5
  SHA512:
6
- metadata.gz: 3c9cefa476ab6afec5f97c6517f0ad0cee038b676befcef507425e293ee7d528d7f63952b1d22264059499b3506d5ea3a7a3249f481786512d6c7ddb3fe24c32
7
- data.tar.gz: dc7fe86d318aa424aad4dac7ae31441152c5e6d192894d1b7b09e5d265e203c927a00a9570f100b36e14b57dfb65c5d38d17a256fc3fc95af5253f16119c2f8b
6
+ metadata.gz: 507e0fc9258315a9fba77b0079791fcb82f38282378ceae1aa61702334e6d4573acb36e5ce592f32585fe94d7b731858d1dba6e3ea7a03b39b274b064e60bfd8
7
+ data.tar.gz: 51c58abeb3d2d9ccf702b000d2715b1f96c1c5215c20c9b354744028de7fdce63d6456fa8d801cd13cf5c5784ac15da212d03dc968dfdf3f9986c968f343d39d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2021-07-22)
5
+ ------------------
6
+
7
+ * Feature - MediaLive now supports passing through style data on WebVTT caption outputs.
8
+
4
9
  1.72.0 (2021-06-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-medialive/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaLive
51
51
 
52
- GEM_VERSION = '1.72.0'
52
+ GEM_VERSION = '1.73.0'
53
53
 
54
54
  end
@@ -1040,6 +1040,7 @@ module Aws::MediaLive
1040
1040
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
1041
1041
  # },
1042
1042
  # webvtt_destination_settings: {
1043
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
1043
1044
  # },
1044
1045
  # },
1045
1046
  # language_code: "__string",
@@ -1641,6 +1642,10 @@ module Aws::MediaLive
1641
1642
  # {
1642
1643
  # name: "__stringMin1", # required
1643
1644
  # selector_settings: {
1645
+ # audio_hls_rendition_selection: {
1646
+ # group_id: "__stringMin1", # required
1647
+ # name: "__stringMin1", # required
1648
+ # },
1644
1649
  # audio_language_selection: {
1645
1650
  # language_code: "__string", # required
1646
1651
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -1897,6 +1902,7 @@ module Aws::MediaLive
1897
1902
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
1898
1903
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
1899
1904
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
1905
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
1900
1906
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
1901
1907
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
1902
1908
  # resp.channel.encoder_settings.caption_descriptions[0].name #=> String
@@ -2295,6 +2301,8 @@ module Aws::MediaLive
2295
2301
  # resp.channel.input_attachments[0].input_id #=> String
2296
2302
  # resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
2297
2303
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].name #=> String
2304
+ # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
2305
+ # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
2298
2306
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
2299
2307
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
2300
2308
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -2942,6 +2950,7 @@ module Aws::MediaLive
2942
2950
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
2943
2951
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
2944
2952
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
2953
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
2945
2954
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
2946
2955
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
2947
2956
  # resp.encoder_settings.caption_descriptions[0].name #=> String
@@ -3340,6 +3349,8 @@ module Aws::MediaLive
3340
3349
  # resp.input_attachments[0].input_id #=> String
3341
3350
  # resp.input_attachments[0].input_settings.audio_selectors #=> Array
3342
3351
  # resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
3352
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
3353
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
3343
3354
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
3344
3355
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
3345
3356
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -3858,6 +3869,7 @@ module Aws::MediaLive
3858
3869
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
3859
3870
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
3860
3871
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
3872
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
3861
3873
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
3862
3874
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
3863
3875
  # resp.encoder_settings.caption_descriptions[0].name #=> String
@@ -4256,6 +4268,8 @@ module Aws::MediaLive
4256
4268
  # resp.input_attachments[0].input_id #=> String
4257
4269
  # resp.input_attachments[0].input_settings.audio_selectors #=> Array
4258
4270
  # resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
4271
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
4272
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
4259
4273
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
4260
4274
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
4261
4275
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -4958,6 +4972,8 @@ module Aws::MediaLive
4958
4972
  # resp.channels[0].input_attachments[0].input_id #=> String
4959
4973
  # resp.channels[0].input_attachments[0].input_settings.audio_selectors #=> Array
4960
4974
  # resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].name #=> String
4975
+ # resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
4976
+ # resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
4961
4977
  # resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
4962
4978
  # resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
4963
4979
  # resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -5786,6 +5802,7 @@ module Aws::MediaLive
5786
5802
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
5787
5803
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
5788
5804
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
5805
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
5789
5806
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
5790
5807
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
5791
5808
  # resp.encoder_settings.caption_descriptions[0].name #=> String
@@ -6184,6 +6201,8 @@ module Aws::MediaLive
6184
6201
  # resp.input_attachments[0].input_id #=> String
6185
6202
  # resp.input_attachments[0].input_settings.audio_selectors #=> Array
6186
6203
  # resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
6204
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
6205
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
6187
6206
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
6188
6207
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
6189
6208
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -6484,6 +6503,7 @@ module Aws::MediaLive
6484
6503
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
6485
6504
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
6486
6505
  # resp.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
6506
+ # resp.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
6487
6507
  # resp.encoder_settings.caption_descriptions[0].language_code #=> String
6488
6508
  # resp.encoder_settings.caption_descriptions[0].language_description #=> String
6489
6509
  # resp.encoder_settings.caption_descriptions[0].name #=> String
@@ -6882,6 +6902,8 @@ module Aws::MediaLive
6882
6902
  # resp.input_attachments[0].input_id #=> String
6883
6903
  # resp.input_attachments[0].input_settings.audio_selectors #=> Array
6884
6904
  # resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
6905
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
6906
+ # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
6885
6907
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
6886
6908
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
6887
6909
  # resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -7297,6 +7319,7 @@ module Aws::MediaLive
7297
7319
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
7298
7320
  # },
7299
7321
  # webvtt_destination_settings: {
7322
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
7300
7323
  # },
7301
7324
  # },
7302
7325
  # language_code: "__string",
@@ -7898,6 +7921,10 @@ module Aws::MediaLive
7898
7921
  # {
7899
7922
  # name: "__stringMin1", # required
7900
7923
  # selector_settings: {
7924
+ # audio_hls_rendition_selection: {
7925
+ # group_id: "__stringMin1", # required
7926
+ # name: "__stringMin1", # required
7927
+ # },
7901
7928
  # audio_language_selection: {
7902
7929
  # language_code: "__string", # required
7903
7930
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -8144,6 +8171,7 @@ module Aws::MediaLive
8144
8171
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
8145
8172
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
8146
8173
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
8174
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
8147
8175
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
8148
8176
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
8149
8177
  # resp.channel.encoder_settings.caption_descriptions[0].name #=> String
@@ -8542,6 +8570,8 @@ module Aws::MediaLive
8542
8570
  # resp.channel.input_attachments[0].input_id #=> String
8543
8571
  # resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
8544
8572
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].name #=> String
8573
+ # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
8574
+ # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
8545
8575
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
8546
8576
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
8547
8577
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -8803,6 +8833,7 @@ module Aws::MediaLive
8803
8833
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
8804
8834
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
8805
8835
  # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ttml_destination_settings.style_control #=> String, one of "PASSTHROUGH", "USE_CONFIGURED"
8836
+ # resp.channel.encoder_settings.caption_descriptions[0].destination_settings.webvtt_destination_settings.style_control #=> String, one of "NO_STYLE_DATA", "PASSTHROUGH"
8806
8837
  # resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
8807
8838
  # resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
8808
8839
  # resp.channel.encoder_settings.caption_descriptions[0].name #=> String
@@ -9201,6 +9232,8 @@ module Aws::MediaLive
9201
9232
  # resp.channel.input_attachments[0].input_id #=> String
9202
9233
  # resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
9203
9234
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].name #=> String
9235
+ # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.group_id #=> String
9236
+ # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_hls_rendition_selection.name #=> String
9204
9237
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
9205
9238
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
9206
9239
  # resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
@@ -9704,7 +9737,7 @@ module Aws::MediaLive
9704
9737
  params: params,
9705
9738
  config: config)
9706
9739
  context[:gem_name] = 'aws-sdk-medialive'
9707
- context[:gem_version] = '1.72.0'
9740
+ context[:gem_version] = '1.73.0'
9708
9741
  Seahorse::Client::Request.new(handlers, context)
9709
9742
  end
9710
9743
 
@@ -46,6 +46,7 @@ module Aws::MediaLive
46
46
  AudioDescription = Shapes::StructureShape.new(name: 'AudioDescription')
47
47
  AudioDescriptionAudioTypeControl = Shapes::StringShape.new(name: 'AudioDescriptionAudioTypeControl')
48
48
  AudioDescriptionLanguageCodeControl = Shapes::StringShape.new(name: 'AudioDescriptionLanguageCodeControl')
49
+ AudioHlsRenditionSelection = Shapes::StructureShape.new(name: 'AudioHlsRenditionSelection')
49
50
  AudioLanguageSelection = Shapes::StructureShape.new(name: 'AudioLanguageSelection')
50
51
  AudioLanguageSelectionPolicy = Shapes::StringShape.new(name: 'AudioLanguageSelectionPolicy')
51
52
  AudioNormalizationAlgorithm = Shapes::StringShape.new(name: 'AudioNormalizationAlgorithm')
@@ -666,6 +667,7 @@ module Aws::MediaLive
666
667
  WavCodingMode = Shapes::StringShape.new(name: 'WavCodingMode')
667
668
  WavSettings = Shapes::StructureShape.new(name: 'WavSettings')
668
669
  WebvttDestinationSettings = Shapes::StructureShape.new(name: 'WebvttDestinationSettings')
670
+ WebvttDestinationStyleControl = Shapes::StringShape.new(name: 'WebvttDestinationStyleControl')
669
671
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
670
672
  __double = Shapes::FloatShape.new(name: '__double')
671
673
  __doubleMin0 = Shapes::FloatShape.new(name: '__doubleMin0')
@@ -873,6 +875,10 @@ module Aws::MediaLive
873
875
  AudioDescription.add_member(:stream_name, Shapes::ShapeRef.new(shape: __string, location_name: "streamName"))
874
876
  AudioDescription.struct_class = Types::AudioDescription
875
877
 
878
+ AudioHlsRenditionSelection.add_member(:group_id, Shapes::ShapeRef.new(shape: __stringMin1, required: true, location_name: "groupId"))
879
+ AudioHlsRenditionSelection.add_member(:name, Shapes::ShapeRef.new(shape: __stringMin1, required: true, location_name: "name"))
880
+ AudioHlsRenditionSelection.struct_class = Types::AudioHlsRenditionSelection
881
+
876
882
  AudioLanguageSelection.add_member(:language_code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "languageCode"))
877
883
  AudioLanguageSelection.add_member(:language_selection_policy, Shapes::ShapeRef.new(shape: AudioLanguageSelectionPolicy, location_name: "languageSelectionPolicy"))
878
884
  AudioLanguageSelection.struct_class = Types::AudioLanguageSelection
@@ -895,6 +901,7 @@ module Aws::MediaLive
895
901
  AudioSelector.add_member(:selector_settings, Shapes::ShapeRef.new(shape: AudioSelectorSettings, location_name: "selectorSettings"))
896
902
  AudioSelector.struct_class = Types::AudioSelector
897
903
 
904
+ AudioSelectorSettings.add_member(:audio_hls_rendition_selection, Shapes::ShapeRef.new(shape: AudioHlsRenditionSelection, location_name: "audioHlsRenditionSelection"))
898
905
  AudioSelectorSettings.add_member(:audio_language_selection, Shapes::ShapeRef.new(shape: AudioLanguageSelection, location_name: "audioLanguageSelection"))
899
906
  AudioSelectorSettings.add_member(:audio_pid_selection, Shapes::ShapeRef.new(shape: AudioPidSelection, location_name: "audioPidSelection"))
900
907
  AudioSelectorSettings.add_member(:audio_track_selection, Shapes::ShapeRef.new(shape: AudioTrackSelection, location_name: "audioTrackSelection"))
@@ -3113,6 +3120,7 @@ module Aws::MediaLive
3113
3120
  WavSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __double, location_name: "sampleRate"))
3114
3121
  WavSettings.struct_class = Types::WavSettings
3115
3122
 
3123
+ WebvttDestinationSettings.add_member(:style_control, Shapes::ShapeRef.new(shape: WebvttDestinationStyleControl, location_name: "styleControl"))
3116
3124
  WebvttDestinationSettings.struct_class = Types::WebvttDestinationSettings
3117
3125
 
3118
3126
  __listOfAudioChannelMapping.member = Shapes::ShapeRef.new(shape: AudioChannelMapping)
@@ -801,6 +801,35 @@ module Aws::MediaLive
801
801
  include Aws::Structure
802
802
  end
803
803
 
804
+ # Audio Hls Rendition Selection
805
+ #
806
+ # @note When making an API call, you may pass AudioHlsRenditionSelection
807
+ # data as a hash:
808
+ #
809
+ # {
810
+ # group_id: "__stringMin1", # required
811
+ # name: "__stringMin1", # required
812
+ # }
813
+ #
814
+ # @!attribute [rw] group_id
815
+ # Specifies the GROUP-ID in the #EXT-X-MEDIA tag of the target HLS
816
+ # audio rendition.
817
+ # @return [String]
818
+ #
819
+ # @!attribute [rw] name
820
+ # Specifies the NAME in the #EXT-X-MEDIA tag of the target HLS audio
821
+ # rendition.
822
+ # @return [String]
823
+ #
824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioHlsRenditionSelection AWS API Documentation
825
+ #
826
+ class AudioHlsRenditionSelection < Struct.new(
827
+ :group_id,
828
+ :name)
829
+ SENSITIVE = []
830
+ include Aws::Structure
831
+ end
832
+
804
833
  # Audio Language Selection
805
834
  #
806
835
  # @note When making an API call, you may pass AudioLanguageSelection
@@ -961,6 +990,10 @@ module Aws::MediaLive
961
990
  # {
962
991
  # name: "__stringMin1", # required
963
992
  # selector_settings: {
993
+ # audio_hls_rendition_selection: {
994
+ # group_id: "__stringMin1", # required
995
+ # name: "__stringMin1", # required
996
+ # },
964
997
  # audio_language_selection: {
965
998
  # language_code: "__string", # required
966
999
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -1003,6 +1036,10 @@ module Aws::MediaLive
1003
1036
  # data as a hash:
1004
1037
  #
1005
1038
  # {
1039
+ # audio_hls_rendition_selection: {
1040
+ # group_id: "__stringMin1", # required
1041
+ # name: "__stringMin1", # required
1042
+ # },
1006
1043
  # audio_language_selection: {
1007
1044
  # language_code: "__string", # required
1008
1045
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -1019,6 +1056,10 @@ module Aws::MediaLive
1019
1056
  # },
1020
1057
  # }
1021
1058
  #
1059
+ # @!attribute [rw] audio_hls_rendition_selection
1060
+ # Audio Hls Rendition Selection
1061
+ # @return [Types::AudioHlsRenditionSelection]
1062
+ #
1022
1063
  # @!attribute [rw] audio_language_selection
1023
1064
  # Audio Language Selection
1024
1065
  # @return [Types::AudioLanguageSelection]
@@ -1034,6 +1075,7 @@ module Aws::MediaLive
1034
1075
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AudioSelectorSettings AWS API Documentation
1035
1076
  #
1036
1077
  class AudioSelectorSettings < Struct.new(
1078
+ :audio_hls_rendition_selection,
1037
1079
  :audio_language_selection,
1038
1080
  :audio_pid_selection,
1039
1081
  :audio_track_selection)
@@ -2322,6 +2364,7 @@ module Aws::MediaLive
2322
2364
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
2323
2365
  # },
2324
2366
  # webvtt_destination_settings: {
2367
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
2325
2368
  # },
2326
2369
  # },
2327
2370
  # language_code: "__string",
@@ -2444,6 +2487,7 @@ module Aws::MediaLive
2444
2487
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
2445
2488
  # },
2446
2489
  # webvtt_destination_settings: {
2490
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
2447
2491
  # },
2448
2492
  # }
2449
2493
  #
@@ -3328,6 +3372,7 @@ module Aws::MediaLive
3328
3372
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
3329
3373
  # },
3330
3374
  # webvtt_destination_settings: {
3375
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
3331
3376
  # },
3332
3377
  # },
3333
3378
  # language_code: "__string",
@@ -3929,6 +3974,10 @@ module Aws::MediaLive
3929
3974
  # {
3930
3975
  # name: "__stringMin1", # required
3931
3976
  # selector_settings: {
3977
+ # audio_hls_rendition_selection: {
3978
+ # group_id: "__stringMin1", # required
3979
+ # name: "__stringMin1", # required
3980
+ # },
3932
3981
  # audio_language_selection: {
3933
3982
  # language_code: "__string", # required
3934
3983
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -6609,6 +6658,7 @@ module Aws::MediaLive
6609
6658
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
6610
6659
  # },
6611
6660
  # webvtt_destination_settings: {
6661
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
6612
6662
  # },
6613
6663
  # },
6614
6664
  # language_code: "__string",
@@ -9673,6 +9723,10 @@ module Aws::MediaLive
9673
9723
  # {
9674
9724
  # name: "__stringMin1", # required
9675
9725
  # selector_settings: {
9726
+ # audio_hls_rendition_selection: {
9727
+ # group_id: "__stringMin1", # required
9728
+ # name: "__stringMin1", # required
9729
+ # },
9676
9730
  # audio_language_selection: {
9677
9731
  # language_code: "__string", # required
9678
9732
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -10554,6 +10608,10 @@ module Aws::MediaLive
10554
10608
  # {
10555
10609
  # name: "__stringMin1", # required
10556
10610
  # selector_settings: {
10611
+ # audio_hls_rendition_selection: {
10612
+ # group_id: "__stringMin1", # required
10613
+ # name: "__stringMin1", # required
10614
+ # },
10557
10615
  # audio_language_selection: {
10558
10616
  # language_code: "__string", # required
10559
10617
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -17714,6 +17772,7 @@ module Aws::MediaLive
17714
17772
  # style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
17715
17773
  # },
17716
17774
  # webvtt_destination_settings: {
17775
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
17717
17776
  # },
17718
17777
  # },
17719
17778
  # language_code: "__string",
@@ -18315,6 +18374,10 @@ module Aws::MediaLive
18315
18374
  # {
18316
18375
  # name: "__stringMin1", # required
18317
18376
  # selector_settings: {
18377
+ # audio_hls_rendition_selection: {
18378
+ # group_id: "__stringMin1", # required
18379
+ # name: "__stringMin1", # required
18380
+ # },
18318
18381
  # audio_language_selection: {
18319
18382
  # language_code: "__string", # required
18320
18383
  # language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
@@ -19743,11 +19806,28 @@ module Aws::MediaLive
19743
19806
 
19744
19807
  # Webvtt Destination Settings
19745
19808
  #
19746
- # @api private
19809
+ # @note When making an API call, you may pass WebvttDestinationSettings
19810
+ # data as a hash:
19811
+ #
19812
+ # {
19813
+ # style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
19814
+ # }
19815
+ #
19816
+ # @!attribute [rw] style_control
19817
+ # Controls whether the color and position of the source captions is
19818
+ # passed through to the WebVTT output captions. PASSTHROUGH - Valid
19819
+ # only if the source captions are EMBEDDED or TELETEXT.
19820
+ # NO\_STYLE\_DATA - Don't pass through the style. The output captions
19821
+ # will not contain any font styling information.
19822
+ # @return [String]
19747
19823
  #
19748
19824
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WebvttDestinationSettings AWS API Documentation
19749
19825
  #
19750
- class WebvttDestinationSettings < Aws::EmptyStructure; end
19826
+ class WebvttDestinationSettings < Struct.new(
19827
+ :style_control)
19828
+ SENSITIVE = []
19829
+ include Aws::Structure
19830
+ end
19751
19831
 
19752
19832
  end
19753
19833
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-11 00:00:00.000000000 Z
11
+ date: 2021-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core