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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1d08e9432489b7d6e924f43c02b423966f44c8ff6f47aad623b2616d089285c
|
4
|
+
data.tar.gz: b6a3a35b7ffd6cc6f37279630bfed7c97fc5d8e3b450cc3855c133f7179181d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 507e0fc9258315a9fba77b0079791fcb82f38282378ceae1aa61702334e6d4573acb36e5ce592f32585fe94d7b731858d1dba6e3ea7a03b39b274b064e60bfd8
|
7
|
+
data.tar.gz: 51c58abeb3d2d9ccf702b000d2715b1f96c1c5215c20c9b354744028de7fdce63d6456fa8d801cd13cf5c5784ac15da212d03dc968dfdf3f9986c968f343d39d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
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
|
+
|
9
|
+
1.72.0 (2021-06-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS MediaLive now supports OCR-based conversion of DVB-Sub and SCTE-27 image-based source captions to WebVTT, and supports ingest of ad avail decorations in HLS input manifests.
|
13
|
+
|
14
|
+
1.71.0 (2021-06-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add support for automatically setting the H.264 adaptive quantization and GOP B-frame fields.
|
18
|
+
|
19
|
+
1.70.0 (2021-04-06)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - MediaLive VPC outputs update to include Availability Zones, Security groups, Elastic Network Interfaces, and Subnet Ids in channel response
|
23
|
+
|
4
24
|
1.69.0 (2021-04-05)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.73.0
|
data/lib/aws-sdk-medialive.rb
CHANGED
@@ -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",
|
@@ -1476,7 +1477,7 @@ module Aws::MediaLive
|
|
1476
1477
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
1477
1478
|
# },
|
1478
1479
|
# h264_settings: {
|
1479
|
-
# adaptive_quantization: "
|
1480
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
1480
1481
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
1481
1482
|
# bitrate: 1,
|
1482
1483
|
# buf_fill_pct: 1,
|
@@ -1531,7 +1532,7 @@ module Aws::MediaLive
|
|
1531
1532
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
1532
1533
|
# },
|
1533
1534
|
# h265_settings: {
|
1534
|
-
# adaptive_quantization: "
|
1535
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
1535
1536
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
1536
1537
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
1537
1538
|
# bitrate: 1,
|
@@ -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
|
@@ -1669,6 +1674,7 @@ module Aws::MediaLive
|
|
1669
1674
|
# arib_source_settings: {
|
1670
1675
|
# },
|
1671
1676
|
# dvb_sub_source_settings: {
|
1677
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
1672
1678
|
# pid: 1,
|
1673
1679
|
# },
|
1674
1680
|
# embedded_source_settings: {
|
@@ -1682,6 +1688,7 @@ module Aws::MediaLive
|
|
1682
1688
|
# source_608_channel_number: 1,
|
1683
1689
|
# },
|
1684
1690
|
# scte_27_source_settings: {
|
1691
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
1685
1692
|
# pid: 1,
|
1686
1693
|
# },
|
1687
1694
|
# teletext_source_settings: {
|
@@ -1706,6 +1713,7 @@ module Aws::MediaLive
|
|
1706
1713
|
# buffer_segments: 1,
|
1707
1714
|
# retries: 1,
|
1708
1715
|
# retry_interval: 1,
|
1716
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
1709
1717
|
# },
|
1710
1718
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
1711
1719
|
# },
|
@@ -1894,6 +1902,7 @@ module Aws::MediaLive
|
|
1894
1902
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
1895
1903
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
1896
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"
|
1897
1906
|
# resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
|
1898
1907
|
# resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
|
1899
1908
|
# resp.channel.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -2182,7 +2191,7 @@ module Aws::MediaLive
|
|
2182
2191
|
# resp.channel.encoder_settings.video_descriptions #=> Array
|
2183
2192
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
2184
2193
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
2185
|
-
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
2194
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
2186
2195
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
2187
2196
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
2188
2197
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -2223,7 +2232,7 @@ module Aws::MediaLive
|
|
2223
2232
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
2224
2233
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
2225
2234
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
2226
|
-
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
2235
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
2227
2236
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
2228
2237
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
2229
2238
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -2292,6 +2301,8 @@ module Aws::MediaLive
|
|
2292
2301
|
# resp.channel.input_attachments[0].input_id #=> String
|
2293
2302
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
2294
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
|
2295
2306
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
2296
2307
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
2297
2308
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -2301,6 +2312,7 @@ module Aws::MediaLive
|
|
2301
2312
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
2302
2313
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
2303
2314
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
2315
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
2304
2316
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
2305
2317
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
2306
2318
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -2308,6 +2320,7 @@ module Aws::MediaLive
|
|
2308
2320
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
2309
2321
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
2310
2322
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
2323
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
2311
2324
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
2312
2325
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
2313
2326
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -2322,6 +2335,7 @@ module Aws::MediaLive
|
|
2322
2335
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
2323
2336
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
2324
2337
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
2338
|
+
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
2325
2339
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
2326
2340
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
2327
2341
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -2347,8 +2361,10 @@ module Aws::MediaLive
|
|
2347
2361
|
# resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
2348
2362
|
# resp.channel.tags #=> Hash
|
2349
2363
|
# resp.channel.tags["__string"] #=> String
|
2350
|
-
# resp.channel.vpc.
|
2351
|
-
# resp.channel.vpc.
|
2364
|
+
# resp.channel.vpc.availability_zones #=> Array
|
2365
|
+
# resp.channel.vpc.availability_zones[0] #=> String
|
2366
|
+
# resp.channel.vpc.network_interface_ids #=> Array
|
2367
|
+
# resp.channel.vpc.network_interface_ids[0] #=> String
|
2352
2368
|
# resp.channel.vpc.security_group_ids #=> Array
|
2353
2369
|
# resp.channel.vpc.security_group_ids[0] #=> String
|
2354
2370
|
# resp.channel.vpc.subnet_ids #=> Array
|
@@ -2784,7 +2800,7 @@ module Aws::MediaLive
|
|
2784
2800
|
# * {Types::DeleteChannelResponse#role_arn #role_arn} => String
|
2785
2801
|
# * {Types::DeleteChannelResponse#state #state} => String
|
2786
2802
|
# * {Types::DeleteChannelResponse#tags #tags} => Hash<String,String>
|
2787
|
-
# * {Types::DeleteChannelResponse#vpc #vpc} => Types::
|
2803
|
+
# * {Types::DeleteChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
2788
2804
|
#
|
2789
2805
|
# @example Request syntax with placeholder values
|
2790
2806
|
#
|
@@ -2934,6 +2950,7 @@ module Aws::MediaLive
|
|
2934
2950
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
2935
2951
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
2936
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"
|
2937
2954
|
# resp.encoder_settings.caption_descriptions[0].language_code #=> String
|
2938
2955
|
# resp.encoder_settings.caption_descriptions[0].language_description #=> String
|
2939
2956
|
# resp.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -3222,7 +3239,7 @@ module Aws::MediaLive
|
|
3222
3239
|
# resp.encoder_settings.video_descriptions #=> Array
|
3223
3240
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
3224
3241
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
3225
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
3242
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
3226
3243
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3227
3244
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
3228
3245
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -3263,7 +3280,7 @@ module Aws::MediaLive
|
|
3263
3280
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
3264
3281
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
3265
3282
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
3266
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
3283
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
3267
3284
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
3268
3285
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
3269
3286
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -3332,6 +3349,8 @@ module Aws::MediaLive
|
|
3332
3349
|
# resp.input_attachments[0].input_id #=> String
|
3333
3350
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
3334
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
|
3335
3354
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
3336
3355
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
3337
3356
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -3341,6 +3360,7 @@ module Aws::MediaLive
|
|
3341
3360
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
3342
3361
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
3343
3362
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
3363
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
3344
3364
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
3345
3365
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
3346
3366
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -3348,6 +3368,7 @@ module Aws::MediaLive
|
|
3348
3368
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
3349
3369
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
3350
3370
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
3371
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
3351
3372
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
3352
3373
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
3353
3374
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -3362,6 +3383,7 @@ module Aws::MediaLive
|
|
3362
3383
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
3363
3384
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
3364
3385
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
3386
|
+
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
3365
3387
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
3366
3388
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
3367
3389
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -3387,8 +3409,10 @@ module Aws::MediaLive
|
|
3387
3409
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
3388
3410
|
# resp.tags #=> Hash
|
3389
3411
|
# resp.tags["__string"] #=> String
|
3390
|
-
# resp.vpc.
|
3391
|
-
# resp.vpc.
|
3412
|
+
# resp.vpc.availability_zones #=> Array
|
3413
|
+
# resp.vpc.availability_zones[0] #=> String
|
3414
|
+
# resp.vpc.network_interface_ids #=> Array
|
3415
|
+
# resp.vpc.network_interface_ids[0] #=> String
|
3392
3416
|
# resp.vpc.security_group_ids #=> Array
|
3393
3417
|
# resp.vpc.security_group_ids[0] #=> String
|
3394
3418
|
# resp.vpc.subnet_ids #=> Array
|
@@ -3611,7 +3635,7 @@ module Aws::MediaLive
|
|
3611
3635
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
3612
3636
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
3613
3637
|
# resp.resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
3614
|
-
# resp.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
3638
|
+
# resp.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
3615
3639
|
# resp.resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
3616
3640
|
# resp.start #=> String
|
3617
3641
|
# resp.state #=> String, one of "ACTIVE", "EXPIRED", "CANCELED", "DELETED"
|
@@ -3695,7 +3719,7 @@ module Aws::MediaLive
|
|
3695
3719
|
# * {Types::DescribeChannelResponse#role_arn #role_arn} => String
|
3696
3720
|
# * {Types::DescribeChannelResponse#state #state} => String
|
3697
3721
|
# * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
|
3698
|
-
# * {Types::DescribeChannelResponse#vpc #vpc} => Types::
|
3722
|
+
# * {Types::DescribeChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
3699
3723
|
#
|
3700
3724
|
# @example Request syntax with placeholder values
|
3701
3725
|
#
|
@@ -3845,6 +3869,7 @@ module Aws::MediaLive
|
|
3845
3869
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
3846
3870
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
3847
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"
|
3848
3873
|
# resp.encoder_settings.caption_descriptions[0].language_code #=> String
|
3849
3874
|
# resp.encoder_settings.caption_descriptions[0].language_description #=> String
|
3850
3875
|
# resp.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -4133,7 +4158,7 @@ module Aws::MediaLive
|
|
4133
4158
|
# resp.encoder_settings.video_descriptions #=> Array
|
4134
4159
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
4135
4160
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
4136
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
4161
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
4137
4162
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
4138
4163
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
4139
4164
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -4174,7 +4199,7 @@ module Aws::MediaLive
|
|
4174
4199
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
4175
4200
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
4176
4201
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
4177
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
4202
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
4178
4203
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
4179
4204
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
4180
4205
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -4243,6 +4268,8 @@ module Aws::MediaLive
|
|
4243
4268
|
# resp.input_attachments[0].input_id #=> String
|
4244
4269
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
4245
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
|
4246
4273
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
4247
4274
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
4248
4275
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -4252,6 +4279,7 @@ module Aws::MediaLive
|
|
4252
4279
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
4253
4280
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4254
4281
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
4282
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
4255
4283
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
4256
4284
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
4257
4285
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -4259,6 +4287,7 @@ module Aws::MediaLive
|
|
4259
4287
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
4260
4288
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
4261
4289
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
4290
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
4262
4291
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
4263
4292
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
4264
4293
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -4273,6 +4302,7 @@ module Aws::MediaLive
|
|
4273
4302
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
4274
4303
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
4275
4304
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
4305
|
+
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
4276
4306
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
4277
4307
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
4278
4308
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -4298,8 +4328,10 @@ module Aws::MediaLive
|
|
4298
4328
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
4299
4329
|
# resp.tags #=> Hash
|
4300
4330
|
# resp.tags["__string"] #=> String
|
4301
|
-
# resp.vpc.
|
4302
|
-
# resp.vpc.
|
4331
|
+
# resp.vpc.availability_zones #=> Array
|
4332
|
+
# resp.vpc.availability_zones[0] #=> String
|
4333
|
+
# resp.vpc.network_interface_ids #=> Array
|
4334
|
+
# resp.vpc.network_interface_ids[0] #=> String
|
4303
4335
|
# resp.vpc.security_group_ids #=> Array
|
4304
4336
|
# resp.vpc.security_group_ids[0] #=> String
|
4305
4337
|
# resp.vpc.subnet_ids #=> Array
|
@@ -4709,7 +4741,7 @@ module Aws::MediaLive
|
|
4709
4741
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4710
4742
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4711
4743
|
# resp.resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
4712
|
-
# resp.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
4744
|
+
# resp.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
4713
4745
|
# resp.resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
4714
4746
|
# resp.usage_price #=> Float
|
4715
4747
|
#
|
@@ -4774,7 +4806,7 @@ module Aws::MediaLive
|
|
4774
4806
|
# resp.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
4775
4807
|
# resp.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
4776
4808
|
# resp.resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
4777
|
-
# resp.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
4809
|
+
# resp.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
4778
4810
|
# resp.resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
4779
4811
|
# resp.start #=> String
|
4780
4812
|
# resp.state #=> String, one of "ACTIVE", "EXPIRED", "CANCELED", "DELETED"
|
@@ -4940,6 +4972,8 @@ module Aws::MediaLive
|
|
4940
4972
|
# resp.channels[0].input_attachments[0].input_id #=> String
|
4941
4973
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors #=> Array
|
4942
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
|
4943
4977
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
4944
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"
|
4945
4979
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -4949,6 +4983,7 @@ module Aws::MediaLive
|
|
4949
4983
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
4950
4984
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
4951
4985
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
4986
|
+
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
4952
4987
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
4953
4988
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
4954
4989
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -4956,6 +4991,7 @@ module Aws::MediaLive
|
|
4956
4991
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
4957
4992
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
4958
4993
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
4994
|
+
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
4959
4995
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
4960
4996
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
4961
4997
|
# resp.channels[0].input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -4970,6 +5006,7 @@ module Aws::MediaLive
|
|
4970
5006
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
4971
5007
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
4972
5008
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
5009
|
+
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
4973
5010
|
# resp.channels[0].input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
4974
5011
|
# resp.channels[0].input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
4975
5012
|
# resp.channels[0].input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -4989,8 +5026,10 @@ module Aws::MediaLive
|
|
4989
5026
|
# resp.channels[0].state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
4990
5027
|
# resp.channels[0].tags #=> Hash
|
4991
5028
|
# resp.channels[0].tags["__string"] #=> String
|
4992
|
-
# resp.channels[0].vpc.
|
4993
|
-
# resp.channels[0].vpc.
|
5029
|
+
# resp.channels[0].vpc.availability_zones #=> Array
|
5030
|
+
# resp.channels[0].vpc.availability_zones[0] #=> String
|
5031
|
+
# resp.channels[0].vpc.network_interface_ids #=> Array
|
5032
|
+
# resp.channels[0].vpc.network_interface_ids[0] #=> String
|
4994
5033
|
# resp.channels[0].vpc.security_group_ids #=> Array
|
4995
5034
|
# resp.channels[0].vpc.security_group_ids[0] #=> String
|
4996
5035
|
# resp.channels[0].vpc.subnet_ids #=> Array
|
@@ -5374,7 +5413,7 @@ module Aws::MediaLive
|
|
5374
5413
|
# resp.offerings[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
5375
5414
|
# resp.offerings[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5376
5415
|
# resp.offerings[0].resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
5377
|
-
# resp.offerings[0].resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
5416
|
+
# resp.offerings[0].resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
5378
5417
|
# resp.offerings[0].resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
5379
5418
|
# resp.offerings[0].usage_price #=> Float
|
5380
5419
|
#
|
@@ -5454,7 +5493,7 @@ module Aws::MediaLive
|
|
5454
5493
|
# resp.reservations[0].resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
5455
5494
|
# resp.reservations[0].resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5456
5495
|
# resp.reservations[0].resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
5457
|
-
# resp.reservations[0].resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
5496
|
+
# resp.reservations[0].resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
5458
5497
|
# resp.reservations[0].resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
5459
5498
|
# resp.reservations[0].start #=> String
|
5460
5499
|
# resp.reservations[0].state #=> String, one of "ACTIVE", "EXPIRED", "CANCELED", "DELETED"
|
@@ -5553,7 +5592,7 @@ module Aws::MediaLive
|
|
5553
5592
|
# resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
5554
5593
|
# resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
5555
5594
|
# resp.reservation.resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
5556
|
-
# resp.reservation.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
5595
|
+
# resp.reservation.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
5557
5596
|
# resp.reservation.resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
5558
5597
|
# resp.reservation.start #=> String
|
5559
5598
|
# resp.reservation.state #=> String, one of "ACTIVE", "EXPIRED", "CANCELED", "DELETED"
|
@@ -5613,7 +5652,7 @@ module Aws::MediaLive
|
|
5613
5652
|
# * {Types::StartChannelResponse#role_arn #role_arn} => String
|
5614
5653
|
# * {Types::StartChannelResponse#state #state} => String
|
5615
5654
|
# * {Types::StartChannelResponse#tags #tags} => Hash<String,String>
|
5616
|
-
# * {Types::StartChannelResponse#vpc #vpc} => Types::
|
5655
|
+
# * {Types::StartChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
5617
5656
|
#
|
5618
5657
|
# @example Request syntax with placeholder values
|
5619
5658
|
#
|
@@ -5763,6 +5802,7 @@ module Aws::MediaLive
|
|
5763
5802
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
5764
5803
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
5765
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"
|
5766
5806
|
# resp.encoder_settings.caption_descriptions[0].language_code #=> String
|
5767
5807
|
# resp.encoder_settings.caption_descriptions[0].language_description #=> String
|
5768
5808
|
# resp.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -6051,7 +6091,7 @@ module Aws::MediaLive
|
|
6051
6091
|
# resp.encoder_settings.video_descriptions #=> Array
|
6052
6092
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
6053
6093
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
6054
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6094
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6055
6095
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6056
6096
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
6057
6097
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -6092,7 +6132,7 @@ module Aws::MediaLive
|
|
6092
6132
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
6093
6133
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
6094
6134
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
6095
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6135
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6096
6136
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6097
6137
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
6098
6138
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -6161,6 +6201,8 @@ module Aws::MediaLive
|
|
6161
6201
|
# resp.input_attachments[0].input_id #=> String
|
6162
6202
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
6163
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
|
6164
6206
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
6165
6207
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
6166
6208
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -6170,6 +6212,7 @@ module Aws::MediaLive
|
|
6170
6212
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
6171
6213
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
6172
6214
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
6215
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
6173
6216
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
6174
6217
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6175
6218
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -6177,6 +6220,7 @@ module Aws::MediaLive
|
|
6177
6220
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
6178
6221
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6179
6222
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
6223
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
6180
6224
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
6181
6225
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
6182
6226
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -6191,6 +6235,7 @@ module Aws::MediaLive
|
|
6191
6235
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
6192
6236
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
6193
6237
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
6238
|
+
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
6194
6239
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
6195
6240
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
6196
6241
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -6216,8 +6261,10 @@ module Aws::MediaLive
|
|
6216
6261
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
6217
6262
|
# resp.tags #=> Hash
|
6218
6263
|
# resp.tags["__string"] #=> String
|
6219
|
-
# resp.vpc.
|
6220
|
-
# resp.vpc.
|
6264
|
+
# resp.vpc.availability_zones #=> Array
|
6265
|
+
# resp.vpc.availability_zones[0] #=> String
|
6266
|
+
# resp.vpc.network_interface_ids #=> Array
|
6267
|
+
# resp.vpc.network_interface_ids[0] #=> String
|
6221
6268
|
# resp.vpc.security_group_ids #=> Array
|
6222
6269
|
# resp.vpc.security_group_ids[0] #=> String
|
6223
6270
|
# resp.vpc.subnet_ids #=> Array
|
@@ -6306,7 +6353,7 @@ module Aws::MediaLive
|
|
6306
6353
|
# * {Types::StopChannelResponse#role_arn #role_arn} => String
|
6307
6354
|
# * {Types::StopChannelResponse#state #state} => String
|
6308
6355
|
# * {Types::StopChannelResponse#tags #tags} => Hash<String,String>
|
6309
|
-
# * {Types::StopChannelResponse#vpc #vpc} => Types::
|
6356
|
+
# * {Types::StopChannelResponse#vpc #vpc} => Types::VpcOutputSettingsDescription
|
6310
6357
|
#
|
6311
6358
|
# @example Request syntax with placeholder values
|
6312
6359
|
#
|
@@ -6456,6 +6503,7 @@ module Aws::MediaLive
|
|
6456
6503
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
6457
6504
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
6458
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"
|
6459
6507
|
# resp.encoder_settings.caption_descriptions[0].language_code #=> String
|
6460
6508
|
# resp.encoder_settings.caption_descriptions[0].language_description #=> String
|
6461
6509
|
# resp.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -6744,7 +6792,7 @@ module Aws::MediaLive
|
|
6744
6792
|
# resp.encoder_settings.video_descriptions #=> Array
|
6745
6793
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
6746
6794
|
# resp.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
6747
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6795
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6748
6796
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6749
6797
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
6750
6798
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -6785,7 +6833,7 @@ module Aws::MediaLive
|
|
6785
6833
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
6786
6834
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
6787
6835
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
6788
|
-
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6836
|
+
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
6789
6837
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
6790
6838
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
6791
6839
|
# resp.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -6854,6 +6902,8 @@ module Aws::MediaLive
|
|
6854
6902
|
# resp.input_attachments[0].input_id #=> String
|
6855
6903
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
6856
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
|
6857
6907
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
6858
6908
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
6859
6909
|
# resp.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -6863,6 +6913,7 @@ module Aws::MediaLive
|
|
6863
6913
|
# resp.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
6864
6914
|
# resp.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
6865
6915
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
6916
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
6866
6917
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
6867
6918
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6868
6919
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -6870,6 +6921,7 @@ module Aws::MediaLive
|
|
6870
6921
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
6871
6922
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
6872
6923
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
6924
|
+
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
6873
6925
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
6874
6926
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
6875
6927
|
# resp.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -6884,6 +6936,7 @@ module Aws::MediaLive
|
|
6884
6936
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
6885
6937
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
6886
6938
|
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
6939
|
+
# resp.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
6887
6940
|
# resp.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
6888
6941
|
# resp.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
6889
6942
|
# resp.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -6909,8 +6962,10 @@ module Aws::MediaLive
|
|
6909
6962
|
# resp.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
6910
6963
|
# resp.tags #=> Hash
|
6911
6964
|
# resp.tags["__string"] #=> String
|
6912
|
-
# resp.vpc.
|
6913
|
-
# resp.vpc.
|
6965
|
+
# resp.vpc.availability_zones #=> Array
|
6966
|
+
# resp.vpc.availability_zones[0] #=> String
|
6967
|
+
# resp.vpc.network_interface_ids #=> Array
|
6968
|
+
# resp.vpc.network_interface_ids[0] #=> String
|
6914
6969
|
# resp.vpc.security_group_ids #=> Array
|
6915
6970
|
# resp.vpc.security_group_ids[0] #=> String
|
6916
6971
|
# resp.vpc.subnet_ids #=> Array
|
@@ -7264,6 +7319,7 @@ module Aws::MediaLive
|
|
7264
7319
|
# style_control: "PASSTHROUGH", # accepts PASSTHROUGH, USE_CONFIGURED
|
7265
7320
|
# },
|
7266
7321
|
# webvtt_destination_settings: {
|
7322
|
+
# style_control: "NO_STYLE_DATA", # accepts NO_STYLE_DATA, PASSTHROUGH
|
7267
7323
|
# },
|
7268
7324
|
# },
|
7269
7325
|
# language_code: "__string",
|
@@ -7700,7 +7756,7 @@ module Aws::MediaLive
|
|
7700
7756
|
# capture_interval_units: "MILLISECONDS", # accepts MILLISECONDS, SECONDS
|
7701
7757
|
# },
|
7702
7758
|
# h264_settings: {
|
7703
|
-
# adaptive_quantization: "
|
7759
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7704
7760
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7705
7761
|
# bitrate: 1,
|
7706
7762
|
# buf_fill_pct: 1,
|
@@ -7755,7 +7811,7 @@ module Aws::MediaLive
|
|
7755
7811
|
# timecode_insertion: "DISABLED", # accepts DISABLED, PIC_TIMING_SEI
|
7756
7812
|
# },
|
7757
7813
|
# h265_settings: {
|
7758
|
-
# adaptive_quantization: "
|
7814
|
+
# adaptive_quantization: "AUTO", # accepts AUTO, HIGH, HIGHER, LOW, MAX, MEDIUM, OFF
|
7759
7815
|
# afd_signaling: "AUTO", # accepts AUTO, FIXED, NONE
|
7760
7816
|
# alternative_transfer_function: "INSERT", # accepts INSERT, OMIT
|
7761
7817
|
# bitrate: 1,
|
@@ -7865,6 +7921,10 @@ module Aws::MediaLive
|
|
7865
7921
|
# {
|
7866
7922
|
# name: "__stringMin1", # required
|
7867
7923
|
# selector_settings: {
|
7924
|
+
# audio_hls_rendition_selection: {
|
7925
|
+
# group_id: "__stringMin1", # required
|
7926
|
+
# name: "__stringMin1", # required
|
7927
|
+
# },
|
7868
7928
|
# audio_language_selection: {
|
7869
7929
|
# language_code: "__string", # required
|
7870
7930
|
# language_selection_policy: "LOOSE", # accepts LOOSE, STRICT
|
@@ -7893,6 +7953,7 @@ module Aws::MediaLive
|
|
7893
7953
|
# arib_source_settings: {
|
7894
7954
|
# },
|
7895
7955
|
# dvb_sub_source_settings: {
|
7956
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
7896
7957
|
# pid: 1,
|
7897
7958
|
# },
|
7898
7959
|
# embedded_source_settings: {
|
@@ -7906,6 +7967,7 @@ module Aws::MediaLive
|
|
7906
7967
|
# source_608_channel_number: 1,
|
7907
7968
|
# },
|
7908
7969
|
# scte_27_source_settings: {
|
7970
|
+
# ocr_language: "DEU", # accepts DEU, ENG, FRA, NLD, POR, SPA
|
7909
7971
|
# pid: 1,
|
7910
7972
|
# },
|
7911
7973
|
# teletext_source_settings: {
|
@@ -7930,6 +7992,7 @@ module Aws::MediaLive
|
|
7930
7992
|
# buffer_segments: 1,
|
7931
7993
|
# retries: 1,
|
7932
7994
|
# retry_interval: 1,
|
7995
|
+
# scte_35_source: "MANIFEST", # accepts MANIFEST, SEGMENTS
|
7933
7996
|
# },
|
7934
7997
|
# server_validation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", # accepts CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME, CHECK_CRYPTOGRAPHY_ONLY
|
7935
7998
|
# },
|
@@ -8108,6 +8171,7 @@ module Aws::MediaLive
|
|
8108
8171
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
8109
8172
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
8110
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"
|
8111
8175
|
# resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
|
8112
8176
|
# resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
|
8113
8177
|
# resp.channel.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -8396,7 +8460,7 @@ module Aws::MediaLive
|
|
8396
8460
|
# resp.channel.encoder_settings.video_descriptions #=> Array
|
8397
8461
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
8398
8462
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
8399
|
-
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
8463
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
8400
8464
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8401
8465
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
8402
8466
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -8437,7 +8501,7 @@ module Aws::MediaLive
|
|
8437
8501
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
8438
8502
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
8439
8503
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
8440
|
-
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
8504
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
8441
8505
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
8442
8506
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
8443
8507
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -8506,6 +8570,8 @@ module Aws::MediaLive
|
|
8506
8570
|
# resp.channel.input_attachments[0].input_id #=> String
|
8507
8571
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
8508
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
|
8509
8575
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
8510
8576
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
8511
8577
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -8515,6 +8581,7 @@ module Aws::MediaLive
|
|
8515
8581
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
8516
8582
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
8517
8583
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
8584
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
8518
8585
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
8519
8586
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
8520
8587
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -8522,6 +8589,7 @@ module Aws::MediaLive
|
|
8522
8589
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
8523
8590
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
8524
8591
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
8592
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
8525
8593
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
8526
8594
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
8527
8595
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -8536,6 +8604,7 @@ module Aws::MediaLive
|
|
8536
8604
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
8537
8605
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
8538
8606
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
8607
|
+
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
8539
8608
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
8540
8609
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
8541
8610
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -8561,8 +8630,10 @@ module Aws::MediaLive
|
|
8561
8630
|
# resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
8562
8631
|
# resp.channel.tags #=> Hash
|
8563
8632
|
# resp.channel.tags["__string"] #=> String
|
8564
|
-
# resp.channel.vpc.
|
8565
|
-
# resp.channel.vpc.
|
8633
|
+
# resp.channel.vpc.availability_zones #=> Array
|
8634
|
+
# resp.channel.vpc.availability_zones[0] #=> String
|
8635
|
+
# resp.channel.vpc.network_interface_ids #=> Array
|
8636
|
+
# resp.channel.vpc.network_interface_ids[0] #=> String
|
8566
8637
|
# resp.channel.vpc.security_group_ids #=> Array
|
8567
8638
|
# resp.channel.vpc.security_group_ids[0] #=> String
|
8568
8639
|
# resp.channel.vpc.subnet_ids #=> Array
|
@@ -8762,6 +8833,7 @@ module Aws::MediaLive
|
|
8762
8833
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.font_family #=> String
|
8763
8834
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.ebu_tt_d_destination_settings.style_control #=> String, one of "EXCLUDE", "INCLUDE"
|
8764
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"
|
8765
8837
|
# resp.channel.encoder_settings.caption_descriptions[0].language_code #=> String
|
8766
8838
|
# resp.channel.encoder_settings.caption_descriptions[0].language_description #=> String
|
8767
8839
|
# resp.channel.encoder_settings.caption_descriptions[0].name #=> String
|
@@ -9050,7 +9122,7 @@ module Aws::MediaLive
|
|
9050
9122
|
# resp.channel.encoder_settings.video_descriptions #=> Array
|
9051
9123
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval #=> Integer
|
9052
9124
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.frame_capture_settings.capture_interval_units #=> String, one of "MILLISECONDS", "SECONDS"
|
9053
|
-
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
9125
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
9054
9126
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
9055
9127
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.bitrate #=> Integer
|
9056
9128
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.buf_fill_pct #=> Integer
|
@@ -9091,7 +9163,7 @@ module Aws::MediaLive
|
|
9091
9163
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.syntax #=> String, one of "DEFAULT", "RP2027"
|
9092
9164
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.temporal_aq #=> String, one of "DISABLED", "ENABLED"
|
9093
9165
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h264_settings.timecode_insertion #=> String, one of "DISABLED", "PIC_TIMING_SEI"
|
9094
|
-
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
9166
|
+
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.adaptive_quantization #=> String, one of "AUTO", "HIGH", "HIGHER", "LOW", "MAX", "MEDIUM", "OFF"
|
9095
9167
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.afd_signaling #=> String, one of "AUTO", "FIXED", "NONE"
|
9096
9168
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.alternative_transfer_function #=> String, one of "INSERT", "OMIT"
|
9097
9169
|
# resp.channel.encoder_settings.video_descriptions[0].codec_settings.h265_settings.bitrate #=> Integer
|
@@ -9160,6 +9232,8 @@ module Aws::MediaLive
|
|
9160
9232
|
# resp.channel.input_attachments[0].input_id #=> String
|
9161
9233
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
9162
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
|
9163
9237
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_code #=> String
|
9164
9238
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_language_selection.language_selection_policy #=> String, one of "LOOSE", "STRICT"
|
9165
9239
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].selector_settings.audio_pid_selection.pid #=> Integer
|
@@ -9169,6 +9243,7 @@ module Aws::MediaLive
|
|
9169
9243
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].language_code #=> String
|
9170
9244
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].name #=> String
|
9171
9245
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.ancillary_source_settings.source_ancillary_channel_number #=> Integer
|
9246
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
9172
9247
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.dvb_sub_source_settings.pid #=> Integer
|
9173
9248
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
9174
9249
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.scte_20_detection #=> String, one of "AUTO", "OFF"
|
@@ -9176,6 +9251,7 @@ module Aws::MediaLive
|
|
9176
9251
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.embedded_source_settings.source_608_track_number #=> Integer
|
9177
9252
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.convert_608_to_708 #=> String, one of "DISABLED", "UPCONVERT"
|
9178
9253
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_20_source_settings.source_608_channel_number #=> Integer
|
9254
|
+
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.ocr_language #=> String, one of "DEU", "ENG", "FRA", "NLD", "POR", "SPA"
|
9179
9255
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.scte_27_source_settings.pid #=> Integer
|
9180
9256
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.height #=> Float
|
9181
9257
|
# resp.channel.input_attachments[0].input_settings.caption_selectors[0].selector_settings.teletext_source_settings.output_rectangle.left_offset #=> Float
|
@@ -9190,6 +9266,7 @@ module Aws::MediaLive
|
|
9190
9266
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.buffer_segments #=> Integer
|
9191
9267
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retries #=> Integer
|
9192
9268
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.retry_interval #=> Integer
|
9269
|
+
# resp.channel.input_attachments[0].input_settings.network_input_settings.hls_input_settings.scte_35_source #=> String, one of "MANIFEST", "SEGMENTS"
|
9193
9270
|
# resp.channel.input_attachments[0].input_settings.network_input_settings.server_validation #=> String, one of "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME", "CHECK_CRYPTOGRAPHY_ONLY"
|
9194
9271
|
# resp.channel.input_attachments[0].input_settings.smpte_2038_data_preference #=> String, one of "IGNORE", "PREFER"
|
9195
9272
|
# resp.channel.input_attachments[0].input_settings.source_end_behavior #=> String, one of "CONTINUE", "LOOP"
|
@@ -9215,8 +9292,10 @@ module Aws::MediaLive
|
|
9215
9292
|
# resp.channel.state #=> String, one of "CREATING", "CREATE_FAILED", "IDLE", "STARTING", "RUNNING", "RECOVERING", "STOPPING", "DELETING", "DELETED", "UPDATING", "UPDATE_FAILED"
|
9216
9293
|
# resp.channel.tags #=> Hash
|
9217
9294
|
# resp.channel.tags["__string"] #=> String
|
9218
|
-
# resp.channel.vpc.
|
9219
|
-
# resp.channel.vpc.
|
9295
|
+
# resp.channel.vpc.availability_zones #=> Array
|
9296
|
+
# resp.channel.vpc.availability_zones[0] #=> String
|
9297
|
+
# resp.channel.vpc.network_interface_ids #=> Array
|
9298
|
+
# resp.channel.vpc.network_interface_ids[0] #=> String
|
9220
9299
|
# resp.channel.vpc.security_group_ids #=> Array
|
9221
9300
|
# resp.channel.vpc.security_group_ids[0] #=> String
|
9222
9301
|
# resp.channel.vpc.subnet_ids #=> Array
|
@@ -9628,7 +9707,7 @@ module Aws::MediaLive
|
|
9628
9707
|
# resp.reservation.resource_specification.maximum_framerate #=> String, one of "MAX_30_FPS", "MAX_60_FPS"
|
9629
9708
|
# resp.reservation.resource_specification.resolution #=> String, one of "SD", "HD", "FHD", "UHD"
|
9630
9709
|
# resp.reservation.resource_specification.resource_type #=> String, one of "INPUT", "OUTPUT", "MULTIPLEX", "CHANNEL"
|
9631
|
-
# resp.reservation.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION"
|
9710
|
+
# resp.reservation.resource_specification.special_feature #=> String, one of "ADVANCED_AUDIO", "AUDIO_NORMALIZATION", "MGHD", "MGUHD"
|
9632
9711
|
# resp.reservation.resource_specification.video_quality #=> String, one of "STANDARD", "ENHANCED", "PREMIUM"
|
9633
9712
|
# resp.reservation.start #=> String
|
9634
9713
|
# resp.reservation.state #=> String, one of "ACTIVE", "EXPIRED", "CANCELED", "DELETED"
|
@@ -9658,7 +9737,7 @@ module Aws::MediaLive
|
|
9658
9737
|
params: params,
|
9659
9738
|
config: config)
|
9660
9739
|
context[:gem_name] = 'aws-sdk-medialive'
|
9661
|
-
context[:gem_version] = '1.
|
9740
|
+
context[:gem_version] = '1.73.0'
|
9662
9741
|
Seahorse::Client::Request.new(handlers, context)
|
9663
9742
|
end
|
9664
9743
|
|