aws-sdk-chimesdkmediapipelines 1.13.0 → 1.14.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: e3c74e2b71fa3e83c1d5cdc447d806460ed214464291935dfc7f9d02e9b2379d
4
- data.tar.gz: 998b77b7e9775f625661688d5ed30266d1a57a86e994ae8e583e7e3e9ab943ff
3
+ metadata.gz: 5a05f470d6402f48acdcbb75e3b00ccab338d5bd793604ac09c537318e7ab7fa
4
+ data.tar.gz: 76f13bd7a9a3448220185924cd6d16e6161b1369e9862748de0bde73b9e800d8
5
5
  SHA512:
6
- metadata.gz: a06ae80e3b2743eb8d0e399397970cf457da1b4afc099d9fd8e10edd2471168cfa572ab6c0f7afeb562b36e9a0bf03d3ece8b70e1a738fe30f5f5da5d96ea1b0
7
- data.tar.gz: 67fb10bbc6a952b2e2a436823b94edc70cc1109cea9290256cb5999d20460c58e8c957d4d1070c8055e0da2fb4a50e0026721ab4cad126247e6bbb0a4a998014
6
+ metadata.gz: f12f8ebb2c813a1a381aec2b7f7492fb977187f9afc36e2fdecdd7d890321b4a38d2dec4491528b407236881ca176cb3111712f3128e8bc2fe522fc3c1fadd66
7
+ data.tar.gz: 8203cdbdba28647c043aeb206dc4a71f88cf553fde87ef6770af5f2a9171e8096b6b09103b79966f7da2073af3616896974a5b0f5e25cac112e65092bc6d499a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2023-09-25)
5
+ ------------------
6
+
7
+ * Feature - Adds support for sending WebRTC audio to Amazon Kineses Video Streams.
8
+
4
9
  1.13.0 (2023-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.14.0
@@ -1122,6 +1122,137 @@ module Aws::ChimeSDKMediaPipelines
1122
1122
  req.send_request(options)
1123
1123
  end
1124
1124
 
1125
+ # Creates an Kinesis video stream pool for the media pipeline.
1126
+ #
1127
+ # @option params [required, Types::KinesisVideoStreamConfiguration] :stream_configuration
1128
+ # The configuration settings for the video stream.
1129
+ #
1130
+ # @option params [required, String] :pool_name
1131
+ # The name of the video stream pool.
1132
+ #
1133
+ # @option params [String] :client_request_token
1134
+ # The token assigned to the client making the request.
1135
+ #
1136
+ # **A suitable default value is auto-generated.** You should normally
1137
+ # not need to pass this option.**
1138
+ #
1139
+ # @option params [Array<Types::Tag>] :tags
1140
+ # The tags assigned to the video stream pool.
1141
+ #
1142
+ # @return [Types::CreateMediaPipelineKinesisVideoStreamPoolResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1143
+ #
1144
+ # * {Types::CreateMediaPipelineKinesisVideoStreamPoolResponse#kinesis_video_stream_pool_configuration #kinesis_video_stream_pool_configuration} => Types::KinesisVideoStreamPoolConfiguration
1145
+ #
1146
+ # @example Request syntax with placeholder values
1147
+ #
1148
+ # resp = client.create_media_pipeline_kinesis_video_stream_pool({
1149
+ # stream_configuration: { # required
1150
+ # region: "AwsRegion", # required
1151
+ # data_retention_in_hours: 1,
1152
+ # },
1153
+ # pool_name: "KinesisVideoStreamPoolName", # required
1154
+ # client_request_token: "ClientRequestToken",
1155
+ # tags: [
1156
+ # {
1157
+ # key: "TagKey", # required
1158
+ # value: "TagValue", # required
1159
+ # },
1160
+ # ],
1161
+ # })
1162
+ #
1163
+ # @example Response structure
1164
+ #
1165
+ # resp.kinesis_video_stream_pool_configuration.pool_arn #=> String
1166
+ # resp.kinesis_video_stream_pool_configuration.pool_name #=> String
1167
+ # resp.kinesis_video_stream_pool_configuration.pool_id #=> String
1168
+ # resp.kinesis_video_stream_pool_configuration.pool_status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
1169
+ # resp.kinesis_video_stream_pool_configuration.pool_size #=> Integer
1170
+ # resp.kinesis_video_stream_pool_configuration.stream_configuration.region #=> String
1171
+ # resp.kinesis_video_stream_pool_configuration.stream_configuration.data_retention_in_hours #=> Integer
1172
+ # resp.kinesis_video_stream_pool_configuration.created_timestamp #=> Time
1173
+ # resp.kinesis_video_stream_pool_configuration.updated_timestamp #=> Time
1174
+ #
1175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaPipelineKinesisVideoStreamPool AWS API Documentation
1176
+ #
1177
+ # @overload create_media_pipeline_kinesis_video_stream_pool(params = {})
1178
+ # @param [Hash] params ({})
1179
+ def create_media_pipeline_kinesis_video_stream_pool(params = {}, options = {})
1180
+ req = build_request(:create_media_pipeline_kinesis_video_stream_pool, params)
1181
+ req.send_request(options)
1182
+ end
1183
+
1184
+ # Creates a streaming media pipeline.
1185
+ #
1186
+ # @option params [required, Array<Types::MediaStreamSource>] :sources
1187
+ # The data sources for the media pipeline.
1188
+ #
1189
+ # @option params [required, Array<Types::MediaStreamSink>] :sinks
1190
+ # The data sink for the media pipeline.
1191
+ #
1192
+ # @option params [String] :client_request_token
1193
+ # The token assigned to the client making the request.
1194
+ #
1195
+ # **A suitable default value is auto-generated.** You should normally
1196
+ # not need to pass this option.**
1197
+ #
1198
+ # @option params [Array<Types::Tag>] :tags
1199
+ # The tags assigned to the media pipeline.
1200
+ #
1201
+ # @return [Types::CreateMediaStreamPipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1202
+ #
1203
+ # * {Types::CreateMediaStreamPipelineResponse#media_stream_pipeline #media_stream_pipeline} => Types::MediaStreamPipeline
1204
+ #
1205
+ # @example Request syntax with placeholder values
1206
+ #
1207
+ # resp = client.create_media_stream_pipeline({
1208
+ # sources: [ # required
1209
+ # {
1210
+ # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
1211
+ # source_arn: "Arn", # required
1212
+ # },
1213
+ # ],
1214
+ # sinks: [ # required
1215
+ # {
1216
+ # sink_arn: "Arn", # required
1217
+ # sink_type: "KinesisVideoStreamPool", # required, accepts KinesisVideoStreamPool
1218
+ # reserved_stream_capacity: 1, # required
1219
+ # media_stream_type: "MixedAudio", # required, accepts MixedAudio, IndividualAudio
1220
+ # },
1221
+ # ],
1222
+ # client_request_token: "ClientRequestToken",
1223
+ # tags: [
1224
+ # {
1225
+ # key: "TagKey", # required
1226
+ # value: "TagValue", # required
1227
+ # },
1228
+ # ],
1229
+ # })
1230
+ #
1231
+ # @example Response structure
1232
+ #
1233
+ # resp.media_stream_pipeline.media_pipeline_id #=> String
1234
+ # resp.media_stream_pipeline.media_pipeline_arn #=> String
1235
+ # resp.media_stream_pipeline.created_timestamp #=> Time
1236
+ # resp.media_stream_pipeline.updated_timestamp #=> Time
1237
+ # resp.media_stream_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped", "Paused", "NotStarted"
1238
+ # resp.media_stream_pipeline.sources #=> Array
1239
+ # resp.media_stream_pipeline.sources[0].source_type #=> String, one of "ChimeSdkMeeting"
1240
+ # resp.media_stream_pipeline.sources[0].source_arn #=> String
1241
+ # resp.media_stream_pipeline.sinks #=> Array
1242
+ # resp.media_stream_pipeline.sinks[0].sink_arn #=> String
1243
+ # resp.media_stream_pipeline.sinks[0].sink_type #=> String, one of "KinesisVideoStreamPool"
1244
+ # resp.media_stream_pipeline.sinks[0].reserved_stream_capacity #=> Integer
1245
+ # resp.media_stream_pipeline.sinks[0].media_stream_type #=> String, one of "MixedAudio", "IndividualAudio"
1246
+ #
1247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaStreamPipeline AWS API Documentation
1248
+ #
1249
+ # @overload create_media_stream_pipeline(params = {})
1250
+ # @param [Hash] params ({})
1251
+ def create_media_stream_pipeline(params = {}, options = {})
1252
+ req = build_request(:create_media_stream_pipeline, params)
1253
+ req.send_request(options)
1254
+ end
1255
+
1125
1256
  # Deletes the media pipeline.
1126
1257
  #
1127
1258
  # @option params [required, String] :media_pipeline_id
@@ -1189,6 +1320,28 @@ module Aws::ChimeSDKMediaPipelines
1189
1320
  req.send_request(options)
1190
1321
  end
1191
1322
 
1323
+ # Deletes an Kinesis video stream pool.
1324
+ #
1325
+ # @option params [required, String] :identifier
1326
+ # The ID of the pool being deleted.
1327
+ #
1328
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1329
+ #
1330
+ # @example Request syntax with placeholder values
1331
+ #
1332
+ # resp = client.delete_media_pipeline_kinesis_video_stream_pool({
1333
+ # identifier: "NonEmptyString", # required
1334
+ # })
1335
+ #
1336
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/DeleteMediaPipelineKinesisVideoStreamPool AWS API Documentation
1337
+ #
1338
+ # @overload delete_media_pipeline_kinesis_video_stream_pool(params = {})
1339
+ # @param [Hash] params ({})
1340
+ def delete_media_pipeline_kinesis_video_stream_pool(params = {}, options = {})
1341
+ req = build_request(:delete_media_pipeline_kinesis_video_stream_pool, params)
1342
+ req.send_request(options)
1343
+ end
1344
+
1192
1345
  # Gets an existing media pipeline.
1193
1346
  #
1194
1347
  # @option params [required, String] :media_pipeline_id
@@ -1475,6 +1628,19 @@ module Aws::ChimeSDKMediaPipelines
1475
1628
  # resp.media_pipeline.media_insights_pipeline.element_statuses #=> Array
1476
1629
  # resp.media_pipeline.media_insights_pipeline.element_statuses[0].type #=> String, one of "AmazonTranscribeCallAnalyticsProcessor", "VoiceAnalyticsProcessor", "AmazonTranscribeProcessor", "KinesisDataStreamSink", "LambdaFunctionSink", "SqsQueueSink", "SnsTopicSink", "S3RecordingSink", "VoiceEnhancementSink"
1477
1630
  # resp.media_pipeline.media_insights_pipeline.element_statuses[0].status #=> String, one of "NotStarted", "NotSupported", "Initializing", "InProgress", "Failed", "Stopping", "Stopped", "Paused"
1631
+ # resp.media_pipeline.media_stream_pipeline.media_pipeline_id #=> String
1632
+ # resp.media_pipeline.media_stream_pipeline.media_pipeline_arn #=> String
1633
+ # resp.media_pipeline.media_stream_pipeline.created_timestamp #=> Time
1634
+ # resp.media_pipeline.media_stream_pipeline.updated_timestamp #=> Time
1635
+ # resp.media_pipeline.media_stream_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped", "Paused", "NotStarted"
1636
+ # resp.media_pipeline.media_stream_pipeline.sources #=> Array
1637
+ # resp.media_pipeline.media_stream_pipeline.sources[0].source_type #=> String, one of "ChimeSdkMeeting"
1638
+ # resp.media_pipeline.media_stream_pipeline.sources[0].source_arn #=> String
1639
+ # resp.media_pipeline.media_stream_pipeline.sinks #=> Array
1640
+ # resp.media_pipeline.media_stream_pipeline.sinks[0].sink_arn #=> String
1641
+ # resp.media_pipeline.media_stream_pipeline.sinks[0].sink_type #=> String, one of "KinesisVideoStreamPool"
1642
+ # resp.media_pipeline.media_stream_pipeline.sinks[0].reserved_stream_capacity #=> Integer
1643
+ # resp.media_pipeline.media_stream_pipeline.sinks[0].media_stream_type #=> String, one of "MixedAudio", "IndividualAudio"
1478
1644
  #
1479
1645
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaPipeline AWS API Documentation
1480
1646
  #
@@ -1485,6 +1651,42 @@ module Aws::ChimeSDKMediaPipelines
1485
1651
  req.send_request(options)
1486
1652
  end
1487
1653
 
1654
+ # Gets an Kinesis video stream pool.
1655
+ #
1656
+ # @option params [required, String] :identifier
1657
+ # The ID of the video stream pool.
1658
+ #
1659
+ # @return [Types::GetMediaPipelineKinesisVideoStreamPoolResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1660
+ #
1661
+ # * {Types::GetMediaPipelineKinesisVideoStreamPoolResponse#kinesis_video_stream_pool_configuration #kinesis_video_stream_pool_configuration} => Types::KinesisVideoStreamPoolConfiguration
1662
+ #
1663
+ # @example Request syntax with placeholder values
1664
+ #
1665
+ # resp = client.get_media_pipeline_kinesis_video_stream_pool({
1666
+ # identifier: "NonEmptyString", # required
1667
+ # })
1668
+ #
1669
+ # @example Response structure
1670
+ #
1671
+ # resp.kinesis_video_stream_pool_configuration.pool_arn #=> String
1672
+ # resp.kinesis_video_stream_pool_configuration.pool_name #=> String
1673
+ # resp.kinesis_video_stream_pool_configuration.pool_id #=> String
1674
+ # resp.kinesis_video_stream_pool_configuration.pool_status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
1675
+ # resp.kinesis_video_stream_pool_configuration.pool_size #=> Integer
1676
+ # resp.kinesis_video_stream_pool_configuration.stream_configuration.region #=> String
1677
+ # resp.kinesis_video_stream_pool_configuration.stream_configuration.data_retention_in_hours #=> Integer
1678
+ # resp.kinesis_video_stream_pool_configuration.created_timestamp #=> Time
1679
+ # resp.kinesis_video_stream_pool_configuration.updated_timestamp #=> Time
1680
+ #
1681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaPipelineKinesisVideoStreamPool AWS API Documentation
1682
+ #
1683
+ # @overload get_media_pipeline_kinesis_video_stream_pool(params = {})
1684
+ # @param [Hash] params ({})
1685
+ def get_media_pipeline_kinesis_video_stream_pool(params = {}, options = {})
1686
+ req = build_request(:get_media_pipeline_kinesis_video_stream_pool, params)
1687
+ req.send_request(options)
1688
+ end
1689
+
1488
1690
  # Retrieves the details of the specified speaker search task.
1489
1691
  #
1490
1692
  # @option params [required, String] :identifier
@@ -1528,7 +1730,7 @@ module Aws::ChimeSDKMediaPipelines
1528
1730
  # include the ID and ARN of the media insights pipeline.
1529
1731
  #
1530
1732
  # @option params [required, String] :voice_tone_analysis_task_id
1531
- # The ID of the voice tone anlysis task.
1733
+ # The ID of the voice tone analysis task.
1532
1734
  #
1533
1735
  # @return [Types::GetVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1534
1736
  #
@@ -1635,6 +1837,45 @@ module Aws::ChimeSDKMediaPipelines
1635
1837
  req.send_request(options)
1636
1838
  end
1637
1839
 
1840
+ # Lists the video stream pools in the media pipeline.
1841
+ #
1842
+ # @option params [String] :next_token
1843
+ # The token used to return the next page of results.
1844
+ #
1845
+ # @option params [Integer] :max_results
1846
+ # The maximum number of results to return in a single call.
1847
+ #
1848
+ # @return [Types::ListMediaPipelineKinesisVideoStreamPoolsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1849
+ #
1850
+ # * {Types::ListMediaPipelineKinesisVideoStreamPoolsResponse#kinesis_video_stream_pools #kinesis_video_stream_pools} => Array&lt;Types::KinesisVideoStreamPoolSummary&gt;
1851
+ # * {Types::ListMediaPipelineKinesisVideoStreamPoolsResponse#next_token #next_token} => String
1852
+ #
1853
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1854
+ #
1855
+ # @example Request syntax with placeholder values
1856
+ #
1857
+ # resp = client.list_media_pipeline_kinesis_video_stream_pools({
1858
+ # next_token: "String",
1859
+ # max_results: 1,
1860
+ # })
1861
+ #
1862
+ # @example Response structure
1863
+ #
1864
+ # resp.kinesis_video_stream_pools #=> Array
1865
+ # resp.kinesis_video_stream_pools[0].pool_name #=> String
1866
+ # resp.kinesis_video_stream_pools[0].pool_id #=> String
1867
+ # resp.kinesis_video_stream_pools[0].pool_arn #=> String
1868
+ # resp.next_token #=> String
1869
+ #
1870
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaPipelineKinesisVideoStreamPools AWS API Documentation
1871
+ #
1872
+ # @overload list_media_pipeline_kinesis_video_stream_pools(params = {})
1873
+ # @param [Hash] params ({})
1874
+ def list_media_pipeline_kinesis_video_stream_pools(params = {}, options = {})
1875
+ req = build_request(:list_media_pipeline_kinesis_video_stream_pools, params)
1876
+ req.send_request(options)
1877
+ end
1878
+
1638
1879
  # Returns a list of media pipelines.
1639
1880
  #
1640
1881
  # @option params [String] :next_token
@@ -2164,6 +2405,48 @@ module Aws::ChimeSDKMediaPipelines
2164
2405
  req.send_request(options)
2165
2406
  end
2166
2407
 
2408
+ # Updates an Kinesis video stream pool in a media pipeline.
2409
+ #
2410
+ # @option params [required, String] :identifier
2411
+ # The ID of the video stream pool.
2412
+ #
2413
+ # @option params [Types::KinesisVideoStreamConfigurationUpdate] :stream_configuration
2414
+ # The configuration settings for the video stream.
2415
+ #
2416
+ # @return [Types::UpdateMediaPipelineKinesisVideoStreamPoolResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2417
+ #
2418
+ # * {Types::UpdateMediaPipelineKinesisVideoStreamPoolResponse#kinesis_video_stream_pool_configuration #kinesis_video_stream_pool_configuration} => Types::KinesisVideoStreamPoolConfiguration
2419
+ #
2420
+ # @example Request syntax with placeholder values
2421
+ #
2422
+ # resp = client.update_media_pipeline_kinesis_video_stream_pool({
2423
+ # identifier: "NonEmptyString", # required
2424
+ # stream_configuration: {
2425
+ # data_retention_in_hours: 1,
2426
+ # },
2427
+ # })
2428
+ #
2429
+ # @example Response structure
2430
+ #
2431
+ # resp.kinesis_video_stream_pool_configuration.pool_arn #=> String
2432
+ # resp.kinesis_video_stream_pool_configuration.pool_name #=> String
2433
+ # resp.kinesis_video_stream_pool_configuration.pool_id #=> String
2434
+ # resp.kinesis_video_stream_pool_configuration.pool_status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
2435
+ # resp.kinesis_video_stream_pool_configuration.pool_size #=> Integer
2436
+ # resp.kinesis_video_stream_pool_configuration.stream_configuration.region #=> String
2437
+ # resp.kinesis_video_stream_pool_configuration.stream_configuration.data_retention_in_hours #=> Integer
2438
+ # resp.kinesis_video_stream_pool_configuration.created_timestamp #=> Time
2439
+ # resp.kinesis_video_stream_pool_configuration.updated_timestamp #=> Time
2440
+ #
2441
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/UpdateMediaPipelineKinesisVideoStreamPool AWS API Documentation
2442
+ #
2443
+ # @overload update_media_pipeline_kinesis_video_stream_pool(params = {})
2444
+ # @param [Hash] params ({})
2445
+ def update_media_pipeline_kinesis_video_stream_pool(params = {}, options = {})
2446
+ req = build_request(:update_media_pipeline_kinesis_video_stream_pool, params)
2447
+ req.send_request(options)
2448
+ end
2449
+
2167
2450
  # @!endgroup
2168
2451
 
2169
2452
  # @param params ({})
@@ -2177,7 +2460,7 @@ module Aws::ChimeSDKMediaPipelines
2177
2460
  params: params,
2178
2461
  config: config)
2179
2462
  context[:gem_name] = 'aws-sdk-chimesdkmediapipelines'
2180
- context[:gem_version] = '1.13.0'
2463
+ context[:gem_version] = '1.14.0'
2181
2464
  Seahorse::Client::Request.new(handlers, context)
2182
2465
  end
2183
2466