aws-sdk-ivsrealtime 1.33.0 → 1.35.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: a4d89542aa59133c405553a1a687136ccd02908d69406b5c27e7d94928caa05e
4
- data.tar.gz: 404ab3cd87215d69d4c6a8917988f7ef6f448d36facf9fdf24dbbfd25a910b62
3
+ metadata.gz: 70b03eee69077847c6294dc13d2b39cb64a2ad4b274a1740155d214dcecd72ee
4
+ data.tar.gz: 42c6f405237fcfc48c4b0e6484bbb48569db7fd0be6cb235f022bc36713b2486
5
5
  SHA512:
6
- metadata.gz: fc737bc0200c968cd6d68c2b8fc274e86d617271ac0effe03171118a6ade3802ec108f9468ed0cba262543f6ada806db3b04ce788d7a4d505b69aa4b0f02cf55
7
- data.tar.gz: 1598d65560a3824ea51cc08b54a501ac856e191490574d90e066736af8c3c9e246e3682bcd1a6319b2637e2d48f208d9f38604312f877fb3bbe39d1687aecbeb
6
+ metadata.gz: e15fc67b759890d08e3a3e6124268d92e72d81f7ec023e5ba2cfd245ff9bea15a3a8c5590d1f9554328113d60f80cff9ca70fed8bf32d9db439de5c8a0d3f167
7
+ data.tar.gz: b6fcb65fc4f712e9d35ac07068d424d04a45ef5191c2b87b69df32a50c7ca4c081881254e7a6f964623884f4443e3cb2e3fded9c9610d8298c814db347a86315
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.0 (2024-12-10)
5
+ ------------------
6
+
7
+ * 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).
8
+
9
+ 1.34.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.33.0 (2024-10-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.35.0
@@ -713,7 +713,12 @@ module Aws::IVSRealTime
713
713
  # },
714
714
  # auto_participant_recording_configuration: {
715
715
  # storage_configuration_arn: "AutoParticipantRecordingStorageConfigurationArn", # required
716
- # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY
716
+ # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY, NONE
717
+ # thumbnail_configuration: {
718
+ # target_interval_seconds: 1,
719
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
720
+ # recording_mode: "INTERVAL", # accepts INTERVAL, DISABLED
721
+ # },
717
722
  # },
718
723
  # })
719
724
  #
@@ -726,7 +731,11 @@ module Aws::IVSRealTime
726
731
  # resp.stage.tags["TagKey"] #=> String
727
732
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
728
733
  # 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"
734
+ # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY", "NONE"
735
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
736
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage #=> Array
737
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
738
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "INTERVAL", "DISABLED"
730
739
  # resp.stage.endpoints.events #=> String
731
740
  # resp.stage.endpoints.whip #=> String
732
741
  # resp.stage.endpoints.rtmp #=> String
@@ -1022,6 +1031,10 @@ module Aws::IVSRealTime
1022
1031
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns #=> Array
1023
1032
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns[0] #=> String
1024
1033
  # resp.composition.destinations[0].configuration.s3.recording_configuration.format #=> String, one of "HLS"
1034
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations #=> Array
1035
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].target_interval_seconds #=> Integer
1036
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage #=> Array
1037
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1025
1038
  # resp.composition.destinations[0].detail.s3.recording_prefix #=> String
1026
1039
  # resp.composition.tags #=> Hash
1027
1040
  # resp.composition.tags["TagKey"] #=> String
@@ -1221,7 +1234,11 @@ module Aws::IVSRealTime
1221
1234
  # resp.stage.tags["TagKey"] #=> String
1222
1235
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
1223
1236
  # 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"
1237
+ # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY", "NONE"
1238
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
1239
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage #=> Array
1240
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1241
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "INTERVAL", "DISABLED"
1225
1242
  # resp.stage.endpoints.events #=> String
1226
1243
  # resp.stage.endpoints.whip #=> String
1227
1244
  # resp.stage.endpoints.rtmp #=> String
@@ -1939,6 +1956,12 @@ module Aws::IVSRealTime
1939
1956
  # recording_configuration: {
1940
1957
  # format: "HLS", # accepts HLS
1941
1958
  # },
1959
+ # thumbnail_configurations: [
1960
+ # {
1961
+ # target_interval_seconds: 1,
1962
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
1963
+ # },
1964
+ # ],
1942
1965
  # },
1943
1966
  # },
1944
1967
  # ],
@@ -1979,6 +2002,10 @@ module Aws::IVSRealTime
1979
2002
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns #=> Array
1980
2003
  # resp.composition.destinations[0].configuration.s3.encoder_configuration_arns[0] #=> String
1981
2004
  # resp.composition.destinations[0].configuration.s3.recording_configuration.format #=> String, one of "HLS"
2005
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations #=> Array
2006
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].target_interval_seconds #=> Integer
2007
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage #=> Array
2008
+ # resp.composition.destinations[0].configuration.s3.thumbnail_configurations[0].storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
1982
2009
  # resp.composition.destinations[0].detail.s3.recording_prefix #=> String
1983
2010
  # resp.composition.tags #=> Hash
1984
2011
  # resp.composition.tags["TagKey"] #=> String
@@ -2159,7 +2186,12 @@ module Aws::IVSRealTime
2159
2186
  # name: "StageName",
2160
2187
  # auto_participant_recording_configuration: {
2161
2188
  # storage_configuration_arn: "AutoParticipantRecordingStorageConfigurationArn", # required
2162
- # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY
2189
+ # media_types: ["AUDIO_VIDEO"], # accepts AUDIO_VIDEO, AUDIO_ONLY, NONE
2190
+ # thumbnail_configuration: {
2191
+ # target_interval_seconds: 1,
2192
+ # storage: ["SEQUENTIAL"], # accepts SEQUENTIAL, LATEST
2193
+ # recording_mode: "INTERVAL", # accepts INTERVAL, DISABLED
2194
+ # },
2163
2195
  # },
2164
2196
  # })
2165
2197
  #
@@ -2172,7 +2204,11 @@ module Aws::IVSRealTime
2172
2204
  # resp.stage.tags["TagKey"] #=> String
2173
2205
  # resp.stage.auto_participant_recording_configuration.storage_configuration_arn #=> String
2174
2206
  # 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"
2207
+ # resp.stage.auto_participant_recording_configuration.media_types[0] #=> String, one of "AUDIO_VIDEO", "AUDIO_ONLY", "NONE"
2208
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.target_interval_seconds #=> Integer
2209
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage #=> Array
2210
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.storage[0] #=> String, one of "SEQUENTIAL", "LATEST"
2211
+ # resp.stage.auto_participant_recording_configuration.thumbnail_configuration.recording_mode #=> String, one of "INTERVAL", "DISABLED"
2176
2212
  # resp.stage.endpoints.events #=> String
2177
2213
  # resp.stage.endpoints.whip #=> String
2178
2214
  # resp.stage.endpoints.rtmp #=> String
@@ -2205,7 +2241,7 @@ module Aws::IVSRealTime
2205
2241
  tracer: tracer
2206
2242
  )
2207
2243
  context[:gem_name] = 'aws-sdk-ivsrealtime'
2208
- context[:gem_version] = '1.33.0'
2244
+ context[:gem_version] = '1.35.0'
2209
2245
  Seahorse::Client::Request.new(handlers, context)
2210
2246
  end
2211
2247
 
