aws-sdk-medialive 1.84.0 → 1.87.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +109 -23
- data/lib/aws-sdk-medialive/client_api.rb +49 -2
- data/lib/aws-sdk-medialive/types.rb +286 -67
- data/lib/aws-sdk-medialive.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11c5bda22f584cb04698512ba7e5df2f44103c28ee648cf092810f301cb9a593
|
4
|
+
data.tar.gz: 670df923410a057152558e940e16913a5f0c4ac9925cf7c64c63b8047d983cbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cbc5b904955f9cad42905d6b755fc15615f52f94ffdad129ba5ad2e38c704e4e1106e26564d005ec7f2cbc3ceae96ddd9663828c3d3e6050a5a465ee92547a2
|
7
|
+
data.tar.gz: 934af92916d7e245e50883e4193c06052ea99ad3be9a7573195d1f52049619763f711430a5c68c7f478140892a683f7b73be10b2653d610b9e4d5d2332e84870
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.87.0 (2022-06-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for automatic renewal of MediaLive reservations at the end of each reservation term. Automatic renewal is optional. This release also adds support for labelling accessibility-focused audio and caption tracks in HLS outputs.
|
8
|
+
|
9
|
+
1.86.0 (2022-03-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for selecting a maintenance window.
|
13
|
+
|
14
|
+
1.85.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.84.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.87.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::MediaLive
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -607,7 +609,7 @@ module Aws::MediaLive
|
|
607
609
|
# height: 1,
|
608
610
|
# image: { # required
|
609
611
|
# password_param: "__string",
|
610
|
-
# uri: "
|
612
|
+
# uri: "__stringMax2048", # required
|
611
613
|
# username: "__string",
|
612
614
|
# },
|
613
615
|
# image_x: 1,
|
@@ -835,6 +837,8 @@ module Aws::MediaLive
|
|
835
837
|
# @option params [String] :log_level
|
836
838
|
# The log level the user wants for their channel.
|
837
839
|
#
|
840
|
+
# @option params [Types::MaintenanceCreateSettings] :maintenance
|
841
|
+
#
|
838
842
|
# @option params [String] :name
|
839
843
|
#
|
840
844
|
# @option params [String] :request_id
|
@@ -968,7 +972,7 @@ module Aws::MediaLive
|
|
968
972
|
# },
|
969
973
|
# language_code: "__stringMin1Max35",
|
970
974
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
971
|
-
# name: "
|
975
|
+
# name: "__stringMax255", # required
|
972
976
|
# remix_settings: {
|
973
977
|
# channel_mappings: [ # required
|
974
978
|
# {
|
@@ -990,7 +994,7 @@ module Aws::MediaLive
|
|
990
994
|
# avail_blanking: {
|
991
995
|
# avail_blanking_image: {
|
992
996
|
# password_param: "__string",
|
993
|
-
# uri: "
|
997
|
+
# uri: "__stringMax2048", # required
|
994
998
|
# username: "__string",
|
995
999
|
# },
|
996
1000
|
# state: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -1012,13 +1016,13 @@ module Aws::MediaLive
|
|
1012
1016
|
# blackout_slate: {
|
1013
1017
|
# blackout_slate_image: {
|
1014
1018
|
# password_param: "__string",
|
1015
|
-
# uri: "
|
1019
|
+
# uri: "__stringMax2048", # required
|
1016
1020
|
# username: "__string",
|
1017
1021
|
# },
|
1018
1022
|
# network_end_blackout: "DISABLED", # accepts DISABLED, ENABLED
|
1019
1023
|
# network_end_blackout_image: {
|
1020
1024
|
# password_param: "__string",
|
1021
|
-
# uri: "
|
1025
|
+
# uri: "__stringMax2048", # required
|
1022
1026
|
# username: "__string",
|
1023
1027
|
# },
|
1024
1028
|
# network_id: "__stringMin34Max34",
|
@@ -1026,6 +1030,7 @@ module Aws::MediaLive
|
|
1026
1030
|
# },
|
1027
1031
|
# caption_descriptions: [
|
1028
1032
|
# {
|
1033
|
+
# accessibility: "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", # accepts DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES, IMPLEMENTS_ACCESSIBILITY_FEATURES
|
1029
1034
|
# caption_selector_name: "__string", # required
|
1030
1035
|
# destination_settings: {
|
1031
1036
|
# arib_destination_settings: {
|
@@ -1036,7 +1041,7 @@ module Aws::MediaLive
|
|
1036
1041
|
# background_opacity: 1,
|
1037
1042
|
# font: {
|
1038
1043
|
# password_param: "__string",
|
1039
|
-
# uri: "
|
1044
|
+
# uri: "__stringMax2048", # required
|
1040
1045
|
# username: "__string",
|
1041
1046
|
# },
|
1042
1047
|
# font_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
|
@@ -1059,7 +1064,7 @@ module Aws::MediaLive
|
|
1059
1064
|
# background_opacity: 1,
|
1060
1065
|
# font: {
|
1061
1066
|
# password_param: "__string",
|
1062
|
-
# uri: "
|
1067
|
+
# uri: "__stringMax2048", # required
|
1063
1068
|
# username: "__string",
|
1064
1069
|
# },
|
1065
1070
|
# font_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
|
@@ -1119,7 +1124,7 @@ module Aws::MediaLive
|
|
1119
1124
|
# input_loss_image_color: "__stringMin6Max6",
|
1120
1125
|
# input_loss_image_slate: {
|
1121
1126
|
# password_param: "__string",
|
1122
|
-
# uri: "
|
1127
|
+
# uri: "__stringMax2048", # required
|
1123
1128
|
# username: "__string",
|
1124
1129
|
# },
|
1125
1130
|
# input_loss_image_type: "COLOR", # accepts COLOR, SLATE
|
@@ -1236,7 +1241,7 @@ module Aws::MediaLive
|
|
1236
1241
|
# static_key_settings: {
|
1237
1242
|
# key_provider_server: {
|
1238
1243
|
# password_param: "__string",
|
1239
|
-
# uri: "
|
1244
|
+
# uri: "__stringMax2048", # required
|
1240
1245
|
# username: "__string",
|
1241
1246
|
# },
|
1242
1247
|
# static_key_value: "__stringMin32Max32", # required
|
@@ -1389,7 +1394,7 @@ module Aws::MediaLive
|
|
1389
1394
|
# audio_group_id: "__string",
|
1390
1395
|
# audio_only_image: {
|
1391
1396
|
# password_param: "__string",
|
1392
|
-
# uri: "
|
1397
|
+
# uri: "__stringMax2048", # required
|
1393
1398
|
# username: "__string",
|
1394
1399
|
# },
|
1395
1400
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT", # accepts ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_NOT_AUTO_SELECT, AUDIO_ONLY_VARIANT_STREAM
|
@@ -1808,6 +1813,10 @@ module Aws::MediaLive
|
|
1808
1813
|
# resolution: "SD", # accepts SD, HD, UHD
|
1809
1814
|
# },
|
1810
1815
|
# log_level: "ERROR", # accepts ERROR, WARNING, INFO, DEBUG, DISABLED
|
1816
|
+
# maintenance: {
|
1817
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
1818
|
+
# maintenance_start_time: "__stringPattern010920300",
|
1819
|
+
# },
|
1811
1820
|
# name: "__string",
|
1812
1821
|
# request_id: "__string",
|
1813
1822
|
# reserved: "__string",
|
@@ -1926,6 +1935,7 @@ module Aws::MediaLive
|
|
1926
1935
|
# resp.channel.encoder_settings.blackout_slate.network_id #=> String
|
1927
1936
|
# resp.channel.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
1928
1937
|
# resp.channel.encoder_settings.caption_descriptions #=> Array
|
1938
|
+
# resp.channel.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
1929
1939
|
# resp.channel.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
1930
1940
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
1931
1941
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -2419,6 +2429,10 @@ module Aws::MediaLive
|
|
2419
2429
|
# resp.channel.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
2420
2430
|
# resp.channel.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
2421
2431
|
# resp.channel.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
2432
|
+
# resp.channel.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
2433
|
+
# resp.channel.maintenance.maintenance_deadline #=> String
|
2434
|
+
# resp.channel.maintenance.maintenance_scheduled_date #=> String
|
2435
|
+
# resp.channel.maintenance.maintenance_start_time #=> String
|
2422
2436
|
# resp.channel.name #=> String
|
2423
2437
|
# resp.channel.pipeline_details #=> Array
|
2424
2438
|
# resp.channel.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -2865,6 +2879,7 @@ module Aws::MediaLive
|
|
2865
2879
|
# * {Types::DeleteChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
2866
2880
|
# * {Types::DeleteChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
2867
2881
|
# * {Types::DeleteChannelResponse#log_level #log_level} => String
|
2882
|
+
# * {Types::DeleteChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
2868
2883
|
# * {Types::DeleteChannelResponse#name #name} => String
|
2869
2884
|
# * {Types::DeleteChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
2870
2885
|
# * {Types::DeleteChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -2983,6 +2998,7 @@ module Aws::MediaLive
|
|
2983
2998
|
# resp.encoder_settings.blackout_slate.network_id #=> String
|
2984
2999
|
# resp.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
2985
3000
|
# resp.encoder_settings.caption_descriptions #=> Array
|
3001
|
+
# resp.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
2986
3002
|
# resp.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
2987
3003
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
2988
3004
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -3476,6 +3492,10 @@ module Aws::MediaLive
|
|
3476
3492
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
3477
3493
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
3478
3494
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
3495
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
3496
|
+
# resp.maintenance.maintenance_deadline #=> String
|
3497
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
3498
|
+
# resp.maintenance.maintenance_start_time #=> String
|
3479
3499
|
# resp.name #=> String
|
3480
3500
|
# resp.pipeline_details #=> Array
|
3481
3501
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -3680,6 +3700,7 @@ module Aws::MediaLive
|
|
3680
3700
|
# * {Types::DeleteReservationResponse#offering_id #offering_id} => String
|
3681
3701
|
# * {Types::DeleteReservationResponse#offering_type #offering_type} => String
|
3682
3702
|
# * {Types::DeleteReservationResponse#region #region} => String
|
3703
|
+
# * {Types::DeleteReservationResponse#renewal_settings #renewal_settings} => Types::RenewalSettings
|
3683
3704
|
# * {Types::DeleteReservationResponse#reservation_id #reservation_id} => String
|
3684
3705
|
# * {Types::DeleteReservationResponse#resource_specification #resource_specification} => Types::ReservationResourceSpecification
|
3685
3706
|
# * {Types::DeleteReservationResponse#start #start} => String
|
@@ -3707,6 +3728,8 @@ module Aws::MediaLive
|
|
3707
3728
|
# resp.offering_id #=> String
|
3708
3729
|
# resp.offering_type #=> String, one of "NO_UPFRONT"
|
3709
3730
|
# resp.region #=> String
|
3731
|
+
# resp.renewal_settings.automatic_renewal #=> String, one of "DISABLED", "ENABLED", "UNAVAILABLE"
|
3732
|
+
# resp.renewal_settings.renewal_count #=> Integer
|
3710
3733
|
# resp.reservation_id #=> String
|
3711
3734
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
3712
3735
|
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
@@ -3792,6 +3815,7 @@ module Aws::MediaLive
|
|
3792
3815
|
# * {Types::DescribeChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
3793
3816
|
# * {Types::DescribeChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
3794
3817
|
# * {Types::DescribeChannelResponse#log_level #log_level} => String
|
3818
|
+
# * {Types::DescribeChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
3795
3819
|
# * {Types::DescribeChannelResponse#name #name} => String
|
3796
3820
|
# * {Types::DescribeChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
3797
3821
|
# * {Types::DescribeChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -3910,6 +3934,7 @@ module Aws::MediaLive
|
|
3910
3934
|
# resp.encoder_settings.blackout_slate.network_id #=> String
|
3911
3935
|
# resp.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
3912
3936
|
# resp.encoder_settings.caption_descriptions #=> Array
|
3937
|
+
# resp.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
3913
3938
|
# resp.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
3914
3939
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
3915
3940
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -4403,6 +4428,10 @@ module Aws::MediaLive
|
|
4403
4428
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4404
4429
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
4405
4430
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
4431
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
4432
|
+
# resp.maintenance.maintenance_deadline #=> String
|
4433
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
4434
|
+
# resp.maintenance.maintenance_start_time #=> String
|
4406
4435
|
# resp.name #=> String
|
4407
4436
|
# resp.pipeline_details #=> Array
|
4408
4437
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -4549,7 +4578,7 @@ module Aws::MediaLive
|
|
4549
4578
|
# resp.arn #=> String
|
4550
4579
|
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
4551
4580
|
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
4552
|
-
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
4581
|
+
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE", "UPDATING"
|
4553
4582
|
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
4554
4583
|
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
4555
4584
|
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -4859,6 +4888,7 @@ module Aws::MediaLive
|
|
4859
4888
|
# * {Types::DescribeReservationResponse#offering_id #offering_id} => String
|
4860
4889
|
# * {Types::DescribeReservationResponse#offering_type #offering_type} => String
|
4861
4890
|
# * {Types::DescribeReservationResponse#region #region} => String
|
4891
|
+
# * {Types::DescribeReservationResponse#renewal_settings #renewal_settings} => Types::RenewalSettings
|
4862
4892
|
# * {Types::DescribeReservationResponse#reservation_id #reservation_id} => String
|
4863
4893
|
# * {Types::DescribeReservationResponse#resource_specification #resource_specification} => Types::ReservationResourceSpecification
|
4864
4894
|
# * {Types::DescribeReservationResponse#start #start} => String
|
@@ -4886,6 +4916,8 @@ module Aws::MediaLive
|
|
4886
4916
|
# resp.offering_id #=> String
|
4887
4917
|
# resp.offering_type #=> String, one of "NO_UPFRONT"
|
4888
4918
|
# resp.region #=> String
|
4919
|
+
# resp.renewal_settings.automatic_renewal #=> String, one of "DISABLED", "ENABLED", "UNAVAILABLE"
|
4920
|
+
# resp.renewal_settings.renewal_count #=> Integer
|
4889
4921
|
# resp.reservation_id #=> String
|
4890
4922
|
# resp.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
4891
4923
|
# resp.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
@@ -5108,6 +5140,10 @@ module Aws::MediaLive
|
|
5108
5140
|
# resp.channels[0].input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
5109
5141
|
# resp.channels[0].input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
5110
5142
|
# resp.channels[0].log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
5143
|
+
# resp.channels[0].maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
5144
|
+
# resp.channels[0].maintenance.maintenance_deadline #=> String
|
5145
|
+
# resp.channels[0].maintenance.maintenance_scheduled_date #=> String
|
5146
|
+
# resp.channels[0].maintenance.maintenance_start_time #=> String
|
5111
5147
|
# resp.channels[0].name #=> String
|
5112
5148
|
# resp.channels[0].pipelines_running_count #=> Integer
|
5113
5149
|
# resp.channels[0].role_arn #=> String
|
@@ -5202,7 +5238,7 @@ module Aws::MediaLive
|
|
5202
5238
|
# resp.input_devices[0].arn #=> String
|
5203
5239
|
# resp.input_devices[0].connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
5204
5240
|
# resp.input_devices[0].device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
5205
|
-
# resp.input_devices[0].device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
5241
|
+
# resp.input_devices[0].device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE", "UPDATING"
|
5206
5242
|
# resp.input_devices[0].hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
5207
5243
|
# resp.input_devices[0].hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
5208
5244
|
# resp.input_devices[0].hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -5574,6 +5610,8 @@ module Aws::MediaLive
|
|
5574
5610
|
# resp.reservations[0].offering_id #=> String
|
5575
5611
|
# resp.reservations[0].offering_type #=> String, one of "NO_UPFRONT"
|
5576
5612
|
# resp.reservations[0].region #=> String
|
5613
|
+
# resp.reservations[0].renewal_settings.automatic_renewal #=> String, one of "DISABLED", "ENABLED", "UNAVAILABLE"
|
5614
|
+
# resp.reservations[0].renewal_settings.renewal_count #=> Integer
|
5577
5615
|
# resp.reservations[0].reservation_id #=> String
|
5578
5616
|
# resp.reservations[0].resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
5579
5617
|
# resp.reservations[0].resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
@@ -5634,6 +5672,9 @@ module Aws::MediaLive
|
|
5634
5672
|
#
|
5635
5673
|
# @option params [required, String] :offering_id
|
5636
5674
|
#
|
5675
|
+
# @option params [Types::RenewalSettings] :renewal_settings
|
5676
|
+
# The Renewal settings for Reservations
|
5677
|
+
#
|
5637
5678
|
# @option params [String] :request_id
|
5638
5679
|
# **A suitable default value is auto-generated.** You should normally
|
5639
5680
|
# not need to pass this option.**
|
@@ -5652,6 +5693,10 @@ module Aws::MediaLive
|
|
5652
5693
|
# count: 1, # required
|
5653
5694
|
# name: "__string",
|
5654
5695
|
# offering_id: "__string", # required
|
5696
|
+
# renewal_settings: {
|
5697
|
+
# automatic_renewal: "DISABLED", # accepts DISABLED, ENABLED, UNAVAILABLE
|
5698
|
+
# renewal_count: 1,
|
5699
|
+
# },
|
5655
5700
|
# request_id: "__string",
|
5656
5701
|
# start: "__string",
|
5657
5702
|
# tags: {
|
@@ -5673,6 +5718,8 @@ module Aws::MediaLive
|
|
5673
5718
|
# resp.reservation.offering_id #=> String
|
5674
5719
|
# resp.reservation.offering_type #=> String, one of "NO_UPFRONT"
|
5675
5720
|
# resp.reservation.region #=> String
|
5721
|
+
# resp.reservation.renewal_settings.automatic_renewal #=> String, one of "DISABLED", "ENABLED", "UNAVAILABLE"
|
5722
|
+
# resp.reservation.renewal_settings.renewal_count #=> Integer
|
5676
5723
|
# resp.reservation.reservation_id #=> String
|
5677
5724
|
# resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
5678
5725
|
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
@@ -5734,6 +5781,7 @@ module Aws::MediaLive
|
|
5734
5781
|
# * {Types::StartChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
5735
5782
|
# * {Types::StartChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
5736
5783
|
# * {Types::StartChannelResponse#log_level #log_level} => String
|
5784
|
+
# * {Types::StartChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
5737
5785
|
# * {Types::StartChannelResponse#name #name} => String
|
5738
5786
|
# * {Types::StartChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
5739
5787
|
# * {Types::StartChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -5852,6 +5900,7 @@ module Aws::MediaLive
|
|
5852
5900
|
# resp.encoder_settings.blackout_slate.network_id #=> String
|
5853
5901
|
# resp.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
5854
5902
|
# resp.encoder_settings.caption_descriptions #=> Array
|
5903
|
+
# resp.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
5855
5904
|
# resp.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
5856
5905
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
5857
5906
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -6345,6 +6394,10 @@ module Aws::MediaLive
|
|
6345
6394
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
6346
6395
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
6347
6396
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
6397
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
6398
|
+
# resp.maintenance.maintenance_deadline #=> String
|
6399
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
6400
|
+
# resp.maintenance.maintenance_start_time #=> String
|
6348
6401
|
# resp.name #=> String
|
6349
6402
|
# resp.pipeline_details #=> Array
|
6350
6403
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -6443,6 +6496,7 @@ module Aws::MediaLive
|
|
6443
6496
|
# * {Types::StopChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
6444
6497
|
# * {Types::StopChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
6445
6498
|
# * {Types::StopChannelResponse#log_level #log_level} => String
|
6499
|
+
# * {Types::StopChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
6446
6500
|
# * {Types::StopChannelResponse#name #name} => String
|
6447
6501
|
# * {Types::StopChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
6448
6502
|
# * {Types::StopChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -6561,6 +6615,7 @@ module Aws::MediaLive
|
|
6561
6615
|
# resp.encoder_settings.blackout_slate.network_id #=> String
|
6562
6616
|
# resp.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
6563
6617
|
# resp.encoder_settings.caption_descriptions #=> Array
|
6618
|
+
# resp.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
6564
6619
|
# resp.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
6565
6620
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
6566
6621
|
# resp.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -7054,6 +7109,10 @@ module Aws::MediaLive
|
|
7054
7109
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
7055
7110
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
7056
7111
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
7112
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
7113
|
+
# resp.maintenance.maintenance_deadline #=> String
|
7114
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
7115
|
+
# resp.maintenance.maintenance_start_time #=> String
|
7057
7116
|
# resp.name #=> String
|
7058
7117
|
# resp.pipeline_details #=> Array
|
7059
7118
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -7185,6 +7244,8 @@ module Aws::MediaLive
|
|
7185
7244
|
# @option params [String] :log_level
|
7186
7245
|
# The log level the user wants for their channel.
|
7187
7246
|
#
|
7247
|
+
# @option params [Types::MaintenanceUpdateSettings] :maintenance
|
7248
|
+
#
|
7188
7249
|
# @option params [String] :name
|
7189
7250
|
#
|
7190
7251
|
# @option params [String] :role_arn
|
@@ -7305,7 +7366,7 @@ module Aws::MediaLive
|
|
7305
7366
|
# },
|
7306
7367
|
# language_code: "__stringMin1Max35",
|
7307
7368
|
# language_code_control: "FOLLOW_INPUT", # accepts FOLLOW_INPUT, USE_CONFIGURED
|
7308
|
-
# name: "
|
7369
|
+
# name: "__stringMax255", # required
|
7309
7370
|
# remix_settings: {
|
7310
7371
|
# channel_mappings: [ # required
|
7311
7372
|
# {
|
@@ -7327,7 +7388,7 @@ module Aws::MediaLive
|
|
7327
7388
|
# avail_blanking: {
|
7328
7389
|
# avail_blanking_image: {
|
7329
7390
|
# password_param: "__string",
|
7330
|
-
# uri: "
|
7391
|
+
# uri: "__stringMax2048", # required
|
7331
7392
|
# username: "__string",
|
7332
7393
|
# },
|
7333
7394
|
# state: "DISABLED", # accepts DISABLED, ENABLED
|
@@ -7349,13 +7410,13 @@ module Aws::MediaLive
|
|
7349
7410
|
# blackout_slate: {
|
7350
7411
|
# blackout_slate_image: {
|
7351
7412
|
# password_param: "__string",
|
7352
|
-
# uri: "
|
7413
|
+
# uri: "__stringMax2048", # required
|
7353
7414
|
# username: "__string",
|
7354
7415
|
# },
|
7355
7416
|
# network_end_blackout: "DISABLED", # accepts DISABLED, ENABLED
|
7356
7417
|
# network_end_blackout_image: {
|
7357
7418
|
# password_param: "__string",
|
7358
|
-
# uri: "
|
7419
|
+
# uri: "__stringMax2048", # required
|
7359
7420
|
# username: "__string",
|
7360
7421
|
# },
|
7361
7422
|
# network_id: "__stringMin34Max34",
|
@@ -7363,6 +7424,7 @@ module Aws::MediaLive
|
|
7363
7424
|
# },
|
7364
7425
|
# caption_descriptions: [
|
7365
7426
|
# {
|
7427
|
+
# accessibility: "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", # accepts DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES, IMPLEMENTS_ACCESSIBILITY_FEATURES
|
7366
7428
|
# caption_selector_name: "__string", # required
|
7367
7429
|
# destination_settings: {
|
7368
7430
|
# arib_destination_settings: {
|
@@ -7373,7 +7435,7 @@ module Aws::MediaLive
|
|
7373
7435
|
# background_opacity: 1,
|
7374
7436
|
# font: {
|
7375
7437
|
# password_param: "__string",
|
7376
|
-
# uri: "
|
7438
|
+
# uri: "__stringMax2048", # required
|
7377
7439
|
# username: "__string",
|
7378
7440
|
# },
|
7379
7441
|
# font_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
|
@@ -7396,7 +7458,7 @@ module Aws::MediaLive
|
|
7396
7458
|
# background_opacity: 1,
|
7397
7459
|
# font: {
|
7398
7460
|
# password_param: "__string",
|
7399
|
-
# uri: "
|
7461
|
+
# uri: "__stringMax2048", # required
|
7400
7462
|
# username: "__string",
|
7401
7463
|
# },
|
7402
7464
|
# font_color: "BLACK", # accepts BLACK, BLUE, GREEN, RED, WHITE, YELLOW
|
@@ -7456,7 +7518,7 @@ module Aws::MediaLive
|
|
7456
7518
|
# input_loss_image_color: "__stringMin6Max6",
|
7457
7519
|
# input_loss_image_slate: {
|
7458
7520
|
# password_param: "__string",
|
7459
|
-
# uri: "
|
7521
|
+
# uri: "__stringMax2048", # required
|
7460
7522
|
# username: "__string",
|
7461
7523
|
# },
|
7462
7524
|
# input_loss_image_type: "COLOR", # accepts COLOR, SLATE
|
@@ -7573,7 +7635,7 @@ module Aws::MediaLive
|
|
7573
7635
|
# static_key_settings: {
|
7574
7636
|
# key_provider_server: {
|
7575
7637
|
# password_param: "__string",
|
7576
|
-
# uri: "
|
7638
|
+
# uri: "__stringMax2048", # required
|
7577
7639
|
# username: "__string",
|
7578
7640
|
# },
|
7579
7641
|
# static_key_value: "__stringMin32Max32", # required
|
@@ -7726,7 +7788,7 @@ module Aws::MediaLive
|
|
7726
7788
|
# audio_group_id: "__string",
|
7727
7789
|
# audio_only_image: {
|
7728
7790
|
# password_param: "__string",
|
7729
|
-
# uri: "
|
7791
|
+
# uri: "__stringMax2048", # required
|
7730
7792
|
# username: "__string",
|
7731
7793
|
# },
|
7732
7794
|
# audio_track_type: "ALTERNATE_AUDIO_AUTO_SELECT", # accepts ALTERNATE_AUDIO_AUTO_SELECT, ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT, ALTERNATE_AUDIO_NOT_AUTO_SELECT, AUDIO_ONLY_VARIANT_STREAM
|
@@ -8145,6 +8207,11 @@ module Aws::MediaLive
|
|
8145
8207
|
# resolution: "SD", # accepts SD, HD, UHD
|
8146
8208
|
# },
|
8147
8209
|
# log_level: "ERROR", # accepts ERROR, WARNING, INFO, DEBUG, DISABLED
|
8210
|
+
# maintenance: {
|
8211
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
8212
|
+
# maintenance_scheduled_date: "__string",
|
8213
|
+
# maintenance_start_time: "__stringPattern010920300",
|
8214
|
+
# },
|
8148
8215
|
# name: "__string",
|
8149
8216
|
# role_arn: "__string",
|
8150
8217
|
# })
|
@@ -8253,6 +8320,7 @@ module Aws::MediaLive
|
|
8253
8320
|
# resp.channel.encoder_settings.blackout_slate.network_id #=> String
|
8254
8321
|
# resp.channel.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
8255
8322
|
# resp.channel.encoder_settings.caption_descriptions #=> Array
|
8323
|
+
# resp.channel.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
8256
8324
|
# resp.channel.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
8257
8325
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
8258
8326
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -8746,6 +8814,10 @@ module Aws::MediaLive
|
|
8746
8814
|
# resp.channel.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
8747
8815
|
# resp.channel.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
8748
8816
|
# resp.channel.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
8817
|
+
# resp.channel.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
8818
|
+
# resp.channel.maintenance.maintenance_deadline #=> String
|
8819
|
+
# resp.channel.maintenance.maintenance_scheduled_date #=> String
|
8820
|
+
# resp.channel.maintenance.maintenance_start_time #=> String
|
8749
8821
|
# resp.channel.name #=> String
|
8750
8822
|
# resp.channel.pipeline_details #=> Array
|
8751
8823
|
# resp.channel.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -8923,6 +8995,7 @@ module Aws::MediaLive
|
|
8923
8995
|
# resp.channel.encoder_settings.blackout_slate.network_id #=> String
|
8924
8996
|
# resp.channel.encoder_settings.blackout_slate.state #=> String, one of "DISABLED", "ENABLED"
|
8925
8997
|
# resp.channel.encoder_settings.caption_descriptions #=> Array
|
8998
|
+
# resp.channel.encoder_settings.caption_descriptions[0].accessibility #=> String, one of "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES", "IMPLEMENTS_ACCESSIBILITY_FEATURES"
|
8926
8999
|
# resp.channel.encoder_settings.caption_descriptions[0].caption_selector_name #=> String
|
8927
9000
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.alignment #=> String, one of "CENTERED", "LEFT", "SMART"
|
8928
9001
|
# resp.channel.encoder_settings.caption_descriptions[0].destination_settings.burn_in_destination_settings.background_color #=> String, one of "BLACK", "NONE", "WHITE"
|
@@ -9416,6 +9489,10 @@ module Aws::MediaLive
|
|
9416
9489
|
# resp.channel.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
9417
9490
|
# resp.channel.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
9418
9491
|
# resp.channel.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
9492
|
+
# resp.channel.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
9493
|
+
# resp.channel.maintenance.maintenance_deadline #=> String
|
9494
|
+
# resp.channel.maintenance.maintenance_scheduled_date #=> String
|
9495
|
+
# resp.channel.maintenance.maintenance_start_time #=> String
|
9419
9496
|
# resp.channel.name #=> String
|
9420
9497
|
# resp.channel.pipeline_details #=> Array
|
9421
9498
|
# resp.channel.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -9588,7 +9665,7 @@ module Aws::MediaLive
|
|
9588
9665
|
# resp.arn #=> String
|
9589
9666
|
# resp.connection_state #=> String, one of "DISCONNECTED", "CONNECTED"
|
9590
9667
|
# resp.device_settings_sync_state #=> String, one of "SYNCED", "SYNCING"
|
9591
|
-
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE"
|
9668
|
+
# resp.device_update_status #=> String, one of "UP_TO_DATE", "NOT_UP_TO_DATE", "UPDATING"
|
9592
9669
|
# resp.hd_device_settings.active_input #=> String, one of "HDMI", "SDI"
|
9593
9670
|
# resp.hd_device_settings.configured_input #=> String, one of "AUTO", "HDMI", "SDI"
|
9594
9671
|
# resp.hd_device_settings.device_state #=> String, one of "IDLE", "STREAMING"
|
@@ -9809,6 +9886,9 @@ module Aws::MediaLive
|
|
9809
9886
|
#
|
9810
9887
|
# @option params [String] :name
|
9811
9888
|
#
|
9889
|
+
# @option params [Types::RenewalSettings] :renewal_settings
|
9890
|
+
# The Renewal settings for Reservations
|
9891
|
+
#
|
9812
9892
|
# @option params [required, String] :reservation_id
|
9813
9893
|
#
|
9814
9894
|
# @return [Types::UpdateReservationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -9819,6 +9899,10 @@ module Aws::MediaLive
|
|
9819
9899
|
#
|
9820
9900
|
# resp = client.update_reservation({
|
9821
9901
|
# name: "__string",
|
9902
|
+
# renewal_settings: {
|
9903
|
+
# automatic_renewal: "DISABLED", # accepts DISABLED, ENABLED, UNAVAILABLE
|
9904
|
+
# renewal_count: 1,
|
9905
|
+
# },
|
9822
9906
|
# reservation_id: "__string", # required
|
9823
9907
|
# })
|
9824
9908
|
#
|
@@ -9836,6 +9920,8 @@ module Aws::MediaLive
|
|
9836
9920
|
# resp.reservation.offering_id #=> String
|
9837
9921
|
# resp.reservation.offering_type #=> String, one of "NO_UPFRONT"
|
9838
9922
|
# resp.reservation.region #=> String
|
9923
|
+
# resp.reservation.renewal_settings.automatic_renewal #=> String, one of "DISABLED", "ENABLED", "UNAVAILABLE"
|
9924
|
+
# resp.reservation.renewal_settings.renewal_count #=> Integer
|
9839
9925
|
# resp.reservation.reservation_id #=> String
|
9840
9926
|
# resp.reservation.resource_specification.channel_class #=> String, one of "STANDARD", "SINGLE_PIPELINE"
|
9841
9927
|
# resp.reservation.resource_specification.codec #=> String, one of "MPEG2", "AVC", "HEVC", "AUDIO", "LINK"
|
@@ -9873,7 +9959,7 @@ module Aws::MediaLive
|
|
9873
9959
|
params: params,
|
9874
9960
|
config: config)
|
9875
9961
|
context[:gem_name] = 'aws-sdk-medialive'
|
9876
|
-
context[:gem_version] = '1.
|
9962
|
+
context[:gem_version] = '1.87.0'
|
9877
9963
|
Seahorse::Client::Request.new(handlers, context)
|
9878
9964
|
end
|
9879
9965
|
|