aws-sdk-mediatailor 1.40.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 776b821ba99e304f858c10f608739a8f215585af77cc80af0c6e30194e916d22
4
- data.tar.gz: 6d37139aa1d17a952fd812ef9186d3d30f42404a98f49e0252429b5d6ca429b6
3
+ metadata.gz: 6c588a99cdef3a63fced3ff4845c1f091af6649fa43d83fd545252b665c10ef2
4
+ data.tar.gz: be25bc5a446e42c099c2dc77167f97304d46b4fdfa9b36c5b8fff53ac56d6d16
5
5
  SHA512:
6
- metadata.gz: 1a79c67cad2834cad13eeea039069871edf17a1c96ea9bde38c42428834f7d5574d41c93defd22c02fae0bf87c47d6206e3dfd78640ac024d14bd1e3374102b3
7
- data.tar.gz: 1db7f8481231f2db9f0446b2711dfd2397b9fb697808572057f29f40a5a9ef0ea17dc3488ddddb549888e63c980928260a5fa4c7ba679c14ed9566027a5af7f7
6
+ metadata.gz: 8f1bcaf4a66d618519c1f245ec088d566a082c16c77afe5c6243342fa40695cc300800eeb53a5106bee37ca9ab9d0dc68347ee4f0893ec58c2f2f7fef7318d53
7
+ data.tar.gz: 0f662d0756a89ab1561708faa2dae5d76a58bcabc4eff598d7309bef31753a50526926a4f5151e650a15c5f22e242f2f9dcd22091a49ad1e6331ba9a47079d44
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for wall clock programs in LINEAR channels.
8
+
9
+ 1.43.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.42.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.41.0 (2021-07-08)
20
+ ------------------
21
+
22
+ * Feature - Add ListAlerts for Channel, Program, Source Location, and VOD Source to return alerts for resources.
23
+
4
24
  1.40.0 (2021-06-23)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.44.0
@@ -331,12 +331,22 @@ module Aws::MediaTailor
331
331
  #
332
332
  # @option params [required, String] :channel_name
333
333
  #
334
+ # @option params [Types::SlateSource] :filler_slate
335
+ # The slate used to fill gaps between programs in the schedule. You must
336
+ # configure filler slate if your channel uses an LINEAR PlaybackMode.
337
+ #
334
338
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
335
339
  # The channel's output properties.
336
340
  #
337
341
  # @option params [required, String] :playback_mode
338
- # The type of playback mode for this channel. The only supported value
339
- # is LOOP.
342
+ # The type of playback mode to use for this channel.
343
+ #
344
+ # LINEAR - The programs in the schedule play once back-to-back in the
345
+ # schedule.
346
+ #
347
+ # LOOP - The programs in the schedule play back-to-back in an endless
348
+ # loop. When the last program in the schedule stops playing, playback
349
+ # loops back to the first program in the schedule.
340
350
  #
341
351
  # @option params [Hash<String,String>] :tags
342
352
  # The tags to assign to the channel.
@@ -347,6 +357,7 @@ module Aws::MediaTailor
347
357
  # * {Types::CreateChannelResponse#channel_name #channel_name} => String
348
358
  # * {Types::CreateChannelResponse#channel_state #channel_state} => String
349
359
  # * {Types::CreateChannelResponse#creation_time #creation_time} => Time
360
+ # * {Types::CreateChannelResponse#filler_slate #filler_slate} => Types::SlateSource
350
361
  # * {Types::CreateChannelResponse#last_modified_time #last_modified_time} => Time
351
362
  # * {Types::CreateChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
352
363
  # * {Types::CreateChannelResponse#playback_mode #playback_mode} => String
@@ -356,6 +367,10 @@ module Aws::MediaTailor
356
367
  #
357
368
  # resp = client.create_channel({
358
369
  # channel_name: "__string", # required
370
+ # filler_slate: {
371
+ # source_location_name: "__string",
372
+ # vod_source_name: "__string",
373
+ # },
359
374
  # outputs: [ # required
360
375
  # {
361
376
  # dash_playlist_settings: {
@@ -371,7 +386,7 @@ module Aws::MediaTailor
371
386
  # source_group: "__string", # required
372
387
  # },
373
388
  # ],
374
- # playback_mode: "LOOP", # required, accepts LOOP
389
+ # playback_mode: "LOOP", # required, accepts LOOP, LINEAR
375
390
  # tags: {
376
391
  # "__string" => "__string",
377
392
  # },
@@ -383,6 +398,8 @@ module Aws::MediaTailor
383
398
  # resp.channel_name #=> String
384
399
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
385
400
  # resp.creation_time #=> Time
401
+ # resp.filler_slate.source_location_name #=> String
402
+ # resp.filler_slate.vod_source_name #=> String
386
403
  # resp.last_modified_time #=> Time
387
404
  # resp.outputs #=> Array
388
405
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -431,6 +448,7 @@ module Aws::MediaTailor
431
448
  # * {Types::CreateProgramResponse#channel_name #channel_name} => String
