aws-sdk-ivs 1.37.0 → 1.39.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: e467118b3a3d7f2fb19bed87415cd66ffc7df07970bb78237566b1e57555ee8b
4
- data.tar.gz: 5785101b9da6d2c3a6dc53eb774cf54318cb93591404f55d3489d4488b0fe553
3
+ metadata.gz: 9f8e3f0fb3b0b47e3a751a5c99ee05cb86b35bf62bbec4c8aca8fa81aff19bbd
4
+ data.tar.gz: c25be77af794eba2f5489c9206fbd909fb15cc1cdcc3a719f329a078a6e2afdc
5
5
  SHA512:
6
- metadata.gz: 6c85df49e4b4d0ff5e69cce52f2aa5cf98357f7d355964431f1aa898f95fd49d42351d34ec9586da27d843cc5476fbf8c76e1fe098d971082132de85acf8af32
7
- data.tar.gz: 594aadd98ef4d095823edf5aaf23bd60ae66aadb87ac1d0a4d8ebd8fc2d10f9929d919a635bb24a0eb05ea593f21ef33ab6c737c5351f6940ac725ebbea8bf6f
6
+ metadata.gz: 141742dfeb37227629c80c4f5c37f60d95b5f3e6cee11c0ddae2ae9a1b4f98990bb4eedb95325fa83632985b581f96fd56bf9c2eee0e222cb024ee5c156532be
7
+ data.tar.gz: 0cd657c886ce3e33b6bbef24e3b8e9b9139fc44fe7d0eb41898490d8d4080807ee7eec0dcd40ca9d7fa95c765b2438821c11870708aa9af22c9a8a075dad1b6b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2023-08-31)
5
+ ------------------
6
+
7
+ * Feature - Updated "type" description for CreateChannel, UpdateChannel, Channel, and ChannelSummary.
8
+
9
+ 1.38.0 (2023-07-17)
10
+ ------------------
11
+
12
+ * Feature - This release provides the flexibility to configure what renditions or thumbnail qualities to record when creating recording configuration.
13
+
4
14
  1.37.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.39.0
@@ -553,55 +553,12 @@ module Aws::IVS
553
553
  # @option params [String] :type
554
554
  # Channel type, which determines the allowable resolution and bitrate.
555
555
  # *If you exceed the allowable input resolution or bitrate, the stream
556
- # probably will disconnect immediately.* Some types generate multiple
557
- # qualities (renditions) from the original input; this automatically
558
- # gives viewers the best experience for their devices and network
559
- # conditions. Some types provide transcoded video; transcoding allows
560
- # higher playback quality across a range of download speeds. Default:
561
- # `STANDARD`. Valid values:
562
- #
563
- # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
564
- # quality to viewers. The viewer’s video-quality choice is limited to
565
- # the original input. Input resolution can be up to 1080p and bitrate
566
- # can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
567
- # between 480p and 1080p. Original audio is passed through.
568
- #
569
- # * `STANDARD`: Video is transcoded: multiple qualities are generated
570
- # from the original input, to automatically give viewers the best
571
- # experience for their devices and network conditions. Transcoding
572
- # allows higher playback quality across a range of download speeds.
573
- # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
574
- # Audio is transcoded only for renditions 360p and below; above that,
575
- # audio is passed through. This is the default when you create a
576
- # channel.
577
- #
578
- # * `ADVANCED_SD`: Video is transcoded; multiple qualities are generated
579
- # from the original input, to automatically give viewers the best
580
- # experience for their devices and network conditions. Input
581
- # resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
582
- # output is capped at SD quality (480p). You can select an optional
583
- # transcode preset (see below). Audio for all renditions is
584
- # transcoded, and an audio-only rendition is available.
585
- #
586
- # * `ADVANCED_HD`: Video is transcoded; multiple qualities are generated
587
- # from the original input, to automatically give viewers the best
588
- # experience for their devices and network conditions. Input
589
- # resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
590
- # output is capped at HD quality (720p). You can select an optional
591
- # transcode preset (see below). Audio for all renditions is
592
- # transcoded, and an audio-only rendition is available.
593
- #
594
- # Optional *transcode presets* (available for the `ADVANCED` types)
595
- # allow you to trade off available download bandwidth and video quality,
596
- # to optimize the viewing experience. There are two presets:
597
- #
598
- # * *Constrained bandwidth delivery* uses a lower bitrate for each
599
- # quality level. Use it if you have low download bandwidth and/or
600
- # simple video content (e.g., talking heads)
601
- #
602
- # * *Higher bandwidth delivery* uses a higher bitrate for each quality
603
- # level. Use it if you have high download bandwidth and/or complex
604
- # video content (e.g., flashes and quick scene changes).
556
+ # probably will disconnect immediately.* Default: `STANDARD`. For
557
+ # details, see [Channel Types][1].
558
+ #
559
+ #
560
+ #
561
+ # [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
605
562
  #
