aws-sdk-medialive 1.69.0 → 1.73.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive.rb +1 -1
- data/lib/aws-sdk-medialive/client.rb +125 -46
- data/lib/aws-sdk-medialive/client_api.rb +27 -6
- data/lib/aws-sdk-medialive/types.rb +234 -44
- metadata +3 -4
@@ -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')
|
@@ -190,6 +191,7 @@ module Aws::MediaLive
|
|
190
191
|
DvbSubDestinationSettings = Shapes::StructureShape.new(name: 'DvbSubDestinationSettings')
|
191
192
|
DvbSubDestinationShadowColor = Shapes::StringShape.new(name: 'DvbSubDestinationShadowColor')
|
192
193
|
DvbSubDestinationTeletextGridControl = Shapes::StringShape.new(name: 'DvbSubDestinationTeletextGridControl')
|
194
|
+
DvbSubOcrLanguage = Shapes::StringShape.new(name: 'DvbSubOcrLanguage')
|
193
195
|
DvbSubSourceSettings = Shapes::StructureShape.new(name: 'DvbSubSourceSettings')
|
194
196
|
DvbTdtSettings = Shapes::StructureShape.new(name: 'DvbTdtSettings')
|
195
197
|
Eac3AttenuationControl = Shapes::StringShape.new(name: 'Eac3AttenuationControl')
|
@@ -316,6 +318,7 @@ module Aws::MediaLive
|
|
316
318
|
HlsRedundantManifest = Shapes::StringShape.new(name: 'HlsRedundantManifest')
|
317
319
|
HlsS3LogUploads = Shapes::StringShape.new(name: 'HlsS3LogUploads')
|
318
320
|
HlsS3Settings = Shapes::StructureShape.new(name: 'HlsS3Settings')
|
321
|
+
HlsScte35SourceType = Shapes::StringShape.new(name: 'HlsScte35SourceType')
|
319
322
|
HlsSegmentationMode = Shapes::StringShape.new(name: 'HlsSegmentationMode')
|
320
323
|
HlsSettings = Shapes::StructureShape.new(name: 'HlsSettings')
|
321
324
|
HlsStreamInfResolution = Shapes::StringShape.new(name: 'HlsStreamInfResolution')
|
@@ -551,6 +554,7 @@ module Aws::MediaLive
|
|
551
554
|
Scte20PlusEmbeddedDestinationSettings = Shapes::StructureShape.new(name: 'Scte20PlusEmbeddedDestinationSettings')
|
552
555
|
Scte20SourceSettings = Shapes::StructureShape.new(name: 'Scte20SourceSettings')
|
553
556
|
Scte27DestinationSettings = Shapes::StructureShape.new(name: 'Scte27DestinationSettings')
|
557
|
+
Scte27OcrLanguage = Shapes::StringShape.new(name: 'Scte27OcrLanguage')
|
554
558
|
Scte27SourceSettings = Shapes::StructureShape.new(name: 'Scte27SourceSettings')
|
555
559
|
Scte35AposNoRegionalBlackoutBehavior = Shapes::StringShape.new(name: 'Scte35AposNoRegionalBlackoutBehavior')
|
556
560
|
Scte35AposWebDeliveryAllowedBehavior = Shapes::StringShape.new(name: 'Scte35AposWebDeliveryAllowedBehavior')
|
@@ -659,9 +663,11 @@ module Aws::MediaLive
|
|
659
663
|
VideoSelectorProgramId = Shapes::StructureShape.new(name: 'VideoSelectorProgramId')
|
660
664
|
VideoSelectorSettings = Shapes::StructureShape.new(name: 'VideoSelectorSettings')
|
661
665
|
VpcOutputSettings = Shapes::StructureShape.new(name: 'VpcOutputSettings')
|
666
|
+
VpcOutputSettingsDescription = Shapes::StructureShape.new(name: 'VpcOutputSettingsDescription')
|
662
667
|
WavCodingMode = Shapes::StringShape.new(name: 'WavCodingMode')
|
663
668
|
WavSettings = Shapes::StructureShape.new(name: 'WavSettings')
|
664
669
|
WebvttDestinationSettings = Shapes::StructureShape.new(name: 'WebvttDestinationSettings')
|
670
|
+
WebvttDestinationStyleControl = Shapes::StringShape.new(name: 'WebvttDestinationStyleControl')
|
665
671
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
666
672
|
__double = Shapes::FloatShape.new(name: '__double')
|
667
673
|
__doubleMin0 = Shapes::FloatShape.new(name: '__doubleMin0')
|
@@ -869,6 +875,10 @@ module Aws::MediaLive
|
|
869
875
|
AudioDescription.add_member(:stream_name, Shapes::ShapeRef.new(shape: __string, location_name: "streamName"))
|
870
876
|
AudioDescription.struct_class = Types::AudioDescription
|
871
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
|
+
|
872
882
|
AudioLanguageSelection.add_member(:language_code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "languageCode"))
|
873
883
|
AudioLanguageSelection.add_member(:language_selection_policy, Shapes::ShapeRef.new(shape: AudioLanguageSelectionPolicy, location_name: "languageSelectionPolicy"))
|
874
884
|
AudioLanguageSelection.struct_class = Types::AudioLanguageSelection
|
@@ -891,6 +901,7 @@ module Aws::MediaLive
|
|
891
901
|
AudioSelector.add_member(:selector_settings, Shapes::ShapeRef.new(shape: AudioSelectorSettings, location_name: "selectorSettings"))
|
892
902
|
AudioSelector.struct_class = Types::AudioSelector
|
893
903
|
|
904
|
+
AudioSelectorSettings.add_member(:audio_hls_rendition_selection, Shapes::ShapeRef.new(shape: AudioHlsRenditionSelection, location_name: "audioHlsRenditionSelection"))
|
894
905
|
AudioSelectorSettings.add_member(:audio_language_selection, Shapes::ShapeRef.new(shape: AudioLanguageSelection, location_name: "audioLanguageSelection"))
|
895
906
|
AudioSelectorSettings.add_member(:audio_pid_selection, Shapes::ShapeRef.new(shape: AudioPidSelection, location_name: "audioPidSelection"))
|
896
907
|
AudioSelectorSettings.add_member(:audio_track_selection, Shapes::ShapeRef.new(shape: AudioTrackSelection, location_name: "audioTrackSelection"))
|
@@ -1114,7 +1125,7 @@ module Aws::MediaLive
|
|
1114
1125
|
Channel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
1115
1126
|
Channel.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
|
1116
1127
|
Channel.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1117
|
-
Channel.add_member(:vpc, Shapes::ShapeRef.new(shape:
|
1128
|
+
Channel.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1118
1129
|
Channel.struct_class = Types::Channel
|
1119
1130
|
|
1120
1131
|
ChannelConfigurationValidationError.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
@@ -1138,7 +1149,7 @@ module Aws::MediaLive
|
|
1138
1149
|
ChannelSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
1139
1150
|
ChannelSummary.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
|
1140
1151
|
ChannelSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1141
|
-
ChannelSummary.add_member(:vpc, Shapes::ShapeRef.new(shape:
|
1152
|
+
ChannelSummary.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1142
1153
|
ChannelSummary.struct_class = Types::ChannelSummary
|
1143
1154
|
|
1144
1155
|
ColorSpacePassthroughSettings.struct_class = Types::ColorSpacePassthroughSettings
|
@@ -1299,7 +1310,7 @@ module Aws::MediaLive
|
|
1299
1310
|
DeleteChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
1300
1311
|
DeleteChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
|
1301
1312
|
DeleteChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1302
|
-
DeleteChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape:
|
1313
|
+
DeleteChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1303
1314
|
DeleteChannelResponse.struct_class = Types::DeleteChannelResponse
|
1304
1315
|
|
1305
1316
|
DeleteInputRequest.add_member(:input_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputId"))
|
@@ -1389,7 +1400,7 @@ module Aws::MediaLive
|
|
1389
1400
|
DescribeChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
1390
1401
|
DescribeChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
|
1391
1402
|
DescribeChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
1392
|
-
DescribeChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape:
|
1403
|
+
DescribeChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
1393
1404
|
DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
|
1394
1405
|
|
1395
1406
|
DescribeInputDeviceRequest.add_member(:input_device_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputDeviceId"))
|
@@ -1558,6 +1569,7 @@ module Aws::MediaLive
|
|
1558
1569
|
DvbSubDestinationSettings.add_member(:y_position, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "yPosition"))
|
1559
1570
|
DvbSubDestinationSettings.struct_class = Types::DvbSubDestinationSettings
|
1560
1571
|
|
1572
|
+
DvbSubSourceSettings.add_member(:ocr_language, Shapes::ShapeRef.new(shape: DvbSubOcrLanguage, location_name: "ocrLanguage"))
|
1561
1573
|
DvbSubSourceSettings.add_member(:pid, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "pid"))
|
1562
1574
|
DvbSubSourceSettings.struct_class = Types::DvbSubSourceSettings
|
1563
1575
|
|
@@ -1847,6 +1859,7 @@ module Aws::MediaLive
|
|
1847
1859
|
HlsInputSettings.add_member(:buffer_segments, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "bufferSegments"))
|
1848
1860
|
HlsInputSettings.add_member(:retries, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "retries"))
|
1849
1861
|
HlsInputSettings.add_member(:retry_interval, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "retryInterval"))
|
1862
|
+
HlsInputSettings.add_member(:scte_35_source, Shapes::ShapeRef.new(shape: HlsScte35SourceType, location_name: "scte35Source"))
|
1850
1863
|
HlsInputSettings.struct_class = Types::HlsInputSettings
|
1851
1864
|
|
1852
1865
|
HlsMediaStoreSettings.add_member(:connection_retry_interval, Shapes::ShapeRef.new(shape: __integerMin0, location_name: "connectionRetryInterval"))
|
@@ -2685,6 +2698,7 @@ module Aws::MediaLive
|
|
2685
2698
|
|
2686
2699
|
Scte27DestinationSettings.struct_class = Types::Scte27DestinationSettings
|
2687
2700
|
|
2701
|
+
Scte27SourceSettings.add_member(:ocr_language, Shapes::ShapeRef.new(shape: Scte27OcrLanguage, location_name: "ocrLanguage"))
|
2688
2702
|
Scte27SourceSettings.add_member(:pid, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "pid"))
|
2689
2703
|
Scte27SourceSettings.struct_class = Types::Scte27SourceSettings
|
2690
2704
|
|
@@ -2758,7 +2772,7 @@ module Aws::MediaLive
|
|
2758
2772
|
StartChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
2759
2773
|
StartChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
|
2760
2774
|
StartChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
2761
|
-
StartChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape:
|
2775
|
+
StartChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
2762
2776
|
StartChannelResponse.struct_class = Types::StartChannelResponse
|
2763
2777
|
|
2764
2778
|
StartMultiplexRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
|
@@ -2818,7 +2832,7 @@ module Aws::MediaLive
|
|
2818
2832
|
StopChannelResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
2819
2833
|
StopChannelResponse.add_member(:state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "state"))
|
2820
2834
|
StopChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
2821
|
-
StopChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape:
|
2835
|
+
StopChannelResponse.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcOutputSettingsDescription, location_name: "vpc"))
|
2822
2836
|
StopChannelResponse.struct_class = Types::StopChannelResponse
|
2823
2837
|
|
2824
2838
|
StopMultiplexRequest.add_member(:multiplex_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "multiplexId"))
|
@@ -3095,11 +3109,18 @@ module Aws::MediaLive
|
|
3095
3109
|
VpcOutputSettings.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "subnetIds"))
|
3096
3110
|
VpcOutputSettings.struct_class = Types::VpcOutputSettings
|
3097
3111
|
|
3112
|
+
VpcOutputSettingsDescription.add_member(:availability_zones, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "availabilityZones"))
|
3113
|
+
VpcOutputSettingsDescription.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "networkInterfaceIds"))
|
3114
|
+
VpcOutputSettingsDescription.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroupIds"))
|
3115
|
+
VpcOutputSettingsDescription.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
3116
|
+
VpcOutputSettingsDescription.struct_class = Types::VpcOutputSettingsDescription
|
3117
|
+
|
3098
3118
|
WavSettings.add_member(:bit_depth, Shapes::ShapeRef.new(shape: __double, location_name: "bitDepth"))
|
3099
3119
|
WavSettings.add_member(:coding_mode, Shapes::ShapeRef.new(shape: WavCodingMode, location_name: "codingMode"))
|
3100
3120
|
WavSettings.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __double, location_name: "sampleRate"))
|
3101
3121
|
WavSettings.struct_class = Types::WavSettings
|
3102
3122
|
|
3123
|
+
WebvttDestinationSettings.add_member(:style_control, Shapes::ShapeRef.new(shape: WebvttDestinationStyleControl, location_name: "styleControl"))
|
3103
3124
|
WebvttDestinationSettings.struct_class = Types::WebvttDestinationSettings
|
3104
3125
|
|
3105
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
|
#
|
@@ -2641,6 +2685,7 @@ module Aws::MediaLive
|
|
2641
2685
|
# arib_source_settings: {
|
2642
2686
|
# },
|
2643
2687
|
# dvb_sub_source_settings: {
|
2688
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2644
2689
|
# pid: 1,
|
2645
2690
|
# },
|
2646
2691
|
# embedded_source_settings: {
|
@@ -2654,6 +2699,7 @@ module Aws::MediaLive
|
|
2654
2699
|
# source_608_channel_number: 1,
|
2655
2700
|
# },
|
2656
2701
|
# scte_27_source_settings: {
|
2702
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2657
2703
|
# pid: 1,
|
2658
2704
|
# },
|
2659
2705
|
# teletext_source_settings: {
|
@@ -2705,6 +2751,7 @@ module Aws::MediaLive
|
|
2705
2751
|
# arib_source_settings: {
|
2706
2752
|
# },
|
2707
2753
|
# dvb_sub_source_settings: {
|
2754
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2708
2755
|
# pid: 1,
|
2709
2756
|
# },
|
2710
2757
|
# embedded_source_settings: {
|
@@ -2718,6 +2765,7 @@ module Aws::MediaLive
|
|
2718
2765
|
# source_608_channel_number: 1,
|
2719
2766
|
# },
|
2720
2767
|
# scte_27_source_settings: {
|
2768
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
2721
2769
|
# pid: 1,
|
2722
2770
|
# },
|
2723
2771
|
# teletext_source_settings: {
|
@@ -2861,7 +2909,7 @@ module Aws::MediaLive
|
|
2861
2909
|
#
|
2862
2910
|
# @!attribute [rw] vpc
|
2863
2911
|
# Settings for VPC output
|
2864
|
-
# @return [Types::
|
2912
|
+
# @return [Types::VpcOutputSettingsDescription]
|
2865
2913
|
#
|
2866
2914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Channel AWS API Documentation
|
2867
2915
|
#
|
@@ -2976,7 +3024,7 @@ module Aws::MediaLive
|
|
2976
3024
|
#
|
2977
3025
|
# @!attribute [rw] vpc
|
2978
3026
|
# Settings for VPC output
|
2979
|
-
# @return [Types::
|
3027
|
+
# @return [Types::VpcOutputSettingsDescription]
|
2980
3028
|
#
|
2981
3029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ChannelSummary AWS API Documentation
|
2982
3030
|
#
|
@@ -3324,6 +3372,7 @@ module Aws::MediaLive
|
|
3324
3372
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
3325
3373
|
# },
|
3326
3374
|
# webvtt_destination_settings: {
|
3375
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
3327
3376
|
# },
|
3328
3377
|
# },
|
3329
3378
|
# language_code: "__string",
|
@@ -3760,7 +3809,7 @@ module Aws::MediaLive
|
|
3760
3809
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
3761
3810
|
# },
|
3762
3811
|
# h264_settings: {
|
3763
|
-
# adaptive_quantization: "
|
3812
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
3764
3813
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3765
3814
|
# bitrate: 1,
|
3766
3815
|
# buf_fill_pct: 1,
|
@@ -3815,7 +3864,7 @@ module Aws::MediaLive
|
|
3815
3864
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
3816
3865
|
# },
|
3817
3866
|
# h265_settings: {
|
3818
|
-
# adaptive_quantization: "
|
3867
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
3819
3868
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
3820
3869
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
3821
3870
|
# bitrate: 1,
|
@@ -3925,6 +3974,10 @@ module Aws::MediaLive
|
|
3925
3974
|
# {
|
3926
3975
|
# name: "__stringMin1", # required
|
3927
3976
|
# selector_settings: {
|
3977
|
+
# audio_hls_rendition_selection: {
|
3978
|
+
# group_id: "__stringMin1", # required
|
3979
|
+
# name: "__stringMin1", # required
|
3980
|
+
# },
|
3928
3981
|
# audio_language_selection: {
|
3929
3982
|
# language_code: "__string", # required
|
3930
3983
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -3953,6 +4006,7 @@ module Aws::MediaLive
|
|
3953
4006
|
# arib_source_settings: {
|
3954
4007
|
# },
|
3955
4008
|
# dvb_sub_source_settings: {
|
4009
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
3956
4010
|
# pid: 1,
|
3957
4011
|
# },
|
3958
4012
|
# embedded_source_settings: {
|
@@ -3966,6 +4020,7 @@ module Aws::MediaLive
|
|
3966
4020
|
# source_608_channel_number: 1,
|
3967
4021
|
# },
|
3968
4022
|
# scte_27_source_settings: {
|
4023
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
3969
4024
|
# pid: 1,
|
3970
4025
|
# },
|
3971
4026
|
# teletext_source_settings: {
|
@@ -3990,6 +4045,7 @@ module Aws::MediaLive
|
|
3990
4045
|
# buffer_segments: 1,
|
3991
4046
|
# retries: 1,
|
3992
4047
|
# retry_interval: 1,
|
4048
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
3993
4049
|
# },
|
3994
4050
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
3995
4051
|
# },
|
@@ -4744,10 +4800,8 @@ module Aws::MediaLive
|
|
4744
4800
|
# @return [Hash<String,String>]
|
4745
4801
|
#
|
4746
4802
|
# @!attribute [rw] vpc
|
4747
|
-
# The properties for a private VPC Output
|
4748
|
-
#
|
4749
|
-
# specified VPC
|
4750
|
-
# @return [Types::VpcOutputSettings]
|
4803
|
+
# The properties for a private VPC Output
|
4804
|
+
# @return [Types::VpcOutputSettingsDescription]
|
4751
4805
|
#
|
4752
4806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteChannelResponse AWS API Documentation
|
4753
4807
|
#
|
@@ -5153,10 +5207,8 @@ module Aws::MediaLive
|
|
5153
5207
|
# @return [Hash<String,String>]
|
5154
5208
|
#
|
5155
5209
|
# @!attribute [rw] vpc
|
5156
|
-
# The properties for a private VPC Output
|
5157
|
-
#
|
5158
|
-
# specified VPC
|
5159
|
-
# @return [Types::VpcOutputSettings]
|
5210
|
+
# The properties for a private VPC Output
|
5211
|
+
# @return [Types::VpcOutputSettingsDescription]
|
5160
5212
|
#
|
5161
5213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeChannelResponse AWS API Documentation
|
5162
5214
|
#
|
@@ -6068,9 +6120,16 @@ module Aws::MediaLive
|
|
6068
6120
|
# data as a hash:
|
6069
6121
|
#
|
6070
6122
|
# {
|
6123
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
6071
6124
|
# pid: 1,
|
6072
6125
|
# }
|
6073
6126
|
#
|
6127
|
+
# @!attribute [rw] ocr_language
|
6128
|
+
# If you will configure a WebVTT caption description that references
|
6129
|
+
# this caption selector, use this field to provide the language to
|
6130
|
+
# consider when translating the image-based source to text.
|
6131
|
+
# @return [String]
|
6132
|
+
#
|
6074
6133
|
# @!attribute [rw] pid
|
6075
6134
|
# When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the
|
6076
6135
|
# source content. Unused for DVB-Sub passthrough. All DVB-Sub content
|
@@ -6080,6 +6139,7 @@ module Aws::MediaLive
|
|
6080
6139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DvbSubSourceSettings AWS API Documentation
|
6081
6140
|
#
|
6082
6141
|
class DvbSubSourceSettings < Struct.new(
|
6142
|
+
:ocr_language,
|
6083
6143
|
:pid)
|
6084
6144
|
SENSITIVE = []
|
6085
6145
|
include Aws::Structure
|
@@ -6598,6 +6658,7 @@ module Aws::MediaLive
|
|
6598
6658
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
6599
6659
|
# },
|
6600
6660
|
# webvtt_destination_settings: {
|
6661
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
6601
6662
|
# },
|
6602
6663
|
# },
|
6603
6664
|
# language_code: "__string",
|
@@ -7034,7 +7095,7 @@ module Aws::MediaLive
|
|
7034
7095
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
7035
7096
|
# },
|
7036
7097
|
# h264_settings: {
|
7037
|
-
# adaptive_quantization: "
|
7098
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7038
7099
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7039
7100
|
# bitrate: 1,
|
7040
7101
|
# buf_fill_pct: 1,
|
@@ -7089,7 +7150,7 @@ module Aws::MediaLive
|
|
7089
7150
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
7090
7151
|
# },
|
7091
7152
|
# h265_settings: {
|
7092
|
-
# adaptive_quantization: "
|
7153
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7093
7154
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7094
7155
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
7095
7156
|
# bitrate: 1,
|
@@ -7777,7 +7838,7 @@ module Aws::MediaLive
|
|
7777
7838
|
# data as a hash:
|
7778
7839
|
#
|
7779
7840
|
# {
|
7780
|
-
# adaptive_quantization: "
|
7841
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7781
7842
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7782
7843
|
# bitrate: 1,
|
7783
7844
|
# buf_fill_pct: 1,
|
@@ -7833,8 +7894,16 @@ module Aws::MediaLive
|
|
7833
7894
|
# }
|
7834
7895
|
#
|
7835
7896
|
# @!attribute [rw] adaptive_quantization
|
7836
|
-
#
|
7837
|
-
#
|
7897
|
+
# Enables or disables adaptive quantization, which is a technique
|
7898
|
+
# MediaLive can apply to video on a frame-by-frame basis to produce
|
7899
|
+
# more compression without losing quality. There are three types of
|
7900
|
+
# adaptive quantization: flicker, spatial, and temporal. Set the field
|
7901
|
+
# in one of these ways: Set to Auto. Recommended. For each type of AQ,
|
7902
|
+
# MediaLive will determine if AQ is needed, and if so, the appropriate
|
7903
|
+
# strength. Set a strength (a value other than Auto or Disable). This
|
7904
|
+
# strength will apply to any of the AQ fields that you choose to
|
7905
|
+
# enable. Set to Disabled to disable all types of adaptive
|
7906
|
+
# quantization.
|
7838
7907
|
# @return [String]
|
7839
7908
|
#
|
7840
7909
|
# @!attribute [rw] afd_signaling
|
@@ -7884,8 +7953,17 @@ module Aws::MediaLive
|
|
7884
7953
|
# @return [String]
|
7885
7954
|
#
|
7886
7955
|
# @!attribute [rw] flicker_aq
|
7887
|
-
#
|
7888
|
-
#
|
7956
|
+
# Flicker AQ makes adjustments within each frame to reduce flicker or
|
7957
|
+
# 'pop' on I-frames. The value to enter in this field depends on the
|
7958
|
+
# value in the Adaptive quantization field: If you have set the
|
7959
|
+
# Adaptive quantization field to Auto, MediaLive ignores any value in
|
7960
|
+
# this field. MediaLive will determine if flicker AQ is appropriate
|
7961
|
+
# and will apply the appropriate strength. If you have set the
|
7962
|
+
# Adaptive quantization field to a strength, you can set this field to
|
7963
|
+
# Enabled or Disabled. Enabled: MediaLive will apply flicker AQ using
|
7964
|
+
# the specified strength. Disabled: MediaLive won't apply flicker AQ.
|
7965
|
+
# If you have set the Adaptive quantization to Disabled, MediaLive
|
7966
|
+
# ignores any value in this field and doesn't apply flicker AQ.
|
7889
7967
|
# @return [String]
|
7890
7968
|
#
|
7891
7969
|
# @!attribute [rw] force_field_pictures
|
@@ -8010,12 +8088,17 @@ module Aws::MediaLive
|
|
8010
8088
|
#
|
8011
8089
|
# @!attribute [rw] qvbr_quality_level
|
8012
8090
|
# Controls the target quality for the video encode. Applies only when
|
8013
|
-
# the rate control mode is QVBR.
|
8014
|
-
#
|
8091
|
+
# the rate control mode is QVBR. You can set a target quality or you
|
8092
|
+
# can let MediaLive determine the best quality. To set a target
|
8093
|
+
# quality, enter values in the QVBR quality level field and the Max
|
8094
|
+
# bitrate field. Enter values that suit your most important viewing
|
8015
8095
|
# devices. Recommended values are: - Primary screen: Quality level: 8
|
8016
8096
|
# to 10. Max bitrate: 4M - PC or tablet: Quality level: 7. Max
|
8017
8097
|
# bitrate: 1.5M to 3M - Smartphone: Quality level: 6. Max bitrate: 1M
|
8018
|
-
# to 1.5M
|
8098
|
+
# to 1.5M To let MediaLive decide, leave the QVBR quality level field
|
8099
|
+
# empty, and in Max bitrate enter the maximum rate you want in the
|
8100
|
+
# video. For more information, see the section called "Video - rate
|
8101
|
+
# control mode" in the MediaLive user guide
|
8019
8102
|
# @return [Integer]
|
8020
8103
|
#
|
8021
8104
|
# @!attribute [rw] rate_control_mode
|
@@ -8059,8 +8142,18 @@ module Aws::MediaLive
|
|
8059
8142
|
# @return [Integer]
|
8060
8143
|
#
|
8061
8144
|
# @!attribute [rw] spatial_aq
|
8062
|
-
#
|
8063
|
-
#
|
8145
|
+
# Spatial AQ makes adjustments within each frame based on spatial
|
8146
|
+
# variation of content complexity. The value to enter in this field
|
8147
|
+
# depends on the value in the Adaptive quantization field: If you have
|
8148
|
+
# set the Adaptive quantization field to Auto, MediaLive ignores any
|
8149
|
+
# value in this field. MediaLive will determine if spatial AQ is
|
8150
|
+
# appropriate and will apply the appropriate strength. If you have set
|
8151
|
+
# the Adaptive quantization field to a strength, you can set this
|
8152
|
+
# field to Enabled or Disabled. Enabled: MediaLive will apply spatial
|
8153
|
+
# AQ using the specified strength. Disabled: MediaLive won't apply
|
8154
|
+
# spatial AQ. If you have set the Adaptive quantization to Disabled,
|
8155
|
+
# MediaLive ignores any value in this field and doesn't apply spatial
|
8156
|
+
# AQ.
|
8064
8157
|
# @return [String]
|
8065
8158
|
#
|
8066
8159
|
# @!attribute [rw] subgop_length
|
@@ -8074,8 +8167,18 @@ module Aws::MediaLive
|
|
8074
8167
|
# @return [String]
|
8075
8168
|
#
|
8076
8169
|
# @!attribute [rw] temporal_aq
|
8077
|
-
#
|
8078
|
-
#
|
8170
|
+
# Temporal makes adjustments within each frame based on temporal
|
8171
|
+
# variation of content complexity. The value to enter in this field
|
8172
|
+
# depends on the value in the Adaptive quantization field: If you have
|
8173
|
+
# set the Adaptive quantization field to Auto, MediaLive ignores any
|
8174
|
+
# value in this field. MediaLive will determine if temporal AQ is
|
8175
|
+
# appropriate and will apply the appropriate strength. If you have set
|
8176
|
+
# the Adaptive quantization field to a strength, you can set this
|
8177
|
+
# field to Enabled or Disabled. Enabled: MediaLive will apply temporal
|
8178
|
+
# AQ using the specified strength. Disabled: MediaLive won't apply
|
8179
|
+
# temporal AQ. If you have set the Adaptive quantization to Disabled,
|
8180
|
+
# MediaLive ignores any value in this field and doesn't apply
|
8181
|
+
# temporal AQ.
|
8079
8182
|
# @return [String]
|
8080
8183
|
#
|
8081
8184
|
# @!attribute [rw] timecode_insertion
|
@@ -8208,7 +8311,7 @@ module Aws::MediaLive
|
|
8208
8311
|
# data as a hash:
|
8209
8312
|
#
|
8210
8313
|
# {
|
8211
|
-
# adaptive_quantization: "
|
8314
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
8212
8315
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
8213
8316
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
8214
8317
|
# bitrate: 1,
|
@@ -9130,6 +9233,7 @@ module Aws::MediaLive
|
|
9130
9233
|
# buffer_segments: 1,
|
9131
9234
|
# retries: 1,
|
9132
9235
|
# retry_interval: 1,
|
9236
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
9133
9237
|
# }
|
9134
9238
|
#
|
9135
9239
|
# @!attribute [rw] bandwidth
|
@@ -9156,13 +9260,21 @@ module Aws::MediaLive
|
|
9156
9260
|
# manifest or segment fails.
|
9157
9261
|
# @return [Integer]
|
9158
9262
|
#
|
9263
|
+
# @!attribute [rw] scte_35_source
|
9264
|
+
# Identifies the source for the SCTE-35 messages that MediaLive will
|
9265
|
+
# ingest. Messages can be ingested from the content segments (in the
|
9266
|
+
# stream) or from tags in the playlist (the HLS manifest). MediaLive
|
9267
|
+
# ignores SCTE-35 information in the source that is not selected.
|
9268
|
+
# @return [String]
|
9269
|
+
#
|
9159
9270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/HlsInputSettings AWS API Documentation
|
9160
9271
|
#
|
9161
9272
|
class HlsInputSettings < Struct.new(
|
9162
9273
|
:bandwidth,
|
9163
9274
|
:buffer_segments,
|
9164
9275
|
:retries,
|
9165
|
-
:retry_interval
|
9276
|
+
:retry_interval,
|
9277
|
+
:scte_35_source)
|
9166
9278
|
SENSITIVE = []
|
9167
9279
|
include Aws::Structure
|
9168
9280
|
end
|
@@ -9611,6 +9723,10 @@ module Aws::MediaLive
|
|
9611
9723
|
# {
|
9612
9724
|
# name: "__stringMin1", # required
|
9613
9725
|
# selector_settings: {
|
9726
|
+
# audio_hls_rendition_selection: {
|
9727
|
+
# group_id: "__stringMin1", # required
|
9728
|
+
# name: "__stringMin1", # required
|
9729
|
+
# },
|
9614
9730
|
# audio_language_selection: {
|
9615
9731
|
# language_code: "__string", # required
|
9616
9732
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -9639,6 +9755,7 @@ module Aws::MediaLive
|
|
9639
9755
|
# arib_source_settings: {
|
9640
9756
|
# },
|
9641
9757
|
# dvb_sub_source_settings: {
|
9758
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
9642
9759
|
# pid: 1,
|
9643
9760
|
# },
|
9644
9761
|
# embedded_source_settings: {
|
@@ -9652,6 +9769,7 @@ module Aws::MediaLive
|
|
9652
9769
|
# source_608_channel_number: 1,
|
9653
9770
|
# },
|
9654
9771
|
# scte_27_source_settings: {
|
9772
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
9655
9773
|
# pid: 1,
|
9656
9774
|
# },
|
9657
9775
|
# teletext_source_settings: {
|
@@ -9676,6 +9794,7 @@ module Aws::MediaLive
|
|
9676
9794
|
# buffer_segments: 1,
|
9677
9795
|
# retries: 1,
|
9678
9796
|
# retry_interval: 1,
|
9797
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
9679
9798
|
# },
|
9680
9799
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
9681
9800
|
# },
|
@@ -10489,6 +10608,10 @@ module Aws::MediaLive
|
|
10489
10608
|
# {
|
10490
10609
|
# name: "__stringMin1", # required
|
10491
10610
|
# selector_settings: {
|
10611
|
+
# audio_hls_rendition_selection: {
|
10612
|
+
# group_id: "__stringMin1", # required
|
10613
|
+
# name: "__stringMin1", # required
|
10614
|
+
# },
|
10492
10615
|
# audio_language_selection: {
|
10493
10616
|
# language_code: "__string", # required
|
10494
10617
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -10517,6 +10640,7 @@ module Aws::MediaLive
|
|
10517
10640
|
# arib_source_settings: {
|
10518
10641
|
# },
|
10519
10642
|
# dvb_sub_source_settings: {
|
10643
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
10520
10644
|
# pid: 1,
|
10521
10645
|
# },
|
10522
10646
|
# embedded_source_settings: {
|
@@ -10530,6 +10654,7 @@ module Aws::MediaLive
|
|
10530
10654
|
# source_608_channel_number: 1,
|
10531
10655
|
# },
|
10532
10656
|
# scte_27_source_settings: {
|
10657
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
10533
10658
|
# pid: 1,
|
10534
10659
|
# },
|
10535
10660
|
# teletext_source_settings: {
|
@@ -10554,6 +10679,7 @@ module Aws::MediaLive
|
|
10554
10679
|
# buffer_segments: 1,
|
10555
10680
|
# retries: 1,
|
10556
10681
|
# retry_interval: 1,
|
10682
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
10557
10683
|
# },
|
10558
10684
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
10559
10685
|
# },
|
@@ -13300,6 +13426,7 @@ module Aws::MediaLive
|
|
13300
13426
|
# buffer_segments: 1,
|
13301
13427
|
# retries: 1,
|
13302
13428
|
# retry_interval: 1,
|
13429
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
13303
13430
|
# },
|
13304
13431
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
13305
13432
|
# }
|
@@ -15738,9 +15865,16 @@ module Aws::MediaLive
|
|
15738
15865
|
# data as a hash:
|
15739
15866
|
#
|
15740
15867
|
# {
|
15868
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
15741
15869
|
# pid: 1,
|
15742
15870
|
# }
|
15743
15871
|
#
|
15872
|
+
# @!attribute [rw] ocr_language
|
15873
|
+
# If you will configure a WebVTT caption description that references
|
15874
|
+
# this caption selector, use this field to provide the language to
|
15875
|
+
# consider when translating the image-based source to text.
|
15876
|
+
# @return [String]
|
15877
|
+
#
|
15744
15878
|
# @!attribute [rw] pid
|
15745
15879
|
# The pid field is used in conjunction with the caption selector
|
15746
15880
|
# languageCode field as follows: - Specify PID and Language: Extracts
|
@@ -15755,6 +15889,7 @@ module Aws::MediaLive
|
|
15755
15889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte27SourceSettings AWS API Documentation
|
15756
15890
|
#
|
15757
15891
|
class Scte27SourceSettings < Struct.new(
|
15892
|
+
:ocr_language,
|
15758
15893
|
:pid)
|
15759
15894
|
SENSITIVE = []
|
15760
15895
|
include Aws::Structure
|
@@ -16290,10 +16425,8 @@ module Aws::MediaLive
|
|
16290
16425
|
# @return [Hash<String,String>]
|
16291
16426
|
#
|
16292
16427
|
# @!attribute [rw] vpc
|
16293
|
-
# The properties for a private VPC Output
|
16294
|
-
#
|
16295
|
-
# specified VPC
|
16296
|
-
# @return [Types::VpcOutputSettings]
|
16428
|
+
# The properties for a private VPC Output
|
16429
|
+
# @return [Types::VpcOutputSettingsDescription]
|
16297
16430
|
#
|
16298
16431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartChannelResponse AWS API Documentation
|
16299
16432
|
#
|
@@ -16643,10 +16776,8 @@ module Aws::MediaLive
|
|
16643
16776
|
# @return [Hash<String,String>]
|
16644
16777
|
#
|
16645
16778
|
# @!attribute [rw] vpc
|
16646
|
-
# The properties for a private VPC Output
|
16647
|
-
#
|
16648
|
-
# specified VPC
|
16649
|
-
# @return [Types::VpcOutputSettings]
|
16779
|
+
# The properties for a private VPC Output
|
16780
|
+
# @return [Types::VpcOutputSettingsDescription]
|
16650
16781
|
#
|
16651
16782
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StopChannelResponse AWS API Documentation
|
16652
16783
|
#
|
@@ -17641,6 +17772,7 @@ module Aws::MediaLive
|
|
17641
17772
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
17642
17773
|
# },
|
17643
17774
|
# webvtt_destination_settings: {
|
17775
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
17644
17776
|
# },
|
17645
17777
|
# },
|
17646
17778
|
# language_code: "__string",
|
@@ -18077,7 +18209,7 @@ module Aws::MediaLive
|
|
18077
18209
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
18078
18210
|
# },
|
18079
18211
|
# h264_settings: {
|
18080
|
-
# adaptive_quantization: "
|
18212
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
18081
18213
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18082
18214
|
# bitrate: 1,
|
18083
18215
|
# buf_fill_pct: 1,
|
@@ -18132,7 +18264,7 @@ module Aws::MediaLive
|
|
18132
18264
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
18133
18265
|
# },
|
18134
18266
|
# h265_settings: {
|
18135
|
-
# adaptive_quantization: "
|
18267
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
18136
18268
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
18137
18269
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
18138
18270
|
# bitrate: 1,
|
@@ -18242,6 +18374,10 @@ module Aws::MediaLive
|
|
18242
18374
|
# {
|
18243
18375
|
# name: "__stringMin1", # required
|
18244
18376
|
# selector_settings: {
|
18377
|
+
# audio_hls_rendition_selection: {
|
18378
|
+
# group_id: "__stringMin1", # required
|
18379
|
+
# name: "__stringMin1", # required
|
18380
|
+
# },
|
18245
18381
|
# audio_language_selection: {
|
18246
18382
|
# language_code: "__string", # required
|
18247
18383
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -18270,6 +18406,7 @@ module Aws::MediaLive
|
|
18270
18406
|
# arib_source_settings: {
|
18271
18407
|
# },
|
18272
18408
|
# dvb_sub_source_settings: {
|
18409
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
18273
18410
|
# pid: 1,
|
18274
18411
|
# },
|
18275
18412
|
# embedded_source_settings: {
|
@@ -18283,6 +18420,7 @@ module Aws::MediaLive
|
|
18283
18420
|
# source_608_channel_number: 1,
|
18284
18421
|
# },
|
18285
18422
|
# scte_27_source_settings: {
|
18423
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
18286
18424
|
# pid: 1,
|
18287
18425
|
# },
|
18288
18426
|
# teletext_source_settings: {
|
@@ -18307,6 +18445,7 @@ module Aws::MediaLive
|
|
18307
18445
|
# buffer_segments: 1,
|
18308
18446
|
# retries: 1,
|
18309
18447
|
# retry_interval: 1,
|
18448
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
18310
18449
|
# },
|
18311
18450
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
18312
18451
|
# },
|
@@ -19029,7 +19168,7 @@ module Aws::MediaLive
|
|
19029
19168
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
19030
19169
|
# },
|
19031
19170
|
# h264_settings: {
|
19032
|
-
# adaptive_quantization: "
|
19171
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19033
19172
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19034
19173
|
# bitrate: 1,
|
19035
19174
|
# buf_fill_pct: 1,
|
@@ -19084,7 +19223,7 @@ module Aws::MediaLive
|
|
19084
19223
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
19085
19224
|
# },
|
19086
19225
|
# h265_settings: {
|
19087
|
-
# adaptive_quantization: "
|
19226
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19088
19227
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19089
19228
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
19090
19229
|
# bitrate: 1,
|
@@ -19194,7 +19333,7 @@ module Aws::MediaLive
|
|
19194
19333
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
19195
19334
|
# },
|
19196
19335
|
# h264_settings: {
|
19197
|
-
# adaptive_quantization: "
|
19336
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19198
19337
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19199
19338
|
# bitrate: 1,
|
19200
19339
|
# buf_fill_pct: 1,
|
@@ -19249,7 +19388,7 @@ module Aws::MediaLive
|
|
19249
19388
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
19250
19389
|
# },
|
19251
19390
|
# h265_settings: {
|
19252
|
-
# adaptive_quantization: "
|
19391
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
19253
19392
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
19254
19393
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
19255
19394
|
# bitrate: 1,
|
@@ -19597,6 +19736,40 @@ module Aws::MediaLive
|
|
19597
19736
|
include Aws::Structure
|
19598
19737
|
end
|
19599
19738
|
|
19739
|
+
# The properties for a private VPC Output
|
19740
|
+
#
|
19741
|
+
# @!attribute [rw] availability_zones
|
19742
|
+
# The Availability Zones where the vpc subnets are located. The first
|
19743
|
+
# Availability Zone applies to the first subnet in the list of
|
19744
|
+
# subnets. The second Availability Zone applies to the second subnet.
|
19745
|
+
# @return [Array<String>]
|
19746
|
+
#
|
19747
|
+
# @!attribute [rw] network_interface_ids
|
19748
|
+
# A list of Elastic Network Interfaces created by MediaLive in the
|
19749
|
+
# customer's VPC
|
19750
|
+
# @return [Array<String>]
|
19751
|
+
#
|
19752
|
+
# @!attribute [rw] security_group_ids
|
19753
|
+
# A list of up EC2 VPC security group IDs attached to the Output VPC
|
19754
|
+
# network interfaces.
|
19755
|
+
# @return [Array<String>]
|
19756
|
+
#
|
19757
|
+
# @!attribute [rw] subnet_ids
|
19758
|
+
# A list of VPC subnet IDs from the same VPC. If STANDARD channel,
|
19759
|
+
# subnet IDs must be mapped to two unique availability zones (AZ).
|
19760
|
+
# @return [Array<String>]
|
19761
|
+
#
|
19762
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/VpcOutputSettingsDescription AWS API Documentation
|
19763
|
+
#
|
19764
|
+
class VpcOutputSettingsDescription < Struct.new(
|
19765
|
+
:availability_zones,
|
19766
|
+
:network_interface_ids,
|
19767
|
+
:security_group_ids,
|
19768
|
+
:subnet_ids)
|
19769
|
+
SENSITIVE = []
|
19770
|
+
include Aws::Structure
|
19771
|
+
end
|
19772
|
+
|
19600
19773
|
# Wav Settings
|
19601
19774
|
#
|
19602
19775
|
# @note When making an API call, you may pass WavSettings
|
@@ -19633,11 +19806,28 @@ module Aws::MediaLive
|
|
19633
19806
|
|
19634
19807
|
# Webvtt Destination Settings
|
19635
19808
|
#
|
19636
|
-
# @
|
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]
|
19637
19823
|
#
|
19638
19824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/WebvttDestinationSettings AWS API Documentation
|
19639
19825
|
#
|
19640
|
-
class WebvttDestinationSettings <
|
19826
|
+
class WebvttDestinationSettings < Struct.new(
|
19827
|
+
:style_control)
|
19828
|
+
SENSITIVE = []
|
19829
|
+
include Aws::Structure
|
19830
|
+
end
|
19641
19831
|
|
19642
19832
|
end
|
19643
19833
|
end
|