aws-sdk-medialive 1.89.0 → 1.90.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medialive/client.rb +69 -1
- data/lib/aws-sdk-medialive/client_api.rb +17 -0
- data/lib/aws-sdk-medialive/types.rb +155 -0
- data/lib/aws-sdk-medialive.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a734892656e24ce3b66076838b233020608351cb213206352a847eecb59b0cb1
|
4
|
+
data.tar.gz: 14a78f071442a636bef9b0e4e855a0c708823fea939b0108fda93b0cb99c748c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb727e44fb68d5215c106b2c12f2b8b16c7942ae5381029a439b2422f1ebf8beeb4ecf0472430f8c4fe3b63644f08de0cc609ed613e16c4848ac6874ee0e22d9
|
7
|
+
data.tar.gz: 312a7316361a036be3a4fb329eb7bc9b56b1e321101dc65e086f0c1902c245d1bc344693fa5e6c1bff988f666330bfcf30f04e1a50dd3c77e26397b9288c7cce
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.90.0 (2022-10-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Elemental MediaLive now supports forwarding SCTE-35 messages through the Event Signaling and Management (ESAM) API, and can read those SCTE-35 messages from an inactive source.
|
8
|
+
|
4
9
|
1.89.0 (2022-09-08)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.90.0
|
@@ -569,6 +569,10 @@ module Aws::MediaLive
|
|
569
569
|
# },
|
570
570
|
# ],
|
571
571
|
# },
|
572
|
+
# scte_35_input_settings: {
|
573
|
+
# input_attachment_name_reference: "__string",
|
574
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
575
|
+
# },
|
572
576
|
# scte_35_return_to_network_settings: {
|
573
577
|
# splice_event_id: 1, # required
|
574
578
|
# },
|
@@ -668,6 +672,8 @@ module Aws::MediaLive
|
|
668
672
|
# resp.creates.schedule_actions[0].schedule_action_settings.motion_graphics_image_activate_settings.username #=> String
|
669
673
|
# resp.creates.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines #=> Array
|
670
674
|
# resp.creates.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines[0].pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
675
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_input_settings.input_attachment_name_reference #=> String
|
676
|
+
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_input_settings.mode #=> String, one of "FIXED", "FOLLOW_ACTIVE"
|
671
677
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
672
678
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
673
679
|
# resp.creates.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -727,6 +733,8 @@ module Aws::MediaLive
|
|
727
733
|
# resp.deletes.schedule_actions[0].schedule_action_settings.motion_graphics_image_activate_settings.username #=> String
|
728
734
|
# resp.deletes.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines #=> Array
|
729
735
|
# resp.deletes.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines[0].pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
736
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_input_settings.input_attachment_name_reference #=> String
|
737
|
+
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_input_settings.mode #=> String, one of "FIXED", "FOLLOW_ACTIVE"
|
730
738
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
731
739
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
732
740
|
# resp.deletes.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -1010,6 +1018,14 @@ module Aws::MediaLive
|
|
1010
1018
|
# },
|
1011
1019
|
# avail_configuration: {
|
1012
1020
|
# avail_settings: {
|
1021
|
+
# esam: {
|
1022
|
+
# acquisition_point_id: "__stringMax256", # required
|
1023
|
+
# ad_avail_offset: 1,
|
1024
|
+
# password: "__string",
|
1025
|
+
# pois_endpoint: "__string", # required
|
1026
|
+
# username: "__string",
|
1027
|
+
# zone_identity: "__stringMax256",
|
1028
|
+
# },
|
1013
1029
|
# scte_35_splice_insert: {
|
1014
1030
|
# ad_avail_offset: 1,
|
1015
1031
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -1937,6 +1953,12 @@ module Aws::MediaLive
|
|
1937
1953
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
1938
1954
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
1939
1955
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
1956
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
1957
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
1958
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
1959
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
1960
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
1961
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
1940
1962
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
1941
1963
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
1942
1964
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -3007,6 +3029,12 @@ module Aws::MediaLive
|
|
3007
3029
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
3008
3030
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
3009
3031
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
3032
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
3033
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
3034
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
3035
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
3036
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
3037
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
3010
3038
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
3011
3039
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
3012
3040
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -3950,6 +3978,12 @@ module Aws::MediaLive
|
|
3950
3978
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
3951
3979
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
3952
3980
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
3981
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
3982
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
3983
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
3984
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
3985
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
3986
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
3953
3987
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
3954
3988
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
3955
3989
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -5024,6 +5058,8 @@ module Aws::MediaLive
|
|
5024
5058
|
# resp.schedule_actions[0].schedule_action_settings.motion_graphics_image_activate_settings.username #=> String
|
5025
5059
|
# resp.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines #=> Array
|
5026
5060
|
# resp.schedule_actions[0].schedule_action_settings.pause_state_settings.pipelines[0].pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
5061
|
+
# resp.schedule_actions[0].schedule_action_settings.scte_35_input_settings.input_attachment_name_reference #=> String
|
5062
|
+
# resp.schedule_actions[0].schedule_action_settings.scte_35_input_settings.mode #=> String, one of "FIXED", "FOLLOW_ACTIVE"
|
5027
5063
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_return_to_network_settings.splice_event_id #=> Integer
|
5028
5064
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.duration #=> Integer
|
5029
5065
|
# resp.schedule_actions[0].schedule_action_settings.scte_35_splice_insert_settings.splice_event_id #=> Integer
|
@@ -5951,6 +5987,12 @@ module Aws::MediaLive
|
|
5951
5987
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
5952
5988
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
5953
5989
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
5990
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
5991
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
5992
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
5993
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
5994
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
5995
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
5954
5996
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
5955
5997
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
5956
5998
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -6702,6 +6744,12 @@ module Aws::MediaLive
|
|
6702
6744
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
6703
6745
|
# resp.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
6704
6746
|
# resp.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
6747
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
6748
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
6749
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
6750
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
6751
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
6752
|
+
# resp.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
6705
6753
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
6706
6754
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
6707
6755
|
# resp.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -7507,6 +7555,14 @@ module Aws::MediaLive
|
|
7507
7555
|
# },
|
7508
7556
|
# avail_configuration: {
|
7509
7557
|
# avail_settings: {
|
7558
|
+
# esam: {
|
7559
|
+
# acquisition_point_id: "__stringMax256", # required
|
7560
|
+
# ad_avail_offset: 1,
|
7561
|
+
# password: "__string",
|
7562
|
+
# pois_endpoint: "__string", # required
|
7563
|
+
# username: "__string",
|
7564
|
+
# zone_identity: "__stringMax256",
|
7565
|
+
# },
|
7510
7566
|
# scte_35_splice_insert: {
|
7511
7567
|
# ad_avail_offset: 1,
|
7512
7568
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -8425,6 +8481,12 @@ module Aws::MediaLive
|
|
8425
8481
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
8426
8482
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
8427
8483
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
8484
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
8485
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
8486
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
8487
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
8488
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
8489
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
8428
8490
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
8429
8491
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
8430
8492
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -9107,6 +9169,12 @@ module Aws::MediaLive
|
|
9107
9169
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.uri #=> String
|
9108
9170
|
# resp.channel.encoder_settings.avail_blanking.avail_blanking_image.username #=> String
|
9109
9171
|
# resp.channel.encoder_settings.avail_blanking.state #=> String, one of "DISABLED", "ENABLED"
|
9172
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.acquisition_point_id #=> String
|
9173
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.ad_avail_offset #=> Integer
|
9174
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.password #=> String
|
9175
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.pois_endpoint #=> String
|
9176
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.username #=> String
|
9177
|
+
# resp.channel.encoder_settings.avail_configuration.avail_settings.esam.zone_identity #=> String
|
9110
9178
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.ad_avail_offset #=> Integer
|
9111
9179
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.no_regional_blackout_flag #=> String, one of "FOLLOW", "IGNORE"
|
9112
9180
|
# resp.channel.encoder_settings.avail_configuration.avail_settings.scte_35_splice_insert.web_delivery_allowed_flag #=> String, one of "FOLLOW", "IGNORE"
|
@@ -10087,7 +10155,7 @@ module Aws::MediaLive
|
|
10087
10155
|
params: params,
|
10088
10156
|
config: config)
|
10089
10157
|
context[:gem_name] = 'aws-sdk-medialive'
|
10090
|
-
context[:gem_version] = '1.
|
10158
|
+
context[:gem_version] = '1.90.0'
|
10091
10159
|
Seahorse::Client::Request.new(handlers, context)
|
10092
10160
|
end
|
10093
10161
|
|
@@ -228,6 +228,7 @@ module Aws::MediaLive
|
|
228
228
|
EmbeddedSourceSettings = Shapes::StructureShape.new(name: 'EmbeddedSourceSettings')
|
229
229
|
Empty = Shapes::StructureShape.new(name: 'Empty')
|
230
230
|
EncoderSettings = Shapes::StructureShape.new(name: 'EncoderSettings')
|
231
|
+
Esam = Shapes::StructureShape.new(name: 'Esam')
|
231
232
|
FailoverCondition = Shapes::StructureShape.new(name: 'FailoverCondition')
|
232
233
|
FailoverConditionSettings = Shapes::StructureShape.new(name: 'FailoverConditionSettings')
|
233
234
|
FeatureActivations = Shapes::StructureShape.new(name: 'FeatureActivations')
|
@@ -588,6 +589,8 @@ module Aws::MediaLive
|
|
588
589
|
Scte35Descriptor = Shapes::StructureShape.new(name: 'Scte35Descriptor')
|
589
590
|
Scte35DescriptorSettings = Shapes::StructureShape.new(name: 'Scte35DescriptorSettings')
|
590
591
|
Scte35DeviceRestrictions = Shapes::StringShape.new(name: 'Scte35DeviceRestrictions')
|
592
|
+
Scte35InputMode = Shapes::StringShape.new(name: 'Scte35InputMode')
|
593
|
+
Scte35InputScheduleActionSettings = Shapes::StructureShape.new(name: 'Scte35InputScheduleActionSettings')
|
591
594
|
Scte35NoRegionalBlackoutFlag = Shapes::StringShape.new(name: 'Scte35NoRegionalBlackoutFlag')
|
592
595
|
Scte35ReturnToNetworkScheduleActionSettings = Shapes::StructureShape.new(name: 'Scte35ReturnToNetworkScheduleActionSettings')
|
593
596
|
Scte35SegmentationCancelIndicator = Shapes::StringShape.new(name: 'Scte35SegmentationCancelIndicator')
|
@@ -969,6 +972,7 @@ module Aws::MediaLive
|
|
969
972
|
AvailConfiguration.add_member(:avail_settings, Shapes::ShapeRef.new(shape: AvailSettings, location_name: "availSettings"))
|
970
973
|
AvailConfiguration.struct_class = Types::AvailConfiguration
|
971
974
|
|
975
|
+
AvailSettings.add_member(:esam, Shapes::ShapeRef.new(shape: Esam, location_name: "esam"))
|
972
976
|
AvailSettings.add_member(:scte_35_splice_insert, Shapes::ShapeRef.new(shape: Scte35SpliceInsert, location_name: "scte35SpliceInsert"))
|
973
977
|
AvailSettings.add_member(:scte_35_time_signal_apos, Shapes::ShapeRef.new(shape: Scte35TimeSignalApos, location_name: "scte35TimeSignalApos"))
|
974
978
|
AvailSettings.struct_class = Types::AvailSettings
|
@@ -1694,6 +1698,14 @@ module Aws::MediaLive
|
|
1694
1698
|
EncoderSettings.add_member(:video_descriptions, Shapes::ShapeRef.new(shape: __listOfVideoDescription, required: true, location_name: "videoDescriptions"))
|
1695
1699
|
EncoderSettings.struct_class = Types::EncoderSettings
|
1696
1700
|
|
1701
|
+
Esam.add_member(:acquisition_point_id, Shapes::ShapeRef.new(shape: __stringMax256, required: true, location_name: "acquisitionPointId"))
|
1702
|
+
Esam.add_member(:ad_avail_offset, Shapes::ShapeRef.new(shape: __integerMinNegative1000Max1000, location_name: "adAvailOffset"))
|
1703
|
+
Esam.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
|
1704
|
+
Esam.add_member(:pois_endpoint, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "poisEndpoint"))
|
1705
|
+
Esam.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
|
1706
|
+
Esam.add_member(:zone_identity, Shapes::ShapeRef.new(shape: __stringMax256, location_name: "zoneIdentity"))
|
1707
|
+
Esam.struct_class = Types::Esam
|
1708
|
+
|
1697
1709
|
FailoverCondition.add_member(:failover_condition_settings, Shapes::ShapeRef.new(shape: FailoverConditionSettings, location_name: "failoverConditionSettings"))
|
1698
1710
|
FailoverCondition.struct_class = Types::FailoverCondition
|
1699
1711
|
|
@@ -2784,6 +2796,7 @@ module Aws::MediaLive
|
|
2784
2796
|
ScheduleActionSettings.add_member(:motion_graphics_image_activate_settings, Shapes::ShapeRef.new(shape: MotionGraphicsActivateScheduleActionSettings, location_name: "motionGraphicsImageActivateSettings"))
|
2785
2797
|
ScheduleActionSettings.add_member(:motion_graphics_image_deactivate_settings, Shapes::ShapeRef.new(shape: MotionGraphicsDeactivateScheduleActionSettings, location_name: "motionGraphicsImageDeactivateSettings"))
|
2786
2798
|
ScheduleActionSettings.add_member(:pause_state_settings, Shapes::ShapeRef.new(shape: PauseStateScheduleActionSettings, location_name: "pauseStateSettings"))
|
2799
|
+
ScheduleActionSettings.add_member(:scte_35_input_settings, Shapes::ShapeRef.new(shape: Scte35InputScheduleActionSettings, location_name: "scte35InputSettings"))
|
2787
2800
|
ScheduleActionSettings.add_member(:scte_35_return_to_network_settings, Shapes::ShapeRef.new(shape: Scte35ReturnToNetworkScheduleActionSettings, location_name: "scte35ReturnToNetworkSettings"))
|
2788
2801
|
ScheduleActionSettings.add_member(:scte_35_splice_insert_settings, Shapes::ShapeRef.new(shape: Scte35SpliceInsertScheduleActionSettings, location_name: "scte35SpliceInsertSettings"))
|
2789
2802
|
ScheduleActionSettings.add_member(:scte_35_time_signal_settings, Shapes::ShapeRef.new(shape: Scte35TimeSignalScheduleActionSettings, location_name: "scte35TimeSignalSettings"))
|
@@ -2826,6 +2839,10 @@ module Aws::MediaLive
|
|
2826
2839
|
Scte35DescriptorSettings.add_member(:segmentation_descriptor_scte_35_descriptor_settings, Shapes::ShapeRef.new(shape: Scte35SegmentationDescriptor, required: true, location_name: "segmentationDescriptorScte35DescriptorSettings"))
|
2827
2840
|
Scte35DescriptorSettings.struct_class = Types::Scte35DescriptorSettings
|
2828
2841
|
|
2842
|
+
Scte35InputScheduleActionSettings.add_member(:input_attachment_name_reference, Shapes::ShapeRef.new(shape: __string, location_name: "inputAttachmentNameReference"))
|
2843
|
+
Scte35InputScheduleActionSettings.add_member(:mode, Shapes::ShapeRef.new(shape: Scte35InputMode, required: true, location_name: "mode"))
|
2844
|
+
Scte35InputScheduleActionSettings.struct_class = Types::Scte35InputScheduleActionSettings
|
2845
|
+
|
2829
2846
|
Scte35ReturnToNetworkScheduleActionSettings.add_member(:splice_event_id, Shapes::ShapeRef.new(shape: __longMin0Max4294967295, required: true, location_name: "spliceEventId"))
|
2830
2847
|
Scte35ReturnToNetworkScheduleActionSettings.struct_class = Types::Scte35ReturnToNetworkScheduleActionSettings
|
2831
2848
|
|
@@ -1336,6 +1336,14 @@ module Aws::MediaLive
|
|
1336
1336
|
#
|
1337
1337
|
# {
|
1338
1338
|
# avail_settings: {
|
1339
|
+
# esam: {
|
1340
|
+
# acquisition_point_id: "__stringMax256", # required
|
1341
|
+
# ad_avail_offset: 1,
|
1342
|
+
# password: "__string",
|
1343
|
+
# pois_endpoint: "__string", # required
|
1344
|
+
# username: "__string",
|
1345
|
+
# zone_identity: "__stringMax256",
|
1346
|
+
# },
|
1339
1347
|
# scte_35_splice_insert: {
|
1340
1348
|
# ad_avail_offset: 1,
|
1341
1349
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -1367,6 +1375,14 @@ module Aws::MediaLive
|
|
1367
1375
|
# data as a hash:
|
1368
1376
|
#
|
1369
1377
|
# {
|
1378
|
+
# esam: {
|
1379
|
+
# acquisition_point_id: "__stringMax256", # required
|
1380
|
+
# ad_avail_offset: 1,
|
1381
|
+
# password: "__string",
|
1382
|
+
# pois_endpoint: "__string", # required
|
1383
|
+
# username: "__string",
|
1384
|
+
# zone_identity: "__stringMax256",
|
1385
|
+
# },
|
1370
1386
|
# scte_35_splice_insert: {
|
1371
1387
|
# ad_avail_offset: 1,
|
1372
1388
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -1379,6 +1395,10 @@ module Aws::MediaLive
|
|
1379
1395
|
# },
|
1380
1396
|
# }
|
1381
1397
|
#
|
1398
|
+
# @!attribute [rw] esam
|
1399
|
+
# Esam
|
1400
|
+
# @return [Types::Esam]
|
1401
|
+
#
|
1382
1402
|
# @!attribute [rw] scte_35_splice_insert
|
1383
1403
|
# Scte35 Splice Insert
|
1384
1404
|
# @return [Types::Scte35SpliceInsert]
|
@@ -1390,6 +1410,7 @@ module Aws::MediaLive
|
|
1390
1410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/AvailSettings AWS API Documentation
|
1391
1411
|
#
|
1392
1412
|
class AvailSettings < Struct.new(
|
1413
|
+
:esam,
|
1393
1414
|
:scte_35_splice_insert,
|
1394
1415
|
:scte_35_time_signal_apos)
|
1395
1416
|
SENSITIVE = []
|
@@ -1603,6 +1624,10 @@ module Aws::MediaLive
|
|
1603
1624
|
# },
|
1604
1625
|
# ],
|
1605
1626
|
# },
|
1627
|
+
# scte_35_input_settings: {
|
1628
|
+
# input_attachment_name_reference: "__string",
|
1629
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
1630
|
+
# },
|
1606
1631
|
# scte_35_return_to_network_settings: {
|
1607
1632
|
# splice_event_id: 1, # required
|
1608
1633
|
# },
|
@@ -1972,6 +1997,10 @@ module Aws::MediaLive
|
|
1972
1997
|
# },
|
1973
1998
|
# ],
|
1974
1999
|
# },
|
2000
|
+
# scte_35_input_settings: {
|
2001
|
+
# input_attachment_name_reference: "__string",
|
2002
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
2003
|
+
# },
|
1975
2004
|
# scte_35_return_to_network_settings: {
|
1976
2005
|
# splice_event_id: 1, # required
|
1977
2006
|
# },
|
@@ -3416,6 +3445,14 @@ module Aws::MediaLive
|
|
3416
3445
|
# },
|
3417
3446
|
# avail_configuration: {
|
3418
3447
|
# avail_settings: {
|
3448
|
+
# esam: {
|
3449
|
+
# acquisition_point_id: "__stringMax256", # required
|
3450
|
+
# ad_avail_offset: 1,
|
3451
|
+
# password: "__string",
|
3452
|
+
# pois_endpoint: "__string", # required
|
3453
|
+
# username: "__string",
|
3454
|
+
# zone_identity: "__stringMax256",
|
3455
|
+
# },
|
3419
3456
|
# scte_35_splice_insert: {
|
3420
3457
|
# ad_avail_offset: 1,
|
3421
3458
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -6831,6 +6868,14 @@ module Aws::MediaLive
|
|
6831
6868
|
# },
|
6832
6869
|
# avail_configuration: {
|
6833
6870
|
# avail_settings: {
|
6871
|
+
# esam: {
|
6872
|
+
# acquisition_point_id: "__stringMax256", # required
|
6873
|
+
# ad_avail_offset: 1,
|
6874
|
+
# password: "__string",
|
6875
|
+
# pois_endpoint: "__string", # required
|
6876
|
+
# username: "__string",
|
6877
|
+
# zone_identity: "__stringMax256",
|
6878
|
+
# },
|
6834
6879
|
# scte_35_splice_insert: {
|
6835
6880
|
# ad_avail_offset: 1,
|
6836
6881
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
@@ -7575,6 +7620,66 @@ module Aws::MediaLive
|
|
7575
7620
|
include Aws::Structure
|
7576
7621
|
end
|
7577
7622
|
|
7623
|
+
# Esam
|
7624
|
+
#
|
7625
|
+
# @note When making an API call, you may pass Esam
|
7626
|
+
# data as a hash:
|
7627
|
+
#
|
7628
|
+
# {
|
7629
|
+
# acquisition_point_id: "__stringMax256", # required
|
7630
|
+
# ad_avail_offset: 1,
|
7631
|
+
# password: "__string",
|
7632
|
+
# pois_endpoint: "__string", # required
|
7633
|
+
# username: "__string",
|
7634
|
+
# zone_identity: "__stringMax256",
|
7635
|
+
# }
|
7636
|
+
#
|
7637
|
+
# @!attribute [rw] acquisition_point_id
|
7638
|
+
# Sent as acquisitionPointIdentity to identify the MediaLive channel
|
7639
|
+
# to the POIS.
|
7640
|
+
# @return [String]
|
7641
|
+
#
|
7642
|
+
# @!attribute [rw] ad_avail_offset
|
7643
|
+
# When specified, this offset (in milliseconds) is added to the input
|
7644
|
+
# Ad Avail PTS time. This only applies to embedded SCTE 104/35
|
7645
|
+
# messages and does not apply to OOB messages.
|
7646
|
+
# @return [Integer]
|
7647
|
+
#
|
7648
|
+
# @!attribute [rw] password
|
7649
|
+
# @return [String]
|
7650
|
+
#
|
7651
|
+
# @!attribute [rw] pois_endpoint
|
7652
|
+
# The URL of the signal conditioner endpoint on the Placement
|
7653
|
+
# Opportunity Information System (POIS). MediaLive sends
|
7654
|
+
# SignalProcessingEvents here when SCTE-35 messages are read.
|
7655
|
+
# @return [String]
|
7656
|
+
#
|
7657
|
+
# @!attribute [rw] username
|
7658
|
+
# Username if credentials are required to access the POIS endpoint.
|
7659
|
+
# This can be either a plaintext username, or a reference to an AWS
|
7660
|
+
# parameter store name from which the username can be retrieved. AWS
|
7661
|
+
# Parameter store format: "ssm://<parameter name="">"</p>
|
7662
|
+
# </parameter>
|
7663
|
+
# @return [String]
|
7664
|
+
#
|
7665
|
+
# @!attribute [rw] zone_identity
|
7666
|
+
# Optional data sent as zoneIdentity to identify the MediaLive channel
|
7667
|
+
# to the POIS.
|
7668
|
+
# @return [String]
|
7669
|
+
#
|
7670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Esam AWS API Documentation
|
7671
|
+
#
|
7672
|
+
class Esam < Struct.new(
|
7673
|
+
:acquisition_point_id,
|
7674
|
+
:ad_avail_offset,
|
7675
|
+
:password,
|
7676
|
+
:pois_endpoint,
|
7677
|
+
:username,
|
7678
|
+
:zone_identity)
|
7679
|
+
SENSITIVE = []
|
7680
|
+
include Aws::Structure
|
7681
|
+
end
|
7682
|
+
|
7578
7683
|
# Failover Condition settings. There can be multiple failover conditions
|
7579
7684
|
# inside AutomaticInputFailoverSettings.
|
7580
7685
|
#
|
@@ -16069,6 +16174,10 @@ module Aws::MediaLive
|
|
16069
16174
|
# },
|
16070
16175
|
# ],
|
16071
16176
|
# },
|
16177
|
+
# scte_35_input_settings: {
|
16178
|
+
# input_attachment_name_reference: "__string",
|
16179
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
16180
|
+
# },
|
16072
16181
|
# scte_35_return_to_network_settings: {
|
16073
16182
|
# splice_event_id: 1, # required
|
16074
16183
|
# },
|
@@ -16218,6 +16327,10 @@ module Aws::MediaLive
|
|
16218
16327
|
# },
|
16219
16328
|
# ],
|
16220
16329
|
# },
|
16330
|
+
# scte_35_input_settings: {
|
16331
|
+
# input_attachment_name_reference: "__string",
|
16332
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
16333
|
+
# },
|
16221
16334
|
# scte_35_return_to_network_settings: {
|
16222
16335
|
# splice_event_id: 1, # required
|
16223
16336
|
# },
|
@@ -16301,6 +16414,10 @@ module Aws::MediaLive
|
|
16301
16414
|
# Action to pause or unpause one or both channel pipelines
|
16302
16415
|
# @return [Types::PauseStateScheduleActionSettings]
|
16303
16416
|
#
|
16417
|
+
# @!attribute [rw] scte_35_input_settings
|
16418
|
+
# Action to get scte35 input
|
16419
|
+
# @return [Types::Scte35InputScheduleActionSettings]
|
16420
|
+
#
|
16304
16421
|
# @!attribute [rw] scte_35_return_to_network_settings
|
16305
16422
|
# Action to insert SCTE-35 return\_to\_network message
|
16306
16423
|
# @return [Types::Scte35ReturnToNetworkScheduleActionSettings]
|
@@ -16331,6 +16448,7 @@ module Aws::MediaLive
|
|
16331
16448
|
:motion_graphics_image_activate_settings,
|
16332
16449
|
:motion_graphics_image_deactivate_settings,
|
16333
16450
|
:pause_state_settings,
|
16451
|
+
:scte_35_input_settings,
|
16334
16452
|
:scte_35_return_to_network_settings,
|
16335
16453
|
:scte_35_splice_insert_settings,
|
16336
16454
|
:scte_35_time_signal_settings,
|
@@ -16608,6 +16726,35 @@ module Aws::MediaLive
|
|
16608
16726
|
include Aws::Structure
|
16609
16727
|
end
|
16610
16728
|
|
16729
|
+
# Settings for the "scte35 input" action
|
16730
|
+
#
|
16731
|
+
# @note When making an API call, you may pass Scte35InputScheduleActionSettings
|
16732
|
+
# data as a hash:
|
16733
|
+
#
|
16734
|
+
# {
|
16735
|
+
# input_attachment_name_reference: "__string",
|
16736
|
+
# mode: "FIXED", # required, accepts FIXED, FOLLOW_ACTIVE
|
16737
|
+
# }
|
16738
|
+
#
|
16739
|
+
# @!attribute [rw] input_attachment_name_reference
|
16740
|
+
# In fixed mode, enter the name of the input attachment that you want
|
16741
|
+
# to use as a SCTE-35 input. (Don't enter the ID of the input.)"
|
16742
|
+
# @return [String]
|
16743
|
+
#
|
16744
|
+
# @!attribute [rw] mode
|
16745
|
+
# Whether the SCTE-35 input should be the active input or a fixed
|
16746
|
+
# input.
|
16747
|
+
# @return [String]
|
16748
|
+
#
|
16749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Scte35InputScheduleActionSettings AWS API Documentation
|
16750
|
+
#
|
16751
|
+
class Scte35InputScheduleActionSettings < Struct.new(
|
16752
|
+
:input_attachment_name_reference,
|
16753
|
+
:mode)
|
16754
|
+
SENSITIVE = []
|
16755
|
+
include Aws::Structure
|
16756
|
+
end
|
16757
|
+
|
16611
16758
|
# Settings for a SCTE-35 return\_to\_network message.
|
16612
16759
|
#
|
16613
16760
|
# @note When making an API call, you may pass Scte35ReturnToNetworkScheduleActionSettings
|
@@ -18319,6 +18466,14 @@ module Aws::MediaLive
|
|
18319
18466
|
# },
|
18320
18467
|
# avail_configuration: {
|
18321
18468
|
# avail_settings: {
|
18469
|
+
# esam: {
|
18470
|
+
# acquisition_point_id: "__stringMax256", # required
|
18471
|
+
# ad_avail_offset: 1,
|
18472
|
+
# password: "__string",
|
18473
|
+
# pois_endpoint: "__string", # required
|
18474
|
+
# username: "__string",
|
18475
|
+
# zone_identity: "__stringMax256",
|
18476
|
+
# },
|
18322
18477
|
# scte_35_splice_insert: {
|
18323
18478
|
# ad_avail_offset: 1,
|
18324
18479
|
# no_regional_blackout_flag: "FOLLOW", # accepts FOLLOW, IGNORE
|
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.90.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-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|