606
563
  # @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
607
564
  #
@@ -680,6 +637,10 @@ module Aws::IVS
680
637
  # interval, the multiple streams will be considered a single broadcast
681
638
  # and merged together. Default: 0.
682
639
  #
640
+ # @option params [Types::RenditionConfiguration] :rendition_configuration
641
+ # Object that describes which renditions should be recorded for a
642
+ # stream.
643
+ #
683
644
  # @option params [Hash<String,String>] :tags
684
645
  # Array of 1-50 maps, each of the form `string:string (key:value)`. See
685
646
  # [Tagging Amazon Web Services Resources][1] for more information,
@@ -710,11 +671,17 @@ module Aws::IVS
710
671
  # },
711
672
  # name: "RecordingConfigurationName",
712
673
  # recording_reconnect_window_seconds: 1,
674
+ # rendition_configuration: {
675
+ # rendition_selection: "ALL", # accepts ALL, NONE, CUSTOM
676
+ # renditions: ["FULL_HD"], # accepts FULL_HD, HD, SD, LOWEST_RESOLUTION
677
+ # },
713
678
  # tags: {
714
679
  # "TagKey" => "TagValue",
715
680
  # },
716
681
  # thumbnail_configuration: {
717
682
  # recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
683
+ # resolution: "FULL_HD", # accepts FULL_HD, HD, SD, LOWEST_RESOLUTION
684
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
718
685
  # target_interval_seconds: 1,
719
686
  # },
720
687
  # })
@@ -725,10 +692,16 @@ module Aws::IVS
725
692
  # resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
726
693
  # resp.recording_configuration.name #=> String
727
694
  # resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
695
+ # resp.recording_configuration.rendition_configuration.rendition_selection #=> String, one of "ALL", "NONE", "CUSTOM"
696
+ # resp.recording_configuration.rendition_configuration.renditions #=> Array
697
+ # resp.recording_configuration.rendition_configuration.renditions[0] #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
728
698
  # resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
729
699
  # resp.recording_configuration.tags #=> Hash
730
700
  # resp.recording_configuration.tags["TagKey"] #=> String
731
701
  # resp.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
702
+ # resp.recording_configuration.thumbnail_configuration.resolution #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
703
+ # resp.recording_configuration.thumbnail_configuration.storage #=> Array
704
+ # resp.recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
732
705
  # resp.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
733
706
  #
734
707
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateRecordingConfiguration AWS API Documentation
@@ -1006,10 +979,16 @@ module Aws::IVS
1006
979
  # resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
1007
980
  # resp.recording_configuration.name #=> String
1008
981
  # resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
982
+ # resp.recording_configuration.rendition_configuration.rendition_selection #=> String, one of "ALL", "NONE", "CUSTOM"
983
+ # resp.recording_configuration.rendition_configuration.renditions #=> Array
984
+ # resp.recording_configuration.rendition_configuration.renditions[0] #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1009
985
  # resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
1010
986
  # resp.recording_configuration.tags #=> Hash
1011
987
  # resp.recording_configuration.tags["TagKey"] #=> String
1012
988
  # resp.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
989
+ # resp.recording_configuration.thumbnail_configuration.resolution #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
990
+ # resp.recording_configuration.thumbnail_configuration.storage #=> Array
991
+ # resp.recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1013
992
  # resp.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
1014
993
  #
1015
994
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/GetRecordingConfiguration AWS API Documentation
@@ -1140,10 +1119,16 @@ module Aws::IVS
1140
1119
  # resp.stream_session.recording_configuration.destination_configuration.s3.bucket_name #=> String
1141
1120
  # resp.stream_session.recording_configuration.name #=> String
1142
1121
  # resp.stream_session.recording_configuration.recording_reconnect_window_seconds #=> Integer
1122
+ # resp.stream_session.recording_configuration.rendition_configuration.rendition_selection #=> String, one of "ALL", "NONE", "CUSTOM"
1123
+ # resp.stream_session.recording_configuration.rendition_configuration.renditions #=> Array
1124
+ # resp.stream_session.recording_configuration.rendition_configuration.renditions[0] #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1143
1125
  # resp.stream_session.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
1144
1126
  # resp.stream_session.recording_configuration.tags #=> Hash
1145
1127
  # resp.stream_session.recording_configuration.tags["TagKey"] #=> String
1146
1128
  # resp.stream_session.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
1129
+ # resp.stream_session.recording_configuration.thumbnail_configuration.resolution #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1130
+ # resp.stream_session.recording_configuration.thumbnail_configuration.storage #=> Array
1131
+ # resp.stream_session.recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1147
1132
  # resp.stream_session.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
1148
1133
  # resp.stream_session.start_time #=> Time
1149
1134
  # resp.stream_session.stream_id #=> String
@@ -1762,55 +1747,12 @@ module Aws::IVS
1762
1747
  # @option params [String] :type
