aws-sdk-mediatailor 1.56.0 → 1.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +36 -4
- data/lib/aws-sdk-mediatailor/client_api.rb +21 -0
- data/lib/aws-sdk-mediatailor/types.rb +184 -3
- data/lib/aws-sdk-mediatailor.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: e34347c618ee547ffc24f5d0645444fcd2b5084928b398a7c82d6855eb28da7f
|
|
4
|
+
data.tar.gz: cbfb17edac20116d6c8be3b7a717a804c09967cac70e24544db35faee9c72926
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cd34af5fac060cf59f6dc200be063d409a5129265a884b03b969deec0562951482e2d1558a592afb847669526b2ebcf008da9800885819a3d4dcb86acde9bdb
|
|
7
|
+
data.tar.gz: ec103cd04dc4998a052f24dc3760e980091ce66d4d8e2cc1112a0f48b1253cef17f9a7e476842fa6b3ffc33ea409fbcd95bc3e5291d5505c6abb59a1812d1399
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.57.0 (2022-10-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release introduces support for SCTE-35 segmentation descriptor messages which can be sent within time signal messages.
|
|
8
|
+
|
|
4
9
|
1.56.0 (2022-10-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.57.0
|
|
@@ -742,7 +742,7 @@ module Aws::MediaTailor
|
|
|
742
742
|
# resp = client.create_program({
|
|
743
743
|
# ad_breaks: [
|
|
744
744
|
# {
|
|
745
|
-
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT
|
|
745
|
+
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
|
746
746
|
# offset_millis: 1,
|
|
747
747
|
# slate: {
|
|
748
748
|
# source_location_name: "__string",
|
|
@@ -754,6 +754,20 @@ module Aws::MediaTailor
|
|
|
754
754
|
# splice_event_id: 1,
|
|
755
755
|
# unique_program_id: 1,
|
|
756
756
|
# },
|
|
757
|
+
# time_signal_message: {
|
|
758
|
+
# segmentation_descriptors: [
|
|
759
|
+
# {
|
|
760
|
+
# segment_num: 1,
|
|
761
|
+
# segmentation_event_id: 1,
|
|
762
|
+
# segmentation_type_id: 1,
|
|
763
|
+
# segmentation_upid: "String",
|
|
764
|
+
# segmentation_upid_type: 1,
|
|
765
|
+
# segments_expected: 1,
|
|
766
|
+
# sub_segment_num: 1,
|
|
767
|
+
# sub_segments_expected: 1,
|
|
768
|
+
# },
|
|
769
|
+
# ],
|
|
770
|
+
# },
|
|
757
771
|
# },
|
|
758
772
|
# ],
|
|
759
773
|
# channel_name: "__string", # required
|
|
@@ -775,7 +789,7 @@ module Aws::MediaTailor
|
|
|
775
789
|
# @example Response structure
|
|
776
790
|
#
|
|
777
791
|
# resp.ad_breaks #=> Array
|
|
778
|
-
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT"
|
|
792
|
+
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
|
779
793
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
|
780
794
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
|
781
795
|
# resp.ad_breaks[0].slate.vod_source_name #=> String
|
|
@@ -783,6 +797,15 @@ module Aws::MediaTailor
|
|
|
783
797
|
# resp.ad_breaks[0].splice_insert_message.avails_expected #=> Integer
|
|
784
798
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
|
785
799
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
|
800
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
|
801
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
|
802
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
|
803
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
|
804
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
|
805
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
|
806
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
|
807
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
|
808
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
|
786
809
|
# resp.arn #=> String
|
|
787
810
|
# resp.channel_name #=> String
|
|
788
811
|
# resp.creation_time #=> Time
|
|
@@ -1342,7 +1365,7 @@ module Aws::MediaTailor
|
|
|
1342
1365
|
# @example Response structure
|
|
1343
1366
|
#
|
|
1344
1367
|
# resp.ad_breaks #=> Array
|
|
1345
|
-
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT"
|
|
1368
|
+
# resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
|
|
1346
1369
|
# resp.ad_breaks[0].offset_millis #=> Integer
|
|
1347
1370
|
# resp.ad_breaks[0].slate.source_location_name #=> String
|
|
1348
1371
|
# resp.ad_breaks[0].slate.vod_source_name #=> String
|
|
@@ -1350,6 +1373,15 @@ module Aws::MediaTailor
|
|
|
1350
1373
|
# resp.ad_breaks[0].splice_insert_message.avails_expected #=> Integer
|
|
1351
1374
|
# resp.ad_breaks[0].splice_insert_message.splice_event_id #=> Integer
|
|
1352
1375
|
# resp.ad_breaks[0].splice_insert_message.unique_program_id #=> Integer
|
|
1376
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors #=> Array
|
|
1377
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segment_num #=> Integer
|
|
1378
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_event_id #=> Integer
|
|
1379
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_type_id #=> Integer
|
|
1380
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid #=> String
|
|
1381
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segmentation_upid_type #=> Integer
|
|
1382
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].segments_expected #=> Integer
|
|
1383
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segment_num #=> Integer
|
|
1384
|
+
# resp.ad_breaks[0].time_signal_message.segmentation_descriptors[0].sub_segments_expected #=> Integer
|
|
1353
1385
|
# resp.arn #=> String
|
|
1354
1386
|
# resp.channel_name #=> String
|
|
1355
1387
|
# resp.creation_time #=> Time
|
|
@@ -2847,7 +2879,7 @@ module Aws::MediaTailor
|
|
|
2847
2879
|
params: params,
|
|
2848
2880
|
config: config)
|
|
2849
2881
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
|
2850
|
-
context[:gem_version] = '1.
|
|
2882
|
+
context[:gem_version] = '1.57.0'
|
|
2851
2883
|
Seahorse::Client::Request.new(handlers, context)
|
|
2852
2884
|
end
|
|
2853
2885
|
|
|
@@ -84,6 +84,7 @@ module Aws::MediaTailor
|
|
|
84
84
|
HttpConfiguration = Shapes::StructureShape.new(name: 'HttpConfiguration')
|
|
85
85
|
HttpPackageConfiguration = Shapes::StructureShape.new(name: 'HttpPackageConfiguration')
|
|
86
86
|
HttpPackageConfigurations = Shapes::ListShape.new(name: 'HttpPackageConfigurations')
|
|
87
|
+
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
87
88
|
ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
|
|
88
89
|
ListAlertsResponse = Shapes::StructureShape.new(name: 'ListAlertsResponse')
|
|
89
90
|
ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
|
|
@@ -129,6 +130,8 @@ module Aws::MediaTailor
|
|
|
129
130
|
ScheduleEntryType = Shapes::StringShape.new(name: 'ScheduleEntryType')
|
|
130
131
|
SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
|
|
131
132
|
SegmentDeliveryConfiguration = Shapes::StructureShape.new(name: 'SegmentDeliveryConfiguration')
|
|
133
|
+
SegmentationDescriptor = Shapes::StructureShape.new(name: 'SegmentationDescriptor')
|
|
134
|
+
SegmentationDescriptorList = Shapes::ListShape.new(name: 'SegmentationDescriptorList')
|
|
132
135
|
SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
|
|
133
136
|
SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
|
|
134
137
|
SpliceInsertMessage = Shapes::StructureShape.new(name: 'SpliceInsertMessage')
|
|
@@ -136,8 +139,10 @@ module Aws::MediaTailor
|
|
|
136
139
|
StartChannelResponse = Shapes::StructureShape.new(name: 'StartChannelResponse')
|
|
137
140
|
StopChannelRequest = Shapes::StructureShape.new(name: 'StopChannelRequest')
|
|
138
141
|
StopChannelResponse = Shapes::StructureShape.new(name: 'StopChannelResponse')
|
|
142
|
+
String = Shapes::StringShape.new(name: 'String')
|
|
139
143
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
140
144
|
Tier = Shapes::StringShape.new(name: 'Tier')
|
|
145
|
+
TimeSignalMessage = Shapes::StructureShape.new(name: 'TimeSignalMessage')
|
|
141
146
|
Transition = Shapes::StructureShape.new(name: 'Transition')
|
|
142
147
|
Type = Shapes::StringShape.new(name: 'Type')
|
|
143
148
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
@@ -180,6 +185,7 @@ module Aws::MediaTailor
|
|
|
180
185
|
AdBreak.add_member(:offset_millis, Shapes::ShapeRef.new(shape: __long, location_name: "OffsetMillis"))
|
|
181
186
|
AdBreak.add_member(:slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "Slate"))
|
|
182
187
|
AdBreak.add_member(:splice_insert_message, Shapes::ShapeRef.new(shape: SpliceInsertMessage, location_name: "SpliceInsertMessage"))
|
|
188
|
+
AdBreak.add_member(:time_signal_message, Shapes::ShapeRef.new(shape: TimeSignalMessage, location_name: "TimeSignalMessage"))
|
|
183
189
|
AdBreak.struct_class = Types::AdBreak
|
|
184
190
|
|
|
185
191
|
AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
|
|
@@ -756,6 +762,18 @@ module Aws::MediaTailor
|
|
|
756
762
|
SegmentDeliveryConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
|
757
763
|
SegmentDeliveryConfiguration.struct_class = Types::SegmentDeliveryConfiguration
|
|
758
764
|
|
|
765
|
+
SegmentationDescriptor.add_member(:segment_num, Shapes::ShapeRef.new(shape: Integer, location_name: "SegmentNum"))
|
|
766
|
+
SegmentationDescriptor.add_member(:segmentation_event_id, Shapes::ShapeRef.new(shape: Integer, location_name: "SegmentationEventId"))
|
|
767
|
+
SegmentationDescriptor.add_member(:segmentation_type_id, Shapes::ShapeRef.new(shape: Integer, location_name: "SegmentationTypeId"))
|
|
768
|
+
SegmentationDescriptor.add_member(:segmentation_upid, Shapes::ShapeRef.new(shape: String, location_name: "SegmentationUpid"))
|
|
769
|
+
SegmentationDescriptor.add_member(:segmentation_upid_type, Shapes::ShapeRef.new(shape: Integer, location_name: "SegmentationUpidType"))
|
|
770
|
+
SegmentationDescriptor.add_member(:segments_expected, Shapes::ShapeRef.new(shape: Integer, location_name: "SegmentsExpected"))
|
|
771
|
+
SegmentationDescriptor.add_member(:sub_segment_num, Shapes::ShapeRef.new(shape: Integer, location_name: "SubSegmentNum"))
|
|
772
|
+
SegmentationDescriptor.add_member(:sub_segments_expected, Shapes::ShapeRef.new(shape: Integer, location_name: "SubSegmentsExpected"))
|
|
773
|
+
SegmentationDescriptor.struct_class = Types::SegmentationDescriptor
|
|
774
|
+
|
|
775
|
+
SegmentationDescriptorList.member = Shapes::ShapeRef.new(shape: SegmentationDescriptor)
|
|
776
|
+
|
|
759
777
|
SlateSource.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
|
|
760
778
|
SlateSource.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
|
|
761
779
|
SlateSource.struct_class = Types::SlateSource
|
|
@@ -791,6 +809,9 @@ module Aws::MediaTailor
|
|
|
791
809
|
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, required: true, location_name: "tags"))
|
|
792
810
|
TagResourceRequest.struct_class = Types::TagResourceRequest
|
|
793
811
|
|
|
812
|
+
TimeSignalMessage.add_member(:segmentation_descriptors, Shapes::ShapeRef.new(shape: SegmentationDescriptorList, location_name: "SegmentationDescriptors"))
|
|
813
|
+
TimeSignalMessage.struct_class = Types::TimeSignalMessage
|
|
814
|
+
|
|
794
815
|
Transition.add_member(:duration_millis, Shapes::ShapeRef.new(shape: __long, location_name: "DurationMillis"))
|
|
795
816
|
Transition.add_member(:relative_position, Shapes::ShapeRef.new(shape: RelativePosition, required: true, location_name: "RelativePosition"))
|
|
796
817
|
Transition.add_member(:relative_program, Shapes::ShapeRef.new(shape: __string, location_name: "RelativeProgram"))
|
|
@@ -72,7 +72,7 @@ module Aws::MediaTailor
|
|
|
72
72
|
# data as a hash:
|
|
73
73
|
#
|
|
74
74
|
# {
|
|
75
|
-
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT
|
|
75
|
+
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
|
76
76
|
# offset_millis: 1,
|
|
77
77
|
# slate: {
|
|
78
78
|
# source_location_name: "__string",
|
|
@@ -84,6 +84,20 @@ module Aws::MediaTailor
|
|
|
84
84
|
# splice_event_id: 1,
|
|
85
85
|
# unique_program_id: 1,
|
|
86
86
|
# },
|
|
87
|
+
# time_signal_message: {
|
|
88
|
+
# segmentation_descriptors: [
|
|
89
|
+
# {
|
|
90
|
+
# segment_num: 1,
|
|
91
|
+
# segmentation_event_id: 1,
|
|
92
|
+
# segmentation_type_id: 1,
|
|
93
|
+
# segmentation_upid: "String",
|
|
94
|
+
# segmentation_upid_type: 1,
|
|
95
|
+
# segments_expected: 1,
|
|
96
|
+
# sub_segment_num: 1,
|
|
97
|
+
# sub_segments_expected: 1,
|
|
98
|
+
# },
|
|
99
|
+
# ],
|
|
100
|
+
# },
|
|
87
101
|
# }
|
|
88
102
|
#
|
|
89
103
|
# @!attribute [rw] message_type
|
|
@@ -107,13 +121,25 @@ module Aws::MediaTailor
|
|
|
107
121
|
# SCTE-35 specficiaiton, section 9.7.3.1.
|
|
108
122
|
# @return [Types::SpliceInsertMessage]
|
|
109
123
|
#
|
|
124
|
+
# @!attribute [rw] time_signal_message
|
|
125
|
+
# Defines the SCTE-35 `time_signal` message inserted around the ad.
|
|
126
|
+
#
|
|
127
|
+
# Programs on a channel's schedule can be configured with one or more
|
|
128
|
+
# ad breaks. You can attach a `splice_insert` SCTE-35 message to the
|
|
129
|
+
# ad break. This message provides basic metadata about the ad break.
|
|
130
|
+
#
|
|
131
|
+
# See section 9.7.4 of the 2022 SCTE-35 specification for more
|
|
132
|
+
# information.
|
|
133
|
+
# @return [Types::TimeSignalMessage]
|
|
134
|
+
#
|
|
110
135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdBreak AWS API Documentation
|
|
111
136
|
#
|
|
112
137
|
class AdBreak < Struct.new(
|
|
113
138
|
:message_type,
|
|
114
139
|
:offset_millis,
|
|
115
140
|
:slate,
|
|
116
|
-
:splice_insert_message
|
|
141
|
+
:splice_insert_message,
|
|
142
|
+
:time_signal_message)
|
|
117
143
|
SENSITIVE = []
|
|
118
144
|
include Aws::Structure
|
|
119
145
|
end
|
|
@@ -882,7 +908,7 @@ module Aws::MediaTailor
|
|
|
882
908
|
# {
|
|
883
909
|
# ad_breaks: [
|
|
884
910
|
# {
|
|
885
|
-
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT
|
|
911
|
+
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
|
|
886
912
|
# offset_millis: 1,
|
|
887
913
|
# slate: {
|
|
888
914
|
# source_location_name: "__string",
|
|
@@ -894,6 +920,20 @@ module Aws::MediaTailor
|
|
|
894
920
|
# splice_event_id: 1,
|
|
895
921
|
# unique_program_id: 1,
|
|
896
922
|
# },
|
|
923
|
+
# time_signal_message: {
|
|
924
|
+
# segmentation_descriptors: [
|
|
925
|
+
# {
|
|
926
|
+
# segment_num: 1,
|
|
927
|
+
# segmentation_event_id: 1,
|
|
928
|
+
# segmentation_type_id: 1,
|
|
929
|
+
# segmentation_upid: "String",
|
|
930
|
+
# segmentation_upid_type: 1,
|
|
931
|
+
# segments_expected: 1,
|
|
932
|
+
# sub_segment_num: 1,
|
|
933
|
+
# sub_segments_expected: 1,
|
|
934
|
+
# },
|
|
935
|
+
# ],
|
|
936
|
+
# },
|
|
897
937
|
# },
|
|
898
938
|
# ],
|
|
899
939
|
# channel_name: "__string", # required
|
|
@@ -3998,6 +4038,104 @@ module Aws::MediaTailor
|
|
|
3998
4038
|
include Aws::Structure
|
|
3999
4039
|
end
|
|
4000
4040
|
|
|
4041
|
+
# The `segmentation_descriptor` message can contain advanced metadata
|
|
4042
|
+
# fields, like content identifiers, to convey a wide range of
|
|
4043
|
+
# information about the ad break. MediaTailor writes the ad metadata in
|
|
4044
|
+
# the egress manifest as part of the `EXT-X-DATERANGE` or `EventStream`
|
|
4045
|
+
# ad marker's SCTE-35 data.
|
|
4046
|
+
#
|
|
4047
|
+
# `segmentation_descriptor` messages must be sent with the `time_signal`
|
|
4048
|
+
# message type.
|
|
4049
|
+
#
|
|
4050
|
+
# See the `segmentation_descriptor()` table of the 2022 SCTE-35
|
|
4051
|
+
# specification for more information.
|
|
4052
|
+
#
|
|
4053
|
+
# @note When making an API call, you may pass SegmentationDescriptor
|
|
4054
|
+
# data as a hash:
|
|
4055
|
+
#
|
|
4056
|
+
# {
|
|
4057
|
+
# segment_num: 1,
|
|
4058
|
+
# segmentation_event_id: 1,
|
|
4059
|
+
# segmentation_type_id: 1,
|
|
4060
|
+
# segmentation_upid: "String",
|
|
4061
|
+
# segmentation_upid_type: 1,
|
|
4062
|
+
# segments_expected: 1,
|
|
4063
|
+
# sub_segment_num: 1,
|
|
4064
|
+
# sub_segments_expected: 1,
|
|
4065
|
+
# }
|
|
4066
|
+
#
|
|
4067
|
+
# @!attribute [rw] segment_num
|
|
4068
|
+
# The segment number to assign to the
|
|
4069
|
+
# `segmentation_descriptor.segment_num` message, as defined in section
|
|
4070
|
+
# 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0
|
|
4071
|
+
# and 256, inclusive. The default value is 0.
|
|
4072
|
+
# @return [Integer]
|
|
4073
|
+
#
|
|
4074
|
+
# @!attribute [rw] segmentation_event_id
|
|
4075
|
+
# The Event Identifier to assign to the
|
|
4076
|
+
# `segmentation_descriptor.segmentation_event_id` message, as defined
|
|
4077
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. The default
|
|
4078
|
+
# value is 1.
|
|
4079
|
+
# @return [Integer]
|
|
4080
|
+
#
|
|
4081
|
+
# @!attribute [rw] segmentation_type_id
|
|
4082
|
+
# The Type Identifier to assign to the
|
|
4083
|
+
# `segmentation_descriptor.segmentation_type_id` message, as defined
|
|
4084
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
|
4085
|
+
# be between 0 and 256, inclusive. The default value is 48.
|
|
4086
|
+
# @return [Integer]
|
|
4087
|
+
#
|
|
4088
|
+
# @!attribute [rw] segmentation_upid
|
|
4089
|
+
# The Upid to assign to the
|
|
4090
|
+
# `segmentation_descriptor.segmentation_upid` message, as defined in
|
|
4091
|
+
# section 10.3.3.1 of the 2022 SCTE-35 specification. The value must
|
|
4092
|
+
# be a hexadecimal string containing only the characters 0 though 9
|
|
4093
|
+
# and A through F. The default value is "" (an empty string).
|
|
4094
|
+
# @return [String]
|
|
4095
|
+
#
|
|
4096
|
+
# @!attribute [rw] segmentation_upid_type
|
|
4097
|
+
# The Upid Type to assign to the
|
|
4098
|
+
# `segmentation_descriptor.segmentation_upid_type` message, as defined
|
|
4099
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
|
4100
|
+
# be between 0 and 256, inclusive. The default value is 14.
|
|
4101
|
+
# @return [Integer]
|
|
4102
|
+
#
|
|
4103
|
+
# @!attribute [rw] segments_expected
|
|
4104
|
+
# The number of segments expected, which is assigned to the
|
|
4105
|
+
# `segmentation_descriptor.segments_expectedS` message, as defined in
|
|
4106
|
+
# section 10.3.3.1 of the 2022 SCTE-35 specification Values must be
|
|
4107
|
+
# between 0 and 256, inclusive. The default value is 0.
|
|
4108
|
+
# @return [Integer]
|
|
4109
|
+
#
|
|
4110
|
+
# @!attribute [rw] sub_segment_num
|
|
4111
|
+
# The sub-segment number to assign to the
|
|
4112
|
+
# `segmentation_descriptor.sub_segment_num` message, as defined in
|
|
4113
|
+
# section 10.3.3.1 of the 2022 SCTE-35 specification. Values must be
|
|
4114
|
+
# between 0 and 256, inclusive. The defualt value is null.
|
|
4115
|
+
# @return [Integer]
|
|
4116
|
+
#
|
|
4117
|
+
# @!attribute [rw] sub_segments_expected
|
|
4118
|
+
# The number of sub-segments expected, which is assigned to the
|
|
4119
|
+
# `segmentation_descriptor.sub_segments_expected` message, as defined
|
|
4120
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
|
4121
|
+
# be between 0 and 256, inclusive. The default value is null.
|
|
4122
|
+
# @return [Integer]
|
|
4123
|
+
#
|
|
4124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SegmentationDescriptor AWS API Documentation
|
|
4125
|
+
#
|
|
4126
|
+
class SegmentationDescriptor < Struct.new(
|
|
4127
|
+
:segment_num,
|
|
4128
|
+
:segmentation_event_id,
|
|
4129
|
+
:segmentation_type_id,
|
|
4130
|
+
:segmentation_upid,
|
|
4131
|
+
:segmentation_upid_type,
|
|
4132
|
+
:segments_expected,
|
|
4133
|
+
:sub_segment_num,
|
|
4134
|
+
:sub_segments_expected)
|
|
4135
|
+
SENSITIVE = []
|
|
4136
|
+
include Aws::Structure
|
|
4137
|
+
end
|
|
4138
|
+
|
|
4001
4139
|
# Slate VOD source configuration.
|
|
4002
4140
|
#
|
|
4003
4141
|
# @note When making an API call, you may pass SlateSource
|
|
@@ -4222,6 +4360,49 @@ module Aws::MediaTailor
|
|
|
4222
4360
|
include Aws::Structure
|
|
4223
4361
|
end
|
|
4224
4362
|
|
|
4363
|
+
# The SCTE-35 `time_signal` message can be sent with one or more
|
|
4364
|
+
# `segmentation_descriptor` messages. A `time_signal` message can be
|
|
4365
|
+
# sent only if a single `segmentation_descriptor` message is sent.
|
|
4366
|
+
#
|
|
4367
|
+
# The `time_signal` message contains only the `splice_time` field which
|
|
4368
|
+
# is constructed using a given presentation timestamp. When sending a
|
|
4369
|
+
# `time_signal` message, the `splice_command_type` field in the
|
|
4370
|
+
# `splice_info_section` message is set to 6 (0x06).
|
|
4371
|
+
#
|
|
4372
|
+
# See the `time_signal()` table of the 2022 SCTE-35 specification for
|
|
4373
|
+
# more information.
|
|
4374
|
+
#
|
|
4375
|
+
# @note When making an API call, you may pass TimeSignalMessage
|
|
4376
|
+
# data as a hash:
|
|
4377
|
+
#
|
|
4378
|
+
# {
|
|
4379
|
+
# segmentation_descriptors: [
|
|
4380
|
+
# {
|
|
4381
|
+
# segment_num: 1,
|
|
4382
|
+
# segmentation_event_id: 1,
|
|
4383
|
+
# segmentation_type_id: 1,
|
|
4384
|
+
# segmentation_upid: "String",
|
|
4385
|
+
# segmentation_upid_type: 1,
|
|
4386
|
+
# segments_expected: 1,
|
|
4387
|
+
# sub_segment_num: 1,
|
|
4388
|
+
# sub_segments_expected: 1,
|
|
4389
|
+
# },
|
|
4390
|
+
# ],
|
|
4391
|
+
# }
|
|
4392
|
+
#
|
|
4393
|
+
# @!attribute [rw] segmentation_descriptors
|
|
4394
|
+
# The configurations for the SCTE-35 `segmentation_descriptor`
|
|
4395
|
+
# message(s) sent with the `time_signal` message.
|
|
4396
|
+
# @return [Array<Types::SegmentationDescriptor>]
|
|
4397
|
+
#
|
|
4398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/TimeSignalMessage AWS API Documentation
|
|
4399
|
+
#
|
|
4400
|
+
class TimeSignalMessage < Struct.new(
|
|
4401
|
+
:segmentation_descriptors)
|
|
4402
|
+
SENSITIVE = []
|
|
4403
|
+
include Aws::Structure
|
|
4404
|
+
end
|
|
4405
|
+
|
|
4225
4406
|
# Program transition configuration.
|
|
4226
4407
|
#
|
|
4227
4408
|
# @note When making an API call, you may pass Transition
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-mediatailor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.57.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-10-
|
|
11
|
+
date: 2022-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|