aws-sdk-medialive 1.83.0 → 1.86.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 +54 -1
- data/lib/aws-sdk-medialive/client_api.rb +30 -0
- data/lib/aws-sdk-medialive/types.rb +148 -13
- 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: 377914505ac079c59b14af44f3b57b33df16225005a221b2c27b85b19be71eb9
|
4
|
+
data.tar.gz: 3fad034644faa2b5e1a8eb30f702be78f7c832c2039654c55f6134fd2630b432
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 804b86d41f656564e0cd467744b9417057f55d3522f87c3cf1765e07bc0ccce1b3fb19b1b5cd5812860df4564a3dbf4c49553281839d1dbfae53792272fa9a20
|
7
|
+
data.tar.gz: d19ce7565f65a202b9a6943a404c9eb511fb44cf9e762711deee47dd95975bdffbaf2b8c90248704320015b81b1174e538ff33282857cb7b316e35e60e1664d2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.86.0 (2022-03-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for selecting a maintenance window.
|
8
|
+
|
9
|
+
1.85.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.84.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.83.0 (2022-01-07)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.86.0
|
@@ -27,7 +27,9 @@ 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'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::MediaLive
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -833,6 +837,8 @@ module Aws::MediaLive
|
|
833
837
|
# @option params [String] :log_level
|
834
838
|
# The log level the user wants for their channel.
|
835
839
|
#
|
840
|
+
# @option params [Types::MaintenanceCreateSettings] :maintenance
|
841
|
+
#
|
836
842
|
# @option params [String] :name
|
837
843
|
#
|
838
844
|
# @option params [String] :request_id
|
@@ -1806,6 +1812,10 @@ module Aws::MediaLive
|
|
1806
1812
|
# resolution: "SD", # accepts SD, HD, UHD
|
1807
1813
|
# },
|
1808
1814
|
# log_level: "ERROR", # accepts ERROR, WARNING, INFO, DEBUG, DISABLED
|
1815
|
+
# maintenance: {
|
1816
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
1817
|
+
# maintenance_start_time: "__stringPattern010920300",
|
1818
|
+
# },
|
1809
1819
|
# name: "__string",
|
1810
1820
|
# request_id: "__string",
|
1811
1821
|
# reserved: "__string",
|
@@ -2417,6 +2427,10 @@ module Aws::MediaLive
|
|
2417
2427
|
# resp.channel.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
2418
2428
|
# resp.channel.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
2419
2429
|
# resp.channel.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
2430
|
+
# resp.channel.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
2431
|
+
# resp.channel.maintenance.maintenance_deadline #=> String
|
2432
|
+
# resp.channel.maintenance.maintenance_scheduled_date #=> String
|
2433
|
+
# resp.channel.maintenance.maintenance_start_time #=> String
|
2420
2434
|
# resp.channel.name #=> String
|
2421
2435
|
# resp.channel.pipeline_details #=> Array
|
2422
2436
|
# resp.channel.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -2863,6 +2877,7 @@ module Aws::MediaLive
|
|
2863
2877
|
# * {Types::DeleteChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
2864
2878
|
# * {Types::DeleteChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
2865
2879
|
# * {Types::DeleteChannelResponse#log_level #log_level} => String
|
2880
|
+
# * {Types::DeleteChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
2866
2881
|
# * {Types::DeleteChannelResponse#name #name} => String
|
2867
2882
|
# * {Types::DeleteChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
2868
2883
|
# * {Types::DeleteChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -3474,6 +3489,10 @@ module Aws::MediaLive
|
|
3474
3489
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
3475
3490
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
3476
3491
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
3492
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
3493
|
+
# resp.maintenance.maintenance_deadline #=> String
|
3494
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
3495
|
+
# resp.maintenance.maintenance_start_time #=> String
|
3477
3496
|
# resp.name #=> String
|
3478
3497
|
# resp.pipeline_details #=> Array
|
3479
3498
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -3790,6 +3809,7 @@ module Aws::MediaLive
|
|
3790
3809
|
# * {Types::DescribeChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
3791
3810
|
# * {Types::DescribeChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
3792
3811
|
# * {Types::DescribeChannelResponse#log_level #log_level} => String
|
3812
|
+
# * {Types::DescribeChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
3793
3813
|
# * {Types::DescribeChannelResponse#name #name} => String
|
3794
3814
|
# * {Types::DescribeChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
3795
3815
|
# * {Types::DescribeChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -4401,6 +4421,10 @@ module Aws::MediaLive
|
|
4401
4421
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
4402
4422
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
4403
4423
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
4424
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
4425
|
+
# resp.maintenance.maintenance_deadline #=> String
|
4426
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
4427
|
+
# resp.maintenance.maintenance_start_time #=> String
|
4404
4428
|
# resp.name #=> String
|
4405
4429
|
# resp.pipeline_details #=> Array
|
4406
4430
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -5106,6 +5130,10 @@ module Aws::MediaLive
|
|
5106
5130
|
# resp.channels[0].input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
5107
5131
|
# resp.channels[0].input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
5108
5132
|
# resp.channels[0].log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
5133
|
+
# resp.channels[0].maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
5134
|
+
# resp.channels[0].maintenance.maintenance_deadline #=> String
|
5135
|
+
# resp.channels[0].maintenance.maintenance_scheduled_date #=> String
|
5136
|
+
# resp.channels[0].maintenance.maintenance_start_time #=> String
|
5109
5137
|
# resp.channels[0].name #=> String
|
5110
5138
|
# resp.channels[0].pipelines_running_count #=> Integer
|
5111
5139
|
# resp.channels[0].role_arn #=> String
|
@@ -5732,6 +5760,7 @@ module Aws::MediaLive
|
|
5732
5760
|
# * {Types::StartChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
5733
5761
|
# * {Types::StartChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
5734
5762
|
# * {Types::StartChannelResponse#log_level #log_level} => String
|
5763
|
+
# * {Types::StartChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
5735
5764
|
# * {Types::StartChannelResponse#name #name} => String
|
5736
5765
|
# * {Types::StartChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
5737
5766
|
# * {Types::StartChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -6343,6 +6372,10 @@ module Aws::MediaLive
|
|
6343
6372
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
6344
6373
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
6345
6374
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
6375
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
6376
|
+
# resp.maintenance.maintenance_deadline #=> String
|
6377
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
6378
|
+
# resp.maintenance.maintenance_start_time #=> String
|
6346
6379
|
# resp.name #=> String
|
6347
6380
|
# resp.pipeline_details #=> Array
|
6348
6381
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -6441,6 +6474,7 @@ module Aws::MediaLive
|
|
6441
6474
|
# * {Types::StopChannelResponse#input_attachments #input_attachments} => Array<Types::InputAttachment>
|
6442
6475
|
# * {Types::StopChannelResponse#input_specification #input_specification} => Types::InputSpecification
|
6443
6476
|
# * {Types::StopChannelResponse#log_level #log_level} => String
|
6477
|
+
# * {Types::StopChannelResponse#maintenance #maintenance} => Types::MaintenanceStatus
|
6444
6478
|
# * {Types::StopChannelResponse#name #name} => String
|
6445
6479
|
# * {Types::StopChannelResponse#pipeline_details #pipeline_details} => Array<Types::PipelineDetail>
|
6446
6480
|
# * {Types::StopChannelResponse#pipelines_running_count #pipelines_running_count} => Integer
|
@@ -7052,6 +7086,10 @@ module Aws::MediaLive
|
|
7052
7086
|
# resp.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
7053
7087
|
# resp.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
7054
7088
|
# resp.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
7089
|
+
# resp.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
7090
|
+
# resp.maintenance.maintenance_deadline #=> String
|
7091
|
+
# resp.maintenance.maintenance_scheduled_date #=> String
|
7092
|
+
# resp.maintenance.maintenance_start_time #=> String
|
7055
7093
|
# resp.name #=> String
|
7056
7094
|
# resp.pipeline_details #=> Array
|
7057
7095
|
# resp.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -7183,6 +7221,8 @@ module Aws::MediaLive
|
|
7183
7221
|
# @option params [String] :log_level
|
7184
7222
|
# The log level the user wants for their channel.
|
7185
7223
|
#
|
7224
|
+
# @option params [Types::MaintenanceUpdateSettings] :maintenance
|
7225
|
+
#
|
7186
7226
|
# @option params [String] :name
|
7187
7227
|
#
|
7188
7228
|
# @option params [String] :role_arn
|
@@ -8143,6 +8183,11 @@ module Aws::MediaLive
|
|
8143
8183
|
# resolution: "SD", # accepts SD, HD, UHD
|
8144
8184
|
# },
|
8145
8185
|
# log_level: "ERROR", # accepts ERROR, WARNING, INFO, DEBUG, DISABLED
|
8186
|
+
# maintenance: {
|
8187
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
8188
|
+
# maintenance_scheduled_date: "__string",
|
8189
|
+
# maintenance_start_time: "__stringPattern010920300",
|
8190
|
+
# },
|
8146
8191
|
# name: "__string",
|
8147
8192
|
# role_arn: "__string",
|
8148
8193
|
# })
|
@@ -8744,6 +8789,10 @@ module Aws::MediaLive
|
|
8744
8789
|
# resp.channel.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
8745
8790
|
# resp.channel.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
8746
8791
|
# resp.channel.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
8792
|
+
# resp.channel.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
8793
|
+
# resp.channel.maintenance.maintenance_deadline #=> String
|
8794
|
+
# resp.channel.maintenance.maintenance_scheduled_date #=> String
|
8795
|
+
# resp.channel.maintenance.maintenance_start_time #=> String
|
8747
8796
|
# resp.channel.name #=> String
|
8748
8797
|
# resp.channel.pipeline_details #=> Array
|
8749
8798
|
# resp.channel.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -9414,6 +9463,10 @@ module Aws::MediaLive
|
|
9414
9463
|
# resp.channel.input_specification.maximum_bitrate #=> String, one of "MAX_10_MBPS", "MAX_20_MBPS", "MAX_50_MBPS"
|
9415
9464
|
# resp.channel.input_specification.resolution #=> String, one of "SD", "HD", "UHD"
|
9416
9465
|
# resp.channel.log_level #=> String, one of "ERROR", "WARNING", "INFO", "DEBUG", "DISABLED"
|
9466
|
+
# resp.channel.maintenance.maintenance_day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
9467
|
+
# resp.channel.maintenance.maintenance_deadline #=> String
|
9468
|
+
# resp.channel.maintenance.maintenance_scheduled_date #=> String
|
9469
|
+
# resp.channel.maintenance.maintenance_start_time #=> String
|
9417
9470
|
# resp.channel.name #=> String
|
9418
9471
|
# resp.channel.pipeline_details #=> Array
|
9419
9472
|
# resp.channel.pipeline_details[0].active_input_attachment_name #=> String
|
@@ -9871,7 +9924,7 @@ module Aws::MediaLive
|
|
9871
9924
|
params: params,
|
9872
9925
|
config: config)
|
9873
9926
|
context[:gem_name] = 'aws-sdk-medialive'
|
9874
|
-
context[:gem_version] = '1.
|
9927
|
+
context[:gem_version] = '1.86.0'
|
9875
9928
|
Seahorse::Client::Request.new(handlers, context)
|
9876
9929
|
end
|
9877
9930
|
|
@@ -453,6 +453,10 @@ module Aws::MediaLive
|
|
453
453
|
M3u8Scte35Behavior = Shapes::StringShape.new(name: 'M3u8Scte35Behavior')
|
454
454
|
M3u8Settings = Shapes::StructureShape.new(name: 'M3u8Settings')
|
455
455
|
M3u8TimedMetadataBehavior = Shapes::StringShape.new(name: 'M3u8TimedMetadataBehavior')
|
456
|
+
MaintenanceCreateSettings = Shapes::StructureShape.new(name: 'MaintenanceCreateSettings')
|
457
|
+
MaintenanceDay = Shapes::StringShape.new(name: 'MaintenanceDay')
|
458
|
+
MaintenanceStatus = Shapes::StructureShape.new(name: 'MaintenanceStatus')
|
459
|
+
MaintenanceUpdateSettings = Shapes::StructureShape.new(name: 'MaintenanceUpdateSettings')
|
456
460
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
457
461
|
MediaConnectFlow = Shapes::StructureShape.new(name: 'MediaConnectFlow')
|
458
462
|
MediaConnectFlowRequest = Shapes::StructureShape.new(name: 'MediaConnectFlowRequest')
|
@@ -805,6 +809,7 @@ module Aws::MediaLive
|
|
805
809
|
__stringMin34Max34 = Shapes::StringShape.new(name: '__stringMin34Max34')
|
806
810
|
__stringMin3Max3 = Shapes::StringShape.new(name: '__stringMin3Max3')
|
807
811
|
__stringMin6Max6 = Shapes::StringShape.new(name: '__stringMin6Max6')
|
812
|
+
__stringPattern010920300 = Shapes::StringShape.new(name: '__stringPattern010920300')
|
808
813
|
__timestamp = Shapes::TimestampShape.new(name: '__timestamp')
|
809
814
|
__timestampIso8601 = Shapes::TimestampShape.new(name: '__timestampIso8601', timestampFormat: "iso8601")
|
810
815
|
__timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
|
@@ -1136,6 +1141,7 @@ module Aws::MediaLive
|
|
1136
1141
|
Channel.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
1137
1142
|
Channel.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
1138
1143
|
Channel.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
1144
|
+
Channel.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceStatus, location_name: "maintenance"))
|
1139
1145
|
Channel.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
1140
1146
|
Channel.add_member(:pipeline_details, Shapes::ShapeRef.new(shape: __listOfPipelineDetail, location_name: "pipelineDetails"))
|
1141
1147
|
Channel.add_member(:pipelines_running_count, Shapes::ShapeRef.new(shape: __integer, location_name: "pipelinesRunningCount"))
|
@@ -1161,6 +1167,7 @@ module Aws::MediaLive
|
|
1161
1167
|
ChannelSummary.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
1162
1168
|
ChannelSummary.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
1163
1169
|
ChannelSummary.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
1170
|
+
ChannelSummary.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceStatus, location_name: "maintenance"))
|
1164
1171
|
ChannelSummary.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
1165
1172
|
ChannelSummary.add_member(:pipelines_running_count, Shapes::ShapeRef.new(shape: __integer, location_name: "pipelinesRunningCount"))
|
1166
1173
|
ChannelSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
@@ -1186,6 +1193,7 @@ module Aws::MediaLive
|
|
1186
1193
|
CreateChannel.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
1187
1194
|
CreateChannel.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
1188
1195
|
CreateChannel.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
1196
|
+
CreateChannel.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceCreateSettings, location_name: "maintenance"))
|
1189
1197
|
CreateChannel.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
1190
1198
|
CreateChannel.add_member(:request_id, Shapes::ShapeRef.new(shape: __string, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
|
1191
1199
|
CreateChannel.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, deprecated: true, location_name: "reserved"))
|
@@ -1201,6 +1209,7 @@ module Aws::MediaLive
|
|
1201
1209
|
CreateChannelRequest.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
1202
1210
|
CreateChannelRequest.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
1203
1211
|
CreateChannelRequest.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
1212
|
+
CreateChannelRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceCreateSettings, location_name: "maintenance"))
|
1204
1213
|
CreateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
1205
1214
|
CreateChannelRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: __string, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
|
1206
1215
|
CreateChannelRequest.add_member(:reserved, Shapes::ShapeRef.new(shape: __string, deprecated: true, location_name: "reserved"))
|
@@ -1326,6 +1335,7 @@ module Aws::MediaLive
|
|
1326
1335
|
DeleteChannelResponse.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
1327
1336
|
DeleteChannelResponse.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
1328
1337
|
DeleteChannelResponse.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
1338
|
+
DeleteChannelResponse.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceStatus, location_name: "maintenance"))
|
1329
1339
|
DeleteChannelResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
1330
1340
|
DeleteChannelResponse.add_member(:pipeline_details, Shapes::ShapeRef.new(shape: __listOfPipelineDetail, location_name: "pipelineDetails"))
|
1331
1341
|
DeleteChannelResponse.add_member(:pipelines_running_count, Shapes::ShapeRef.new(shape: __integer, location_name: "pipelinesRunningCount"))
|
@@ -1416,6 +1426,7 @@ module Aws::MediaLive
|
|
1416
1426
|
DescribeChannelResponse.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
1417
1427
|
DescribeChannelResponse.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
1418
1428
|
DescribeChannelResponse.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
1429
|
+
DescribeChannelResponse.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceStatus, location_name: "maintenance"))
|
1419
1430
|
DescribeChannelResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
1420
1431
|
DescribeChannelResponse.add_member(:pipeline_details, Shapes::ShapeRef.new(shape: __listOfPipelineDetail, location_name: "pipelineDetails"))
|
1421
1432
|
DescribeChannelResponse.add_member(:pipelines_running_count, Shapes::ShapeRef.new(shape: __integer, location_name: "pipelinesRunningCount"))
|
@@ -2328,6 +2339,21 @@ module Aws::MediaLive
|
|
2328
2339
|
M3u8Settings.add_member(:video_pid, Shapes::ShapeRef.new(shape: __string, location_name: "videoPid"))
|
2329
2340
|
M3u8Settings.struct_class = Types::M3u8Settings
|
2330
2341
|
|
2342
|
+
MaintenanceCreateSettings.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
2343
|
+
MaintenanceCreateSettings.add_member(:maintenance_start_time, Shapes::ShapeRef.new(shape: __stringPattern010920300, location_name: "maintenanceStartTime"))
|
2344
|
+
MaintenanceCreateSettings.struct_class = Types::MaintenanceCreateSettings
|
2345
|
+
|
2346
|
+
MaintenanceStatus.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
2347
|
+
MaintenanceStatus.add_member(:maintenance_deadline, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceDeadline"))
|
2348
|
+
MaintenanceStatus.add_member(:maintenance_scheduled_date, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceScheduledDate"))
|
2349
|
+
MaintenanceStatus.add_member(:maintenance_start_time, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceStartTime"))
|
2350
|
+
MaintenanceStatus.struct_class = Types::MaintenanceStatus
|
2351
|
+
|
2352
|
+
MaintenanceUpdateSettings.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
2353
|
+
MaintenanceUpdateSettings.add_member(:maintenance_scheduled_date, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceScheduledDate"))
|
2354
|
+
MaintenanceUpdateSettings.add_member(:maintenance_start_time, Shapes::ShapeRef.new(shape: __stringPattern010920300, location_name: "maintenanceStartTime"))
|
2355
|
+
MaintenanceUpdateSettings.struct_class = Types::MaintenanceUpdateSettings
|
2356
|
+
|
2331
2357
|
MediaConnectFlow.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, location_name: "flowArn"))
|
2332
2358
|
MediaConnectFlow.struct_class = Types::MediaConnectFlow
|
2333
2359
|
|
@@ -2804,6 +2830,7 @@ module Aws::MediaLive
|
|
2804
2830
|
StartChannelResponse.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
2805
2831
|
StartChannelResponse.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
2806
2832
|
StartChannelResponse.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
2833
|
+
StartChannelResponse.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceStatus, location_name: "maintenance"))
|
2807
2834
|
StartChannelResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
2808
2835
|
StartChannelResponse.add_member(:pipeline_details, Shapes::ShapeRef.new(shape: __listOfPipelineDetail, location_name: "pipelineDetails"))
|
2809
2836
|
StartChannelResponse.add_member(:pipelines_running_count, Shapes::ShapeRef.new(shape: __integer, location_name: "pipelinesRunningCount"))
|
@@ -2864,6 +2891,7 @@ module Aws::MediaLive
|
|
2864
2891
|
StopChannelResponse.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
2865
2892
|
StopChannelResponse.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
2866
2893
|
StopChannelResponse.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
2894
|
+
StopChannelResponse.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceStatus, location_name: "maintenance"))
|
2867
2895
|
StopChannelResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
2868
2896
|
StopChannelResponse.add_member(:pipeline_details, Shapes::ShapeRef.new(shape: __listOfPipelineDetail, location_name: "pipelineDetails"))
|
2869
2897
|
StopChannelResponse.add_member(:pipelines_running_count, Shapes::ShapeRef.new(shape: __integer, location_name: "pipelinesRunningCount"))
|
@@ -2964,6 +2992,7 @@ module Aws::MediaLive
|
|
2964
2992
|
UpdateChannel.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
2965
2993
|
UpdateChannel.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
2966
2994
|
UpdateChannel.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
2995
|
+
UpdateChannel.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceUpdateSettings, location_name: "maintenance"))
|
2967
2996
|
UpdateChannel.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
2968
2997
|
UpdateChannel.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
2969
2998
|
UpdateChannel.struct_class = Types::UpdateChannel
|
@@ -2987,6 +3016,7 @@ module Aws::MediaLive
|
|
2987
3016
|
UpdateChannelRequest.add_member(:input_attachments, Shapes::ShapeRef.new(shape: __listOfInputAttachment, location_name: "inputAttachments"))
|
2988
3017
|
UpdateChannelRequest.add_member(:input_specification, Shapes::ShapeRef.new(shape: InputSpecification, location_name: "inputSpecification"))
|
2989
3018
|
UpdateChannelRequest.add_member(:log_level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "logLevel"))
|
3019
|
+
UpdateChannelRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: MaintenanceUpdateSettings, location_name: "maintenance"))
|
2990
3020
|
UpdateChannelRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
2991
3021
|
UpdateChannelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
|
2992
3022
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
@@ -788,9 +788,6 @@ module Aws::MediaLive
|
|
788
788
|
# @return [String]
|
789
789
|
#
|
790
790
|
# @!attribute [rw] name
|
791
|
-
# The name of this AudioDescription. Outputs will use this name to
|
792
|
-
# uniquely identify this AudioDescription. Description names should be
|
793
|
-
# unique within this Live Event.
|
794
791
|
# @return [String]
|
795
792
|
#
|
796
793
|
# @!attribute [rw] remix_settings
|
@@ -2935,6 +2932,10 @@ module Aws::MediaLive
|
|
2935
2932
|
# The log level being written to CloudWatch Logs.
|
2936
2933
|
# @return [String]
|
2937
2934
|
#
|
2935
|
+
# @!attribute [rw] maintenance
|
2936
|
+
# Maintenance settings for this channel.
|
2937
|
+
# @return [Types::MaintenanceStatus]
|
2938
|
+
#
|
2938
2939
|
# @!attribute [rw] name
|
2939
2940
|
# The name of the channel. (user-mutable)
|
2940
2941
|
# @return [String]
|
@@ -2976,6 +2977,7 @@ module Aws::MediaLive
|
|
2976
2977
|
:input_attachments,
|
2977
2978
|
:input_specification,
|
2978
2979
|
:log_level,
|
2980
|
+
:maintenance,
|
2979
2981
|
:name,
|
2980
2982
|
:pipeline_details,
|
2981
2983
|
:pipelines_running_count,
|
@@ -3054,6 +3056,10 @@ module Aws::MediaLive
|
|
3054
3056
|
# The log level being written to CloudWatch Logs.
|
3055
3057
|
# @return [String]
|
3056
3058
|
#
|
3059
|
+
# @!attribute [rw] maintenance
|
3060
|
+
# Maintenance settings for this channel.
|
3061
|
+
# @return [Types::MaintenanceStatus]
|
3062
|
+
#
|
3057
3063
|
# @!attribute [rw] name
|
3058
3064
|
# The name of the channel. (user-mutable)
|
3059
3065
|
# @return [String]
|
@@ -3090,6 +3096,7 @@ module Aws::MediaLive
|
|
3090
3096
|
:input_attachments,
|
3091
3097
|
:input_specification,
|
3092
3098
|
:log_level,
|
3099
|
+
:maintenance,
|
3093
3100
|
:name,
|
3094
3101
|
:pipelines_running_count,
|
3095
3102
|
:role_arn,
|
@@ -3173,6 +3180,10 @@ module Aws::MediaLive
|
|
3173
3180
|
# The log level to write to CloudWatch Logs.
|
3174
3181
|
# @return [String]
|
3175
3182
|
#
|
3183
|
+
# @!attribute [rw] maintenance
|
3184
|
+
# Maintenance settings for this channel.
|
3185
|
+
# @return [Types::MaintenanceCreateSettings]
|
3186
|
+
#
|
3176
3187
|
# @!attribute [rw] name
|
3177
3188
|
# Name of channel.
|
3178
3189
|
# @return [String]
|
@@ -3209,6 +3220,7 @@ module Aws::MediaLive
|
|
3209
3220
|
:input_attachments,
|
3210
3221
|
:input_specification,
|
3211
3222
|
:log_level,
|
3223
|
+
:maintenance,
|
3212
3224
|
:name,
|
3213
3225
|
:request_id,
|
3214
3226
|
:reserved,
|
@@ -4172,6 +4184,10 @@ module Aws::MediaLive
|
|
4172
4184
|
# resolution: "SD", # accepts SD, HD, UHD
|
4173
4185
|
# },
|
4174
4186
|
# log_level: "ERROR", # accepts ERROR, WARNING, INFO, DEBUG, DISABLED
|
4187
|
+
# maintenance: {
|
4188
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
4189
|
+
# maintenance_start_time: "__stringPattern010920300",
|
4190
|
+
# },
|
4175
4191
|
# name: "__string",
|
4176
4192
|
# request_id: "__string",
|
4177
4193
|
# reserved: "__string",
|
@@ -4211,6 +4227,9 @@ module Aws::MediaLive
|
|
4211
4227
|
# The log level the user wants for their channel.
|
4212
4228
|
# @return [String]
|
4213
4229
|
#
|
4230
|
+
# @!attribute [rw] maintenance
|
4231
|
+
# @return [Types::MaintenanceCreateSettings]
|
4232
|
+
#
|
4214
4233
|
# @!attribute [rw] name
|
4215
4234
|
# @return [String]
|
4216
4235
|
#
|
@@ -4244,6 +4263,7 @@ module Aws::MediaLive
|
|
4244
4263
|
:input_attachments,
|
4245
4264
|
:input_specification,
|
4246
4265
|
:log_level,
|
4266
|
+
:maintenance,
|
4247
4267
|
:name,
|
4248
4268
|
:request_id,
|
4249
4269
|
:reserved,
|
@@ -4877,6 +4897,9 @@ module Aws::MediaLive
|
|
4877
4897
|
# The log level the user wants for their channel.
|
4878
4898
|
# @return [String]
|
4879
4899
|
#
|
4900
|
+
# @!attribute [rw] maintenance
|
4901
|
+
# @return [Types::MaintenanceStatus]
|
4902
|
+
#
|
4880
4903
|
# @!attribute [rw] name
|
4881
4904
|
# @return [String]
|
4882
4905
|
#
|
@@ -4912,6 +4935,7 @@ module Aws::MediaLive
|
|
4912
4935
|
:input_attachments,
|
4913
4936
|
:input_specification,
|
4914
4937
|
:log_level,
|
4938
|
+
:maintenance,
|
4915
4939
|
:name,
|
4916
4940
|
:pipeline_details,
|
4917
4941
|
:pipelines_running_count,
|
@@ -5284,6 +5308,9 @@ module Aws::MediaLive
|
|
5284
5308
|
# The log level the user wants for their channel.
|
5285
5309
|
# @return [String]
|
5286
5310
|
#
|
5311
|
+
# @!attribute [rw] maintenance
|
5312
|
+
# @return [Types::MaintenanceStatus]
|
5313
|
+
#
|
5287
5314
|
# @!attribute [rw] name
|
5288
5315
|
# @return [String]
|
5289
5316
|
#
|
@@ -5319,6 +5346,7 @@ module Aws::MediaLive
|
|
5319
5346
|
:input_attachments,
|
5320
5347
|
:input_specification,
|
5321
5348
|
:log_level,
|
5349
|
+
:maintenance,
|
5322
5350
|
:name,
|
5323
5351
|
:pipeline_details,
|
5324
5352
|
:pipelines_running_count,
|
@@ -6433,10 +6461,8 @@ module Aws::MediaLive
|
|
6433
6461
|
# }
|
6434
6462
|
#
|
6435
6463
|
# @!attribute [rw] copyright_holder
|
6436
|
-
#
|
6437
|
-
#
|
6438
|
-
# include the name of the copyright holder in the copyright metadata
|
6439
|
-
# tag in the TTML
|
6464
|
+
# Complete this field if you want to include the name of the copyright
|
6465
|
+
# holder in the copyright tag in the captions metadata.
|
6440
6466
|
# @return [String]
|
6441
6467
|
#
|
6442
6468
|
# @!attribute [rw] fill_line_gap
|
@@ -12373,6 +12399,96 @@ module Aws::MediaLive
|
|
12373
12399
|
include Aws::Structure
|
12374
12400
|
end
|
12375
12401
|
|
12402
|
+
# @note When making an API call, you may pass MaintenanceCreateSettings
|
12403
|
+
# data as a hash:
|
12404
|
+
#
|
12405
|
+
# {
|
12406
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
12407
|
+
# maintenance_start_time: "__stringPattern010920300",
|
12408
|
+
# }
|
12409
|
+
#
|
12410
|
+
# @!attribute [rw] maintenance_day
|
12411
|
+
# Choose one day of the week for maintenance. The chosen day is used
|
12412
|
+
# for all future maintenance windows.
|
12413
|
+
# @return [String]
|
12414
|
+
#
|
12415
|
+
# @!attribute [rw] maintenance_start_time
|
12416
|
+
# Choose the hour that maintenance will start. The chosen time is used
|
12417
|
+
# for all future maintenance windows.
|
12418
|
+
# @return [String]
|
12419
|
+
#
|
12420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MaintenanceCreateSettings AWS API Documentation
|
12421
|
+
#
|
12422
|
+
class MaintenanceCreateSettings < Struct.new(
|
12423
|
+
:maintenance_day,
|
12424
|
+
:maintenance_start_time)
|
12425
|
+
SENSITIVE = []
|
12426
|
+
include Aws::Structure
|
12427
|
+
end
|
12428
|
+
|
12429
|
+
# @!attribute [rw] maintenance_day
|
12430
|
+
# The currently selected maintenance day.
|
12431
|
+
# @return [String]
|
12432
|
+
#
|
12433
|
+
# @!attribute [rw] maintenance_deadline
|
12434
|
+
# Maintenance is required by the displayed date and time. Date and
|
12435
|
+
# time is in ISO.
|
12436
|
+
# @return [String]
|
12437
|
+
#
|
12438
|
+
# @!attribute [rw] maintenance_scheduled_date
|
12439
|
+
# The currently scheduled maintenance date and time. Date and time is
|
12440
|
+
# in ISO.
|
12441
|
+
# @return [String]
|
12442
|
+
#
|
12443
|
+
# @!attribute [rw] maintenance_start_time
|
12444
|
+
# The currently selected maintenance start time. Time is in UTC.
|
12445
|
+
# @return [String]
|
12446
|
+
#
|
12447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MaintenanceStatus AWS API Documentation
|
12448
|
+
#
|
12449
|
+
class MaintenanceStatus < Struct.new(
|
12450
|
+
:maintenance_day,
|
12451
|
+
:maintenance_deadline,
|
12452
|
+
:maintenance_scheduled_date,
|
12453
|
+
:maintenance_start_time)
|
12454
|
+
SENSITIVE = []
|
12455
|
+
include Aws::Structure
|
12456
|
+
end
|
12457
|
+
|
12458
|
+
# @note When making an API call, you may pass MaintenanceUpdateSettings
|
12459
|
+
# data as a hash:
|
12460
|
+
#
|
12461
|
+
# {
|
12462
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
12463
|
+
# maintenance_scheduled_date: "__string",
|
12464
|
+
# maintenance_start_time: "__stringPattern010920300",
|
12465
|
+
# }
|
12466
|
+
#
|
12467
|
+
# @!attribute [rw] maintenance_day
|
12468
|
+
# Choose one day of the week for maintenance. The chosen day is used
|
12469
|
+
# for all future maintenance windows.
|
12470
|
+
# @return [String]
|
12471
|
+
#
|
12472
|
+
# @!attribute [rw] maintenance_scheduled_date
|
12473
|
+
# Choose a specific date for maintenance to occur. The chosen date is
|
12474
|
+
# used for the next maintenance window only.
|
12475
|
+
# @return [String]
|
12476
|
+
#
|
12477
|
+
# @!attribute [rw] maintenance_start_time
|
12478
|
+
# Choose the hour that maintenance will start. The chosen time is used
|
12479
|
+
# for all future maintenance windows.
|
12480
|
+
# @return [String]
|
12481
|
+
#
|
12482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MaintenanceUpdateSettings AWS API Documentation
|
12483
|
+
#
|
12484
|
+
class MaintenanceUpdateSettings < Struct.new(
|
12485
|
+
:maintenance_day,
|
12486
|
+
:maintenance_scheduled_date,
|
12487
|
+
:maintenance_start_time)
|
12488
|
+
SENSITIVE = []
|
12489
|
+
include Aws::Structure
|
12490
|
+
end
|
12491
|
+
|
12376
12492
|
# The settings for a MediaConnect Flow.
|
12377
12493
|
#
|
12378
12494
|
# @!attribute [rw] flow_arn
|
@@ -14537,9 +14653,7 @@ module Aws::MediaLive
|
|
14537
14653
|
# }
|
14538
14654
|
#
|
14539
14655
|
# @!attribute [rw] name
|
14540
|
-
# Custom output group name optionally defined by the user.
|
14541
|
-
# letters, numbers, and the underscore character allowed; only 32
|
14542
|
-
# characters allowed.
|
14656
|
+
# Custom output group name optionally defined by the user.
|
14543
14657
|
# @return [String]
|
14544
14658
|
#
|
14545
14659
|
# @!attribute [rw] output_group_settings
|
@@ -16645,6 +16759,9 @@ module Aws::MediaLive
|
|
16645
16759
|
# The log level the user wants for their channel.
|
16646
16760
|
# @return [String]
|
16647
16761
|
#
|
16762
|
+
# @!attribute [rw] maintenance
|
16763
|
+
# @return [Types::MaintenanceStatus]
|
16764
|
+
#
|
16648
16765
|
# @!attribute [rw] name
|
16649
16766
|
# @return [String]
|
16650
16767
|
#
|
@@ -16680,6 +16797,7 @@ module Aws::MediaLive
|
|
16680
16797
|
:input_attachments,
|
16681
16798
|
:input_specification,
|
16682
16799
|
:log_level,
|
16800
|
+
:maintenance,
|
16683
16801
|
:name,
|
16684
16802
|
:pipeline_details,
|
16685
16803
|
:pipelines_running_count,
|
@@ -16996,6 +17114,9 @@ module Aws::MediaLive
|
|
16996
17114
|
# The log level the user wants for their channel.
|
16997
17115
|
# @return [String]
|
16998
17116
|
#
|
17117
|
+
# @!attribute [rw] maintenance
|
17118
|
+
# @return [Types::MaintenanceStatus]
|
17119
|
+
#
|
16999
17120
|
# @!attribute [rw] name
|
17000
17121
|
# @return [String]
|
17001
17122
|
#
|
@@ -17031,6 +17152,7 @@ module Aws::MediaLive
|
|
17031
17152
|
:input_attachments,
|
17032
17153
|
:input_specification,
|
17033
17154
|
:log_level,
|
17155
|
+
:maintenance,
|
17034
17156
|
:name,
|
17035
17157
|
:pipeline_details,
|
17036
17158
|
:pipelines_running_count,
|
@@ -17392,9 +17514,8 @@ module Aws::MediaLive
|
|
17392
17514
|
# }
|
17393
17515
|
#
|
17394
17516
|
# @!attribute [rw] style_control
|
17395
|
-
#
|
17396
|
-
#
|
17397
|
-
# to the CFF-TT output or TTML output.
|
17517
|
+
# This field is not currently supported and will not affect the output
|
17518
|
+
# styling. Leave the default value.
|
17398
17519
|
# @return [String]
|
17399
17520
|
#
|
17400
17521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TtmlDestinationSettings AWS API Documentation
|
@@ -17676,6 +17797,10 @@ module Aws::MediaLive
|
|
17676
17797
|
# The log level to write to CloudWatch Logs.
|
17677
17798
|
# @return [String]
|
17678
17799
|
#
|
17800
|
+
# @!attribute [rw] maintenance
|
17801
|
+
# Maintenance settings for this channel.
|
17802
|
+
# @return [Types::MaintenanceUpdateSettings]
|
17803
|
+
#
|
17679
17804
|
# @!attribute [rw] name
|
17680
17805
|
# The name of the channel.
|
17681
17806
|
# @return [String]
|
@@ -17695,6 +17820,7 @@ module Aws::MediaLive
|
|
17695
17820
|
:input_attachments,
|
17696
17821
|
:input_specification,
|
17697
17822
|
:log_level,
|
17823
|
+
:maintenance,
|
17698
17824
|
:name,
|
17699
17825
|
:role_arn)
|
17700
17826
|
SENSITIVE = []
|
@@ -18733,6 +18859,11 @@ module Aws::MediaLive
|
|
18733
18859
|
# resolution: "SD", # accepts SD, HD, UHD
|
18734
18860
|
# },
|
18735
18861
|
# log_level: "ERROR", # accepts ERROR, WARNING, INFO, DEBUG, DISABLED
|
18862
|
+
# maintenance: {
|
18863
|
+
# maintenance_day: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
18864
|
+
# maintenance_scheduled_date: "__string",
|
18865
|
+
# maintenance_start_time: "__stringPattern010920300",
|
18866
|
+
# },
|
18736
18867
|
# name: "__string",
|
18737
18868
|
# role_arn: "__string",
|
18738
18869
|
# }
|
@@ -18760,6 +18891,9 @@ module Aws::MediaLive
|
|
18760
18891
|
# The log level the user wants for their channel.
|
18761
18892
|
# @return [String]
|
18762
18893
|
#
|
18894
|
+
# @!attribute [rw] maintenance
|
18895
|
+
# @return [Types::MaintenanceUpdateSettings]
|
18896
|
+
#
|
18763
18897
|
# @!attribute [rw] name
|
18764
18898
|
# @return [String]
|
18765
18899
|
#
|
@@ -18776,6 +18910,7 @@ module Aws::MediaLive
|
|
18776
18910
|
:input_attachments,
|
18777
18911
|
:input_specification,
|
18778
18912
|
:log_level,
|
18913
|
+
:maintenance,
|
18779
18914
|
:name,
|
18780
18915
|
:role_arn)
|
18781
18916
|
SENSITIVE = []
|
data/lib/aws-sdk-medialive.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.86.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|