aws-sdk-chimesdkmediapipelines 1.12.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: 887c651224828581f79ab4ff8e8d47ac58ab3f549b2a17a4ba70a35fdd01480d
4
- data.tar.gz: faadf23ef3b2aa4e5d102ddb87a7c1f8768a9f402d1b54571910bb42f658b893
3
+ metadata.gz: 5a05f470d6402f48acdcbb75e3b00ccab338d5bd793604ac09c537318e7ab7fa
4
+ data.tar.gz: 76f13bd7a9a3448220185924cd6d16e6161b1369e9862748de0bde73b9e800d8
5
5
  SHA512:
6
- metadata.gz: 5d3a184b3f5e0aedfe230c054ed4a7cc8cdfb11114ddc7398d9387c508c14c103d92be432cb9b0553437cfdf3be01c9acca06477b86d6027194ebf675506939a
7
- data.tar.gz: ae57e2141a9e9ad74ac529d95993183dfff0aaa72119b2402302ff2f93f17c476e5f8fe9da5892d914489a929460b5a890c744c756d7a90a27ab6517e821731e
6
+ metadata.gz: f12f8ebb2c813a1a381aec2b7f7492fb977187f9afc36e2fdecdd7d890321b4a38d2dec4491528b407236881ca176cb3111712f3128e8bc2fe522fc3c1fadd66
7
+ data.tar.gz: 8203cdbdba28647c043aeb206dc4a71f88cf553fde87ef6770af5f2a9171e8096b6b09103b79966f7da2073af3616896974a5b0f5e25cac112e65092bc6d499a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.13.0 (2023-09-01)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for the Voice Analytics feature for customer-owned KVS streams as part of the Amazon Chime SDK call analytics.
13
+
4
14
  1.12.0 (2023-08-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.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,114 @@ 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
+
1690
+ # Retrieves the details of the specified speaker search task.
1691
+ #
1692
+ # @option params [required, String] :identifier
1693
+ # The unique identifier of the resource to be updated. Valid values
1694
+ # include the ID and ARN of the media insights pipeline.
1695
+ #
1696
+ # @option params [required, String] :speaker_search_task_id
1697
+ # The ID of the speaker search task.
1698
+ #
1699
+ # @return [Types::GetSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1700
+ #
1701
+ # * {Types::GetSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
1702
+ #
1703
+ # @example Request syntax with placeholder values
1704
+ #
1705
+ # resp = client.get_speaker_search_task({
1706
+ # identifier: "NonEmptyString", # required
1707
+ # speaker_search_task_id: "GuidString", # required
1708
+ # })
1709
+ #
1710
+ # @example Response structure
1711
+ #
1712
+ # resp.speaker_search_task.speaker_search_task_id #=> String
1713
+ # resp.speaker_search_task.speaker_search_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1714
+ # resp.speaker_search_task.created_timestamp #=> Time
1715
+ # resp.speaker_search_task.updated_timestamp #=> Time
1716
+ #
1717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTask AWS API Documentation
1718
+ #
1719
+ # @overload get_speaker_search_task(params = {})
1720
+ # @param [Hash] params ({})
1721
+ def get_speaker_search_task(params = {}, options = {})
1722
+ req = build_request(:get_speaker_search_task, params)
1723
+ req.send_request(options)
1724
+ end
1725
+
1726
+ # Retrieves the details of a voice tone analysis task.
1727
+ #
1728
+ # @option params [required, String] :identifier
1729
+ # The unique identifier of the resource to be updated. Valid values
1730
+ # include the ID and ARN of the media insights pipeline.
1731
+ #
1732
+ # @option params [required, String] :voice_tone_analysis_task_id
1733
+ # The ID of the voice tone analysis task.
1734
+ #
1735
+ # @return [Types::GetVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1736
+ #
1737
+ # * {Types::GetVoiceToneAnalysisTaskResponse#voice_tone_analysis_task #voice_tone_analysis_task} => Types::VoiceToneAnalysisTask
1738
+ #
1739
+ # @example Request syntax with placeholder values
1740
+ #
1741
+ # resp = client.get_voice_tone_analysis_task({
1742
+ # identifier: "NonEmptyString", # required
1743
+ # voice_tone_analysis_task_id: "GuidString", # required
1744
+ # })
1745
+ #
1746
+ # @example Response structure
1747
+ #
1748
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_id #=> String
1749
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1750
+ # resp.voice_tone_analysis_task.created_timestamp #=> Time
1751
+ # resp.voice_tone_analysis_task.updated_timestamp #=> Time
1752
+ #
1753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTask AWS API Documentation
1754
+ #
1755
+ # @overload get_voice_tone_analysis_task(params = {})
1756
+ # @param [Hash] params ({})
1757
+ def get_voice_tone_analysis_task(params = {}, options = {})
1758
+ req = build_request(:get_voice_tone_analysis_task, params)
1759
+ req.send_request(options)
1760
+ end
1761
+
1488
1762
  # Returns a list of media pipelines.
1489
1763
  #
1490
1764
  # @option params [String] :next_token
@@ -1563,6 +1837,45 @@ module Aws::ChimeSDKMediaPipelines
1563
1837
  req.send_request(options)
1564
1838
  end
1565
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
+
1566
1879
  # Returns a list of media pipelines.
1567
1880
  #
1568
1881
  # @option params [String] :next_token
@@ -1633,6 +1946,187 @@ module Aws::ChimeSDKMediaPipelines
1633
1946
  req.send_request(options)
1634
1947
  end
1635
1948
 
1949
+ # Starts a speaker search task.
1950
+ #
1951
+ # Before starting any speaker search tasks, you must provide all notices
1952
+ # and obtain all consents from the speaker as required under applicable
1953
+ # privacy and biometrics laws, and as required under the [AWS service
1954
+ # terms][1] for the Amazon Chime SDK.
1955
+ #
1956
+ #
1957
+ #
1958
+ # [1]: https://aws.amazon.com/service-terms/
1959
+ #
1960
+ # @option params [required, String] :identifier
1961
+ # The unique identifier of the resource to be updated. Valid values
1962
+ # include the ID and ARN of the media insights pipeline.
1963
+ #
1964
+ # @option params [required, String] :voice_profile_domain_arn
1965
+ # The ARN of the voice profile domain that will store the voice profile.
1966
+ #
1967
+ # @option params [Types::KinesisVideoStreamSourceTaskConfiguration] :kinesis_video_stream_source_task_configuration
1968
+ # The task configuration for the Kinesis video stream source of the
1969
+ # media insights pipeline.
1970
+ #
1971
+ # @option params [String] :client_request_token
1972
+ # The unique identifier for the client request. Use a different token
1973
+ # for different speaker search tasks.
1974
+ #
1975
+ # **A suitable default value is auto-generated.** You should normally
1976
+ # not need to pass this option.**
1977
+ #
1978
+ # @return [Types::StartSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1979
+ #
1980
+ # * {Types::StartSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
1981
+ #
1982
+ # @example Request syntax with placeholder values
1983
+ #
1984
+ # resp = client.start_speaker_search_task({
1985
+ # identifier: "NonEmptyString", # required
1986
+ # voice_profile_domain_arn: "Arn", # required
1987
+ # kinesis_video_stream_source_task_configuration: {
1988
+ # stream_arn: "KinesisVideoStreamArn", # required
1989
+ # channel_id: 1, # required
1990
+ # fragment_number: "FragmentNumberString",
1991
+ # },
1992
+ # client_request_token: "ClientRequestToken",
1993
+ # })
1994
+ #
1995
+ # @example Response structure
1996
+ #
1997
+ # resp.speaker_search_task.speaker_search_task_id #=> String
1998
+ # resp.speaker_search_task.speaker_search_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1999
+ # resp.speaker_search_task.created_timestamp #=> Time
2000
+ # resp.speaker_search_task.updated_timestamp #=> Time
2001
+ #
2002
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTask AWS API Documentation
2003
+ #
2004
+ # @overload start_speaker_search_task(params = {})
2005
+ # @param [Hash] params ({})
2006
+ def start_speaker_search_task(params = {}, options = {})
2007
+ req = build_request(:start_speaker_search_task, params)
2008
+ req.send_request(options)
2009
+ end
2010
+
2011
+ # Starts a voice tone analysis task. For more information about voice
2012
+ # tone analysis, see [Using Amazon Chime SDK voice analytics][1] in the
2013
+ # *Amazon Chime SDK Developer Guide*.
2014
+ #
2015
+ # Before starting any voice tone analysis tasks, you must provide all
2016
+ # notices and obtain all consents from the speaker as required under
2017
+ # applicable privacy and biometrics laws, and as required under the [AWS
2018
+ # service terms][2] for the Amazon Chime SDK.
2019
+ #
2020
+ #
2021
+ #
2022
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/voice-analytics.html
2023
+ # [2]: https://aws.amazon.com/service-terms/
2024
+ #
2025
+ # @option params [required, String] :identifier
2026
+ # The unique identifier of the resource to be updated. Valid values
2027
+ # include the ID and ARN of the media insights pipeline.
2028
+ #
2029
+ # @option params [required, String] :language_code
2030
+ # The language code.
2031
+ #
2032
+ # @option params [Types::KinesisVideoStreamSourceTaskConfiguration] :kinesis_video_stream_source_task_configuration
2033
+ # The task configuration for the Kinesis video stream source of the
2034
+ # media insights pipeline.
2035
+ #
2036
+ # @option params [String] :client_request_token
2037
+ # The unique identifier for the client request. Use a different token
2038
+ # for different voice tone analysis tasks.
2039
+ #
2040
+ # **A suitable default value is auto-generated.** You should normally
2041
+ # not need to pass this option.**
2042
+ #
2043
+ # @return [Types::StartVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2044
+ #
2045
+ # * {Types::StartVoiceToneAnalysisTaskResponse#voice_tone_analysis_task #voice_tone_analysis_task} => Types::VoiceToneAnalysisTask
2046
+ #
2047
+ # @example Request syntax with placeholder values
2048
+ #
2049
+ # resp = client.start_voice_tone_analysis_task({
2050
+ # identifier: "NonEmptyString", # required
2051
+ # language_code: "en-US", # required, accepts en-US
2052
+ # kinesis_video_stream_source_task_configuration: {
2053
+ # stream_arn: "KinesisVideoStreamArn", # required
2054
+ # channel_id: 1, # required
2055
+ # fragment_number: "FragmentNumberString",
2056
+ # },
2057
+ # client_request_token: "ClientRequestToken",
2058
+ # })
2059
+ #
2060
+ # @example Response structure
2061
+ #
2062
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_id #=> String
2063
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
2064
+ # resp.voice_tone_analysis_task.created_timestamp #=> Time
2065
+ # resp.voice_tone_analysis_task.updated_timestamp #=> Time
2066
+ #
2067
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTask AWS API Documentation
2068
+ #
2069
+ # @overload start_voice_tone_analysis_task(params = {})
2070
+ # @param [Hash] params ({})
2071
+ def start_voice_tone_analysis_task(params = {}, options = {})
2072
+ req = build_request(:start_voice_tone_analysis_task, params)
2073
+ req.send_request(options)
2074
+ end
2075
+
2076
+ # Stops a speaker search task.
2077
+ #
2078
+ # @option params [required, String] :identifier
2079
+ # The unique identifier of the resource to be updated. Valid values
2080
+ # include the ID and ARN of the media insights pipeline.
2081
+ #
2082
+ # @option params [required, String] :speaker_search_task_id
2083
+ # The speaker search task ID.
2084
+ #
2085
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2086
+ #
2087
+ # @example Request syntax with placeholder values
2088
+ #
2089
+ # resp = client.stop_speaker_search_task({
2090
+ # identifier: "NonEmptyString", # required
2091
+ # speaker_search_task_id: "GuidString", # required
2092
+ # })
2093
+ #
2094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopSpeakerSearchTask AWS API Documentation
2095
+ #
2096
+ # @overload stop_speaker_search_task(params = {})
2097
+ # @param [Hash] params ({})
2098
+ def stop_speaker_search_task(params = {}, options = {})
2099
+ req = build_request(:stop_speaker_search_task, params)
2100
+ req.send_request(options)
2101
+ end
2102
+
2103
+ # Stops a voice tone analysis task.
2104
+ #
2105
+ # @option params [required, String] :identifier
2106
+ # The unique identifier of the resource to be updated. Valid values
2107
+ # include the ID and ARN of the media insights pipeline.
2108
+ #
2109
+ # @option params [required, String] :voice_tone_analysis_task_id
2110
+ # The ID of the voice tone analysis task.
2111
+ #
2112
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2113
+ #
2114
+ # @example Request syntax with placeholder values
2115
+ #
2116
+ # resp = client.stop_voice_tone_analysis_task({
2117
+ # identifier: "NonEmptyString", # required
2118
+ # voice_tone_analysis_task_id: "GuidString", # required
2119
+ # })
2120
+ #
2121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopVoiceToneAnalysisTask AWS API Documentation
2122
+ #
2123
+ # @overload stop_voice_tone_analysis_task(params = {})
2124
+ # @param [Hash] params ({})
2125
+ def stop_voice_tone_analysis_task(params = {}, options = {})
2126
+ req = build_request(:stop_voice_tone_analysis_task, params)
2127
+ req.send_request(options)
2128
+ end
2129
+
1636
2130
  # The ARN of the media pipeline that you want to tag. Consists of the
1637
2131
  # pipeline's endpoint region, resource ID, and pipeline ID.
1638
2132
  #
@@ -1911,6 +2405,48 @@ module Aws::ChimeSDKMediaPipelines
1911
2405
  req.send_request(options)
1912
2406
  end
1913
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
+
1914
2450
  # @!endgroup
1915
2451
 
1916
2452
  # @param params ({})
@@ -1924,7 +2460,7 @@ module Aws::ChimeSDKMediaPipelines
1924
2460
  params: params,
1925
2461
  config: config)
1926
2462
  context[:gem_name] = 'aws-sdk-chimesdkmediapipelines'
1927
- context[:gem_version] = '1.12.0'
2463
+ context[:gem_version] = '1.14.0'
1928
2464
  Seahorse::Client::Request.new(handlers, context)
1929
2465
  end
1930
2466