432
449
  # * {Types::CreateProgramResponse#creation_time #creation_time} => Time
433
450
  # * {Types::CreateProgramResponse#program_name #program_name} => String
451
+ # * {Types::CreateProgramResponse#scheduled_start_time #scheduled_start_time} => Time
434
452
  # * {Types::CreateProgramResponse#source_location_name #source_location_name} => String
435
453
  # * {Types::CreateProgramResponse#vod_source_name #vod_source_name} => String
436
454
  #
@@ -459,6 +477,7 @@ module Aws::MediaTailor
459
477
  # transition: { # required
460
478
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
461
479
  # relative_program: "__string",
480
+ # scheduled_start_time_millis: 1,
462
481
  # type: "__string", # required
463
482
  # },
464
483
  # },
@@ -481,6 +500,7 @@ module Aws::MediaTailor
481
500
  # resp.channel_name #=> String
482
501
  # resp.creation_time #=> Time
483
502
  # resp.program_name #=> String
503
+ # resp.scheduled_start_time #=> Time
484
504
  # resp.source_location_name #=> String
485
505
  # resp.vod_source_name #=> String
486
506
  #
@@ -772,6 +792,7 @@ module Aws::MediaTailor
772
792
  # * {Types::DescribeChannelResponse#channel_name #channel_name} => String
773
793
  # * {Types::DescribeChannelResponse#channel_state #channel_state} => String
774
794
  # * {Types::DescribeChannelResponse#creation_time #creation_time} => Time
795
+ # * {Types::DescribeChannelResponse#filler_slate #filler_slate} => Types::SlateSource
775
796
  # * {Types::DescribeChannelResponse#last_modified_time #last_modified_time} => Time
776
797
  # * {Types::DescribeChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
777
798
  # * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
@@ -789,6 +810,8 @@ module Aws::MediaTailor
789
810
  # resp.channel_name #=> String
790
811
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
791
812
  # resp.creation_time #=> Time
813
+ # resp.filler_slate.source_location_name #=> String
814
+ # resp.filler_slate.vod_source_name #=> String
792
815
  # resp.last_modified_time #=> Time
793
816
  # resp.outputs #=> Array
794
817
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -825,6 +848,7 @@ module Aws::MediaTailor
825
848
  # * {Types::DescribeProgramResponse#channel_name #channel_name} => String
826
849
  # * {Types::DescribeProgramResponse#creation_time #creation_time} => Time
827
850
  # * {Types::DescribeProgramResponse#program_name #program_name} => String
851
+ # * {Types::DescribeProgramResponse#scheduled_start_time #scheduled_start_time} => Time
828
852
  # * {Types::DescribeProgramResponse#source_location_name #source_location_name} => String
829
853
  # * {Types::DescribeProgramResponse#vod_source_name #vod_source_name} => String
830
854
  #
@@ -850,6 +874,7 @@ module Aws::MediaTailor
850
874
  # resp.channel_name #=> String
851
875
  # resp.creation_time #=> Time
852
876
  # resp.program_name #=> String
877
+ # resp.scheduled_start_time #=> Time
853
878
  # resp.source_location_name #=> String
854
879
  # resp.vod_source_name #=> String
855
880
  #
@@ -1020,6 +1045,7 @@ module Aws::MediaTailor
1020
1045
  # resp.items[0].schedule_ad_breaks[0].approximate_start_time #=> Time
1021
1046
  # resp.items[0].schedule_ad_breaks[0].source_location_name #=> String
1022
1047
  # resp.items[0].schedule_ad_breaks[0].vod_source_name #=> String
1048
+ # resp.items[0].schedule_entry_type #=> String, one of "PROGRAM", "FILLER_SLATE"
1023
1049
  # resp.items[0].source_location_name #=> String
1024
1050
  # resp.items[0].vod_source_name #=> String
1025
1051
  # resp.next_token #=> String
@@ -1103,6 +1129,49 @@ module Aws::MediaTailor
1103
1129
  req.send_request(options)
1104
1130
  end
1105
1131
 
1132
+ # Returns a list of alerts for the given resource.
1133
+ #
1134
+ # @option params [Integer] :max_results
1135
+ #
1136
+ # @option params [String] :next_token
1137
+ #
1138
+ # @option params [required, String] :resource_arn
1139
+ #
1140
+ # @return [Types::ListAlertsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1141
+ #
1142
+ # * {Types::ListAlertsResponse#items #items} => Array&lt;Types::Alert&gt;
1143
+ # * {Types::ListAlertsResponse#next_token #next_token} => String
1144
+ #
1145
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1146
+ #
1147
+ # @example Request syntax with placeholder values
1148
+ #
1149
+ # resp = client.list_alerts({
1150
+ # max_results: 1,
1151
+ # next_token: "__string",
1152
+ # resource_arn: "__string", # required
1153
+ # })
1154
+ #
1155
+ # @example Response structure
1156
+ #
1157
+ # resp.items #=> Array
1158
+ # resp.items[0].alert_code #=> String
1159
+ # resp.items[0].alert_message #=> String
1160
+ # resp.items[0].last_modified_time #=> Time
1161
+ # resp.items[0].related_resource_arns #=> Array
1162
+ # resp.items[0].related_resource_arns[0] #=> String
1163
+ # resp.items[0].resource_arn #=> String
1164
+ # resp.next_token #=> String
1165
+ #
1166
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlerts AWS API Documentation
1167
+ #
1168
+ # @overload list_alerts(params = {})
1169
+ # @param [Hash] params ({})
1170
+ def list_alerts(params = {}, options = {})
1171
+ req = build_request(:list_alerts, params)
1172
+ req.send_request(options)
1173
+ end
1174
+
1106
1175
  # Retrieves a list of channels that are associated with this account.
1107
1176
  #
1108
1177
  # @option params [Integer] :max_results
@@ -1130,6 +1199,8 @@ module Aws::MediaTailor
1130
1199
  # resp.items[0].channel_name #=> String
1131
1200
  # resp.items[0].channel_state #=> String
1132
1201
  # resp.items[0].creation_time #=> Time
1202
+ # resp.items[0].filler_slate.source_location_name #=> String
1203
+ # resp.items[0].filler_slate.vod_source_name #=> String
1133
1204
  # resp.items[0].last_modified_time #=> Time
1134
1205
  # resp.items[0].outputs #=> Array
1135
1206
  # resp.items[0].outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -1669,6 +1740,7 @@ module Aws::MediaTailor
1669
1740
  # * {Types::UpdateChannelResponse#channel_name #channel_name} => String
1670
1741
  # * {Types::UpdateChannelResponse#channel_state #channel_state} => String
1671
1742
  # * {Types::UpdateChannelResponse#creation_time #creation_time} => Time
1743
+ # * {Types::UpdateChannelResponse#filler_slate #filler_slate} => Types::SlateSource
1672
1744
  # * {Types::UpdateChannelResponse#last_modified_time #last_modified_time} => Time
1673
1745
  # * {Types::UpdateChannelResponse#outputs #outputs} => Array&lt;Types::ResponseOutputItem&gt;
1674
1746
  # * {Types::UpdateChannelResponse#playback_mode #playback_mode} => String
@@ -1701,6 +1773,8 @@ module Aws::MediaTailor
1701
1773
  # resp.channel_name #=> String
1702
1774
  # resp.channel_state #=> String, one of "RUNNING", "STOPPED"
1703
1775
  # resp.creation_time #=> Time
1776
+ # resp.filler_slate.source_location_name #=> String
1777
+ # resp.filler_slate.vod_source_name #=> String
1704
1778
  # resp.last_modified_time #=> Time
1705
1779
  # resp.outputs #=> Array
1706
1780
  # resp.outputs[0].dash_playlist_settings.manifest_window_seconds #=> Integer
@@ -1863,7 +1937,7 @@ module Aws::MediaTailor
1863
1937
  params: params,
1864
1938
  config: config)
1865
1939
  context[:gem_name] = 'aws-sdk-mediatailor'
1866
- context[:gem_version] = '1.40.0'
1940
+ context[:gem_version] = '1.44.0'
1867
1941
  Seahorse::Client::Request.new(handlers, context)
1868
1942
  end
1869
1943
 
@@ -17,6 +17,7 @@ module Aws::MediaTailor
17
17
  AccessType = Shapes::StringShape.new(name: 'AccessType')
18
18
  AdBreak = Shapes::StructureShape.new(name: 'AdBreak')
19
19
  AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
20
+ Alert = Shapes::StructureShape.new(name: 'Alert')
20
21
  AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
21
22
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
22
23
  Bumper = Shapes::StructureShape.new(name: 'Bumper')
@@ -68,6 +69,8 @@ module Aws::MediaTailor
68
69
  HttpConfiguration = Shapes::StructureShape.new(name: 'HttpConfiguration')
69
70
  HttpPackageConfiguration = Shapes::StructureShape.new(name: 'HttpPackageConfiguration')
70
71
  HttpPackageConfigurations = Shapes::ListShape.new(name: 'HttpPackageConfigurations')
72
+ ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
73
+ ListAlertsResponse = Shapes::StructureShape.new(name: 'ListAlertsResponse')
71
74
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
72
75
  ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
73
76
  ListPlaybackConfigurationsRequest = Shapes::StructureShape.new(name: 'ListPlaybackConfigurationsRequest')
@@ -98,6 +101,7 @@ module Aws::MediaTailor
98
101
  ScheduleAdBreak = Shapes::StructureShape.new(name: 'ScheduleAdBreak')
99
102
  ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
100
103
  ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
104
+ ScheduleEntryType = Shapes::StringShape.new(name: 'ScheduleEntryType')
101
105
  SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
102
106
  SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
103
107
  SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
