aws-sdk-ivs 1.36.0 → 1.38.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: 840fe52fb056dc39bdab70ad5c088ecd074b75ff3e30d4f51caf13132ad64981
4
- data.tar.gz: 92ecb3870b86cbb4db3b354e0214c8aee6bfb24f6931f5de5d8ac9d5dc1a2ff5
3
+ metadata.gz: 781cedc186bd7ffd229a0c7af006be656abd27fd36a9f0efad48aa2742cd6a5a
4
+ data.tar.gz: 4f12bbad4a6ef1cea9c0aa2d0704b0728f4950af7678b60bb582346a0cfb6e9c
5
5
  SHA512:
6
- metadata.gz: f71cef19b2b703f3065f01d81cac389065dc6ca06499219cbdf4f3333810c1fd10b151628456c0c57b8c8f1c40c00dc41e540c5f6c962a88d42f2cb3d378ef55
7
- data.tar.gz: d5ffc7f607f31ef7e7d88031bb54494c2e0b019a40dbc0d4ec915f95863e7fe771abaa6850d485f7e078f2914797d5f094e1d68cc6d70d1c9dee5323b5fb444c
6
+ metadata.gz: ffcb4da849c4c1ef0c9319f3518845c46fbb33c918a03bf6d864844262ae561f4967a9326ed0831286f50d3fe447970fbf591ced72078f6661a308dcc8fff06f
7
+ data.tar.gz: 70e42d1882ae9dbad97ba36ef632b534db513e94af2bbe0ea4a4a36ad11478a26f74344afdfd2a93e84da1fd7899cf229779d63994079d38a0ff64e95e289361
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2023-07-17)
5
+ ------------------
6
+
7
+ * Feature - This release provides the flexibility to configure what renditions or thumbnail qualities to record when creating recording configuration.
8
+
9
+ 1.37.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.36.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.38.0
@@ -216,6 +216,10 @@ module Aws::IVS
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -676,6 +680,10 @@ module Aws::IVS
676
680
  # interval, the multiple streams will be considered a single broadcast
677
681
  # and merged together. Default: 0.
678
682
  #
683
+ # @option params [Types::RenditionConfiguration] :rendition_configuration
684
+ # Object that describes which renditions should be recorded for a
685
+ # stream.
686
+ #
679
687
  # @option params [Hash<String,String>] :tags
680
688
  # Array of 1-50 maps, each of the form `string:string (key:value)`. See
681
689
  # [Tagging Amazon Web Services Resources][1] for more information,
@@ -706,11 +714,17 @@ module Aws::IVS
706
714
  # },
707
715
  # name: "RecordingConfigurationName",
708
716
  # recording_reconnect_window_seconds: 1,
717
+ # rendition_configuration: {
718
+ # rendition_selection: "ALL", # accepts ALL, NONE, CUSTOM
719
+ # renditions: ["FULL_HD"], # accepts FULL_HD, HD, SD, LOWEST_RESOLUTION
720
+ # },
709
721
  # tags: {
710
722
  # "TagKey" => "TagValue",
711
723
  # },
712
724
  # thumbnail_configuration: {
713
725
  # recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
726
+ # resolution: "FULL_HD", # accepts FULL_HD, HD, SD, LOWEST_RESOLUTION
727
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
714
728
  # target_interval_seconds: 1,
715
729
  # },
716
730
  # })
@@ -721,10 +735,16 @@ module Aws::IVS
721
735
  # resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
722
736
  # resp.recording_configuration.name #=> String
723
737
  # resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
738
+ # resp.recording_configuration.rendition_configuration.rendition_selection #=> String, one of "ALL", "NONE", "CUSTOM"
739
+ # resp.recording_configuration.rendition_configuration.renditions #=> Array
740
+ # resp.recording_configuration.rendition_configuration.renditions[0] #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
724
741
  # resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
725
742
  # resp.recording_configuration.tags #=> Hash
726
743
  # resp.recording_configuration.tags["TagKey"] #=> String
727
744
  # resp.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
745
+ # resp.recording_configuration.thumbnail_configuration.resolution #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
746
+ # resp.recording_configuration.thumbnail_configuration.storage #=> Array
747
+ # resp.recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
728
748
  # resp.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
729
749
  #
730
750
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateRecordingConfiguration AWS API Documentation
@@ -1002,10 +1022,16 @@ module Aws::IVS
1002
1022
  # resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
1003
1023
  # resp.recording_configuration.name #=> String
1004
1024
  # resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
1025
+ # resp.recording_configuration.rendition_configuration.rendition_selection #=> String, one of "ALL", "NONE", "CUSTOM"
1026
+ # resp.recording_configuration.rendition_configuration.renditions #=> Array
1027
+ # resp.recording_configuration.rendition_configuration.renditions[0] #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1005
1028
  # resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
1006
1029
  # resp.recording_configuration.tags #=> Hash
1007
1030
  # resp.recording_configuration.tags["TagKey"] #=> String
1008
1031
  # resp.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
1032
+ # resp.recording_configuration.thumbnail_configuration.resolution #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1033
+ # resp.recording_configuration.thumbnail_configuration.storage #=> Array
1034
+ # resp.recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1009
1035
  # resp.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
1010
1036
  #
1011
1037
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/GetRecordingConfiguration AWS API Documentation
@@ -1136,10 +1162,16 @@ module Aws::IVS
1136
1162
  # resp.stream_session.recording_configuration.destination_configuration.s3.bucket_name #=> String
1137
1163
  # resp.stream_session.recording_configuration.name #=> String
1138
1164
  # resp.stream_session.recording_configuration.recording_reconnect_window_seconds #=> Integer
1165
+ # resp.stream_session.recording_configuration.rendition_configuration.rendition_selection #=> String, one of "ALL", "NONE", "CUSTOM"
1166
+ # resp.stream_session.recording_configuration.rendition_configuration.renditions #=> Array
1167
+ # resp.stream_session.recording_configuration.rendition_configuration.renditions[0] #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1139
1168
  # resp.stream_session.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
1140
1169
  # resp.stream_session.recording_configuration.tags #=> Hash
1141
1170
  # resp.stream_session.recording_configuration.tags["TagKey"] #=> String
1142
1171
  # resp.stream_session.recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "DISABLED", "INTERVAL"
1172
+ # resp.stream_session.recording_configuration.thumbnail_configuration.resolution #=> String, one of "FULL_HD", "HD", "SD", "LOWEST_RESOLUTION"
1173
+ # resp.stream_session.recording_configuration.thumbnail_configuration.storage #=> Array
1174
+ # resp.stream_session.recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1143
1175
  # resp.stream_session.recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
1144
1176
  # resp.stream_session.start_time #=> Time
1145
1177
  # resp.stream_session.stream_id #=> String
@@ -1862,7 +1894,7 @@ module Aws::IVS
1862
1894
  params: params,
1863
1895
  config: config)
1864
1896
  context[:gem_name] = 'aws-sdk-ivs'
1865
- context[:gem_version] = '1.36.0'
1897
+ context[:gem_version] = '1.38.0'
1866
1898
  Seahorse::Client::Request.new(handlers, context)
1867
1899
  end
1868
1900
 
@@ -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
 
@@ -644,6 +644,11 @@ module Aws::IVS
644
644
  # and merged together. Default: 0.
645
645
  # @return [Integer]
646
646
  #
647
+ # @!attribute [rw] rendition_configuration
648
+ # Object that describes which renditions should be recorded for a
649
+ # stream.
650
+ # @return [Types::RenditionConfiguration]
651
+ #
647
652
  # @!attribute [rw] tags
648
653
  # Array of 1-50 maps, each of the form `string:string (key:value)`.
649
654
  # See [Tagging Amazon Web Services Resources][1] for more information,
@@ -668,6 +673,7 @@ module Aws::IVS
668
673
  :destination_configuration,
669
674
  :name,
670
675
  :recording_reconnect_window_seconds,
676
+ :rendition_configuration,
671
677
  :tags,
672
678
  :thumbnail_configuration)
673
679
  SENSITIVE = []
@@ -1413,6 +1419,11 @@ module Aws::IVS
1413
1419
  # and merged together. Default: 0.
1414
1420
  # @return [Integer]
1415
1421
  #
1422
+ # @!attribute [rw] rendition_configuration
1423
+ # Object that describes which renditions should be recorded for a
1424
+ # stream.
1425
+ # @return [Types::RenditionConfiguration]
1426
+ #
1416
1427
  # @!attribute [rw] state
1417
1428
  # Indicates the current state of the recording configuration. When the
1418
1429
  # state is `ACTIVE`, the configuration is ready for recording a
@@ -1444,6 +1455,7 @@ module Aws::IVS
1444
1455
  :destination_configuration,
1445
1456
  :name,
1446
1457
  :recording_reconnect_window_seconds,
1458
+ :rendition_configuration,
1447
1459
  :state,
1448
1460
  :tags,
1449
1461
  :thumbnail_configuration)
@@ -1496,6 +1508,39 @@ module Aws::IVS
1496
1508
  include Aws::Structure
1497
1509
  end
1498
1510
 
1511
+ # Object that describes which renditions should be recorded for a
1512
+ # stream.
1513
+ #
1514
+ # @!attribute [rw] rendition_selection
1515
+ # Indicates which set of renditions are recorded for a stream. For
1516
+ # `BASIC` channels, the `CUSTOM` value has no effect. If `CUSTOM` is
1517
+ # specified, a set of renditions must be specified in the `renditions`
1518
+ # field. Default: `ALL`.
1519
+ # @return [String]
1520
+ #
1521
+ # @!attribute [rw] renditions
1522
+ # Indicates which renditions are recorded for a stream, if
1523
+ # `renditionSelection` is `CUSTOM`; otherwise, this field is
1524
+ # irrelevant. The selected renditions are recorded if they are
1525
+ # available during the stream. If a selected rendition is unavailable,
1526
+ # the best available rendition is recorded. For details on the
1527
+ # resolution dimensions of each rendition, see [Auto-Record to Amazon
1528
+ # S3][1].
1529
+ #
1530
+ #
1531
+ #
1532
+ # [1]: https://docs.aws.amazon.com/ivs/latest/userguide/record-to-s3.html
1533
+ # @return [Array<String>]
1534
+ #
1535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/RenditionConfiguration AWS API Documentation
1536
+ #
1537
+ class RenditionConfiguration < Struct.new(
1538
+ :rendition_selection,
1539
+ :renditions)
1540
+ SENSITIVE = []
1541
+ include Aws::Structure
1542
+ end
1543
+
1499
1544
  # @!attribute [rw] exception_message
1500
1545
  # Request references a resource which does not exist.
1501
1546
  # @return [String]
@@ -1945,18 +1990,42 @@ module Aws::IVS
1945
1990
  # Thumbnail recording mode. Default: `INTERVAL`.
1946
1991
  # @return [String]
1947
1992
  #
1993
+ # @!attribute [rw] resolution
1994
+ # Indicates the desired resolution of recorded thumbnails. Thumbnails
1995
+ # are recorded at the selected resolution if the corresponding
1996
+ # rendition is available during the stream; otherwise, they are
1997
+ # recorded at source resolution. For more information about resolution
1998
+ # values and their corresponding height and width dimensions, see
1999
+ # [Auto-Record to Amazon S3][1]. Default: Null (source resolution is
2000
+ # returned).
2001
+ #
2002
+ #
2003
+ #
2004
+ # [1]: https://docs.aws.amazon.com/ivs/latest/userguide/record-to-s3.html
2005
+ # @return [String]
2006
+ #
2007
+ # @!attribute [rw] storage
2008
+ # Indicates the format in which thumbnails are recorded. `SEQUENTIAL`
2009
+ # records all generated thumbnails in a serial manner, to the
2010
+ # media/thumbnails directory. `LATEST` saves the latest thumbnail in
2011
+ # media/latest\_thumbnail/thumb.jpg and overwrites it at the interval
2012
+ # specified by `targetIntervalSeconds`. You can enable both
2013
+ # `SEQUENTIAL` and `LATEST`. Default: `SEQUENTIAL`.
2014
+ # @return [Array<String>]
2015
+ #
1948
2016
  # @!attribute [rw] target_interval_seconds
1949
2017
  # The targeted thumbnail-generation interval in seconds. This is
1950
2018
  # configurable (and required) only if `recordingMode` is `INTERVAL`.
1951
2019
  # Default: 60.
1952
2020
  #
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.
2021
+ # **Important:** For the `BASIC` channel type, setting a value for
2022
+ # `targetIntervalSeconds` does not guarantee that thumbnails are
2023
+ # generated at the specified interval. For thumbnails to be generated
2024
+ # at the `targetIntervalSeconds` interval, the `IDR/Keyframe` value
2025
+ # for the input video must be less than the `targetIntervalSeconds`
2026
+ # value. See [ Amazon IVS Streaming Configuration][1] for information
2027
+ # on setting `IDR/Keyframe` to the recommended value in video-encoder
2028
+ # settings.
1960
2029
  #
1961
2030
  #
1962
2031
  #
@@ -1967,6 +2036,8 @@ module Aws::IVS
1967
2036
  #
1968
2037
  class ThumbnailConfiguration < Struct.new(
1969
2038
  :recording_mode,
2039
+ :resolution,
2040
+ :storage,
1970
2041
  :target_interval_seconds)
1971
2042
  SENSITIVE = []
1972
2043
  include Aws::Structure
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.36.0'
55
+ GEM_VERSION = '1.38.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.36.0
4
+ version: 1.38.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-06 00:00:00.000000000 Z
11
+ date: 2023-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core