@@ -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",
@@ -52,15 +52,18 @@ module Aws::IVSRealTime
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end
@@ -12,401 +12,9 @@ module Aws::IVSRealTime
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class CreateEncoderConfiguration
16
- def self.build(context)
17
- Aws::IVSRealTime::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
-
26
- class CreateIngestConfiguration
27
- def self.build(context)
28
- Aws::IVSRealTime::EndpointParameters.new(
29
- region: context.config.region,
30
- use_dual_stack: context.config.use_dualstack_endpoint,
31
- use_fips: context.config.use_fips_endpoint,
32
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
33
- )
34
- end
35
- end
36
-
37
- class CreateParticipantToken
38
- def self.build(context)
39
- Aws::IVSRealTime::EndpointParameters.new(
40
- region: context.config.region,
41
- use_dual_stack: context.config.use_dualstack_endpoint,
42
- use_fips: context.config.use_fips_endpoint,
43
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
- )
45
- end
46
- end
47
-
48
- class CreateStage
49
- def self.build(context)
50
- Aws::IVSRealTime::EndpointParameters.new(
51
- region: context.config.region,
52
- use_dual_stack: context.config.use_dualstack_endpoint,
53
- use_fips: context.config.use_fips_endpoint,
54
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
55
- )
56
- end
57
- end
58
-
59
- class CreateStorageConfiguration
60
- def self.build(context)
61
- Aws::IVSRealTime::EndpointParameters.new(
62
- region: context.config.region,
63
- use_dual_stack: context.config.use_dualstack_endpoint,
64
- use_fips: context.config.use_fips_endpoint,
65
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
66
- )
67
- end
68
- end
69
-
70
- class DeleteEncoderConfiguration
71
- def self.build(context)
72
- Aws::IVSRealTime::EndpointParameters.new(
73
- region: context.config.region,
74
- use_dual_stack: context.config.use_dualstack_endpoint,
75
- use_fips: context.config.use_fips_endpoint,
76
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
77
- )
78
- end
79
- end
80
-
81
- class DeleteIngestConfiguration
82
- def self.build(context)
83
- Aws::IVSRealTime::EndpointParameters.new(
84
- region: context.config.region,
85
- use_dual_stack: context.config.use_dualstack_endpoint,
86
- use_fips: context.config.use_fips_endpoint,
87
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
88
- )
89
- end
90
- end
91
-
92
- class DeletePublicKey
93
- def self.build(context)
94
- Aws::IVSRealTime::EndpointParameters.new(
95
- region: context.config.region,
96
- use_dual_stack: context.config.use_dualstack_endpoint,
97
- use_fips: context.config.use_fips_endpoint,
98
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
99
- )
100
- end
101
- end
102
-
103
- class DeleteStage
104
- def self.build(context)
105
- Aws::IVSRealTime::EndpointParameters.new(
106
- region: context.config.region,
107
- use_dual_stack: context.config.use_dualstack_endpoint,
108
- use_fips: context.config.use_fips_endpoint,
109
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
110
- )
111
- end
112
- end
113
-
114
- class DeleteStorageConfiguration
115
- def self.build(context)
116
- Aws::IVSRealTime::EndpointParameters.new(
117
- region: context.config.region,
118
- use_dual_stack: context.config.use_dualstack_endpoint,
119
- use_fips: context.config.use_fips_endpoint,
120
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
121
- )
122
- end
123
- end
124
-
125
- class DisconnectParticipant
126
- def self.build(context)
127
- Aws::IVSRealTime::EndpointParameters.new(
128
- region: context.config.region,
129
- use_dual_stack: context.config.use_dualstack_endpoint,
130
- use_fips: context.config.use_fips_endpoint,
131
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
132
- )
133
- end
134
- end
135
-
136
- class GetComposition
137
- def self.build(context)
138
- Aws::IVSRealTime::EndpointParameters.new(
139
- region: context.config.region,
140
- use_dual_stack: context.config.use_dualstack_endpoint,
141
- use_fips: context.config.use_fips_endpoint,
142
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
143
- )
144
- end
145
- end
146
-
147
- class GetEncoderConfiguration
148
- def self.build(context)
149
- Aws::IVSRealTime::EndpointParameters.new(
150
- region: context.config.region,
151
- use_dual_stack: context.config.use_dualstack_endpoint,
152
- use_fips: context.config.use_fips_endpoint,
153
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
154
- )
155
- end
156
- end
157
-
158
- class GetIngestConfiguration
159
- def self.build(context)
160
- Aws::IVSRealTime::EndpointParameters.new(
161
- region: context.config.region,
162
- use_dual_stack: context.config.use_dualstack_endpoint,
163
- use_fips: context.config.use_fips_endpoint,
164
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
165
- )
166
- end
167
- end
168
-
169
- class GetParticipant
170
- def self.build(context)
171
- Aws::IVSRealTime::EndpointParameters.new(
172
- region: context.config.region,
173
- use_dual_stack: context.config.use_dualstack_endpoint,
174
- use_fips: context.config.use_fips_endpoint,
175
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
176
- )
177
- end
178
- end
179
-
180
- class GetPublicKey
181
- def self.build(context)
182
- Aws::IVSRealTime::EndpointParameters.new(
183
- region: context.config.region,
184
- use_dual_stack: context.config.use_dualstack_endpoint,
185
- use_fips: context.config.use_fips_endpoint,
186
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
187
- )
188
- end
189
- end
190
-
191
- class GetStage
192
- def self.build(context)
193
- Aws::IVSRealTime::EndpointParameters.new(
194
- region: context.config.region,
195
- use_dual_stack: context.config.use_dualstack_endpoint,
196
- use_fips: context.config.use_fips_endpoint,
197
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
198
- )
199
- end
200
- end
201
-
202
- class GetStageSession
203
- def self.build(context)
204
- Aws::IVSRealTime::EndpointParameters.new(
205
- region: context.config.region,
206
- use_dual_stack: context.config.use_dualstack_endpoint,
207
- use_fips: context.config.use_fips_endpoint,
208
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
209
- )
210
- end
211
- end
212
15
 
213
- class GetStorageConfiguration
214
- def self.build(context)
215
- Aws::IVSRealTime::EndpointParameters.new(
216
- region: context.config.region,
217
- use_dual_stack: context.config.use_dualstack_endpoint,
218
- use_fips: context.config.use_fips_endpoint,
219
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
220
- )
221
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::IVSRealTime::EndpointParameters.create(context.config)
222
18
  end
223
-
224
- class ImportPublicKey
225
- def self.build(context)
226
- Aws::IVSRealTime::EndpointParameters.new(
227
- region: context.config.region,
228
- use_dual_stack: context.config.use_dualstack_endpoint,
229
- use_fips: context.config.use_fips_endpoint,
230
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
231
- )
232
- end
233
- end
234
-
235
- class ListCompositions
236
- def self.build(context)
237
- Aws::IVSRealTime::EndpointParameters.new(
238
- region: context.config.region,
239
- use_dual_stack: context.config.use_dualstack_endpoint,
240
- use_fips: context.config.use_fips_endpoint,
241
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
242
- )
243
- end
244
- end
245
-
246
- class ListEncoderConfigurations
247
- def self.build(context)
248
- Aws::IVSRealTime::EndpointParameters.new(
249
- region: context.config.region,
250
- use_dual_stack: context.config.use_dualstack_endpoint,
251
- use_fips: context.config.use_fips_endpoint,
252
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
253
- )
254
- end
255
- end
256
-
257
- class ListIngestConfigurations
258
- def self.build(context)
259
- Aws::IVSRealTime::EndpointParameters.new(
260
- region: context.config.region,
261
- use_dual_stack: context.config.use_dualstack_endpoint,
262
- use_fips: context.config.use_fips_endpoint,
263
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
264
- )
265
- end
266
- end
267
-
268
- class ListParticipantEvents
269
- def self.build(context)
270
- Aws::IVSRealTime::EndpointParameters.new(
271
- region: context.config.region,
272
- use_dual_stack: context.config.use_dualstack_endpoint,
273
- use_fips: context.config.use_fips_endpoint,
274
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
275
- )
276
- end
277
- end
278
-
279
- class ListParticipants
280
- def self.build(context)
281
- Aws::IVSRealTime::EndpointParameters.new(
282
- region: context.config.region,
283
- use_dual_stack: context.config.use_dualstack_endpoint,
284
- use_fips: context.config.use_fips_endpoint,
285
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
286
- )
287
- end
288
- end
289
-
290
- class ListPublicKeys
291
- def self.build(context)
292
- Aws::IVSRealTime::EndpointParameters.new(
293
- region: context.config.region,
294
- use_dual_stack: context.config.use_dualstack_endpoint,
295
- use_fips: context.config.use_fips_endpoint,
296
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
297
- )
298
- end
299
- end
300
-
301
- class ListStageSessions
302
- def self.build(context)
303
- Aws::IVSRealTime::EndpointParameters.new(
304
- region: context.config.region,
305
- use_dual_stack: context.config.use_dualstack_endpoint,
306
- use_fips: context.config.use_fips_endpoint,
307
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
308
- )
309
- end
310
- end
311
-
312
- class ListStages
313
- def self.build(context)
314
- Aws::IVSRealTime::EndpointParameters.new(
315
- region: context.config.region,
316
- use_dual_stack: context.config.use_dualstack_endpoint,
317
- use_fips: context.config.use_fips_endpoint,
318
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
319
- )
320
- end
321
- end
322
-
323
- class ListStorageConfigurations
324
- def self.build(context)
325
- Aws::IVSRealTime::EndpointParameters.new(
326
- region: context.config.region,
327
- use_dual_stack: context.config.use_dualstack_endpoint,
328
- use_fips: context.config.use_fips_endpoint,
329
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
330
- )
331
- end
332
- end
333
-
334
- class ListTagsForResource
335
- def self.build(context)
336
- Aws::IVSRealTime::EndpointParameters.new(
337
- region: context.config.region,
338
- use_dual_stack: context.config.use_dualstack_endpoint,
339
- use_fips: context.config.use_fips_endpoint,
340
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
341
- )
342
- end
343
- end
344
-
345
- class StartComposition
346
- def self.build(context)
347
- Aws::IVSRealTime::EndpointParameters.new(
348
- region: context.config.region,
349
- use_dual_stack: context.config.use_dualstack_endpoint,
350
- use_fips: context.config.use_fips_endpoint,
351
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
352
- )
353
- end
354
- end
355
-
356
- class StopComposition
357
- def self.build(context)
358
- Aws::IVSRealTime::EndpointParameters.new(
359
- region: context.config.region,
360
- use_dual_stack: context.config.use_dualstack_endpoint,
361
- use_fips: context.config.use_fips_endpoint,
362
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
363
- )
364
- end
365
- end
366
-
367
- class TagResource
368
- def self.build(context)
369
- Aws::IVSRealTime::EndpointParameters.new(
370
- region: context.config.region,
371
- use_dual_stack: context.config.use_dualstack_endpoint,
372
- use_fips: context.config.use_fips_endpoint,
373
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
374
- )
375
- end
376
- end
377
-
378
- class UntagResource
379
- def self.build(context)
380
- Aws::IVSRealTime::EndpointParameters.new(
381
- region: context.config.region,
382
- use_dual_stack: context.config.use_dualstack_endpoint,
383
- use_fips: context.config.use_fips_endpoint,
384
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
385
- )
386
- end
387
- end
388
-
389
- class UpdateIngestConfiguration
390
- def self.build(context)
391
- Aws::IVSRealTime::EndpointParameters.new(
392
- region: context.config.region,
393
- use_dual_stack: context.config.use_dualstack_endpoint,
394
- use_fips: context.config.use_fips_endpoint,
395
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
396
- )
397
- end
398
- end
399
-
400
- class UpdateStage
401
- def self.build(context)
402
- Aws::IVSRealTime::EndpointParameters.new(
403
- region: context.config.region,
404
- use_dual_stack: context.config.use_dualstack_endpoint,
405
- use_fips: context.config.use_fips_endpoint,
406
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
407
- )
408
- end
409
- end
410
-
411
19
  end
412
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::IVSRealTime::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,83 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :create_encoder_configuration
74
- Aws::IVSRealTime::Endpoints::CreateEncoderConfiguration.build(context)
75
- when :create_ingest_configuration
76
- Aws::IVSRealTime::Endpoints::CreateIngestConfiguration.build(context)
77
- when :create_participant_token
78
- Aws::IVSRealTime::Endpoints::CreateParticipantToken.build(context)
79
- when :create_stage
80
- Aws::IVSRealTime::Endpoints::CreateStage.build(context)
81
- when :create_storage_configuration
82
- Aws::IVSRealTime::Endpoints::CreateStorageConfiguration.build(context)
83
- when :delete_encoder_configuration
84
- Aws::IVSRealTime::Endpoints::DeleteEncoderConfiguration.build(context)
85
- when :delete_ingest_configuration
86
- Aws::IVSRealTime::Endpoints::DeleteIngestConfiguration.build(context)
87
- when :delete_public_key
88
- Aws::IVSRealTime::Endpoints::DeletePublicKey.build(context)
89
- when :delete_stage
90
- Aws::IVSRealTime::Endpoints::DeleteStage.build(context)
91
- when :delete_storage_configuration
92
- Aws::IVSRealTime::Endpoints::DeleteStorageConfiguration.build(context)
93
- when :disconnect_participant
94
- Aws::IVSRealTime::Endpoints::DisconnectParticipant.build(context)
95
- when :get_composition
96
- Aws::IVSRealTime::Endpoints::GetComposition.build(context)
97
- when :get_encoder_configuration
98
- Aws::IVSRealTime::Endpoints::GetEncoderConfiguration.build(context)
99
- when :get_ingest_configuration
100
- Aws::IVSRealTime::Endpoints::GetIngestConfiguration.build(context)
101
- when :get_participant
102
- Aws::IVSRealTime::Endpoints::GetParticipant.build(context)
103
- when :get_public_key
104
- Aws::IVSRealTime::Endpoints::GetPublicKey.build(context)
105
- when :get_stage
106
- Aws::IVSRealTime::Endpoints::GetStage.build(context)
107
- when :get_stage_session
108
- Aws::IVSRealTime::Endpoints::GetStageSession.build(context)
109
- when :get_storage_configuration
110
- Aws::IVSRealTime::Endpoints::GetStorageConfiguration.build(context)
111
- when :import_public_key
112
- Aws::IVSRealTime::Endpoints::ImportPublicKey.build(context)
113
- when :list_compositions
114
- Aws::IVSRealTime::Endpoints::ListCompositions.build(context)
115
- when :list_encoder_configurations
116
- Aws::IVSRealTime::Endpoints::ListEncoderConfigurations.build(context)
117
- when :list_ingest_configurations
118
- Aws::IVSRealTime::Endpoints::ListIngestConfigurations.build(context)
119
- when :list_participant_events
120
- Aws::IVSRealTime::Endpoints::ListParticipantEvents.build(context)
121
- when :list_participants
122
- Aws::IVSRealTime::Endpoints::ListParticipants.build(context)
123
- when :list_public_keys
124
- Aws::IVSRealTime::Endpoints::ListPublicKeys.build(context)
125
- when :list_stage_sessions
126
- Aws::IVSRealTime::Endpoints::ListStageSessions.build(context)
127
- when :list_stages
128
- Aws::IVSRealTime::Endpoints::ListStages.build(context)
129
- when :list_storage_configurations
130
- Aws::IVSRealTime::Endpoints::ListStorageConfigurations.build(context)
131
- when :list_tags_for_resource
132
- Aws::IVSRealTime::Endpoints::ListTagsForResource.build(context)
133
- when :start_composition
134
- Aws::IVSRealTime::Endpoints::StartComposition.build(context)
135
- when :stop_composition
136
- Aws::IVSRealTime::Endpoints::StopComposition.build(context)
137
- when :tag_resource
138
- Aws::IVSRealTime::Endpoints::TagResource.build(context)
139
- when :untag_resource
140
- Aws::IVSRealTime::Endpoints::UntagResource.build(context)
141
- when :update_ingest_configuration
142
- Aws::IVSRealTime::Endpoints::UpdateIngestConfiguration.build(context)
143
- when :update_stage
144
- Aws::IVSRealTime::Endpoints::UpdateStage.build(context)
145
- end
146
- end
147
70
  end