@@ -121,6 +125,7 @@ module Aws::MediaTailor
121
125
  __integer = Shapes::IntegerShape.new(name: '__integer')
122
126
  __integerMin1 = Shapes::IntegerShape.new(name: '__integerMin1')
123
127
  __listOfAdBreak = Shapes::ListShape.new(name: '__listOfAdBreak')
128
+ __listOfAlert = Shapes::ListShape.new(name: '__listOfAlert')
124
129
  __listOfChannel = Shapes::ListShape.new(name: '__listOfChannel')
125
130
  __listOfPlaybackConfiguration = Shapes::ListShape.new(name: '__listOfPlaybackConfiguration')
126
131
  __listOfScheduleAdBreak = Shapes::ListShape.new(name: '__listOfScheduleAdBreak')
@@ -146,6 +151,13 @@ module Aws::MediaTailor
146
151
  AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
147
152
  AdMarkerPassthrough.struct_class = Types::AdMarkerPassthrough
148
153
 
154
+ Alert.add_member(:alert_code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "AlertCode"))
155
+ Alert.add_member(:alert_message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "AlertMessage"))
156
+ Alert.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, required: true, location_name: "LastModifiedTime"))
157
+ Alert.add_member(:related_resource_arns, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "RelatedResourceArns"))
158
+ Alert.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ResourceArn"))
159
+ Alert.struct_class = Types::Alert
160
+
149
161
  AvailSuppression.add_member(:mode, Shapes::ShapeRef.new(shape: Mode, location_name: "Mode"))
150
162
  AvailSuppression.add_member(:value, Shapes::ShapeRef.new(shape: __string, location_name: "Value"))
151
163
  AvailSuppression.struct_class = Types::AvailSuppression
@@ -165,6 +177,7 @@ module Aws::MediaTailor
165
177
  Channel.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
166
178
  Channel.add_member(:channel_state, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelState"))
167
179
  Channel.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
180
+ Channel.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
168
181
  Channel.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
169
182
  Channel.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, required: true, location_name: "Outputs"))
170
183
  Channel.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "PlaybackMode"))
@@ -178,6 +191,7 @@ module Aws::MediaTailor
178
191
  ConfigurationAliasesResponse.value = Shapes::ShapeRef.new(shape: __mapOf__string)
179
192
 
180
193
  CreateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "channelName"))
194
+ CreateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
181
195
  CreateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
182
196
  CreateChannelRequest.add_member(:playback_mode, Shapes::ShapeRef.new(shape: PlaybackMode, required: true, location_name: "PlaybackMode"))
183
197
  CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
@@ -187,6 +201,7 @@ module Aws::MediaTailor
187
201
  CreateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
188
202
  CreateChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
189
203
  CreateChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
204
+ CreateChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
190
205
  CreateChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
191
206
  CreateChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
192
207
  CreateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
@@ -206,6 +221,7 @@ module Aws::MediaTailor
206
221
  CreateProgramResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
207
222
  CreateProgramResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
208
223
  CreateProgramResponse.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, location_name: "ProgramName"))
224
+ CreateProgramResponse.add_member(:scheduled_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ScheduledStartTime"))
209
225
  CreateProgramResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
210
226
  CreateProgramResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
211
227
  CreateProgramResponse.struct_class = Types::CreateProgramResponse
@@ -299,6 +315,7 @@ module Aws::MediaTailor
299
315
  DescribeChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
300
316
  DescribeChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
301
317
  DescribeChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
318
+ DescribeChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
302
319
  DescribeChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
303
320
  DescribeChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
304
321
  DescribeChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
@@ -314,6 +331,7 @@ module Aws::MediaTailor
314
331
  DescribeProgramResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
315
332
  DescribeProgramResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
316
333
  DescribeProgramResponse.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, location_name: "ProgramName"))
334
+ DescribeProgramResponse.add_member(:scheduled_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ScheduledStartTime"))
317
335
  DescribeProgramResponse.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
318
336
  DescribeProgramResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
319
337
  DescribeProgramResponse.struct_class = Types::DescribeProgramResponse
@@ -399,6 +417,15 @@ module Aws::MediaTailor
399
417
 
400
418
  HttpPackageConfigurations.member = Shapes::ShapeRef.new(shape: HttpPackageConfiguration)
401
419
 
420
+ ListAlertsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
421
+ ListAlertsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
422
+ ListAlertsRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "resourceArn"))
423
+ ListAlertsRequest.struct_class = Types::ListAlertsRequest
424
+
425
+ ListAlertsResponse.add_member(:items, Shapes::ShapeRef.new(shape: __listOfAlert, location_name: "Items"))
426
+ ListAlertsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "NextToken"))
427
+ ListAlertsResponse.struct_class = Types::ListAlertsResponse
428
+
402
429
  ListChannelsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
403
430
  ListChannelsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
404
431
  ListChannelsRequest.struct_class = Types::ListChannelsRequest
@@ -539,6 +566,7 @@ module Aws::MediaTailor
539
566
  ScheduleEntry.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
