aws-sdk-mediatailor 1.76.0 → 1.78.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.
data/sig/client.rbs CHANGED
@@ -99,6 +99,7 @@ module Aws
99
99
  interface _CreateChannelResponseSuccess
100
100
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
101
101
  def arn: () -> ::String
102
+ def audiences: () -> ::Array[::String]
102
103
  def channel_name: () -> ::String
103
104
  def channel_state: () -> ("RUNNING" | "STOPPED")
104
105
  def creation_time: () -> ::Time
@@ -112,6 +113,7 @@ module Aws
112
113
  end
113
114
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_channel-instance_method
114
115
  def create_channel: (
116
+ ?audiences: Array[::String],
115
117
  channel_name: ::String,
116
118
  ?filler_slate: {
117
119
  source_location_name: ::String?,
@@ -203,6 +205,7 @@ module Aws
203
205
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateProgramResponse]
204
206
  def ad_breaks: () -> ::Array[Types::AdBreak]
205
207
  def arn: () -> ::String
208
+ def audience_media: () -> ::Array[Types::AudienceMedia]
206
209
  def channel_name: () -> ::String
207
210
  def clip_range: () -> Types::ClipRange
208
211
  def creation_time: () -> ::Time
@@ -224,7 +227,7 @@ module Aws
224
227
  },
225
228
  ]?,
226
229
  message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
227
- offset_millis: ::Integer?,
230
+ offset_millis: ::Integer,
228
231
  slate: {
229
232
  source_location_name: ::String?,
230
233
  vod_source_name: ::String?
@@ -251,12 +254,67 @@ module Aws
251
254
  }?
252
255
  },
253
256
  ],
257
+ ?audience_media: Array[
258
+ {
259
+ alternate_media: Array[
260
+ {
261
+ ad_breaks: Array[
262
+ {
263
+ ad_break_metadata: Array[
264
+ {
265
+ key: ::String,
266
+ value: ::String
267
+ },
268
+ ]?,
269
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
270
+ offset_millis: ::Integer,
271
+ slate: {
272
+ source_location_name: ::String?,
273
+ vod_source_name: ::String?
274
+ }?,
275
+ splice_insert_message: {
276
+ avail_num: ::Integer?,
277
+ avails_expected: ::Integer?,
278
+ splice_event_id: ::Integer?,
279
+ unique_program_id: ::Integer?
280
+ }?,
281
+ time_signal_message: {
282
+ segmentation_descriptors: Array[
283
+ {
284
+ segment_num: ::Integer?,
285
+ segmentation_event_id: ::Integer?,
286
+ segmentation_type_id: ::Integer?,
287
+ segmentation_upid: ::String?,
288
+ segmentation_upid_type: ::Integer?,
289
+ segments_expected: ::Integer?,
290
+ sub_segment_num: ::Integer?,
291
+ sub_segments_expected: ::Integer?
292
+ },
293
+ ]?
294
+ }?
295
+ },
296
+ ]?,
297
+ clip_range: {
298
+ end_offset_millis: ::Integer?,
299
+ start_offset_millis: ::Integer?
300
+ }?,
301
+ duration_millis: ::Integer?,
302
+ live_source_name: ::String?,
303
+ scheduled_start_time_millis: ::Integer?,
304
+ source_location_name: ::String?,
305
+ vod_source_name: ::String?
306
+ },
307
+ ]?,
308
+ audience: ::String?
309
+ },
310
+ ],
254
311
  channel_name: ::String,
255
312
  ?live_source_name: ::String,
256
313
  program_name: ::String,
257
314
  schedule_configuration: {
258
315
  clip_range: {
259
- end_offset_millis: ::Integer
316
+ end_offset_millis: ::Integer?,
317
+ start_offset_millis: ::Integer?
260
318
  }?,
261
319
  transition: {
262
320
  duration_millis: ::Integer?,
@@ -414,6 +472,7 @@ module Aws
414
472
  interface _DescribeChannelResponseSuccess
415
473
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChannelResponse]
416
474
  def arn: () -> ::String
475
+ def audiences: () -> ::Array[::String]
417
476
  def channel_name: () -> ::String
418
477
  def channel_state: () -> ("RUNNING" | "STOPPED")
419
478
  def creation_time: () -> ::Time
@@ -453,6 +512,7 @@ module Aws
453
512
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProgramResponse]
454
513
  def ad_breaks: () -> ::Array[Types::AdBreak]
455
514
  def arn: () -> ::String
515
+ def audience_media: () -> ::Array[Types::AudienceMedia]
456
516
  def channel_name: () -> ::String
457
517
  def clip_range: () -> Types::ClipRange
458
518
  def creation_time: () -> ::Time
@@ -523,6 +583,7 @@ module Aws
523
583
  end
524
584
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#get_channel_schedule-instance_method
525
585
  def get_channel_schedule: (
586
+ ?audience: ::String,
526
587
  channel_name: ::String,
527
588
  ?duration_minutes: ::String,
528
589
  ?max_results: ::Integer,
@@ -539,6 +600,7 @@ module Aws
539
600
  def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
540
601
  def dash_configuration: () -> Types::DashConfiguration
541
602
  def hls_configuration: () -> Types::HlsConfiguration
603
+ def insertion_mode: () -> ("STITCHED_ONLY" | "PLAYER_SELECT")
542
604
  def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
543
605
  def log_configuration: () -> Types::LogConfiguration
544
606
  def manifest_processing_rules: () -> Types::ManifestProcessingRules
@@ -692,6 +754,7 @@ module Aws
692
754
  def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
693
755
  def dash_configuration: () -> Types::DashConfiguration
694
756
  def hls_configuration: () -> Types::HlsConfiguration
757
+ def insertion_mode: () -> ("STITCHED_ONLY" | "PLAYER_SELECT")
695
758
  def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
696
759
  def log_configuration: () -> Types::LogConfiguration
697
760
  def manifest_processing_rules: () -> Types::ManifestProcessingRules
@@ -726,6 +789,7 @@ module Aws
726
789
  mpd_location: ::String?,
727
790
  origin_manifest_type: ("SINGLE_PERIOD" | "MULTI_PERIOD")?
728
791
  },
792
+ ?insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT"),
729
793
  ?live_pre_roll_configuration: {
730
794
  ad_decision_server_url: ::String?,
731
795
  max_duration_seconds: ::Integer?
@@ -779,6 +843,7 @@ module Aws
779
843
  interface _UpdateChannelResponseSuccess
780
844
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
781
845
  def arn: () -> ::String
846
+ def audiences: () -> ::Array[::String]
782
847
  def channel_name: () -> ::String
783
848
  def channel_state: () -> ("RUNNING" | "STOPPED")
784
849
  def creation_time: () -> ::Time
@@ -792,6 +857,7 @@ module Aws
792
857
  end
793
858
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_channel-instance_method
794
859
  def update_channel: (
860
+ ?audiences: Array[::String],
795
861
  channel_name: ::String,
796
862
  ?filler_slate: {
797
863
  source_location_name: ::String?,
@@ -847,6 +913,7 @@ module Aws
847
913
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProgramResponse]
848
914
  def ad_breaks: () -> ::Array[Types::AdBreak]
849
915
  def arn: () -> ::String
916
+ def audience_media: () -> ::Array[Types::AudienceMedia]
850
917
  def channel_name: () -> ::String
851
918
  def clip_range: () -> Types::ClipRange
852
919
  def creation_time: () -> ::Time
@@ -868,7 +935,7 @@ module Aws
868
935
  },
869
936
  ]?,
870
937
  message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
871
- offset_millis: ::Integer?,
938
+ offset_millis: ::Integer,
872
939
  slate: {
873
940
  source_location_name: ::String?,
874
941
  vod_source_name: ::String?
@@ -895,11 +962,66 @@ module Aws
895
962
  }?
896
963
  },
897
964
  ],
965
+ ?audience_media: Array[
966
+ {
967
+ alternate_media: Array[
968
+ {
969
+ ad_breaks: Array[
970
+ {
971
+ ad_break_metadata: Array[
972
+ {
973
+ key: ::String,
974
+ value: ::String
975
+ },
976
+ ]?,
977
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
978
+ offset_millis: ::Integer,
979
+ slate: {
980
+ source_location_name: ::String?,
981
+ vod_source_name: ::String?
982
+ }?,
983
+ splice_insert_message: {
984
+ avail_num: ::Integer?,
985
+ avails_expected: ::Integer?,
986
+ splice_event_id: ::Integer?,
987
+ unique_program_id: ::Integer?
988
+ }?,
989
+ time_signal_message: {
990
+ segmentation_descriptors: Array[
991
+ {
992
+ segment_num: ::Integer?,
993
+ segmentation_event_id: ::Integer?,
994
+ segmentation_type_id: ::Integer?,
995
+ segmentation_upid: ::String?,
996
+ segmentation_upid_type: ::Integer?,
997
+ segments_expected: ::Integer?,
998
+ sub_segment_num: ::Integer?,
999
+ sub_segments_expected: ::Integer?
1000
+ },
1001
+ ]?
1002
+ }?
1003
+ },
1004
+ ]?,
1005
+ clip_range: {
1006
+ end_offset_millis: ::Integer?,
1007
+ start_offset_millis: ::Integer?
1008
+ }?,
1009
+ duration_millis: ::Integer?,
1010
+ live_source_name: ::String?,
1011
+ scheduled_start_time_millis: ::Integer?,
1012
+ source_location_name: ::String?,
1013
+ vod_source_name: ::String?
1014
+ },
1015
+ ]?,
1016
+ audience: ::String?
1017
+ },
1018
+ ],
898
1019
  channel_name: ::String,
899
1020
  program_name: ::String,
900
1021
  schedule_configuration: {
901
1022
  clip_range: {
902
- end_offset_millis: ::Integer
1023
+ end_offset_millis: ::Integer?,
1024
+ start_offset_millis: ::Integer?
903
1025
  }?,
904
1026
  transition: {
905
1027
  duration_millis: ::Integer?,
data/sig/types.rbs CHANGED
@@ -44,6 +44,23 @@ module Aws::MediaTailor
44
44
  SENSITIVE: []
45
45
  end
46
46
 
47
+ class AlternateMedia
48
+ attr_accessor ad_breaks: ::Array[Types::AdBreak]
49
+ attr_accessor clip_range: Types::ClipRange
50
+ attr_accessor duration_millis: ::Integer
51
+ attr_accessor live_source_name: ::String
52
+ attr_accessor scheduled_start_time_millis: ::Integer
53
+ attr_accessor source_location_name: ::String
54
+ attr_accessor vod_source_name: ::String
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class AudienceMedia
59
+ attr_accessor alternate_media: ::Array[Types::AlternateMedia]
60
+ attr_accessor audience: ::String
61
+ SENSITIVE: []
62
+ end
63
+
47
64
  class AvailMatchingCriteria
48
65
  attr_accessor dynamic_variable: ::String
49
66
  attr_accessor operator: ("EQUALS")
@@ -76,6 +93,7 @@ module Aws::MediaTailor
76
93
 
77
94
  class Channel
78
95
  attr_accessor arn: ::String
96
+ attr_accessor audiences: ::Array[::String]
79
97
  attr_accessor channel_name: ::String
80
98
  attr_accessor channel_state: ::String
81
99
  attr_accessor creation_time: ::Time
@@ -91,6 +109,7 @@ module Aws::MediaTailor
91
109
 
92
110
  class ClipRange
93
111
  attr_accessor end_offset_millis: ::Integer
112
+ attr_accessor start_offset_millis: ::Integer
94
113
  SENSITIVE: []
95
114
  end
96
115
 
@@ -119,6 +138,7 @@ module Aws::MediaTailor
119
138
  end
120
139
 
121
140
  class CreateChannelRequest
141
+ attr_accessor audiences: ::Array[::String]
122
142
  attr_accessor channel_name: ::String
123
143
  attr_accessor filler_slate: Types::SlateSource
124
144
  attr_accessor outputs: ::Array[Types::RequestOutputItem]
@@ -131,6 +151,7 @@ module Aws::MediaTailor
131
151
 
132
152
  class CreateChannelResponse
133
153
  attr_accessor arn: ::String
154
+ attr_accessor audiences: ::Array[::String]
134
155
  attr_accessor channel_name: ::String
135
156
  attr_accessor channel_state: ("RUNNING" | "STOPPED")
136
157
  attr_accessor creation_time: ::Time
@@ -184,6 +205,7 @@ module Aws::MediaTailor
184
205
 
185
206
  class CreateProgramRequest
186
207
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
208
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
187
209
  attr_accessor channel_name: ::String
188
210
  attr_accessor live_source_name: ::String
189
211
  attr_accessor program_name: ::String
@@ -196,6 +218,7 @@ module Aws::MediaTailor
196
218
  class CreateProgramResponse
197
219
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
198
220
  attr_accessor arn: ::String
221
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
199
222
  attr_accessor channel_name: ::String
200
223
  attr_accessor clip_range: Types::ClipRange
201
224
  attr_accessor creation_time: ::Time
@@ -351,6 +374,7 @@ module Aws::MediaTailor
351
374
 
352
375
  class DescribeChannelResponse
353
376
  attr_accessor arn: ::String
377
+ attr_accessor audiences: ::Array[::String]
354
378
  attr_accessor channel_name: ::String
355
379
  attr_accessor channel_state: ("RUNNING" | "STOPPED")
356
380
  attr_accessor creation_time: ::Time
@@ -391,6 +415,7 @@ module Aws::MediaTailor
391
415
  class DescribeProgramResponse
392
416
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
393
417
  attr_accessor arn: ::String
418
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
394
419
  attr_accessor channel_name: ::String
395
420
  attr_accessor clip_range: Types::ClipRange
396
421
  attr_accessor creation_time: ::Time
@@ -450,6 +475,7 @@ module Aws::MediaTailor
450
475
  end
451
476
 
452
477
  class GetChannelScheduleRequest
478
+ attr_accessor audience: ::String
453
479
  attr_accessor channel_name: ::String
454
480
  attr_accessor duration_minutes: ::String
455
481
  attr_accessor max_results: ::Integer
@@ -476,6 +502,7 @@ module Aws::MediaTailor
476
502
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
477
503
  attr_accessor dash_configuration: Types::DashConfiguration
478
504
  attr_accessor hls_configuration: Types::HlsConfiguration
505
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
479
506
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
480
507
  attr_accessor log_configuration: Types::LogConfiguration
481
508
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -675,6 +702,7 @@ module Aws::MediaTailor
675
702
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
676
703
  attr_accessor dash_configuration: Types::DashConfiguration
677
704
  attr_accessor hls_configuration: Types::HlsConfiguration
705
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
678
706
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
679
707
  attr_accessor log_configuration: Types::LogConfiguration
680
708
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -730,6 +758,7 @@ module Aws::MediaTailor
730
758
  attr_accessor cdn_configuration: Types::CdnConfiguration
731
759
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
732
760
  attr_accessor dash_configuration: Types::DashConfigurationForPut
761
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
733
762
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
734
763
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
735
764
  attr_accessor name: ::String
@@ -749,6 +778,7 @@ module Aws::MediaTailor
749
778
  attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
750
779
  attr_accessor dash_configuration: Types::DashConfiguration
751
780
  attr_accessor hls_configuration: Types::HlsConfiguration
781
+ attr_accessor insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT")
752
782
  attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
753
783
  attr_accessor log_configuration: Types::LogConfiguration
754
784
  attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
@@ -799,11 +829,12 @@ module Aws::MediaTailor
799
829
  attr_accessor approximate_duration_seconds: ::Integer
800
830
  attr_accessor approximate_start_time: ::Time
801
831
  attr_accessor arn: ::String
832
+ attr_accessor audiences: ::Array[::String]
802
833
  attr_accessor channel_name: ::String
803
834
  attr_accessor live_source_name: ::String
804
835
  attr_accessor program_name: ::String
805
836
  attr_accessor schedule_ad_breaks: ::Array[Types::ScheduleAdBreak]
806
- attr_accessor schedule_entry_type: ("PROGRAM" | "FILLER_SLATE")
837
+ attr_accessor schedule_entry_type: ("PROGRAM" | "FILLER_SLATE" | "ALTERNATE_MEDIA")
807
838
  attr_accessor source_location_name: ::String
808
839
  attr_accessor vod_source_name: ::String
809
840
  SENSITIVE: []
@@ -909,6 +940,7 @@ module Aws::MediaTailor
909
940
  end
910
941
 
911
942
  class UpdateChannelRequest
943
+ attr_accessor audiences: ::Array[::String]
912
944
  attr_accessor channel_name: ::String
913
945
  attr_accessor filler_slate: Types::SlateSource
914
946
  attr_accessor outputs: ::Array[Types::RequestOutputItem]
@@ -918,6 +950,7 @@ module Aws::MediaTailor
918
950
 
919
951
  class UpdateChannelResponse
920
952
  attr_accessor arn: ::String
953
+ attr_accessor audiences: ::Array[::String]
921
954
  attr_accessor channel_name: ::String
922
955
  attr_accessor channel_state: ("RUNNING" | "STOPPED")
923
956
  attr_accessor creation_time: ::Time
@@ -951,6 +984,7 @@ module Aws::MediaTailor
951
984
 
952
985
  class UpdateProgramRequest
953
986
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
987
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
954
988
  attr_accessor channel_name: ::String
955
989
  attr_accessor program_name: ::String
956
990
  attr_accessor schedule_configuration: Types::UpdateProgramScheduleConfiguration
@@ -960,6 +994,7 @@ module Aws::MediaTailor
960
994
  class UpdateProgramResponse
961
995
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
962
996
  attr_accessor arn: ::String
997
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
963
998
  attr_accessor channel_name: ::String
964
999
  attr_accessor clip_range: Types::ClipRange
965
1000
  attr_accessor creation_time: ::Time
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.76.0
4
+ version: 1.78.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core