aws-sdk-medialive 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-medialive.rb +1 -1
- data/lib/aws-sdk-medialive/client.rb +52 -6
- data/lib/aws-sdk-medialive/client_api.rb +13 -0
- data/lib/aws-sdk-medialive/types.rb +106 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41c712ed0eaff72e198dd233ad3ccd4854749db5
|
4
|
+
data.tar.gz: a3bdd66e9d30f8c9550daee90ec64fd7393971a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb46a8cd76410629aebc252eb30cdd3a170150484a75636b8622fce15ac0d8cef353f0aafbb7a137c029f795831ba0a27b7f751fd7e6e2917d1514b90242f43c
|
7
|
+
data.tar.gz: 630c3e904956dcc56dbf8a096a262ff0071cec43e94cd5dd6cca625d1d0bdd2845dd78371704810c56ed6f019e70c89c95a5497073c14483215b5a68401fba4d
|
data/lib/aws-sdk-medialive.rb
CHANGED
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
18
19
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
20
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
21
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -45,6 +46,7 @@ module Aws::MediaLive
|
|
45
46
|
add_plugin(Aws::Plugins::RetryErrors)
|
46
47
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
47
48
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
49
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
48
50
|
add_plugin(Aws::Plugins::ResponsePaging)
|
49
51
|
add_plugin(Aws::Plugins::StubResponses)
|
50
52
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -98,6 +100,10 @@ module Aws::MediaLive
|
|
98
100
|
#
|
99
101
|
# @option options [String] :access_key_id
|
100
102
|
#
|
103
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
104
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
105
|
+
# the background every 60 secs (default). Defaults to `false`.
|
106
|
+
#
|
101
107
|
# @option options [Boolean] :client_side_monitoring (false)
|
102
108
|
# When `true`, client-side metrics will be collected for all API requests from
|
103
109
|
# this client.
|
@@ -123,6 +129,21 @@ module Aws::MediaLive
|
|
123
129
|
# option. You should only configure an `:endpoint` when connecting
|
124
130
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
125
131
|
#
|
132
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
133
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
134
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
135
|
+
#
|
136
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
137
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
138
|
+
#
|
139
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
140
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
141
|
+
# Use this option to config the time interval in seconds for making
|
142
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
143
|
+
#
|
144
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
145
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
146
|
+
#
|
126
147
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
127
148
|
# The log formatter.
|
128
149
|
#
|
@@ -202,6 +223,9 @@ module Aws::MediaLive
|
|
202
223
|
# {
|
203
224
|
# action_name: "__string", # required
|
204
225
|
# schedule_action_settings: { # required
|
226
|
+
# input_switch_settings: {
|
227
|
+
# input_attachment_name_reference: "__string", # required
|
228
|
+
# },
|
205
229
|
# scte_35_return_to_network_settings: {
|
206
230
|
# splice_event_id: 1, # required
|
207
231
|
# },
|
@@ -260,6 +284,10 @@ module Aws::MediaLive
|
|
260
284
|
# fixed_mode_schedule_action_start_settings: {
|
261
285
|
# time: "__string", # required
|
262
286
|
# },
|
287
|
+
# follow_mode_schedule_action_start_settings: {
|
288
|
+
# follow_point: "END", # required, accepts END, START
|
289
|
+
# reference_action_name: "__string", # required
|
290
|
+
# },
|
263
291
|
# },
|
264
292
|
# },
|
265
293
|
# ],
|
@@ -273,6 +301,7 @@ module Aws::MediaLive
|
|
273
301
|
#
|
274
302
|
# resp.creates.schedule_actions #=> Array
|
275
303
|
# resp.creates.schedule_actions[0].action_name #=> String
|
304
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.input_switch_settings.input_attachment_name_reference #=> String
|
276
305
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
277
306
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
278
307
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -306,8 +335,11 @@ module Aws::MediaLive
|
|
306
335
|
# resp.creates.schedule_actions[0].schedule_action_settings.static_image_deactivate_settings.fade_out #=> Integer
|
307
336
|
# resp.creates.schedule_actions[0].schedule_action_settings.static_image_deactivate_settings.layer #=> Integer
|
308
337
|
# resp.creates.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
|
338
|
+
# resp.creates.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
|
339
|
+
# resp.creates.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
|
309
340
|
# resp.deletes.schedule_actions #=> Array
|
310
341
|
# resp.deletes.schedule_actions[0].action_name #=> String
|
342
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.input_switch_settings.input_attachment_name_reference #=> String
|
311
343
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
312
344
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
313
345
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -341,6 +373,8 @@ module Aws::MediaLive
|
|
341
373
|
# resp.deletes.schedule_actions[0].schedule_action_settings.static_image_deactivate_settings.fade_out #=> Integer
|
342
374
|
# resp.deletes.schedule_actions[0].schedule_action_settings.static_image_deactivate_settings.layer #=> Integer
|
343
375
|
# resp.deletes.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
|
376
|
+
# resp.deletes.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
|
377
|
+
# resp.deletes.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
|
344
378
|
#
|
345
379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BatchUpdateSchedule AWS API Documentation
|
346
380
|
#
|
@@ -991,6 +1025,7 @@ module Aws::MediaLive
|
|
991
1025
|
# },
|
992
1026
|
# input_attachments: [
|
993
1027
|
# {
|
1028
|
+
# input_attachment_name: "__string",
|
994
1029
|
# input_id: "__string",
|
995
1030
|
# input_settings: {
|
996
1031
|
# audio_selectors: [
|
@@ -1505,6 +1540,7 @@ module Aws::MediaLive
|
|
1505
1540
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
1506
1541
|
# resp.channel.id #=> String
|
1507
1542
|
# resp.channel.input_attachments #=> Array
|
1543
|
+
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
1508
1544
|
# resp.channel.input_attachments[0].input_id #=> String
|
1509
1545
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
1510
1546
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -1593,7 +1629,7 @@ module Aws::MediaLive
|
|
1593
1629
|
# username: "__string",
|
1594
1630
|
# },
|
1595
1631
|
# ],
|
1596
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL
|
1632
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE
|
1597
1633
|
# })
|
1598
1634
|
#
|
1599
1635
|
# @example Response structure
|
@@ -1614,7 +1650,7 @@ module Aws::MediaLive
|
|
1614
1650
|
# resp.input.sources[0].url #=> String
|
1615
1651
|
# resp.input.sources[0].username #=> String
|
1616
1652
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
1617
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL"
|
1653
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE"
|
1618
1654
|
#
|
1619
1655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
1620
1656
|
#
|
@@ -2115,6 +2151,7 @@ module Aws::MediaLive
|
|
2115
2151
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
2116
2152
|
# resp.id #=> String
|
2117
2153
|
# resp.input_attachments #=> Array
|
2154
|
+
# resp.input_attachments[0].input_attachment_name #=> String
|
2118
2155
|
# resp.input_attachments[0].input_id #=> String
|
2119
2156
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
2120
2157
|
# resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -2725,6 +2762,7 @@ module Aws::MediaLive
|
|
2725
2762
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
2726
2763
|
# resp.id #=> String
|
2727
2764
|
# resp.input_attachments #=> Array
|
2765
|
+
# resp.input_attachments[0].input_attachment_name #=> String
|
2728
2766
|
# resp.input_attachments[0].input_id #=> String
|
2729
2767
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
2730
2768
|
# resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -2815,7 +2853,7 @@ module Aws::MediaLive
|
|
2815
2853
|
# resp.sources[0].url #=> String
|
2816
2854
|
# resp.sources[0].username #=> String
|
2817
2855
|
# resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
2818
|
-
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL"
|
2856
|
+
# resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE"
|
2819
2857
|
#
|
2820
2858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInput AWS API Documentation
|
2821
2859
|
#
|
@@ -3007,6 +3045,7 @@ module Aws::MediaLive
|
|
3007
3045
|
# resp.next_token #=> String
|
3008
3046
|
# resp.schedule_actions #=> Array
|
3009
3047
|
# resp.schedule_actions[0].action_name #=> String
|
3048
|
+
# resp.schedule_actions[0].schedule_action_settings.input_switch_settings.input_attachment_name_reference #=> String
|
3010
3049
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
3011
3050
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
3012
3051
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -3040,6 +3079,8 @@ module Aws::MediaLive
|
|
3040
3079
|
# resp.schedule_actions[0].schedule_action_settings.static_image_deactivate_settings.fade_out #=> Integer
|
3041
3080
|
# resp.schedule_actions[0].schedule_action_settings.static_image_deactivate_settings.layer #=> Integer
|
3042
3081
|
# resp.schedule_actions[0].schedule_action_start_settings.fixed_mode_schedule_action_start_settings.time #=> String
|
3082
|
+
# resp.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.follow_point #=> String, one of "END", "START"
|
3083
|
+
# resp.schedule_actions[0].schedule_action_start_settings.follow_mode_schedule_action_start_settings.reference_action_name #=> String
|
3043
3084
|
#
|
3044
3085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSchedule AWS API Documentation
|
3045
3086
|
#
|
@@ -3083,6 +3124,7 @@ module Aws::MediaLive
|
|
3083
3124
|
# resp.channels[0].egress_endpoints[0].source_ip #=> String
|
3084
3125
|
# resp.channels[0].id #=> String
|
3085
3126
|
# resp.channels[0].input_attachments #=> Array
|
3127
|
+
# resp.channels[0].input_attachments[0].input_attachment_name #=> String
|
3086
3128
|
# resp.channels[0].input_attachments[0].input_id #=> String
|
3087
3129
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors #=> Array
|
3088
3130
|
# resp.channels[0].input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -3210,7 +3252,7 @@ module Aws::MediaLive
|
|
3210
3252
|
# resp.inputs[0].sources[0].url #=> String
|
3211
3253
|
# resp.inputs[0].sources[0].username #=> String
|
3212
3254
|
# resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
3213
|
-
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL"
|
3255
|
+
# resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE"
|
3214
3256
|
# resp.next_token #=> String
|
3215
3257
|
#
|
3216
3258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
|
@@ -3887,6 +3929,7 @@ module Aws::MediaLive
|
|
3887
3929
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
3888
3930
|
# resp.id #=> String
|
3889
3931
|
# resp.input_attachments #=> Array
|
3932
|
+
# resp.input_attachments[0].input_attachment_name #=> String
|
3890
3933
|
# resp.input_attachments[0].input_id #=> String
|
3891
3934
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
3892
3935
|
# resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -4390,6 +4433,7 @@ module Aws::MediaLive
|
|
4390
4433
|
# resp.encoder_settings.video_descriptions[0].width #=> Integer
|
4391
4434
|
# resp.id #=> String
|
4392
4435
|
# resp.input_attachments #=> Array
|
4436
|
+
# resp.input_attachments[0].input_attachment_name #=> String
|
4393
4437
|
# resp.input_attachments[0].input_id #=> String
|
4394
4438
|
# resp.input_attachments[0].input_settings.audio_selectors #=> Array
|
4395
4439
|
# resp.input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -5077,6 +5121,7 @@ module Aws::MediaLive
|
|
5077
5121
|
# },
|
5078
5122
|
# input_attachments: [
|
5079
5123
|
# {
|
5124
|
+
# input_attachment_name: "__string",
|
5080
5125
|
# input_id: "__string",
|
5081
5126
|
# input_settings: {
|
5082
5127
|
# audio_selectors: [
|
@@ -5589,6 +5634,7 @@ module Aws::MediaLive
|
|
5589
5634
|
# resp.channel.encoder_settings.video_descriptions[0].width #=> Integer
|
5590
5635
|
# resp.channel.id #=> String
|
5591
5636
|
# resp.channel.input_attachments #=> Array
|
5637
|
+
# resp.channel.input_attachments[0].input_attachment_name #=> String
|
5592
5638
|
# resp.channel.input_attachments[0].input_id #=> String
|
5593
5639
|
# resp.channel.input_attachments[0].input_settings.audio_selectors #=> Array
|
5594
5640
|
# resp.channel.input_attachments[0].input_settings.audio_selectors[0].name #=> String
|
@@ -5693,7 +5739,7 @@ module Aws::MediaLive
|
|
5693
5739
|
# resp.input.sources[0].url #=> String
|
5694
5740
|
# resp.input.sources[0].username #=> String
|
5695
5741
|
# resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
|
5696
|
-
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL"
|
5742
|
+
# resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE"
|
5697
5743
|
#
|
5698
5744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
5699
5745
|
#
|
@@ -5757,7 +5803,7 @@ module Aws::MediaLive
|
|
5757
5803
|
params: params,
|
5758
5804
|
config: config)
|
5759
5805
|
context[:gem_name] = 'aws-sdk-medialive'
|
5760
|
-
context[:gem_version] = '1.
|
5806
|
+
context[:gem_version] = '1.15.0'
|
5761
5807
|
Seahorse::Client::Request.new(handlers, context)
|
5762
5808
|
end
|
5763
5809
|
|
@@ -152,6 +152,8 @@ module Aws::MediaLive
|
|
152
152
|
FecOutputSettings = Shapes::StructureShape.new(name: 'FecOutputSettings')
|
153
153
|
FixedAfd = Shapes::StringShape.new(name: 'FixedAfd')
|
154
154
|
FixedModeScheduleActionStartSettings = Shapes::StructureShape.new(name: 'FixedModeScheduleActionStartSettings')
|
155
|
+
FollowModeScheduleActionStartSettings = Shapes::StructureShape.new(name: 'FollowModeScheduleActionStartSettings')
|
156
|
+
FollowPoint = Shapes::StringShape.new(name: 'FollowPoint')
|
155
157
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
156
158
|
GatewayTimeoutException = Shapes::StructureShape.new(name: 'GatewayTimeoutException')
|
157
159
|
GlobalConfiguration = Shapes::StructureShape.new(name: 'GlobalConfiguration')
|
@@ -232,6 +234,7 @@ module Aws::MediaLive
|
|
232
234
|
InputSourceRequest = Shapes::StructureShape.new(name: 'InputSourceRequest')
|
233
235
|
InputSpecification = Shapes::StructureShape.new(name: 'InputSpecification')
|
234
236
|
InputState = Shapes::StringShape.new(name: 'InputState')
|
237
|
+
InputSwitchScheduleActionSettings = Shapes::StructureShape.new(name: 'InputSwitchScheduleActionSettings')
|
235
238
|
InputType = Shapes::StringShape.new(name: 'InputType')
|
236
239
|
InputWhitelistRule = Shapes::StructureShape.new(name: 'InputWhitelistRule')
|
237
240
|
InputWhitelistRuleCidr = Shapes::StructureShape.new(name: 'InputWhitelistRuleCidr')
|
@@ -998,6 +1001,10 @@ module Aws::MediaLive
|
|
998
1001
|
FixedModeScheduleActionStartSettings.add_member(:time, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "time"))
|
999
1002
|
FixedModeScheduleActionStartSettings.struct_class = Types::FixedModeScheduleActionStartSettings
|
1000
1003
|
|
1004
|
+
FollowModeScheduleActionStartSettings.add_member(:follow_point, Shapes::ShapeRef.new(shape: FollowPoint, required: true, location_name: "followPoint"))
|
1005
|
+
FollowModeScheduleActionStartSettings.add_member(:reference_action_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "referenceActionName"))
|
1006
|
+
FollowModeScheduleActionStartSettings.struct_class = Types::FollowModeScheduleActionStartSettings
|
1007
|
+
|
1001
1008
|
GlobalConfiguration.add_member(:initial_audio_gain, Shapes::ShapeRef.new(shape: __integerMinNegative60Max60, location_name: "initialAudioGain"))
|
1002
1009
|
GlobalConfiguration.add_member(:input_end_action, Shapes::ShapeRef.new(shape: GlobalConfigurationInputEndAction, location_name: "inputEndAction"))
|
1003
1010
|
GlobalConfiguration.add_member(:input_loss_behavior, Shapes::ShapeRef.new(shape: InputLossBehavior, location_name: "inputLossBehavior"))
|
@@ -1141,6 +1148,7 @@ module Aws::MediaLive
|
|
1141
1148
|
Input.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
|
1142
1149
|
Input.struct_class = Types::Input
|
1143
1150
|
|
1151
|
+
InputAttachment.add_member(:input_attachment_name, Shapes::ShapeRef.new(shape: __string, location_name: "inputAttachmentName"))
|
1144
1152
|
InputAttachment.add_member(:input_id, Shapes::ShapeRef.new(shape: __string, location_name: "inputId"))
|
1145
1153
|
InputAttachment.add_member(:input_settings, Shapes::ShapeRef.new(shape: InputSettings, location_name: "inputSettings"))
|
1146
1154
|
InputAttachment.struct_class = Types::InputAttachment
|
@@ -1205,6 +1213,9 @@ module Aws::MediaLive
|
|
1205
1213
|
InputSpecification.add_member(:resolution, Shapes::ShapeRef.new(shape: InputResolution, location_name: "resolution"))
|
1206
1214
|
InputSpecification.struct_class = Types::InputSpecification
|
1207
1215
|
|
1216
|
+
InputSwitchScheduleActionSettings.add_member(:input_attachment_name_reference, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "inputAttachmentNameReference"))
|
1217
|
+
InputSwitchScheduleActionSettings.struct_class = Types::InputSwitchScheduleActionSettings
|
1218
|
+
|
1208
1219
|
InputWhitelistRule.add_member(:cidr, Shapes::ShapeRef.new(shape: __string, location_name: "cidr"))
|
1209
1220
|
InputWhitelistRule.struct_class = Types::InputWhitelistRule
|
1210
1221
|
|
@@ -1529,6 +1540,7 @@ module Aws::MediaLive
|
|
1529
1540
|
ScheduleAction.add_member(:schedule_action_start_settings, Shapes::ShapeRef.new(shape: ScheduleActionStartSettings, required: true, location_name: "scheduleActionStartSettings"))
|
1530
1541
|
ScheduleAction.struct_class = Types::ScheduleAction
|
1531
1542
|
|
1543
|
+
ScheduleActionSettings.add_member(:input_switch_settings, Shapes::ShapeRef.new(shape: InputSwitchScheduleActionSettings, location_name: "inputSwitchSettings"))
|
1532
1544
|
ScheduleActionSettings.add_member(:scte_35_return_to_network_settings, Shapes::ShapeRef.new(shape: Scte35ReturnToNetworkScheduleActionSettings, location_name: "scte35ReturnToNetworkSettings"))
|
1533
1545
|
ScheduleActionSettings.add_member(:scte_35_splice_insert_settings, Shapes::ShapeRef.new(shape: Scte35SpliceInsertScheduleActionSettings, location_name: "scte35SpliceInsertSettings"))
|
1534
1546
|
ScheduleActionSettings.add_member(:scte_35_time_signal_settings, Shapes::ShapeRef.new(shape: Scte35TimeSignalScheduleActionSettings, location_name: "scte35TimeSignalSettings"))
|
@@ -1537,6 +1549,7 @@ module Aws::MediaLive
|
|
1537
1549
|
ScheduleActionSettings.struct_class = Types::ScheduleActionSettings
|
1538
1550
|
|
1539
1551
|
ScheduleActionStartSettings.add_member(:fixed_mode_schedule_action_start_settings, Shapes::ShapeRef.new(shape: FixedModeScheduleActionStartSettings, location_name: "fixedModeScheduleActionStartSettings"))
|
1552
|
+
ScheduleActionStartSettings.add_member(:follow_mode_schedule_action_start_settings, Shapes::ShapeRef.new(shape: FollowModeScheduleActionStartSettings, location_name: "followModeScheduleActionStartSettings"))
|
1540
1553
|
ScheduleActionStartSettings.struct_class = Types::ScheduleActionStartSettings
|
1541
1554
|
|
1542
1555
|
ScheduleDescribeResultModel.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
@@ -935,6 +935,9 @@ module Aws::MediaLive
|
|
935
935
|
# {
|
936
936
|
# action_name: "__string", # required
|
937
937
|
# schedule_action_settings: { # required
|
938
|
+
# input_switch_settings: {
|
939
|
+
# input_attachment_name_reference: "__string", # required
|
940
|
+
# },
|
938
941
|
# scte_35_return_to_network_settings: {
|
939
942
|
# splice_event_id: 1, # required
|
940
943
|
# },
|
@@ -993,6 +996,10 @@ module Aws::MediaLive
|
|
993
996
|
# fixed_mode_schedule_action_start_settings: {
|
994
997
|
# time: "__string", # required
|
995
998
|
# },
|
999
|
+
# follow_mode_schedule_action_start_settings: {
|
1000
|
+
# follow_point: "END", # required, accepts END, START
|
1001
|
+
# reference_action_name: "__string", # required
|
1002
|
+
# },
|
996
1003
|
# },
|
997
1004
|
# },
|
998
1005
|
# ],
|
@@ -1069,6 +1076,9 @@ module Aws::MediaLive
|
|
1069
1076
|
# {
|
1070
1077
|
# action_name: "__string", # required
|
1071
1078
|
# schedule_action_settings: { # required
|
1079
|
+
# input_switch_settings: {
|
1080
|
+
# input_attachment_name_reference: "__string", # required
|
1081
|
+
# },
|
1072
1082
|
# scte_35_return_to_network_settings: {
|
1073
1083
|
# splice_event_id: 1, # required
|
1074
1084
|
# },
|
@@ -1127,6 +1137,10 @@ module Aws::MediaLive
|
|
1127
1137
|
# fixed_mode_schedule_action_start_settings: {
|
1128
1138
|
# time: "__string", # required
|
1129
1139
|
# },
|
1140
|
+
# follow_mode_schedule_action_start_settings: {
|
1141
|
+
# follow_point: "END", # required, accepts END, START
|
1142
|
+
# reference_action_name: "__string", # required
|
1143
|
+
# },
|
1130
1144
|
# },
|
1131
1145
|
# },
|
1132
1146
|
# ],
|
@@ -2635,6 +2649,7 @@ module Aws::MediaLive
|
|
2635
2649
|
# },
|
2636
2650
|
# input_attachments: [
|
2637
2651
|
# {
|
2652
|
+
# input_attachment_name: "__string",
|
2638
2653
|
# input_id: "__string",
|
2639
2654
|
# input_settings: {
|
2640
2655
|
# audio_selectors: [
|
@@ -2843,7 +2858,7 @@ module Aws::MediaLive
|
|
2843
2858
|
# username: "__string",
|
2844
2859
|
# },
|
2845
2860
|
# ],
|
2846
|
-
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL
|
2861
|
+
# type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE
|
2847
2862
|
# }
|
2848
2863
|
#
|
2849
2864
|
# @!attribute [rw] destinations
|
@@ -4748,6 +4763,33 @@ module Aws::MediaLive
|
|
4748
4763
|
include Aws::Structure
|
4749
4764
|
end
|
4750
4765
|
|
4766
|
+
# Settings to specify if an action follows another.
|
4767
|
+
#
|
4768
|
+
# @note When making an API call, you may pass FollowModeScheduleActionStartSettings
|
4769
|
+
# data as a hash:
|
4770
|
+
#
|
4771
|
+
# {
|
4772
|
+
# follow_point: "END", # required, accepts END, START
|
4773
|
+
# reference_action_name: "__string", # required
|
4774
|
+
# }
|
4775
|
+
#
|
4776
|
+
# @!attribute [rw] follow_point
|
4777
|
+
# Identifies whether this action starts relative to the start or
|
4778
|
+
# relative to the end of the reference action.
|
4779
|
+
# @return [String]
|
4780
|
+
#
|
4781
|
+
# @!attribute [rw] reference_action_name
|
4782
|
+
# The action name of another action that this one refers to.
|
4783
|
+
# @return [String]
|
4784
|
+
#
|
4785
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/FollowModeScheduleActionStartSettings AWS API Documentation
|
4786
|
+
#
|
4787
|
+
class FollowModeScheduleActionStartSettings < Struct.new(
|
4788
|
+
:follow_point,
|
4789
|
+
:reference_action_name)
|
4790
|
+
include Aws::Structure
|
4791
|
+
end
|
4792
|
+
|
4751
4793
|
# @note When making an API call, you may pass GlobalConfiguration
|
4752
4794
|
# data as a hash:
|
4753
4795
|
#
|
@@ -4774,10 +4816,13 @@ module Aws::MediaLive
|
|
4774
4816
|
# @return [Integer]
|
4775
4817
|
#
|
4776
4818
|
# @!attribute [rw] input_end_action
|
4777
|
-
# Indicates the action to take when the input completes (e.g.
|
4778
|
-
# end-of-file).
|
4779
|
-
#
|
4780
|
-
#
|
4819
|
+
# Indicates the action to take when the current input completes (e.g.
|
4820
|
+
# end-of-file). When switchAndLoopInputs is configured the encoder
|
4821
|
+
# will restart at the beginning of the first input. When "none" is
|
4822
|
+
# configured the encoder will transcode either black, a solid color,
|
4823
|
+
# or a user specified slate images per the "Input Loss Behavior"
|
4824
|
+
# configuration until the next input switch occurs (which is
|
4825
|
+
# controlled through the Channel Schedule API).
|
4781
4826
|
# @return [String]
|
4782
4827
|
#
|
4783
4828
|
# @!attribute [rw] input_loss_behavior
|
@@ -5883,6 +5928,7 @@ module Aws::MediaLive
|
|
5883
5928
|
# data as a hash:
|
5884
5929
|
#
|
5885
5930
|
# {
|
5931
|
+
# input_attachment_name: "__string",
|
5886
5932
|
# input_id: "__string",
|
5887
5933
|
# input_settings: {
|
5888
5934
|
# audio_selectors: [
|
@@ -5957,6 +6003,11 @@ module Aws::MediaLive
|
|
5957
6003
|
# },
|
5958
6004
|
# }
|
5959
6005
|
#
|
6006
|
+
# @!attribute [rw] input_attachment_name
|
6007
|
+
# User-specified name for the attachment. This is required if the user
|
6008
|
+
# wants to use this input in an input switch action.
|
6009
|
+
# @return [String]
|
6010
|
+
#
|
5960
6011
|
# @!attribute [rw] input_id
|
5961
6012
|
# The ID of the input
|
5962
6013
|
# @return [String]
|
@@ -5968,6 +6019,7 @@ module Aws::MediaLive
|
|
5968
6019
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputAttachment AWS API Documentation
|
5969
6020
|
#
|
5970
6021
|
class InputAttachment < Struct.new(
|
6022
|
+
:input_attachment_name,
|
5971
6023
|
:input_id,
|
5972
6024
|
:input_settings)
|
5973
6025
|
include Aws::Structure
|
@@ -6407,6 +6459,27 @@ module Aws::MediaLive
|
|
6407
6459
|
include Aws::Structure
|
6408
6460
|
end
|
6409
6461
|
|
6462
|
+
# Settings for the action to switch an input.
|
6463
|
+
#
|
6464
|
+
# @note When making an API call, you may pass InputSwitchScheduleActionSettings
|
6465
|
+
# data as a hash:
|
6466
|
+
#
|
6467
|
+
# {
|
6468
|
+
# input_attachment_name_reference: "__string", # required
|
6469
|
+
# }
|
6470
|
+
#
|
6471
|
+
# @!attribute [rw] input_attachment_name_reference
|
6472
|
+
# The name of the input attachment that should be switched to by this
|
6473
|
+
# action.
|
6474
|
+
# @return [String]
|
6475
|
+
#
|
6476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputSwitchScheduleActionSettings AWS API Documentation
|
6477
|
+
#
|
6478
|
+
class InputSwitchScheduleActionSettings < Struct.new(
|
6479
|
+
:input_attachment_name_reference)
|
6480
|
+
include Aws::Structure
|
6481
|
+
end
|
6482
|
+
|
6410
6483
|
# Whitelist rule
|
6411
6484
|
#
|
6412
6485
|
# @!attribute [rw] cidr
|
@@ -9132,6 +9205,9 @@ module Aws::MediaLive
|
|
9132
9205
|
# {
|
9133
9206
|
# action_name: "__string", # required
|
9134
9207
|
# schedule_action_settings: { # required
|
9208
|
+
# input_switch_settings: {
|
9209
|
+
# input_attachment_name_reference: "__string", # required
|
9210
|
+
# },
|
9135
9211
|
# scte_35_return_to_network_settings: {
|
9136
9212
|
# splice_event_id: 1, # required
|
9137
9213
|
# },
|
@@ -9190,6 +9266,10 @@ module Aws::MediaLive
|
|
9190
9266
|
# fixed_mode_schedule_action_start_settings: {
|
9191
9267
|
# time: "__string", # required
|
9192
9268
|
# },
|
9269
|
+
# follow_mode_schedule_action_start_settings: {
|
9270
|
+
# follow_point: "END", # required, accepts END, START
|
9271
|
+
# reference_action_name: "__string", # required
|
9272
|
+
# },
|
9193
9273
|
# },
|
9194
9274
|
# }
|
9195
9275
|
#
|
@@ -9225,6 +9305,9 @@ module Aws::MediaLive
|
|
9225
9305
|
# data as a hash:
|
9226
9306
|
#
|
9227
9307
|
# {
|
9308
|
+
# input_switch_settings: {
|
9309
|
+
# input_attachment_name_reference: "__string", # required
|
9310
|
+
# },
|
9228
9311
|
# scte_35_return_to_network_settings: {
|
9229
9312
|
# splice_event_id: 1, # required
|
9230
9313
|
# },
|
@@ -9280,6 +9363,10 @@ module Aws::MediaLive
|
|
9280
9363
|
# },
|
9281
9364
|
# }
|
9282
9365
|
#
|
9366
|
+
# @!attribute [rw] input_switch_settings
|
9367
|
+
# Settings to switch an input
|
9368
|
+
# @return [Types::InputSwitchScheduleActionSettings]
|
9369
|
+
#
|
9283
9370
|
# @!attribute [rw] scte_35_return_to_network_settings
|
9284
9371
|
# Settings for SCTE-35 return\_to\_network message
|
9285
9372
|
# @return [Types::Scte35ReturnToNetworkScheduleActionSettings]
|
@@ -9303,6 +9390,7 @@ module Aws::MediaLive
|
|
9303
9390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleActionSettings AWS API Documentation
|
9304
9391
|
#
|
9305
9392
|
class ScheduleActionSettings < Struct.new(
|
9393
|
+
:input_switch_settings,
|
9306
9394
|
:scte_35_return_to_network_settings,
|
9307
9395
|
:scte_35_splice_insert_settings,
|
9308
9396
|
:scte_35_time_signal_settings,
|
@@ -9320,16 +9408,25 @@ module Aws::MediaLive
|
|
9320
9408
|
# fixed_mode_schedule_action_start_settings: {
|
9321
9409
|
# time: "__string", # required
|
9322
9410
|
# },
|
9411
|
+
# follow_mode_schedule_action_start_settings: {
|
9412
|
+
# follow_point: "END", # required, accepts END, START
|
9413
|
+
# reference_action_name: "__string", # required
|
9414
|
+
# },
|
9323
9415
|
# }
|
9324
9416
|
#
|
9325
9417
|
# @!attribute [rw] fixed_mode_schedule_action_start_settings
|
9326
9418
|
# Holds the start time for the action.
|
9327
9419
|
# @return [Types::FixedModeScheduleActionStartSettings]
|
9328
9420
|
#
|
9421
|
+
# @!attribute [rw] follow_mode_schedule_action_start_settings
|
9422
|
+
# Specifies an action to follow for scheduling this action.
|
9423
|
+
# @return [Types::FollowModeScheduleActionStartSettings]
|
9424
|
+
#
|
9329
9425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ScheduleActionStartSettings AWS API Documentation
|
9330
9426
|
#
|
9331
9427
|
class ScheduleActionStartSettings < Struct.new(
|
9332
|
-
:fixed_mode_schedule_action_start_settings
|
9428
|
+
:fixed_mode_schedule_action_start_settings,
|
9429
|
+
:follow_mode_schedule_action_start_settings)
|
9333
9430
|
include Aws::Structure
|
9334
9431
|
end
|
9335
9432
|
|
@@ -10430,8 +10527,8 @@ module Aws::MediaLive
|
|
10430
10527
|
# UDP output buffering in milliseconds. Larger values increase latency
|
10431
10528
|
# through the transcoder but simultaneously assist the transcoder in
|
10432
10529
|
# maintaining a constant, low-jitter UDP/RTP output while
|
10433
|
-
# accommodating clock recovery, input
|
10434
|
-
# etc.
|
10530
|
+
# accommodating clock recovery, input switching, input disruptions,
|
10531
|
+
# picture reordering, etc.
|
10435
10532
|
# @return [Integer]
|
10436
10533
|
#
|
10437
10534
|
# @!attribute [rw] container_settings
|
@@ -11116,6 +11213,7 @@ module Aws::MediaLive
|
|
11116
11213
|
# },
|
11117
11214
|
# input_attachments: [
|
11118
11215
|
# {
|
11216
|
+
# input_attachment_name: "__string",
|
11119
11217
|
# input_id: "__string",
|
11120
11218
|
# input_settings: {
|
11121
11219
|
# audio_selectors: [
|
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.15.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: 2018-
|
11
|
+
date: 2018-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|