540
567
  ScheduleEntry.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ProgramName"))
541
568
  ScheduleEntry.add_member(:schedule_ad_breaks, Shapes::ShapeRef.new(shape: __listOfScheduleAdBreak, location_name: "ScheduleAdBreaks"))
569
+ ScheduleEntry.add_member(:schedule_entry_type, Shapes::ShapeRef.new(shape: ScheduleEntryType, location_name: "ScheduleEntryType"))
542
570
  ScheduleEntry.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "SourceLocationName"))
543
571
  ScheduleEntry.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "VodSourceName"))
544
572
  ScheduleEntry.struct_class = Types::ScheduleEntry
@@ -584,6 +612,7 @@ module Aws::MediaTailor
584
612
 
585
613
  Transition.add_member(:relative_position, Shapes::ShapeRef.new(shape: RelativePosition, required: true, location_name: "RelativePosition"))
586
614
  Transition.add_member(:relative_program, Shapes::ShapeRef.new(shape: __string, location_name: "RelativeProgram"))
615
+ Transition.add_member(:scheduled_start_time_millis, Shapes::ShapeRef.new(shape: __long, location_name: "ScheduledStartTimeMillis"))
587
616
  Transition.add_member(:type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Type"))
588
617
  Transition.struct_class = Types::Transition
589
618
 
@@ -599,6 +628,7 @@ module Aws::MediaTailor
599
628
  UpdateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, location_name: "ChannelName"))
600
629
  UpdateChannelResponse.add_member(:channel_state, Shapes::ShapeRef.new(shape: ChannelState, location_name: "ChannelState"))
601
630
  UpdateChannelResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
631
+ UpdateChannelResponse.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
602
632
  UpdateChannelResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "LastModifiedTime"))
603
633
  UpdateChannelResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: ResponseOutputs, location_name: "Outputs"))
604
634
  UpdateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
@@ -646,6 +676,8 @@ module Aws::MediaTailor
646
676
 
647
677
  __listOfAdBreak.member = Shapes::ShapeRef.new(shape: AdBreak)
648
678
 
679
+ __listOfAlert.member = Shapes::ShapeRef.new(shape: Alert)
680
+
649
681
  __listOfChannel.member = Shapes::ShapeRef.new(shape: Channel)
650
682
 
651
683
  __listOfPlaybackConfiguration.member = Shapes::ShapeRef.new(shape: PlaybackConfiguration)
@@ -824,6 +856,20 @@ module Aws::MediaTailor
824
856
  o.output = Shapes::ShapeRef.new(shape: GetPlaybackConfigurationResponse)
825
857
  end)
826
858
 
859
+ api.add_operation(:list_alerts, Seahorse::Model::Operation.new.tap do |o|
860
+ o.name = "ListAlerts"
861
+ o.http_method = "GET"
862
+ o.http_request_uri = "/alerts"
863
+ o.input = Shapes::ShapeRef.new(shape: ListAlertsRequest)
864
+ o.output = Shapes::ShapeRef.new(shape: ListAlertsResponse)
865
+ o[:pager] = Aws::Pager.new(
866
+ limit_key: "max_results",
867
+ tokens: {
868
+ "next_token" => "next_token"
869
+ }
870
+ )
871
+ end)
872
+
827
873
  api.add_operation(:list_channels, Seahorse::Model::Operation.new.tap do |o|
828
874
  o.name = "ListChannels"
829
875
  o.http_method = "GET"
@@ -144,6 +144,41 @@ module Aws::MediaTailor
144
144
  include Aws::Structure
145
145
  end
146
146
 
147
+ # Alert configuration parameters.
148
+ #
149
+ # @!attribute [rw] alert_code
150
+ # The code for the alert. For example, NOT\_PROCESSED.
151
+ # @return [String]
152
+ #
153
+ # @!attribute [rw] alert_message
154
+ # If an alert is generated for a resource, an explanation of the
155
+ # reason for the alert.
156
+ # @return [String]
157
+ #
158
+ # @!attribute [rw] last_modified_time
159
+ # The timestamp when the alert was last modified.
160
+ # @return [Time]
161
+ #
162
+ # @!attribute [rw] related_resource_arns
163
+ # The Amazon Resource Names (ARNs) related to this alert.
164
+ # @return [Array<String>]
165
+ #
166
+ # @!attribute [rw] resource_arn
167
+ # The Amazon Resource Name (ARN) of the resource.
168
+ # @return [String]
169
+ #
170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Alert AWS API Documentation
171
+ #
172
+ class Alert < Struct.new(
173
+ :alert_code,
174
+ :alert_message,
175
+ :last_modified_time,
176
+ :related_resource_arns,
177
+ :resource_arn)
178
+ SENSITIVE = []
179
+ include Aws::Structure
180
+ end
181
+
147
182
  # The configuration for avail suppression, also known as ad suppression.
148
183
  # For more information about ad suppression, see [Ad Suppression][1].
149
184
  #
@@ -294,6 +329,12 @@ module Aws::MediaTailor
294
329
  # The timestamp of when the channel was created.
295
330
  # @return [Time]
296
331
  #
332
+ # @!attribute [rw] filler_slate
333
+ # Contains information about the slate used to fill gaps between
334
+ # programs in the schedule. You must configure FillerSlate if your
335
+ # channel uses an LINEAR PlaybackMode.
336
+ # @return [Types::SlateSource]
337
+ #
297
338
  # @!attribute [rw] last_modified_time
298
339
  # The timestamp of when the channel was last modified.
299
340
  # @return [Time]
@@ -303,8 +344,13 @@ module Aws::MediaTailor
303
344
  # @return [Array<Types::ResponseOutputItem>]
304
345
  #
305
346
  # @!attribute [rw] playback_mode
306
- # The type of playback mode for this channel. Possible values: ONCE or
307
- # LOOP.
347
+ # The type of playback mode for this channel.
348
+ #
349
+ # LINEAR - Programs play back-to-back only once.
350
+ #
351
+ # LOOP - Programs play back-to-back in an endless loop. When the last
352
+ # program in the schedule plays, playback loops back to the first
353
+ # program in the schedule.
308
354
  # @return [String]
309
355
  #
310
356
  # @!attribute [rw] tags
@@ -318,6 +364,7 @@ module Aws::MediaTailor
318
364
  :channel_name,
319
365
  :channel_state,
320
366
  :creation_time,
367
+ :filler_slate,
321
368
  :last_modified_time,
322
369
  :outputs,
323
370
  :playback_mode,
@@ -333,6 +380,10 @@ module Aws::MediaTailor
333
380
  #
334
381
  # {
335
382
  # channel_name: "__string", # required
383
+ # filler_slate: {
384
+ # source_location_name: "__string",
385
+ # vod_source_name: "__string",
386
+ # },
336
387
  # outputs: [ # required
337
388
  # {
338
389
  # dash_playlist_settings: {
@@ -348,7 +399,7 @@ module Aws::MediaTailor
348
399
  # source_group: "__string", # required
349
400
  # },
350
401
  # ],
351
- # playback_mode: "LOOP", # required, accepts LOOP
402
+ # playback_mode: "LOOP", # required, accepts LOOP, LINEAR
352
403
  # tags: {
353
404
  # "__string" => "__string",
354
405
  # },
@@ -357,13 +408,25 @@ module Aws::MediaTailor
357
408
  # @!attribute [rw] channel_name
358
409
  # @return [String]
359
410
  #
411
+ # @!attribute [rw] filler_slate
412
+ # The slate used to fill gaps between programs in the schedule. You
413
+ # must configure filler slate if your channel uses an LINEAR
414
+ # PlaybackMode.
415
+ # @return [Types::SlateSource]
416
+ #
360
417
  # @!attribute [rw] outputs
361
418
  # The channel's output properties.
362
419
  # @return [Array<Types::RequestOutputItem>]
363
420
  #
364
421
  # @!attribute [rw] playback_mode
365
- # The type of playback mode for this channel. The only supported value
366
- # is LOOP.
422
+ # The type of playback mode to use for this channel.
423
+ #
424
+ # LINEAR - The programs in the schedule play once back-to-back in the
425
+ # schedule.
426
+ #
427
+ # LOOP - The programs in the schedule play back-to-back in an endless
428
+ # loop. When the last program in the schedule stops playing, playback
429
+ # loops back to the first program in the schedule.
367
430
  # @return [String]
368
431
  #
369
432
  # @!attribute [rw] tags
@@ -374,6 +437,7 @@ module Aws::MediaTailor
374
437
  #
375
438
  class CreateChannelRequest < Struct.new(
376
439
  :channel_name,
440
+ :filler_slate,
377
441
  :outputs,
378
442
  :playback_mode,
379
443
  :tags)
@@ -393,6 +457,10 @@ module Aws::MediaTailor
393
457
  # @!attribute [rw] creation_time
394
458
  # @return [Time]
395
459
  #
460
+ # @!attribute [rw] filler_slate
461
+ # Slate VOD source configuration.
462
+ # @return [Types::SlateSource]
463
+ #
396
464
  # @!attribute [rw] last_modified_time
397
465
  # @return [Time]
398
466
  #
@@ -412,6 +480,7 @@ module Aws::MediaTailor
412
480
  :channel_name,
413
481
  :channel_state,
414
482
  :creation_time,
483
+ :filler_slate,
415
484
  :last_modified_time,
416
485
  :outputs,
417
486
  :playback_mode,
@@ -448,6 +517,7 @@ module Aws::MediaTailor
448
517
  # transition: { # required
449
518
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
450
519
  # relative_program: "__string",
520
+ # scheduled_start_time_millis: 1,
451
521
  # type: "__string", # required
452
522
  # },
453
523
  # },
@@ -505,6 +575,9 @@ module Aws::MediaTailor
505
575
  # @!attribute [rw] program_name
506
576
  # @return [String]
507
577
  #
578
+ # @!attribute [rw] scheduled_start_time
579
+ # @return [Time]
580
+ #
508
581
  # @!attribute [rw] source_location_name
509
582
  # @return [String]
510
583
  #
@@ -519,6 +592,7 @@ module Aws::MediaTailor
519
592
  :channel_name,
520
593
  :creation_time,
521
594
  :program_name,
595
+ :scheduled_start_time,
522
596
  :source_location_name,
523
597
  :vod_source_name)
524
598
  SENSITIVE = []
@@ -1056,6 +1130,11 @@ module Aws::MediaTailor
1056
1130
  # The timestamp of when the channel was created.
1057
1131
  # @return [Time]
1058
1132
  #
1133
+ # @!attribute [rw] filler_slate
1134
+ # Contains information about the slate used to fill gaps between
1135
+ # programs in the schedule.
1136
+ # @return [Types::SlateSource]
1137
+ #
1059
1138
  # @!attribute [rw] last_modified_time
1060
1139
  # The timestamp of when the channel was last modified.
1061
1140
  # @return [Time]
@@ -1065,8 +1144,7 @@ module Aws::MediaTailor
1065
1144
  # @return [Array<Types::ResponseOutputItem>]
1066
1145
  #
1067
1146
  # @!attribute [rw] playback_mode
1068
- # The type of playback for this channel. The only supported value is
1069
- # LOOP.
1147
+ # The channel's playback mode.
1070
1148
  # @return [String]
1071
1149
  #
1072
1150
  # @!attribute [rw] tags
@@ -1080,6 +1158,7 @@ module Aws::MediaTailor
1080
1158
  :channel_name,
1081
1159
  :channel_state,
1082
1160
  :creation_time,
1161
+ :filler_slate,
1083
1162
  :last_modified_time,
1084
1163
  :outputs,
1085
1164
  :playback_mode,
@@ -1133,6 +1212,13 @@ module Aws::MediaTailor
1133
1212
  # The name of the program.
1134
1213
  # @return [String]
1135
1214
  #
1215
+ # @!attribute [rw] scheduled_start_time
1216
+ # The date and time that the program is scheduled to start in ISO 8601
1217
+ # format and Coordinated Universal Time (UTC). For example, the value
1218
+ # 2021-03-27T17:48:16.751Z represents March 27, 2021 at 17:48:16.751
1219
+ # UTC.
1220
+ # @return [Time]
1221
+ #
1136
1222
  # @!attribute [rw] source_location_name
1137
1223
  # The source location name.
1138
1224
  # @return [String]
@@ -1149,6 +1235,7 @@ module Aws::MediaTailor
1149
1235
  :channel_name,
1150
1236
  :creation_time,
1151
1237
  :program_name,
1238
+ :scheduled_start_time,
1152
1239
  :source_location_name,
1153
1240
  :vod_source_name)
1154
1241
  SENSITIVE = []
@@ -1638,6 +1725,54 @@ module Aws::MediaTailor
1638
1725
  include Aws::Structure
1639
1726
  end
1640
1727
 
1728
+ # @note When making an API call, you may pass ListAlertsRequest
1729
+ # data as a hash:
1730
+ #
1731
+ # {
1732
+ # max_results: 1,
1733
+ # next_token: "__string",
1734
+ # resource_arn: "__string", # required
1735
+ # }
1736
+ #
1737
+ # @!attribute [rw] max_results
1738
+ # @return [Integer]
1739
+ #
1740
+ # @!attribute [rw] next_token
1741
+ # @return [String]
1742
+ #
1743
+ # @!attribute [rw] resource_arn
1744
+ # @return [String]
1745
+ #
1746
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlertsRequest AWS API Documentation
1747
+ #
1748
+ class ListAlertsRequest < Struct.new(
1749
+ :max_results,
1750
+ :next_token,
1751
+ :resource_arn)
1752
+ SENSITIVE = []
1753
+ include Aws::Structure
1754
+ end
1755
+
1756
+ # Lists the alerts for a given resource.
1757
+ #
1758
+ # @!attribute [rw] items
1759
+ # An array of alerts that are associated with this resource.
1760
+ # @return [Array<Types::Alert>]
1761
+ #
1762
+ # @!attribute [rw] next_token
1763
+ # Pagination token from the list request. Use the token to fetch the
1764
+ # next page of results.
1765
+ # @return [String]
1766
+ #
1767
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListAlertsResponse AWS API Documentation
1768
+ #
1769
+ class ListAlertsResponse < Struct.new(
1770
+ :items,
1771
+ :next_token)
1772
+ SENSITIVE = []
1773
+ include Aws::Structure
1774
+ end
1775
+
1641
1776
  # @note When making an API call, you may pass ListChannelsRequest
1642
1777
  # data as a hash:
1643
1778
  #
@@ -2499,6 +2634,7 @@ module Aws::MediaTailor
2499
2634
  # transition: { # required