148
71
 
149
72
  def add_handlers(handlers, _config)
@@ -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.33.0'
58
+ GEM_VERSION = '1.35.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -141,7 +141,12 @@ module Aws
141
141
  ?tags: Hash[::String, ::String],
142
142
  ?auto_participant_recording_configuration: {
143
143
  storage_configuration_arn: ::String,
144
- media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY")]?
144
+ media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY" | "NONE")]?,
145
+ thumbnail_configuration: {
146
+ target_interval_seconds: ::Integer?,
147
+ storage: Array[("SEQUENTIAL" | "LATEST")]?,
148
+ recording_mode: ("INTERVAL" | "DISABLED")?
149
+ }?
145
150
  }
146
151
  ) -> _CreateStageResponseSuccess
147
152
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStageResponseSuccess
@@ -485,7 +490,13 @@ module Aws
485
490
  encoder_configuration_arns: Array[::String],
486
491
  recording_configuration: {
487
492
  format: ("HLS")?
488
- }?
493
+ }?,
494
+ thumbnail_configurations: Array[
495
+ {
496
+ target_interval_seconds: ::Integer?,
497
+ storage: Array[("SEQUENTIAL" | "LATEST")]?
498
+ },
499
+ ]?
489
500
  }?
490
501
  },
491
502
  ],
@@ -543,7 +554,12 @@ module Aws
543
554
  ?name: ::String,
544
555
  ?auto_participant_recording_configuration: {
545
556
  storage_configuration_arn: ::String,
546
- media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY")]?
557
+ media_types: Array[("AUDIO_VIDEO" | "AUDIO_ONLY" | "NONE")]?,
558
+ thumbnail_configuration: {
559
+ target_interval_seconds: ::Integer?,
560
+ storage: Array[("SEQUENTIAL" | "LATEST")]?,
561
+ recording_mode: ("INTERVAL" | "DISABLED")?
562
+ }?
547
563
  }
548
564
  ) -> _UpdateStageResponseSuccess
549
565
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStageResponseSuccess
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.33.0
4
+ version: 1.35.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-02 00:00:00.000000000 Z
11
+ date: 2024-12-10 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.207.0
22
+ version: 3.210.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.207.0
32
+ version: 3.210.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: