aws-sdk-ivsrealtime 1.34.0 → 1.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de2d19ece6a3f7afc6abd80ac1384a86aff2ec0a3f8f3f2e2d7cbcfd0ba94107
4
- data.tar.gz: 4d73eb699776ae054cd3eb3ce2a894fddfc712373c9ae981590147ad48be2b95
3
+ metadata.gz: b064691ea7d497da3e175ea1827f1788ec986841fe19eb3f4c5ad20004603941
4
+ data.tar.gz: 57fef5ad142e1ee8dcaf9d203fceca822a03f6c63e28454178e4e0c1da22b099
5
5
  SHA512:
6
- metadata.gz: dc14e0828f45ce6308440cb2113bf8e47159dab0bac52bb83948d59192fd471377fae0bb376baae0bba130969030af5b2986dc5af724d815dd969315492f7d41
7
- data.tar.gz: 176357f81cc325e718d7af99ba63ca121853f667f0133061230ab09bbe3a72309ffe30c84d1ac95ebc438728a4a0ed009dc135026d941ec7be507fc37341f1e8
6
+ metadata.gz: b07c6dfbc9447e3d3339d6a96c037097448f8b49e0ca3636c8f692288acc090247aa9ca96ebfe7feb2a3b2b7e5ee647961db2bda2621c3c9c29976f481efc9ba
7
+ data.tar.gz: da78bca694fd965a393500fe284b12633547e39841da08750d0f475c58939ec8ce9822db3132b3dfa55fa6caabd4237c1345522643daad9ca3f7c1917a74e060
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.35.0 (2024-12-10)
10
+ ------------------
11
+
12
+ * Feature - IVS Real-Time now offers customers the ability to customize thumbnails recording mode and interval for both Individual Participant Recording (IPR) and Server-Side Compositions (SSC).
13
+
4
14
  1.34.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.36.0
@@ -257,11 +257,34 @@ module Aws::IVSRealTime
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -713,7 +736,12 @@ module Aws::IVSRealTime
713
736
  # },
714
737
  # auto_participant_recording_configuration: {
715
738
  # storage_configuration_arn: "AutoParticipantRecordingStorageConfigurationArn", # required
716
- # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY
739
+ # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY, NONE
740
+ # thumbnail_configuration: {
741
+ # target_interval_seconds: 1,
742
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
743
+ # recording_mode: "INTERVAL", # accepts INTERVAL, DISABLED
744
+ # },
717
745
  # },
718
746
  # })
719
747
  #
@@ -726,7 +754,11 @@ module Aws::IVSRealTime
726
754
  # resp.stage.tags["TagKey"] #=> String
727
755
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
728
756
  # resp.stage.auto_participant_recording_configuration.media_types #=> Array
729
- # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY"
757
+ # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY", "NONE"
758
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
759
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage #=> Array
760
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
761
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "INTERVAL", "DISABLED"
730
762
  # resp.stage.endpoints.events #=> String
731
763
  # resp.stage.endpoints.whip #=> String
732
764
  # resp.stage.endpoints.rtmp #=> String
@@ -1022,6 +1054,10 @@ module Aws::IVSRealTime
1022
1054
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns #=> Array
1023
1055
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns[0] #=> String
1024
1056
  # resp.composition.destinations[0].configuration.s3.recording_configuration.format #=> String, one of "HLS"
1057
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations #=> Array
1058
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].target_interval_seconds #=> Integer
1059
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage #=> Array
1060
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1025
1061
  # resp.composition.destinations[0].detail.s3.recording_prefix #=> String
1026
1062
  # resp.composition.tags #=> Hash
1027
1063
  # resp.composition.tags["TagKey"] #=> String
@@ -1221,7 +1257,11 @@ module Aws::IVSRealTime
1221
1257
  # resp.stage.tags["TagKey"] #=> String
1222
1258
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
1223
1259
  # resp.stage.auto_participant_recording_configuration.media_types #=> Array
1224
- # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY"
1260
+ # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY", "NONE"
1261
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
1262
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage #=> Array
1263
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1264
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "INTERVAL", "DISABLED"
1225
1265
  # resp.stage.endpoints.events #=> String
1226
1266
  # resp.stage.endpoints.whip #=> String
1227
1267
  # resp.stage.endpoints.rtmp #=> String
@@ -1939,6 +1979,12 @@ module Aws::IVSRealTime
1939
1979
  # recording_configuration: {
1940
1980
  # format: "HLS", # accepts HLS
1941
1981
  # },
1982
+ # thumbnail_configurations: [
1983
+ # {
1984
+ # target_interval_seconds: 1,
1985
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
1986
+ # },
1987
+ # ],
1942
1988
  # },
1943
1989
  # },
1944
1990
  # ],
@@ -1979,6 +2025,10 @@ module Aws::IVSRealTime
1979
2025
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns #=> Array
1980
2026
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns[0] #=> String
1981
2027
  # resp.composition.destinations[0].configuration.s3.recording_configuration.format #=> String, one of "HLS"
2028
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations #=> Array
2029
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].target_interval_seconds #=> Integer
2030
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage #=> Array
2031
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1982
2032
  # resp.composition.destinations[0].detail.s3.recording_prefix #=> String
1983
2033
  # resp.composition.tags #=> Hash
1984
2034
  # resp.composition.tags["TagKey"] #=> String
@@ -2159,7 +2209,12 @@ module Aws::IVSRealTime
2159
2209
  # name: "StageName",
2160
2210
  # auto_participant_recording_configuration: {
2161
2211
  # storage_configuration_arn: "AutoParticipantRecordingStorageConfigurationArn", # required
2162
- # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY
2212
+ # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY, NONE
2213
+ # thumbnail_configuration: {
2214
+ # target_interval_seconds: 1,
2215
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
2216
+ # recording_mode: "INTERVAL", # accepts INTERVAL, DISABLED
2217
+ # },
2163
2218
  # },
2164
2219
  # })
2165
2220
  #
@@ -2172,7 +2227,11 @@ module Aws::IVSRealTime
2172
2227
  # resp.stage.tags["TagKey"] #=> String
2173
2228
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
2174
2229
  # resp.stage.auto_participant_recording_configuration.media_types #=> Array
2175
- # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY"
2230
+ # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY", "NONE"
2231
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
2232
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage #=> Array
2233
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
2234
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "INTERVAL", "DISABLED"
2176
2235
  # resp.stage.endpoints.events #=> String
2177
2236
  # resp.stage.endpoints.whip #=> String
2178
2237
  # resp.stage.endpoints.rtmp #=> String
@@ -2205,7 +2264,7 @@ module Aws::IVSRealTime
2205
2264
  tracer: tracer
2206
2265
  )
2207
2266
  context[:gem_name] = 'aws-sdk-ivsrealtime'
2208
- context[:gem_version] = '1.34.0'
2267
+ context[:gem_version] = '1.36.0'
2209
2268
  Seahorse::Client::Request.new(handlers, context)
2210
2269
  end
2211
2270
 
@@ -28,6 +28,8 @@ module Aws::IVSRealTime
28
28
  CompositionState = Shapes::StringShape.new(name: 'CompositionState')
29
29
  CompositionSummary = Shapes::StructureShape.new(name: 'CompositionSummary')
30
30
  CompositionSummaryList = Shapes::ListShape.new(name: 'CompositionSummaryList')
31
+ CompositionThumbnailConfiguration = Shapes::StructureShape.new(name: 'CompositionThumbnailConfiguration')
32
+ CompositionThumbnailConfigurationList = Shapes::ListShape.new(name: 'CompositionThumbnailConfigurationList')
31
33
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
32
34
  CreateEncoderConfigurationRequest = Shapes::StructureShape.new(name: 'CreateEncoderConfigurationRequest')
33
35
  CreateEncoderConfigurationResponse = Shapes::StructureShape.new(name: 'CreateEncoderConfigurationResponse')
@@ -149,6 +151,7 @@ module Aws::IVSRealTime
149
151
  ParticipantRecordingState = Shapes::StringShape.new(name: 'ParticipantRecordingState')
150
152
  ParticipantState = Shapes::StringShape.new(name: 'ParticipantState')
151
153
  ParticipantSummary = Shapes::StructureShape.new(name: 'ParticipantSummary')
154
+ ParticipantThumbnailConfiguration = Shapes::StructureShape.new(name: 'ParticipantThumbnailConfiguration')
152
155
  ParticipantToken = Shapes::StructureShape.new(name: 'ParticipantToken')
153
156
  ParticipantTokenAttributes = Shapes::MapShape.new(name: 'ParticipantTokenAttributes')
154
157
  ParticipantTokenCapabilities = Shapes::ListShape.new(name: 'ParticipantTokenCapabilities')
@@ -213,6 +216,10 @@ module Aws::IVSRealTime
213
216
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
214
217
  TagValue = Shapes::StringShape.new(name: 'TagValue')
215
218
  Tags = Shapes::MapShape.new(name: 'Tags')
219
+ ThumbnailIntervalSeconds = Shapes::IntegerShape.new(name: 'ThumbnailIntervalSeconds')
220
+ ThumbnailRecordingMode = Shapes::StringShape.new(name: 'ThumbnailRecordingMode')
221
+ ThumbnailStorageType = Shapes::StringShape.new(name: 'ThumbnailStorageType')
222
+ ThumbnailStorageTypeList = Shapes::ListShape.new(name: 'ThumbnailStorageTypeList')
216
223
  Time = Shapes::TimestampShape.new(name: 'Time', timestampFormat: "iso8601")
217
224
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
218
225
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
@@ -233,6 +240,7 @@ module Aws::IVSRealTime
233
240
 
234
241
  AutoParticipantRecordingConfiguration.add_member(:storage_configuration_arn, Shapes::ShapeRef.new(shape: AutoParticipantRecordingStorageConfigurationArn, required: true, location_name: "storageConfigurationArn"))
235
242
  AutoParticipantRecordingConfiguration.add_member(:media_types, Shapes::ShapeRef.new(shape: ParticipantRecordingMediaTypeList, location_name: "mediaTypes"))
243
+ AutoParticipantRecordingConfiguration.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ParticipantThumbnailConfiguration, location_name: "thumbnailConfiguration"))
236
244
  AutoParticipantRecordingConfiguration.struct_class = Types::AutoParticipantRecordingConfiguration
237
245
 
238
246
  ChannelDestinationConfiguration.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChannelArn, required: true, location_name: "channelArn"))
@@ -260,6 +268,12 @@ module Aws::IVSRealTime
260
268
 
261
269
  CompositionSummaryList.member = Shapes::ShapeRef.new(shape: CompositionSummary)
262
270
 
271
+ CompositionThumbnailConfiguration.add_member(:target_interval_seconds, Shapes::ShapeRef.new(shape: ThumbnailIntervalSeconds, location_name: "targetIntervalSeconds"))
272
+ CompositionThumbnailConfiguration.add_member(:storage, Shapes::ShapeRef.new(shape: ThumbnailStorageTypeList, location_name: "storage"))
273
+ CompositionThumbnailConfiguration.struct_class = Types::CompositionThumbnailConfiguration
274
+
275
+ CompositionThumbnailConfigurationList.member = Shapes::ShapeRef.new(shape: CompositionThumbnailConfiguration)
276
+
263
277
  ConflictException.add_member(:exception_message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "exceptionMessage"))
264
278
  ConflictException.struct_class = Types::ConflictException
265
279
 
@@ -617,6 +631,11 @@ module Aws::IVSRealTime
617
631
  ParticipantSummary.add_member(:recording_state, Shapes::ShapeRef.new(shape: ParticipantRecordingState, location_name: "recordingState"))
618
632
  ParticipantSummary.struct_class = Types::ParticipantSummary
619
633
 
634
+ ParticipantThumbnailConfiguration.add_member(:target_interval_seconds, Shapes::ShapeRef.new(shape: ThumbnailIntervalSeconds, location_name: "targetIntervalSeconds"))
635
+ ParticipantThumbnailConfiguration.add_member(:storage, Shapes::ShapeRef.new(shape: ThumbnailStorageTypeList, location_name: "storage"))
636
+ ParticipantThumbnailConfiguration.add_member(:recording_mode, Shapes::ShapeRef.new(shape: ThumbnailRecordingMode, location_name: "recordingMode"))
637
+ ParticipantThumbnailConfiguration.struct_class = Types::ParticipantThumbnailConfiguration
638
+
620
639
  ParticipantToken.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantTokenId, location_name: "participantId"))