2500
2635
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
2501
2636
  # relative_program: "__string",
2637
+ # scheduled_start_time_millis: 1,
2502
2638
  # type: "__string", # required
2503
2639
  # },
2504
2640
  # }
@@ -2541,6 +2677,12 @@ module Aws::MediaTailor
2541
2677
  # The schedule's ad break properties.
2542
2678
  # @return [Array<Types::ScheduleAdBreak>]
2543
2679
  #
2680
+ # @!attribute [rw] schedule_entry_type
2681
+ # The type of schedule entry.
2682
+ #
2683
+ # Valid values: PROGRAM or FILLER\_SLATE.
2684
+ # @return [String]
2685
+ #
2544
2686
  # @!attribute [rw] source_location_name
2545
2687
  # The name of the source location.
2546
2688
  # @return [String]
@@ -2558,6 +2700,7 @@ module Aws::MediaTailor
2558
2700
  :channel_name,
2559
2701
  :program_name,
2560
2702
  :schedule_ad_breaks,
2703
+ :schedule_entry_type,
2561
2704
  :source_location_name,
2562
2705
  :vod_source_name)
2563
2706
  SENSITIVE = []
@@ -2814,13 +2957,13 @@ module Aws::MediaTailor
2814
2957
  # {
2815
2958
  # relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
2816
2959
  # relative_program: "__string",
2960
+ # scheduled_start_time_millis: 1,
2817
2961
  # type: "__string", # required
2818
2962
  # }
2819
2963
  #
2820
2964
  # @!attribute [rw] relative_position
2821
2965
  # The position where this program will be inserted relative to the
2822
- # RelativeProgram. Possible values are: AFTER\_PROGRAM, and
2823
- # BEFORE\_PROGRAM.
2966
+ # RelativePosition.
2824
2967
  # @return [String]
2825
2968
  #
2826
2969
  # @!attribute [rw] relative_program
@@ -2828,9 +2971,29 @@ module Aws::MediaTailor
2828
2971
  # as defined by RelativePosition.
2829
2972
  # @return [String]
2830
2973
  #
2974
+ # @!attribute [rw] scheduled_start_time_millis
2975
+ # The date and time that the program is scheduled to start, in epoch
2976
+ # milliseconds.
2977
+ # @return [Integer]
2978
+ #
2831
2979
  # @!attribute [rw] type
2832
- # When the program should be played. RELATIVE means that programs will
2833
- # be played back-to-back.
2980
+ # Defines when the program plays in the schedule. You can set the
2981
+ # value to ABSOLUTE or RELATIVE.
2982
+ #
2983
+ # ABSOLUTE - The program plays at a specific wall clock time. This
2984
+ # setting can only be used for channels using the LINEAR PlaybackMode.
2985
+ #
2986
+ # Note the following considerations when using ABSOLUTE transitions:
2987
+ #
2988
+ # If the preceding program in the schedule has a duration that extends
2989
+ # past the wall clock time, MediaTailor truncates the preceding
2990
+ # program on a common segment boundary.
2991
+ #
2992
+ # If there are gaps in playback, MediaTailor plays the FillerSlate you
2993
+ # configured for your linear channel.
2994
+ #
2995
+ # RELATIVE - The program is inserted into the schedule either before
2996
+ # or after a program that you specify via RelativePosition.
2834
2997
  # @return [String]
2835
2998
  #
2836
2999
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Transition AWS API Documentation
@@ -2838,6 +3001,7 @@ module Aws::MediaTailor
2838
3001
  class Transition < Struct.new(
2839
3002
  :relative_position,
2840
3003
  :relative_program,
3004
+ :scheduled_start_time_millis,
2841
3005
  :type)
2842
3006
  SENSITIVE = []
2843
3007
  include Aws::Structure
@@ -2918,6 +3082,10 @@ module Aws::MediaTailor
2918
3082
  # @!attribute [rw] creation_time
2919
3083
  # @return [Time]
2920
3084
  #
3085
+ # @!attribute [rw] filler_slate
3086
+ # Slate VOD source configuration.
3087
+ # @return [Types::SlateSource]
3088
+ #
2921
3089
  # @!attribute [rw] last_modified_time
2922
3090
  # @return [Time]
2923
3091
  #
@@ -2937,6 +3105,7 @@ module Aws::MediaTailor
2937
3105
  :channel_name,
2938
3106
  :channel_state,
2939
3107
  :creation_time,
3108
+ :filler_slate,
2940
3109
  :last_modified_time,
2941
3110
  :outputs,
2942
3111
  :playback_mode,
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
48
48
  # @!group service
49
49
  module Aws::MediaTailor
50
50
 
51
- GEM_VERSION = '1.40.0'
51
+ GEM_VERSION = '1.44.0'
52
52
 
53
53
  end
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.40.0
4
+ version: 1.44.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: 2021-06-23 00:00:00.000000000 Z
11
+ date: 2021-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.120.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="