1763
1748
  # Channel type, which determines the allowable resolution and bitrate.
1764
1749
  # *If you exceed the allowable input resolution or bitrate, the stream
1765
- # probably will disconnect immediately.* Some types generate multiple
1766
- # qualities (renditions) from the original input; this automatically
1767
- # gives viewers the best experience for their devices and network
1768
- # conditions. Some types provide transcoded video; transcoding allows
1769
- # higher playback quality across a range of download speeds. Default:
1770
- # `STANDARD`. Valid values:
1771
- #
1772
- # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original input
1773
- # quality to viewers. The viewer’s video-quality choice is limited to
1774
- # the original input. Input resolution can be up to 1080p and bitrate
1775
- # can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions
1776
- # between 480p and 1080p. Original audio is passed through.
1777
- #
1778
- # * `STANDARD`: Video is transcoded: multiple qualities are generated
1779
- # from the original input, to automatically give viewers the best
1780
- # experience for their devices and network conditions. Transcoding
1781
- # allows higher playback quality across a range of download speeds.
1782
- # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
1783
- # Audio is transcoded only for renditions 360p and below; above that,
1784
- # audio is passed through. This is the default when you create a
1785
- # channel.
1786
- #
1787
- # * `ADVANCED_SD`: Video is transcoded; multiple qualities are generated
1788
- # from the original input, to automatically give viewers the best
1789
- # experience for their devices and network conditions. Input
1790
- # resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
1791
- # output is capped at SD quality (480p). You can select an optional
1792
- # transcode preset (see below). Audio for all renditions is
1793
- # transcoded, and an audio-only rendition is available.
1794
- #
1795
- # * `ADVANCED_HD`: Video is transcoded; multiple qualities are generated
1796
- # from the original input, to automatically give viewers the best
1797
- # experience for their devices and network conditions. Input
1798
- # resolution can be up to 1080p and bitrate can be up to 8.5 Mbps;
1799
- # output is capped at HD quality (720p). You can select an optional
1800
- # transcode preset (see below). Audio for all renditions is
1801
- # transcoded, and an audio-only rendition is available.
1802
- #
1803
- # Optional *transcode presets* (available for the `ADVANCED` types)
1804
- # allow you to trade off available download bandwidth and video quality,
1805
- # to optimize the viewing experience. There are two presets:
1806
- #
1807
- # * *Constrained bandwidth delivery* uses a lower bitrate for each
1808
- # quality level. Use it if you have low download bandwidth and/or
1809
- # simple video content (e.g., talking heads)
1810
- #
1811
- # * *Higher bandwidth delivery* uses a higher bitrate for each quality
1812
- # level. Use it if you have high download bandwidth and/or complex
1813
- # video content (e.g., flashes and quick scene changes).
1750
+ # probably will disconnect immediately.* Default: `STANDARD`. For
1751
+ # details, see [Channel Types][1].
1752
+ #
1753
+ #
1754
+ #
1755
+ # [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
1814
1756
  #
1815
1757
  # @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1816
1758
  #
@@ -1866,7 +1808,7 @@ module Aws::IVS
1866
1808
  params: params,
1867
1809
  config: config)
1868
1810
  context[:gem_name] = 'aws-sdk-ivs'
1869
- context[:gem_version] = '1.37.0'
1811
+ context[:gem_version] = '1.39.0'
1870
1812
  Seahorse::Client::Request.new(handlers, context)
1871
1813
  end
1872
1814
 
@@ -110,6 +110,10 @@ module Aws::IVS
110
110
  RecordingConfigurationSummary = Shapes::StructureShape.new(name: 'RecordingConfigurationSummary')
111
111
  RecordingMode = Shapes::StringShape.new(name: 'RecordingMode')
112
112
  RecordingReconnectWindowSeconds = Shapes::IntegerShape.new(name: 'RecordingReconnectWindowSeconds')
113
+ RenditionConfiguration = Shapes::StructureShape.new(name: 'RenditionConfiguration')
114
+ RenditionConfigurationRendition = Shapes::StringShape.new(name: 'RenditionConfigurationRendition')
115
+ RenditionConfigurationRenditionList = Shapes::ListShape.new(name: 'RenditionConfigurationRenditionList')
116
+ RenditionConfigurationRenditionSelection = Shapes::StringShape.new(name: 'RenditionConfigurationRenditionSelection')
113
117
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
114
118
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
115
119
  S3DestinationBucketName = Shapes::StringShape.new(name: 'S3DestinationBucketName')
@@ -152,6 +156,9 @@ module Aws::IVS
152
156
  TargetIntervalSeconds = Shapes::IntegerShape.new(name: 'TargetIntervalSeconds')
153
157
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
154
158
  ThumbnailConfiguration = Shapes::StructureShape.new(name: 'ThumbnailConfiguration')
159
+ ThumbnailConfigurationResolution = Shapes::StringShape.new(name: 'ThumbnailConfigurationResolution')
160
+ ThumbnailConfigurationStorage = Shapes::StringShape.new(name: 'ThumbnailConfigurationStorage')
161
+ ThumbnailConfigurationStorageList = Shapes::ListShape.new(name: 'ThumbnailConfigurationStorageList')
155
162
  Time = Shapes::TimestampShape.new(name: 'Time', timestampFormat: "iso8601")
156
163
  TranscodePreset = Shapes::StringShape.new(name: 'TranscodePreset')
157
164
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
@@ -269,6 +276,7 @@ module Aws::IVS
269
276
  CreateRecordingConfigurationRequest.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
270
277
  CreateRecordingConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
271
278
  CreateRecordingConfigurationRequest.add_member(:recording_reconnect_window_seconds, Shapes::ShapeRef.new(shape: RecordingReconnectWindowSeconds, location_name: "recordingReconnectWindowSeconds"))
279
+ CreateRecordingConfigurationRequest.add_member(:rendition_configuration, Shapes::ShapeRef.new(shape: RenditionConfiguration, location_name: "renditionConfiguration"))
272
280
  CreateRecordingConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
273
281
  CreateRecordingConfigurationRequest.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
274
282
  CreateRecordingConfigurationRequest.struct_class = Types::CreateRecordingConfigurationRequest
@@ -435,6 +443,7 @@ module Aws::IVS
435
443
  RecordingConfiguration.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
436
444
  RecordingConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
437
445
  RecordingConfiguration.add_member(:recording_reconnect_window_seconds, Shapes::ShapeRef.new(shape: RecordingReconnectWindowSeconds, location_name: "recordingReconnectWindowSeconds"))
446
+ RecordingConfiguration.add_member(:rendition_configuration, Shapes::ShapeRef.new(shape: RenditionConfiguration, location_name: "renditionConfiguration"))
438
447
  RecordingConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: RecordingConfigurationState, required: true, location_name: "state"))
439
448
  RecordingConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
440
449
  RecordingConfiguration.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
@@ -449,6 +458,12 @@ module Aws::IVS
449
458
  RecordingConfigurationSummary.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
450
459
  RecordingConfigurationSummary.struct_class = Types::RecordingConfigurationSummary
451
460
 
461
+ RenditionConfiguration.add_member(:rendition_selection, Shapes::ShapeRef.new(shape: RenditionConfigurationRenditionSelection, location_name: "renditionSelection"))
462
+ RenditionConfiguration.add_member(:renditions, Shapes::ShapeRef.new(shape: RenditionConfigurationRenditionList, location_name: "renditions"))
463
+ RenditionConfiguration.struct_class = Types::RenditionConfiguration
464
+
465
+ RenditionConfigurationRenditionList.member = Shapes::ShapeRef.new(shape: RenditionConfigurationRendition)
466
+
452
467
  ResourceNotFoundException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
453
468
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
454
469
 
@@ -551,9 +566,13 @@ module Aws::IVS
551
566
  ThrottlingException.struct_class = Types::ThrottlingException
552
567
 
553
568
  ThumbnailConfiguration.add_member(:recording_mode, Shapes::ShapeRef.new(shape: RecordingMode, location_name: "recordingMode"))
569
+ ThumbnailConfiguration.add_member(:resolution, Shapes::ShapeRef.new(shape: ThumbnailConfigurationResolution, location_name: "resolution"))
570
+ ThumbnailConfiguration.add_member(:storage, Shapes::ShapeRef.new(shape: ThumbnailConfigurationStorageList, location_name: "storage"))
554
571
  ThumbnailConfiguration.add_member(:target_interval_seconds, Shapes::ShapeRef.new(shape: TargetIntervalSeconds, location_name: "targetIntervalSeconds"))
555
572
  ThumbnailConfiguration.struct_class = Types::ThumbnailConfiguration
556
573
 
574
+ ThumbnailConfigurationStorageList.member = Shapes::ShapeRef.new(shape: ThumbnailConfigurationStorage)
575
+
557
576
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
558
577
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
559
578
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -627,7 +646,10 @@ module Aws::IVS
627
646
  o.http_request_uri = "/BatchStartViewerSessionRevocation"
628
647
  o.input = Shapes::ShapeRef.new(shape: BatchStartViewerSessionRevocationRequest)
629
648
  o.output = Shapes::ShapeRef.new(shape: BatchStartViewerSessionRevocationResponse)
649
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
630
650
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
651
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
652
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
631
653
  end)
632
654
 
633
655
  api.add_operation(:create_channel, Seahorse::Model::Operation.new.tap do |o|
@@ -931,9 +953,11 @@ module Aws::IVS
931
953
  o.http_request_uri = "/StartViewerSessionRevocation"
932
954
  o.input = Shapes::ShapeRef.new(shape: StartViewerSessionRevocationRequest)
933
955
  o.output = Shapes::ShapeRef.new(shape: StartViewerSessionRevocationResponse)
956
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
934
957
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
935
958
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
936
959
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
960
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
937
961
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
938
962
  end)
939
963
 
@@ -282,56 +282,12 @@ module Aws::IVS
282
282
  # @!attribute [rw] type
283
283
  # Channel type, which determines the allowable resolution and bitrate.
284
284
  # *If you exceed the allowable input resolution or bitrate, the stream
285
- # probably will disconnect immediately.* Some types generate multiple
286
- # qualities (renditions) from the original input; this automatically
287
- # gives viewers the best experience for their devices and network
288
- # conditions. Some types provide transcoded video; transcoding allows
289
- # higher playback quality across a range of download speeds. Default:
290
- # `STANDARD`. Valid values:
291
- #
292
- # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
293
- # input quality to viewers. The viewer’s video-quality choice is
294
- # limited to the original input. Input resolution can be up to 1080p
295
- # and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
296
- # resolutions between 480p and 1080p. Original audio is passed
297
- # through.
298
- #
299
- # * `STANDARD`: Video is transcoded: multiple qualities are generated
300
- # from the original input, to automatically give viewers the best
301
- # experience for their devices and network conditions. Transcoding
302
- # allows higher playback quality across a range of download speeds.
303
- # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
304
- # Audio is transcoded only for renditions 360p and below; above
305
- # that, audio is passed through. This is the default when you create
306
- # a channel.
307
- #
308
- # * `ADVANCED_SD`: Video is transcoded; multiple qualities are
309
- # generated from the original input, to automatically give viewers
310
- # the best experience for their devices and network conditions.
311
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
312
- # Mbps; output is capped at SD quality (480p). You can select an
313
- # optional transcode preset (see below). Audio for all renditions is
314
- # transcoded, and an audio-only rendition is available.
315
- #
316
- # * `ADVANCED_HD`: Video is transcoded; multiple qualities are
317
- # generated from the original input, to automatically give viewers
318
- # the best experience for their devices and network conditions.
319
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
320
- # Mbps; output is capped at HD quality (720p). You can select an
321
- # optional transcode preset (see below). Audio for all renditions is
322
- # transcoded, and an audio-only rendition is available.
323
- #
324
- # Optional *transcode presets* (available for the `ADVANCED` types)
325
- # allow you to trade off available download bandwidth and video
326
- # quality, to optimize the viewing experience. There are two presets:
327
- #
328
- # * *Constrained bandwidth delivery* uses a lower bitrate for each
329
- # quality level. Use it if you have low download bandwidth and/or
330
- # simple video content (e.g., talking heads)
331
- #
332
- # * *Higher bandwidth delivery* uses a higher bitrate for each quality
333
- # level. Use it if you have high download bandwidth and/or complex
334
- # video content (e.g., flashes and quick scene changes).
285
+ # probably will disconnect immediately.* Default: `STANDARD`. For
286
+ # details, see [Channel Types][1].
287
+ #
288
+ #
289
+ #
290
+ # [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
335
291
  # @return [String]
336
292
  #
337
293
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/Channel AWS API Documentation
@@ -419,56 +375,12 @@ module Aws::IVS
419
375
  # @!attribute [rw] type
420
376
  # Channel type, which determines the allowable resolution and bitrate.
421
377
  # *If you exceed the allowable input resolution or bitrate, the stream
422
- # probably will disconnect immediately.* Some types generate multiple
423
- # qualities (renditions) from the original input; this automatically
424
- # gives viewers the best experience for their devices and network
425
- # conditions. Some types provide transcoded video; transcoding allows
426
- # higher playback quality across a range of download speeds. Default:
427
- # `STANDARD`. Valid values:
428
- #
429
- # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
430
- # input quality to viewers. The viewer’s video-quality choice is
431
- # limited to the original input. Input resolution can be up to 1080p
432
- # and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
433
- # resolutions between 480p and 1080p. Original audio is passed
434
- # through.
435
- #
436
- # * `STANDARD`: Video is transcoded: multiple qualities are generated
437
- # from the original input, to automatically give viewers the best
438
- # experience for their devices and network conditions. Transcoding
439
- # allows higher playback quality across a range of download speeds.
440
- # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
441
- # Audio is transcoded only for renditions 360p and below; above
442
- # that, audio is passed through. This is the default when you create
443
- # a channel.
444
- #
445
- # * `ADVANCED_SD`: Video is transcoded; multiple qualities are
446
- # generated from the original input, to automatically give viewers
447
- # the best experience for their devices and network conditions.
448
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
449
- # Mbps; output is capped at SD quality (480p). You can select an
450
- # optional transcode preset (see below). Audio for all renditions is
451
- # transcoded, and an audio-only rendition is available.
452
- #
453
- # * `ADVANCED_HD`: Video is transcoded; multiple qualities are
454
- # generated from the original input, to automatically give viewers
455
- # the best experience for their devices and network conditions.
456
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
457
- # Mbps; output is capped at HD quality (720p). You can select an
458
- # optional transcode preset (see below). Audio for all renditions is
459
- # transcoded, and an audio-only rendition is available.
460
- #
461
- # Optional *transcode presets* (available for the `ADVANCED` types)
462
- # allow you to trade off available download bandwidth and video
463
- # quality, to optimize the viewing experience. There are two presets:
464
- #
465
- # * *Constrained bandwidth delivery* uses a lower bitrate for each
466
- # quality level. Use it if you have low download bandwidth and/or
467
- # simple video content (e.g., talking heads)
468
- #
469
- # * *Higher bandwidth delivery* uses a higher bitrate for each quality
470
- # level. Use it if you have high download bandwidth and/or complex
471
- # video content (e.g., flashes and quick scene changes).
378
+ # probably will disconnect immediately.* Default: `STANDARD`. For
379
+ # details, see [Channel Types][1].
380
+ #
381
+ #
382
+ #
383
+ # [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
472
384
  # @return [String]
473
385
  #
474
386
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ChannelSummary AWS API Documentation
@@ -547,56 +459,12 @@ module Aws::IVS
547
459
  # @!attribute [rw] type
548
460
  # Channel type, which determines the allowable resolution and bitrate.
549
461
  # *If you exceed the allowable input resolution or bitrate, the stream
550
- # probably will disconnect immediately.* Some types generate multiple
551
- # qualities (renditions) from the original input; this automatically
552
- # gives viewers the best experience for their devices and network
553
- # conditions. Some types provide transcoded video; transcoding allows
554
- # higher playback quality across a range of download speeds. Default:
555
- # `STANDARD`. Valid values:
556
- #
557
- # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
558
- # input quality to viewers. The viewer’s video-quality choice is
559
- # limited to the original input. Input resolution can be up to 1080p
560
- # and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
561
- # resolutions between 480p and 1080p. Original audio is passed
562
- # through.
563
- #
564
- # * `STANDARD`: Video is transcoded: multiple qualities are generated
565
- # from the original input, to automatically give viewers the best
566
- # experience for their devices and network conditions. Transcoding
567
- # allows higher playback quality across a range of download speeds.
568
- # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
569
- # Audio is transcoded only for renditions 360p and below; above
570
- # that, audio is passed through. This is the default when you create
571
- # a channel.
572
- #
573
- # * `ADVANCED_SD`: Video is transcoded; multiple qualities are
574
- # generated from the original input, to automatically give viewers
575
- # the best experience for their devices and network conditions.
576
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
577
- # Mbps; output is capped at SD quality (480p). You can select an
578
- # optional transcode preset (see below). Audio for all renditions is
579
- # transcoded, and an audio-only rendition is available.
580
- #
581
- # * `ADVANCED_HD`: Video is transcoded; multiple qualities are
582
- # generated from the original input, to automatically give viewers
583
- # the best experience for their devices and network conditions.
584
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
585
- # Mbps; output is capped at HD quality (720p). You can select an
586
- # optional transcode preset (see below). Audio for all renditions is
587
- # transcoded, and an audio-only rendition is available.
588
- #
589
- # Optional *transcode presets* (available for the `ADVANCED` types)
590
- # allow you to trade off available download bandwidth and video
591
- # quality, to optimize the viewing experience. There are two presets:
592
- #
593
- # * *Constrained bandwidth delivery* uses a lower bitrate for each
594
- # quality level. Use it if you have low download bandwidth and/or
595
- # simple video content (e.g., talking heads)
596
- #
597
- # * *Higher bandwidth delivery* uses a higher bitrate for each quality
598
- # level. Use it if you have high download bandwidth and/or complex
599
- # video content (e.g., flashes and quick scene changes).
462
+ # probably will disconnect immediately.* Default: `STANDARD`. For
463
+ # details, see [Channel Types][1].
464
+ #
465
+ #
466
+ #
467
+ # [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
600
468
  # @return [String]
601
469
  #
602
470
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateChannelRequest AWS API Documentation
@@ -644,6 +512,11 @@ module Aws::IVS
644
512
  # and merged together. Default: 0.
645
513
  # @return [Integer]
646
514
  #
515
+ # @!attribute [rw] rendition_configuration
516
+ # Object that describes which renditions should be recorded for a
517
+ # stream.
518
+ # @return [Types::RenditionConfiguration]
519
+ #
647
520
  # @!attribute [rw] tags
648
521
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
649
522
  # See [Tagging Amazon Web Services Resources][1] for more information,
@@ -668,6 +541,7 @@ module Aws::IVS
668
541
  :destination_configuration,
669
542
  :name,
670
543
  :recording_reconnect_window_seconds,
544
+ :rendition_configuration,
671
545
  :tags,
672
546
  :thumbnail_configuration)
673
547
  SENSITIVE = []
@@ -1413,6 +1287,11 @@ module Aws::IVS
1413
1287
  # and merged together. Default: 0.
1414
1288
  # @return [Integer]
1415
1289
  #
1290
+ # @!attribute [rw] rendition_configuration
1291
+ # Object that describes which renditions should be recorded for a
1292
+ # stream.
1293
+ # @return [Types::RenditionConfiguration]
1294
+ #
1416
1295
  # @!attribute [rw] state
1417
1296
  # Indicates the current state of the recording configuration. When the
1418
1297
  # state is `ACTIVE`, the configuration is ready for recording a
@@ -1444,6 +1323,7 @@ module Aws::IVS
1444
1323
  :destination_configuration,
1445
1324
  :name,
1446
1325
  :recording_reconnect_window_seconds,
1326
+ :rendition_configuration,
1447
1327
  :state,
1448
1328
  :tags,
1449
1329
  :thumbnail_configuration)
@@ -1496,6 +1376,39 @@ module Aws::IVS
1496
1376
  include Aws::Structure
1497
1377
  end
1498
1378
 
1379
+ # Object that describes which renditions should be recorded for a
1380
+ # stream.
1381
+ #
1382
+ # @!attribute [rw] rendition_selection
1383
+ # Indicates which set of renditions are recorded for a stream. For
1384
+ # `BASIC` channels, the `CUSTOM` value has no effect. If `CUSTOM` is
1385
+ # specified, a set of renditions must be specified in the `renditions`
1386
+ # field. Default: `ALL`.
1387
+ # @return [String]
1388
+ #
1389
+ # @!attribute [rw] renditions
1390
+ # Indicates which renditions are recorded for a stream, if
1391
+ # `renditionSelection` is `CUSTOM`; otherwise, this field is
1392
+ # irrelevant. The selected renditions are recorded if they are
1393
+ # available during the stream. If a selected rendition is unavailable,
1394
+ # the best available rendition is recorded. For details on the
1395
+ # resolution dimensions of each rendition, see [Auto-Record to Amazon
1396
+ # S3][1].
1397
+ #
1398
+ #
1399
+ #
1400
+ # [1]: https://docs.aws.amazon.com/ivs/latest/userguide/record-to-s3.html
1401
+ # @return [Array<String>]
1402
+ #
1403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/RenditionConfiguration AWS API Documentation
1404
+ #
1405
+ class RenditionConfiguration < Struct.new(
1406
+ :rendition_selection,
1407
+ :renditions)
1408
+ SENSITIVE = []
1409
+ include Aws::Structure
1410
+ end
1411
+
1499
1412
  # @!attribute [rw] exception_message
1500
1413
  # Request references a resource which does not exist.
1501
1414
  # @return [String]
@@ -1945,18 +1858,42 @@ module Aws::IVS
1945
1858
  # Thumbnail recording mode. Default: `INTERVAL`.
1946
1859
  # @return [String]
1947
1860
  #
1861
+ # @!attribute [rw] resolution
1862
+ # Indicates the desired resolution of recorded thumbnails. Thumbnails
1863
+ # are recorded at the selected resolution if the corresponding
1864
+ # rendition is available during the stream; otherwise, they are
1865
+ # recorded at source resolution. For more information about resolution
1866
+ # values and their corresponding height and width dimensions, see
1867
+ # [Auto-Record to Amazon S3][1]. Default: Null (source resolution is
1868
+ # returned).
1869
+ #
1870
+ #
1871
+ #
1872
+ # [1]: https://docs.aws.amazon.com/ivs/latest/userguide/record-to-s3.html
1873
+ # @return [String]
1874
+ #
1875
+ # @!attribute [rw] storage
1876
+ # Indicates the format in which thumbnails are recorded. `SEQUENTIAL`
1877
+ # records all generated thumbnails in a serial manner, to the
1878
+ # media/thumbnails directory. `LATEST` saves the latest thumbnail in
1879
+ # media/latest\_thumbnail/thumb.jpg and overwrites it at the interval
1880
+ # specified by `targetIntervalSeconds`. You can enable both
1881
+ # `SEQUENTIAL` and `LATEST`. Default: `SEQUENTIAL`.
1882
+ # @return [Array<String>]
1883
+ #
1948
1884
  # @!attribute [rw] target_interval_seconds
1949
1885
  # The targeted thumbnail-generation interval in seconds. This is
1950
1886
  # configurable (and required) only if `recordingMode` is `INTERVAL`.
1951
1887
  # Default: 60.
1952
1888
  #
1953
- # **Important:** Setting a value for `targetIntervalSeconds` does not
1954
- # guarantee that thumbnails are generated at the specified interval.
1955
- # For thumbnails to be generated at the `targetIntervalSeconds`
1956
- # interval, the `IDR/Keyframe` value for the input video must be less
1957
- # than the `targetIntervalSeconds` value. See [ Amazon IVS Streaming
1958
- # Configuration][1] for information on setting `IDR/Keyframe` to the
1959
- # recommended value in video-encoder settings.
1889
+ # **Important:** For the `BASIC` channel type, setting a value for
1890
+ # `targetIntervalSeconds` does not guarantee that thumbnails are
1891
+ # generated at the specified interval. For thumbnails to be generated
1892
+ # at the `targetIntervalSeconds` interval, the `IDR/Keyframe` value
1893
+ # for the input video must be less than the `targetIntervalSeconds`
1894
+ # value. See [ Amazon IVS Streaming Configuration][1] for information
1895
+ # on setting `IDR/Keyframe` to the recommended value in video-encoder
1896
+ # settings.
1960
1897
  #
1961
1898
  #
1962
1899
  #
@@ -1967,6 +1904,8 @@ module Aws::IVS
1967
1904
  #
1968
1905
  class ThumbnailConfiguration < Struct.new(
1969
1906
  :recording_mode,
1907
+ :resolution,
1908
+ :storage,
1970
1909
  :target_interval_seconds)
1971
1910
  SENSITIVE = []
1972
1911
  include Aws::Structure
@@ -2042,56 +1981,12 @@ module Aws::IVS
2042
1981
  # @!attribute [rw] type
2043
1982
  # Channel type, which determines the allowable resolution and bitrate.
2044
1983
  # *If you exceed the allowable input resolution or bitrate, the stream
2045
- # probably will disconnect immediately.* Some types generate multiple
2046
- # qualities (renditions) from the original input; this automatically
2047
- # gives viewers the best experience for their devices and network
2048
- # conditions. Some types provide transcoded video; transcoding allows
2049
- # higher playback quality across a range of download speeds. Default:
2050
- # `STANDARD`. Valid values:
2051
- #
2052
- # * `BASIC`: Video is transmuxed: Amazon IVS delivers the original
2053
- # input quality to viewers. The viewer’s video-quality choice is
2054
- # limited to the original input. Input resolution can be up to 1080p
2055
- # and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for
2056
- # resolutions between 480p and 1080p. Original audio is passed
2057
- # through.
2058
- #
2059
- # * `STANDARD`: Video is transcoded: multiple qualities are generated
2060
- # from the original input, to automatically give viewers the best
2061
- # experience for their devices and network conditions. Transcoding
2062
- # allows higher playback quality across a range of download speeds.
2063
- # Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps.
2064
- # Audio is transcoded only for renditions 360p and below; above
2065
- # that, audio is passed through. This is the default when you create
2066
- # a channel.
2067
- #
2068
- # * `ADVANCED_SD`: Video is transcoded; multiple qualities are
2069
- # generated from the original input, to automatically give viewers
2070
- # the best experience for their devices and network conditions.
2071
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
2072
- # Mbps; output is capped at SD quality (480p). You can select an
2073
- # optional transcode preset (see below). Audio for all renditions is
2074
- # transcoded, and an audio-only rendition is available.
2075
- #
2076
- # * `ADVANCED_HD`: Video is transcoded; multiple qualities are
2077
- # generated from the original input, to automatically give viewers
2078
- # the best experience for their devices and network conditions.
2079
- # Input resolution can be up to 1080p and bitrate can be up to 8.5
2080
- # Mbps; output is capped at HD quality (720p). You can select an
2081
- # optional transcode preset (see below). Audio for all renditions is
2082
- # transcoded, and an audio-only rendition is available.
2083
- #
2084
- # Optional *transcode presets* (available for the `ADVANCED` types)
2085
- # allow you to trade off available download bandwidth and video
2086
- # quality, to optimize the viewing experience. There are two presets:
2087
- #
2088
- # * *Constrained bandwidth delivery* uses a lower bitrate for each
2089
- # quality level. Use it if you have low download bandwidth and/or
2090
- # simple video content (e.g., talking heads)
2091
- #
2092
- # * *Higher bandwidth delivery* uses a higher bitrate for each quality
2093
- # level. Use it if you have high download bandwidth and/or complex
2094
- # video content (e.g., flashes and quick scene changes).
1984
+ # probably will disconnect immediately.* Default: `STANDARD`. For
1985
+ # details, see [Channel Types][1].
1986
+ #
1987
+ #
1988
+ #
1989
+ # [1]: https://docs.aws.amazon.com/ivs/latest/LowLatencyAPIReference/channel-types.html
2095
1990
  # @return [String]
2096
1991
  #
2097
1992
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UpdateChannelRequest AWS API Documentation
data/lib/aws-sdk-ivs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivs/customizations'
52
52
  # @!group service
53
53
  module Aws::IVS
54
54
 
55
- GEM_VERSION = '1.37.0'
55
+ GEM_VERSION = '1.39.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.37.0
4
+ version: 1.39.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core