621
640
  ParticipantToken.add_member(:token, Shapes::ShapeRef.new(shape: ParticipantTokenString, location_name: "token"))
622
641
  ParticipantToken.add_member(:user_id, Shapes::ShapeRef.new(shape: ParticipantTokenUserId, location_name: "userId"))
@@ -679,6 +698,7 @@ module Aws::IVSRealTime
679
698
  S3DestinationConfiguration.add_member(:storage_configuration_arn, Shapes::ShapeRef.new(shape: StorageConfigurationArn, required: true, location_name: "storageConfigurationArn"))
680
699
  S3DestinationConfiguration.add_member(:encoder_configuration_arns, Shapes::ShapeRef.new(shape: EncoderConfigurationArnList, required: true, location_name: "encoderConfigurationArns"))
681
700
  S3DestinationConfiguration.add_member(:recording_configuration, Shapes::ShapeRef.new(shape: RecordingConfiguration, location_name: "recordingConfiguration"))
701
+ S3DestinationConfiguration.add_member(:thumbnail_configurations, Shapes::ShapeRef.new(shape: CompositionThumbnailConfigurationList, location_name: "thumbnailConfigurations"))
682
702
  S3DestinationConfiguration.struct_class = Types::S3DestinationConfiguration
683
703
 
684
704
  S3Detail.add_member(:recording_prefix, Shapes::ShapeRef.new(shape: String, required: true, location_name: "recordingPrefix"))
@@ -764,6 +784,8 @@ module Aws::IVSRealTime
764
784
  Tags.key = Shapes::ShapeRef.new(shape: TagKey)
765
785
  Tags.value = Shapes::ShapeRef.new(shape: TagValue)
766
786
 
787
+ ThumbnailStorageTypeList.member = Shapes::ShapeRef.new(shape: ThumbnailStorageType)
788
+
767
789
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
768
790
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
769
791
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -802,9 +824,10 @@ module Aws::IVSRealTime
802
824
 
803
825
  api.metadata = {
804
826
  "apiVersion" => "2020-07-14",
827
+ "auth" => ["aws.auth#sigv4"],
805
828
  "endpointPrefix" => "ivsrealtime",
806
- "jsonVersion" => "1.1",
807
829
  "protocol" => "rest-json",
830
+ "protocols" => ["rest-json"],
808
831
  "serviceAbbreviation" => "ivsrealtime",
809
832
  "serviceFullName" => "Amazon Interactive Video Service RealTime",
810
833
  "serviceId" => "IVS RealTime",
@@ -37,11 +37,18 @@ module Aws::IVSRealTime
37
37
  # Types of media to be recorded. Default: `AUDIO_VIDEO`.
38
38
  # @return [Array<String>]
39
39
  #
40
+ # @!attribute [rw] thumbnail_configuration
41
+ # A complex type that allows you to enable/disable the recording of
42
+ # thumbnails for individual participant recording and modify the
43
+ # interval at which thumbnails are generated for the live session.
44
+ # @return [Types::ParticipantThumbnailConfiguration]
45
+ #
40
46
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/AutoParticipantRecordingConfiguration AWS API Documentation
41
47
  #
42
48
  class AutoParticipantRecordingConfiguration < Struct.new(
43
49
  :storage_configuration_arn,
44
- :media_types)
50
+ :media_types,
51
+ :thumbnail_configuration)
45
52
  SENSITIVE = []
46
53
  include Aws::Structure
47
54
  end
@@ -184,6 +191,33 @@ module Aws::IVSRealTime
184
191
  include Aws::Structure
185
192
  end
186
193
 
194
+ # An object representing a configuration of thumbnails for recorded
195
+ # video for a Composition.
196
+ #
197
+ # @!attribute [rw] target_interval_seconds
198
+ # The targeted thumbnail-generation interval in seconds. Default: 60.
199
+ # @return [Integer]
200
+ #
201
+ # @!attribute [rw] storage
202
+ # Indicates the format in which thumbnails are recorded. `SEQUENTIAL`
203
+ # records all generated thumbnails in a serial manner, to the
204
+ # media/thumbnails/(width)x(height) directory, where (width) and
205
+ # (height) are the width and height of the thumbnail. `LATEST` saves
206
+ # the latest thumbnail in
207
+ # media/latest\_thumbnail/(width)x(height)/thumb.jpg and overwrites it
208
+ # at the interval specified by `targetIntervalSeconds`. You can enable
209
+ # both `SEQUENTIAL` and `LATEST`. Default: `SEQUENTIAL`.
210
+ # @return [Array<String>]
211
+ #
212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/CompositionThumbnailConfiguration AWS API Documentation
213
+ #
214
+ class CompositionThumbnailConfiguration < Struct.new(
215
+ :target_interval_seconds,
216
+ :storage)
217
+ SENSITIVE = []
218
+ include Aws::Structure
219
+ end
220
+
187
221
  # @!attribute [rw] exception_message
188
222
  # Updating or deleting a resource can cause an inconsistent state.
189
223
  # @return [String]
@@ -1913,6 +1947,37 @@ module Aws::IVSRealTime
1913
1947
  include Aws::Structure
1914
1948
  end
1915
1949
 
1950
+ # An object representing a configuration of thumbnails for recorded
1951
+ # video from an individual participant.
1952
+ #
1953
+ # @!attribute [rw] target_interval_seconds
1954
+ # The targeted thumbnail-generation interval in seconds. This is
1955
+ # configurable only if `recordingMode` is `INTERVAL`. Default: 60.
1956
+ # @return [Integer]
1957
+ #
1958
+ # @!attribute [rw] storage
1959
+ # Indicates the format in which thumbnails are recorded. `SEQUENTIAL`
1960
+ # records all generated thumbnails in a serial manner, to the
1961
+ # media/thumbnails/high directory. `LATEST` saves the latest thumbnail
1962
+ # in media/latest\_thumbnail/high/thumb.jpg and overwrites it at the
1963
+ # interval specified by `targetIntervalSeconds`. You can enable both
1964
+ # `SEQUENTIAL` and `LATEST`. Default: `SEQUENTIAL`.
1965
+ # @return [Array<String>]
1966
+ #
1967
+ # @!attribute [rw] recording_mode
1968
+ # Thumbnail recording mode. Default: `DISABLED`.
1969
+ # @return [String]
1970
+ #
1971
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ParticipantThumbnailConfiguration AWS API Documentation
1972
+ #
1973
+ class ParticipantThumbnailConfiguration < Struct.new(
1974
+ :target_interval_seconds,
1975
+ :storage,
1976
+ :recording_mode)
1977
+ SENSITIVE = []
1978
+ include Aws::Structure
1979
+ end
1980
+
1916
1981
  # Object specifying a participant token in a stage.
1917
1982
  #
1918
1983
  # **Important**: Treat tokens as opaque; i.e., do not build
@@ -2227,12 +2292,19 @@ module Aws::IVSRealTime
2227
2292
  # the recording format for storing a recording in Amazon S3.
2228
2293
  # @return [Types::RecordingConfiguration]
2229
2294
  #
2295
+ # @!attribute [rw] thumbnail_configurations
2296
+ # A complex type that allows you to enable/disable the recording of
2297
+ # thumbnails for a Composition and modify the interval at which
2298
+ # thumbnails are generated for the live session.
2299
+ # @return [Array<Types::CompositionThumbnailConfiguration>]
2300
+ #
2230
2301
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/S3DestinationConfiguration AWS API Documentation
2231
2302
  #
2232
2303
  class S3DestinationConfiguration < Struct.new(
2233
2304
  :storage_configuration_arn,
2234
2305
  :encoder_configuration_arns,
2235
- :recording_configuration)
2306
+ :recording_configuration,
2307
+ :thumbnail_configurations)
2236
2308
  SENSITIVE = []
2237
2309
  include Aws::Structure
2238
2310
  end
@@ -55,7 +55,7 @@ module Aws::IVSRealTime
55
55
  autoload :EndpointProvider, 'aws-sdk-ivsrealtime/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ivsrealtime/endpoints'
57
57
 
58
- GEM_VERSION = '1.34.0'
58
+ GEM_VERSION = '1.36.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -141,7 +143,12 @@ module Aws
141
143
  ?tags: Hash[::String, ::String],
142
144
  ?auto_participant_recording_configuration: {
143
145
  storage_configuration_arn: ::String,
144
- media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY")]?
146
+ media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY" | "NONE")]?,
147
+ thumbnail_configuration: {
148
+ target_interval_seconds: ::Integer?,
149
+ storage: Array[("SEQUENTIAL" | "LATEST")]?,
150
+ recording_mode: ("INTERVAL" | "DISABLED")?
151
+ }?
145
152
  }
146
153
  ) -> _CreateStageResponseSuccess
147
154
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStageResponseSuccess
@@ -485,7 +492,13 @@ module Aws
485
492
  encoder_configuration_arns: Array[::String],
486
493
  recording_configuration: {
487
494
  format: ("HLS")?
488
- }?
495
+ }?,
496
+ thumbnail_configurations: Array[
497
+ {
498
+ target_interval_seconds: ::Integer?,
499
+ storage: Array[("SEQUENTIAL" | "LATEST")]?
500
+ },
501
+ ]?
489
502
  }?
490
503
  },
491
504
  ],
@@ -543,7 +556,12 @@ module Aws
543
556
  ?name: ::String,
544
557
  ?auto_participant_recording_configuration: {
545
558
  storage_configuration_arn: ::String,
546
- media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY")]?
559
+ media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY" | "NONE")]?,
560
+ thumbnail_configuration: {
561
+ target_interval_seconds: ::Integer?,
562
+ storage: Array[("SEQUENTIAL" | "LATEST")]?,
563
+ recording_mode: ("INTERVAL" | "DISABLED")?
564
+ }?
547
565
  }
548
566
  ) -> _UpdateStageResponseSuccess
549
567
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStageResponseSuccess
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -15,7 +15,8 @@ module Aws::IVSRealTime
15
15
 
16
16
  class AutoParticipantRecordingConfiguration
17
17
  attr_accessor storage_configuration_arn: ::String
18
- attr_accessor media_types: ::Array[("AUDIO_VIDEO" | "AUDIO_ONLY")]
18
+ attr_accessor media_types: ::Array[("AUDIO_VIDEO" | "AUDIO_ONLY" | "NONE")]
19
+ attr_accessor thumbnail_configuration: Types::ParticipantThumbnailConfiguration
19
20
  SENSITIVE: []
20
21
  end
21
22
 
@@ -48,6 +49,12 @@ module Aws::IVSRealTime
48
49
  SENSITIVE: []
49
50
  end
50
51
 
52
+ class CompositionThumbnailConfiguration
53
+ attr_accessor target_interval_seconds: ::Integer
54
+ attr_accessor storage: ::Array[("SEQUENTIAL" | "LATEST")]
55
+ SENSITIVE: []
56
+ end
57
+
51
58
  class ConflictException
52
59
  attr_accessor exception_message: ::String
53
60
  SENSITIVE: []
@@ -528,6 +535,13 @@ module Aws::IVSRealTime
528
535
  SENSITIVE: []
529
536
  end
530
537
 
538
+ class ParticipantThumbnailConfiguration
539
+ attr_accessor target_interval_seconds: ::Integer
540
+ attr_accessor storage: ::Array[("SEQUENTIAL" | "LATEST")]
541
+ attr_accessor recording_mode: ("INTERVAL" | "DISABLED")
542
+ SENSITIVE: []
543
+ end
544
+
531
545
  class ParticipantToken
532
546
  attr_accessor participant_id: ::String
533
547
  attr_accessor token: ::String
@@ -596,6 +610,7 @@ module Aws::IVSRealTime
596
610
  attr_accessor storage_configuration_arn: ::String
597
611
  attr_accessor encoder_configuration_arns: ::Array[::String]
598
612
  attr_accessor recording_configuration: Types::RecordingConfiguration
613
+ attr_accessor thumbnail_configurations: ::Array[Types::CompositionThumbnailConfiguration]
599
614
  SENSITIVE: []
600
615
  end
601
616
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivsrealtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.34.0
4
+ version: 1.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon Interactive Video Service RealTime (ivsrealtime).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email: