aws-sdk-mediatailor 1.74.0 → 1.76.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: c7ed0314b8c667d169546d423a5fc4cfb2520e1b309382f563d5a00d16b3984e
4
- data.tar.gz: aef7657f0fd43c74c8ee0d06a09a4c0f50aa8fad01fe21970618f6e1ff090afa
3
+ metadata.gz: 06c6039b41dfbc4573de4629b23c1e23f967c3e9bb28c6a88da94503da6aa096
4
+ data.tar.gz: 9a8fb7c890fbec4a2b1e043bf0fa928dd3d685adb754d143125d68a06baf0f07
5
5
  SHA512:
6
- metadata.gz: da1b9d3b87930e90a6d8de3ec652d94ca1ce5a7ff136f06c782b50f23fa80173597024886e9360c1414427bfdac38ebb0a93419f2353ea83fa134c18046ac2b0
7
- data.tar.gz: 0e841eb81633d97967df1dcba9b97a7213efd24e574ba5b5181caf514596cdc22872bd7d46c1dea42cdf384e8c86a694a74f509b6c7308354ccadda8ccb6e89c
6
+ metadata.gz: 296f67c82304b242fe21a1428ed6f758ce1ef3758a457daffb6c8f515811ff1765c1740287f28fa74af7a92db3d512d71c977335f8826c2a8630f8a19ea89415
7
+ data.tar.gz: 854f5b52e6f04777684a007538b3b4d0cf57ae9601ad2f2282046ef75ee9dabdaa8eb40997b5314b23b1e9bef30dcedfbb61687c674a0d17e4bc77bf8437560b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.76.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.75.0 (2023-12-20)
10
+ ------------------
11
+
12
+ * Feature - Adds the ability to configure time shifting on MediaTailor channels using the TimeShiftConfiguration field
13
+
4
14
  1.74.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.76.0
@@ -511,6 +511,10 @@ module Aws::MediaTailor
511
511
  # @option params [String] :tier
512
512
  # The tier of the channel.
513
513
  #
514
+ # @option params [Types::TimeShiftConfiguration] :time_shift_configuration
515
+ # The time-shifted viewing configuration you want to associate to the
516
+ # channel.
517
+ #
514
518
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
515
519
  #
516
520
  # * {Types::CreateChannelResponse#arn #arn} => String
@@ -523,6 +527,7 @@ module Aws::MediaTailor
523
527
  # * {Types::CreateChannelResponse#playback_mode #playback_mode} => String
524
528
  # * {Types::CreateChannelResponse#tags #tags} => Hash<String,String>
525
529
  # * {Types::CreateChannelResponse#tier #tier} => String
530
+ # * {Types::CreateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
526
531
  #
527
532
  # @example Request syntax with placeholder values
528
533
  #
@@ -553,6 +558,9 @@ module Aws::MediaTailor
553
558
  # "__string" => "__string",
554
559
  # },
555
560
  # tier: "BASIC", # accepts BASIC, STANDARD
561
+ # time_shift_configuration: {
562
+ # max_time_delay_seconds: 1, # required
563
+ # },
556
564
  # })
557
565
  #
558
566
  # @example Response structure
@@ -579,6 +587,7 @@ module Aws::MediaTailor
579
587
  # resp.tags #=> Hash
580
588
  # resp.tags["__string"] #=> String
581
589
  # resp.tier #=> String
590
+ # resp.time_shift_configuration.max_time_delay_seconds #=> Integer
582
591
  #
583
592
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannel AWS API Documentation
584
593
  #
@@ -1318,6 +1327,7 @@ module Aws::MediaTailor
1318
1327
  # * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
1319
1328
  # * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
1320
1329
  # * {Types::DescribeChannelResponse#tier #tier} => String
1330
+ # * {Types::DescribeChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
1321
1331
  #
1322
1332
  # @example Request syntax with placeholder values
1323
1333
  #
@@ -1351,6 +1361,7 @@ module Aws::MediaTailor
1351
1361
  # resp.tags #=> Hash
1352
1362
  # resp.tags["__string"] #=> String
1353
1363
  # resp.tier #=> String
1364
+ # resp.time_shift_configuration.max_time_delay_seconds #=> Integer
1354
1365
  #
1355
1366
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannel AWS API Documentation
1356
1367
  #
@@ -2686,6 +2697,10 @@ module Aws::MediaTailor
2686
2697
  # @option params [required, Array<Types::RequestOutputItem>] :outputs
2687
2698
  # The channel's output properties.
2688
2699
  #
2700
+ # @option params [Types::TimeShiftConfiguration] :time_shift_configuration
2701
+ # The time-shifted viewing configuration you want to associate to the
2702
+ # channel.
2703
+ #
2689
2704
  # @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2690
2705
  #
2691
2706
  # * {Types::UpdateChannelResponse#arn #arn} => String
@@ -2698,6 +2713,7 @@ module Aws::MediaTailor
2698
2713
  # * {Types::UpdateChannelResponse#playback_mode #playback_mode} => String
2699
2714
  # * {Types::UpdateChannelResponse#tags #tags} => Hash&lt;String,String&gt;
2700
2715
  # * {Types::UpdateChannelResponse#tier #tier} => String
2716
+ # * {Types::UpdateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
2701
2717
  #
2702
2718
  # @example Request syntax with placeholder values
2703
2719
  #
@@ -2723,6 +2739,9 @@ module Aws::MediaTailor
2723
2739
  # source_group: "__string", # required
2724
2740
  # },
2725
2741
  # ],
2742
+ # time_shift_configuration: {
2743
+ # max_time_delay_seconds: 1, # required
2744
+ # },
2726
2745
  # })
2727
2746
  #
2728
2747
  # @example Response structure
@@ -2749,6 +2768,7 @@ module Aws::MediaTailor
2749
2768
  # resp.tags #=> Hash
2750
2769
  # resp.tags["__string"] #=> String
2751
2770
  # resp.tier #=> String
2771
+ # resp.time_shift_configuration.max_time_delay_seconds #=> Integer
2752
2772
  #
2753
2773
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannel AWS API Documentation
2754
2774
  #
@@ -3103,7 +3123,7 @@ module Aws::MediaTailor
3103
3123
  params: params,
3104
3124
  config: config)
3105
3125
  context[:gem_name] = 'aws-sdk-mediatailor'
3106
- context[:gem_version] = '1.74.0'
3126
+ context[:gem_version] = '1.76.0'
3107
3127
  Seahorse::Client::Request.new(handlers, context)
3108
3128
  end
3109
3129
 
@@ -156,6 +156,7 @@ module Aws::MediaTailor
156
156
  String = Shapes::StringShape.new(name: 'String')
157
157
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
158
158
  Tier = Shapes::StringShape.new(name: 'Tier')
159
+ TimeShiftConfiguration = Shapes::StructureShape.new(name: 'TimeShiftConfiguration')
159
160
  TimeSignalMessage = Shapes::StructureShape.new(name: 'TimeSignalMessage')
160
161
  Transition = Shapes::StructureShape.new(name: 'Transition')
161
162
  Type = Shapes::StringShape.new(name: 'Type')
@@ -290,6 +291,7 @@ module Aws::MediaTailor
290
291
  CreateChannelRequest.add_member(:playback_mode, Shapes::ShapeRef.new(shape: PlaybackMode, required: true, location_name: "PlaybackMode"))
291
292
  CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
292
293
  CreateChannelRequest.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, location_name: "Tier"))
294
+ CreateChannelRequest.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
293
295
  CreateChannelRequest.struct_class = Types::CreateChannelRequest
294
296
 
295
297
  CreateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
@@ -302,6 +304,7 @@ module Aws::MediaTailor
302
304
  CreateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
303
305
  CreateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
304
306
  CreateChannelResponse.add_member(:tier, Shapes::ShapeRef.new(shape: __string, location_name: "Tier"))
307
+ CreateChannelResponse.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
305
308
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
306
309
 
307
310
  CreateLiveSourceRequest.add_member(:http_package_configurations, Shapes::ShapeRef.new(shape: HttpPackageConfigurations, required: true, location_name: "HttpPackageConfigurations"))
@@ -466,6 +469,7 @@ module Aws::MediaTailor
466
469
  DescribeChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
467
470
  DescribeChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
468
471
  DescribeChannelResponse.add_member(:tier, Shapes::ShapeRef.new(shape: __string, location_name: "Tier"))
472
+ DescribeChannelResponse.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
469
473
  DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
470
474
 
471
475
  DescribeLiveSourceRequest.add_member(:live_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "LiveSourceName"))
@@ -867,6 +871,9 @@ module Aws::MediaTailor
867
871
  TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, required: true, location_name: "tags"))
868
872
  TagResourceRequest.struct_class = Types::TagResourceRequest
869
873
 
874
+ TimeShiftConfiguration.add_member(:max_time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "MaxTimeDelaySeconds"))
875
+ TimeShiftConfiguration.struct_class = Types::TimeShiftConfiguration
876
+
870
877
  TimeSignalMessage.add_member(:segmentation_descriptors, Shapes::ShapeRef.new(shape: SegmentationDescriptorList, location_name: "SegmentationDescriptors"))
871
878
  TimeSignalMessage.struct_class = Types::TimeSignalMessage
872
879
 
@@ -884,6 +891,7 @@ module Aws::MediaTailor
884
891
  UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "ChannelName"))
885
892
  UpdateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
886
893
  UpdateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
894
+ UpdateChannelRequest.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
887
895
  UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
888
896
 
889
897
  UpdateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
@@ -896,6 +904,7 @@ module Aws::MediaTailor
896
904
  UpdateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
897
905
  UpdateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
898
906
  UpdateChannelResponse.add_member(:tier, Shapes::ShapeRef.new(shape: __string, location_name: "Tier"))
907
+ UpdateChannelResponse.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
899
908
  UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
900
909
 
901
910
  UpdateLiveSourceRequest.add_member(:http_package_configurations, Shapes::ShapeRef.new(shape: HttpPackageConfigurations, required: true, location_name: "HttpPackageConfigurations"))
@@ -14,6 +14,7 @@ module Aws::MediaTailor
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MediaTailor::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -614,6 +614,11 @@ module Aws::MediaTailor
614
614
  # The tier of the channel.
615
615
  # @return [String]
616
616
  #
617
+ # @!attribute [rw] time_shift_configuration
618
+ # The time-shifted viewing configuration you want to associate to the
619
+ # channel.
620
+ # @return [Types::TimeShiftConfiguration]
621
+ #
617
622
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelRequest AWS API Documentation
618
623
  #
619
624
  class CreateChannelRequest < Struct.new(
@@ -622,7 +627,8 @@ module Aws::MediaTailor
622
627
  :outputs,
623
628
  :playback_mode,
624
629
  :tags,
625
- :tier)
630
+ :tier,
631
+ :time_shift_configuration)
626
632
  SENSITIVE = []
627
633
  include Aws::Structure
628
634
  end
@@ -675,6 +681,10 @@ module Aws::MediaTailor
675
681
  # The tier of the channel.
676
682
  # @return [String]
677
683
  #
684
+ # @!attribute [rw] time_shift_configuration
685
+ # The time-shifted viewing configuration assigned to the channel.
686
+ # @return [Types::TimeShiftConfiguration]
687
+ #
678
688
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelResponse AWS API Documentation
679
689
  #
680
690
  class CreateChannelResponse < Struct.new(
@@ -687,7 +697,8 @@ module Aws::MediaTailor
687
697
  :outputs,
688
698
  :playback_mode,
689
699
  :tags,
690
- :tier)
700
+ :tier,
701
+ :time_shift_configuration)
691
702
  SENSITIVE = []
692
703
  include Aws::Structure
693
704
  end
@@ -1508,6 +1519,10 @@ module Aws::MediaTailor
1508
1519
  # The channel's tier.
1509
1520
  # @return [String]
1510
1521
  #
1522
+ # @!attribute [rw] time_shift_configuration
1523
+ # The time-shifted viewing configuration for the channel.
1524
+ # @return [Types::TimeShiftConfiguration]
1525
+ #
1511
1526
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelResponse AWS API Documentation
1512
1527
  #
1513
1528
  class DescribeChannelResponse < Struct.new(
@@ -1521,7 +1536,8 @@ module Aws::MediaTailor
1521
1536
  :outputs,
1522
1537
  :playback_mode,
1523
1538
  :tags,
1524
- :tier)
1539
+ :tier,
1540
+ :time_shift_configuration)
1525
1541
  SENSITIVE = []
1526
1542
  include Aws::Structure
1527
1543
  end
@@ -3867,6 +3883,22 @@ module Aws::MediaTailor
3867
3883
  include Aws::Structure
3868
3884
  end
3869
3885
 
3886
+ # The configuration for time-shifted viewing.
3887
+ #
3888
+ # @!attribute [rw] max_time_delay_seconds
3889
+ # The maximum time delay for time-shifted viewing. The minimum allowed
3890
+ # maximum time delay is 0 seconds, and the maximum allowed maximum
3891
+ # time delay is 21600 seconds (6 hours).
3892
+ # @return [Integer]
3893
+ #
3894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/TimeShiftConfiguration AWS API Documentation
3895
+ #
3896
+ class TimeShiftConfiguration < Struct.new(
3897
+ :max_time_delay_seconds)
3898
+ SENSITIVE = []
3899
+ include Aws::Structure
3900
+ end
3901
+
3870
3902
  # The SCTE-35 `time_signal` message can be sent with one or more
3871
3903
  # `segmentation_descriptor` messages. A `time_signal` message can be
3872
3904
  # sent only if a single `segmentation_descriptor` message is sent.
@@ -3978,12 +4010,18 @@ module Aws::MediaTailor
3978
4010
  # The channel's output properties.
3979
4011
  # @return [Array<Types::RequestOutputItem>]
3980
4012
  #
4013
+ # @!attribute [rw] time_shift_configuration
4014
+ # The time-shifted viewing configuration you want to associate to the
4015
+ # channel.
4016
+ # @return [Types::TimeShiftConfiguration]
4017
+ #
3981
4018
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelRequest AWS API Documentation
3982
4019
  #
3983
4020
  class UpdateChannelRequest < Struct.new(
3984
4021
  :channel_name,
3985
4022
  :filler_slate,
3986
- :outputs)
4023
+ :outputs,
4024
+ :time_shift_configuration)
3987
4025
  SENSITIVE = []
3988
4026
  include Aws::Structure
3989
4027
  end
@@ -4044,6 +4082,10 @@ module Aws::MediaTailor
4044
4082
  # The tier associated with this Channel.
4045
4083
  # @return [String]
4046
4084
  #
4085
+ # @!attribute [rw] time_shift_configuration
4086
+ # The time-shifted viewing configuration for the channel.
4087
+ # @return [Types::TimeShiftConfiguration]
4088
+ #
4047
4089
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelResponse AWS API Documentation
4048
4090
  #
4049
4091
  class UpdateChannelResponse < Struct.new(
@@ -4056,7 +4098,8 @@ module Aws::MediaTailor
4056
4098
  :outputs,
4057
4099
  :playback_mode,
4058
4100
  :tags,
4059
- :tier)
4101
+ :tier,
4102
+ :time_shift_configuration)
4060
4103
  SENSITIVE = []
4061
4104
  include Aws::Structure
4062
4105
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaTailor
54
54
 
55
- GEM_VERSION = '1.74.0'
55
+ GEM_VERSION = '1.76.0'
56
56
 
57
57
  end