aws-sdk-chimesdkmediapipelines 1.12.0 → 1.13.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: e3c74e2b71fa3e83c1d5cdc447d806460ed214464291935dfc7f9d02e9b2379d
4
+ data.tar.gz: 998b77b7e9775f625661688d5ed30266d1a57a86e994ae8e583e7e3e9ab943ff
5
5
  SHA512:
6
- metadata.gz: 5d3a184b3f5e0aedfe230c054ed4a7cc8cdfb11114ddc7398d9387c508c14c103d92be432cb9b0553437cfdf3be01c9acca06477b86d6027194ebf675506939a
7
- data.tar.gz: ae57e2141a9e9ad74ac529d95993183dfff0aaa72119b2402302ff2f93f17c476e5f8fe9da5892d914489a929460b5a890c744c756d7a90a27ab6517e821731e
6
+ metadata.gz: a06ae80e3b2743eb8d0e399397970cf457da1b4afc099d9fd8e10edd2471168cfa572ab6c0f7afeb562b36e9a0bf03d3ece8b70e1a738fe30f5f5da5d96ea1b0
7
+ data.tar.gz: 67fb10bbc6a952b2e2a436823b94edc70cc1109cea9290256cb5999d20460c58e8c957d4d1070c8055e0da2fb4a50e0026721ab4cad126247e6bbb0a4a998014
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2023-09-01)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for the Voice Analytics feature for customer-owned KVS streams as part of the Amazon Chime SDK call analytics.
8
+
4
9
  1.12.0 (2023-08-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -1485,6 +1485,78 @@ module Aws::ChimeSDKMediaPipelines
1485
1485
  req.send_request(options)
1486
1486
  end
1487
1487
 
1488
+ # Retrieves the details of the specified speaker search task.
1489
+ #
1490
+ # @option params [required, String] :identifier
1491
+ # The unique identifier of the resource to be updated. Valid values
1492
+ # include the ID and ARN of the media insights pipeline.
1493
+ #
1494
+ # @option params [required, String] :speaker_search_task_id
1495
+ # The ID of the speaker search task.
1496
+ #
1497
+ # @return [Types::GetSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1498
+ #
1499
+ # * {Types::GetSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
1500
+ #
1501
+ # @example Request syntax with placeholder values
1502
+ #
1503
+ # resp = client.get_speaker_search_task({
1504
+ # identifier: "NonEmptyString", # required
1505
+ # speaker_search_task_id: "GuidString", # required
1506
+ # })
1507
+ #
1508
+ # @example Response structure
1509
+ #
1510
+ # resp.speaker_search_task.speaker_search_task_id #=> String
1511
+ # resp.speaker_search_task.speaker_search_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1512
+ # resp.speaker_search_task.created_timestamp #=> Time
1513
+ # resp.speaker_search_task.updated_timestamp #=> Time
1514
+ #
1515
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTask AWS API Documentation
1516
+ #
1517
+ # @overload get_speaker_search_task(params = {})
1518
+ # @param [Hash] params ({})
1519
+ def get_speaker_search_task(params = {}, options = {})
1520
+ req = build_request(:get_speaker_search_task, params)
1521
+ req.send_request(options)
1522
+ end
1523
+
1524
+ # Retrieves the details of a voice tone analysis task.
1525
+ #
1526
+ # @option params [required, String] :identifier
1527
+ # The unique identifier of the resource to be updated. Valid values
1528
+ # include the ID and ARN of the media insights pipeline.
1529
+ #
1530
+ # @option params [required, String] :voice_tone_analysis_task_id
1531
+ # The ID of the voice tone anlysis task.
1532
+ #
1533
+ # @return [Types::GetVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1534
+ #
1535
+ # * {Types::GetVoiceToneAnalysisTaskResponse#voice_tone_analysis_task #voice_tone_analysis_task} => Types::VoiceToneAnalysisTask
1536
+ #
1537
+ # @example Request syntax with placeholder values
1538
+ #
1539
+ # resp = client.get_voice_tone_analysis_task({
1540
+ # identifier: "NonEmptyString", # required
1541
+ # voice_tone_analysis_task_id: "GuidString", # required
1542
+ # })
1543
+ #
1544
+ # @example Response structure
1545
+ #
1546
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_id #=> String
1547
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1548
+ # resp.voice_tone_analysis_task.created_timestamp #=> Time
1549
+ # resp.voice_tone_analysis_task.updated_timestamp #=> Time
1550
+ #
1551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTask AWS API Documentation
1552
+ #
1553
+ # @overload get_voice_tone_analysis_task(params = {})
1554
+ # @param [Hash] params ({})
1555
+ def get_voice_tone_analysis_task(params = {}, options = {})
1556
+ req = build_request(:get_voice_tone_analysis_task, params)
1557
+ req.send_request(options)
1558
+ end
1559
+
1488
1560
  # Returns a list of media pipelines.
1489
1561
  #
1490
1562
  # @option params [String] :next_token
@@ -1633,6 +1705,187 @@ module Aws::ChimeSDKMediaPipelines
1633
1705
  req.send_request(options)
1634
1706
  end
1635
1707
 
1708
+ # Starts a speaker search task.
1709
+ #
1710
+ # Before starting any speaker search tasks, you must provide all notices
1711
+ # and obtain all consents from the speaker as required under applicable
1712
+ # privacy and biometrics laws, and as required under the [AWS service
1713
+ # terms][1] for the Amazon Chime SDK.
1714
+ #
1715
+ #
1716
+ #
1717
+ # [1]: https://aws.amazon.com/service-terms/
1718
+ #
1719
+ # @option params [required, String] :identifier
1720
+ # The unique identifier of the resource to be updated. Valid values
1721
+ # include the ID and ARN of the media insights pipeline.
1722
+ #
1723
+ # @option params [required, String] :voice_profile_domain_arn
1724
+ # The ARN of the voice profile domain that will store the voice profile.
1725
+ #
1726
+ # @option params [Types::KinesisVideoStreamSourceTaskConfiguration] :kinesis_video_stream_source_task_configuration
1727
+ # The task configuration for the Kinesis video stream source of the
1728
+ # media insights pipeline.
1729
+ #
1730
+ # @option params [String] :client_request_token
1731
+ # The unique identifier for the client request. Use a different token
1732
+ # for different speaker search tasks.
1733
+ #
1734
+ # **A suitable default value is auto-generated.** You should normally
1735
+ # not need to pass this option.**
1736
+ #
1737
+ # @return [Types::StartSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1738
+ #
1739
+ # * {Types::StartSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
1740
+ #
1741
+ # @example Request syntax with placeholder values
1742
+ #
1743
+ # resp = client.start_speaker_search_task({
1744
+ # identifier: "NonEmptyString", # required
1745
+ # voice_profile_domain_arn: "Arn", # required
1746
+ # kinesis_video_stream_source_task_configuration: {
1747
+ # stream_arn: "KinesisVideoStreamArn", # required
1748
+ # channel_id: 1, # required
1749
+ # fragment_number: "FragmentNumberString",
1750
+ # },
1751
+ # client_request_token: "ClientRequestToken",
1752
+ # })
1753
+ #
1754
+ # @example Response structure
1755
+ #
1756
+ # resp.speaker_search_task.speaker_search_task_id #=> String
1757
+ # resp.speaker_search_task.speaker_search_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1758
+ # resp.speaker_search_task.created_timestamp #=> Time
1759
+ # resp.speaker_search_task.updated_timestamp #=> Time
1760
+ #
1761
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTask AWS API Documentation
1762
+ #
1763
+ # @overload start_speaker_search_task(params = {})
1764
+ # @param [Hash] params ({})
1765
+ def start_speaker_search_task(params = {}, options = {})
1766
+ req = build_request(:start_speaker_search_task, params)
1767
+ req.send_request(options)
1768
+ end
1769
+
1770
+ # Starts a voice tone analysis task. For more information about voice
1771
+ # tone analysis, see [Using Amazon Chime SDK voice analytics][1] in the
1772
+ # *Amazon Chime SDK Developer Guide*.
1773
+ #
1774
+ # Before starting any voice tone analysis tasks, you must provide all
1775
+ # notices and obtain all consents from the speaker as required under
1776
+ # applicable privacy and biometrics laws, and as required under the [AWS
1777
+ # service terms][2] for the Amazon Chime SDK.
1778
+ #
1779
+ #
1780
+ #
1781
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/voice-analytics.html
1782
+ # [2]: https://aws.amazon.com/service-terms/
1783
+ #
1784
+ # @option params [required, String] :identifier
1785
+ # The unique identifier of the resource to be updated. Valid values
1786
+ # include the ID and ARN of the media insights pipeline.
1787
+ #
1788
+ # @option params [required, String] :language_code
1789
+ # The language code.
1790
+ #
1791
+ # @option params [Types::KinesisVideoStreamSourceTaskConfiguration] :kinesis_video_stream_source_task_configuration
1792
+ # The task configuration for the Kinesis video stream source of the
1793
+ # media insights pipeline.
1794
+ #
1795
+ # @option params [String] :client_request_token
1796
+ # The unique identifier for the client request. Use a different token
1797
+ # for different voice tone analysis tasks.
1798
+ #
1799
+ # **A suitable default value is auto-generated.** You should normally
1800
+ # not need to pass this option.**
1801
+ #
1802
+ # @return [Types::StartVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1803
+ #
1804
+ # * {Types::StartVoiceToneAnalysisTaskResponse#voice_tone_analysis_task #voice_tone_analysis_task} => Types::VoiceToneAnalysisTask
1805
+ #
1806
+ # @example Request syntax with placeholder values
1807
+ #
1808
+ # resp = client.start_voice_tone_analysis_task({
1809
+ # identifier: "NonEmptyString", # required
1810
+ # language_code: "en-US", # required, accepts en-US
1811
+ # kinesis_video_stream_source_task_configuration: {
1812
+ # stream_arn: "KinesisVideoStreamArn", # required
1813
+ # channel_id: 1, # required
1814
+ # fragment_number: "FragmentNumberString",
1815
+ # },
1816
+ # client_request_token: "ClientRequestToken",
1817
+ # })
1818
+ #
1819
+ # @example Response structure
1820
+ #
1821
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_id #=> String
1822
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_status #=> String, one of "NotStarted", "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1823
+ # resp.voice_tone_analysis_task.created_timestamp #=> Time
1824
+ # resp.voice_tone_analysis_task.updated_timestamp #=> Time
1825
+ #
1826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTask AWS API Documentation
1827
+ #
1828
+ # @overload start_voice_tone_analysis_task(params = {})
1829
+ # @param [Hash] params ({})
1830
+ def start_voice_tone_analysis_task(params = {}, options = {})
1831
+ req = build_request(:start_voice_tone_analysis_task, params)
1832
+ req.send_request(options)
1833
+ end
1834
+
1835
+ # Stops a speaker search task.
1836
+ #
1837
+ # @option params [required, String] :identifier
1838
+ # The unique identifier of the resource to be updated. Valid values
1839
+ # include the ID and ARN of the media insights pipeline.
1840
+ #
1841
+ # @option params [required, String] :speaker_search_task_id
1842
+ # The speaker search task ID.
1843
+ #
1844
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1845
+ #
1846
+ # @example Request syntax with placeholder values
1847
+ #
1848
+ # resp = client.stop_speaker_search_task({
1849
+ # identifier: "NonEmptyString", # required
1850
+ # speaker_search_task_id: "GuidString", # required
1851
+ # })
1852
+ #
1853
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopSpeakerSearchTask AWS API Documentation
1854
+ #
1855
+ # @overload stop_speaker_search_task(params = {})
1856
+ # @param [Hash] params ({})
1857
+ def stop_speaker_search_task(params = {}, options = {})
1858
+ req = build_request(:stop_speaker_search_task, params)
1859
+ req.send_request(options)
1860
+ end
1861
+
1862
+ # Stops a voice tone analysis task.
1863
+ #
1864
+ # @option params [required, String] :identifier
1865
+ # The unique identifier of the resource to be updated. Valid values
1866
+ # include the ID and ARN of the media insights pipeline.
1867
+ #
1868
+ # @option params [required, String] :voice_tone_analysis_task_id
1869
+ # The ID of the voice tone analysis task.
1870
+ #
1871
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1872
+ #
1873
+ # @example Request syntax with placeholder values
1874
+ #
1875
+ # resp = client.stop_voice_tone_analysis_task({
1876
+ # identifier: "NonEmptyString", # required
1877
+ # voice_tone_analysis_task_id: "GuidString", # required
1878
+ # })
1879
+ #
1880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopVoiceToneAnalysisTask AWS API Documentation
1881
+ #
1882
+ # @overload stop_voice_tone_analysis_task(params = {})
1883
+ # @param [Hash] params ({})
1884
+ def stop_voice_tone_analysis_task(params = {}, options = {})
1885
+ req = build_request(:stop_voice_tone_analysis_task, params)
1886
+ req.send_request(options)
1887
+ end
1888
+
1636
1889
  # The ARN of the media pipeline that you want to tag. Consists of the
1637
1890
  # pipeline's endpoint region, resource ID, and pipeline ID.
1638
1891
  #
@@ -1924,7 +2177,7 @@ module Aws::ChimeSDKMediaPipelines
1924
2177
  params: params,
1925
2178
  config: config)
1926
2179
  context[:gem_name] = 'aws-sdk-chimesdkmediapipelines'
1927
- context[:gem_version] = '1.12.0'
2180
+ context[:gem_version] = '1.13.0'
1928
2181
  Seahorse::Client::Request.new(handlers, context)
1929
2182
  end
1930
2183
 
@@ -88,6 +88,10 @@ module Aws::ChimeSDKMediaPipelines
88
88
  GetMediaInsightsPipelineConfigurationResponse = Shapes::StructureShape.new(name: 'GetMediaInsightsPipelineConfigurationResponse')
89
89
  GetMediaPipelineRequest = Shapes::StructureShape.new(name: 'GetMediaPipelineRequest')
90
90
  GetMediaPipelineResponse = Shapes::StructureShape.new(name: 'GetMediaPipelineResponse')
91
+ GetSpeakerSearchTaskRequest = Shapes::StructureShape.new(name: 'GetSpeakerSearchTaskRequest')
92
+ GetSpeakerSearchTaskResponse = Shapes::StructureShape.new(name: 'GetSpeakerSearchTaskResponse')
93
+ GetVoiceToneAnalysisTaskRequest = Shapes::StructureShape.new(name: 'GetVoiceToneAnalysisTaskRequest')
94
+ GetVoiceToneAnalysisTaskResponse = Shapes::StructureShape.new(name: 'GetVoiceToneAnalysisTaskResponse')
91
95
  GridViewConfiguration = Shapes::StructureShape.new(name: 'GridViewConfiguration')
92
96
  GuidString = Shapes::StringShape.new(name: 'GuidString')
93
97
  HighlightColor = Shapes::StringShape.new(name: 'HighlightColor')
@@ -102,6 +106,7 @@ module Aws::ChimeSDKMediaPipelines
102
106
  KinesisVideoStreamArn = Shapes::StringShape.new(name: 'KinesisVideoStreamArn')
103
107
  KinesisVideoStreamRecordingSourceRuntimeConfiguration = Shapes::StructureShape.new(name: 'KinesisVideoStreamRecordingSourceRuntimeConfiguration')
104
108
  KinesisVideoStreamSourceRuntimeConfiguration = Shapes::StructureShape.new(name: 'KinesisVideoStreamSourceRuntimeConfiguration')
109
+ KinesisVideoStreamSourceTaskConfiguration = Shapes::StructureShape.new(name: 'KinesisVideoStreamSourceTaskConfiguration')
105
110
  LambdaFunctionSinkConfiguration = Shapes::StructureShape.new(name: 'LambdaFunctionSinkConfiguration')
106
111
  LanguageOptions = Shapes::StringShape.new(name: 'LanguageOptions')
107
112
  LayoutOption = Shapes::StringShape.new(name: 'LayoutOption')
@@ -147,6 +152,7 @@ module Aws::ChimeSDKMediaPipelines
147
152
  MediaPipelineStatus = Shapes::StringShape.new(name: 'MediaPipelineStatus')
148
153
  MediaPipelineStatusUpdate = Shapes::StringShape.new(name: 'MediaPipelineStatusUpdate')
149
154
  MediaPipelineSummary = Shapes::StructureShape.new(name: 'MediaPipelineSummary')
155
+ MediaPipelineTaskStatus = Shapes::StringShape.new(name: 'MediaPipelineTaskStatus')
150
156
  MediaSampleRateHertz = Shapes::IntegerShape.new(name: 'MediaSampleRateHertz')
151
157
  MeetingEventsConcatenationConfiguration = Shapes::StructureShape.new(name: 'MeetingEventsConcatenationConfiguration')
152
158
  ModelName = Shapes::StringShape.new(name: 'ModelName')
@@ -182,7 +188,14 @@ module Aws::ChimeSDKMediaPipelines
182
188
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
183
189
  SnsTopicSinkConfiguration = Shapes::StructureShape.new(name: 'SnsTopicSinkConfiguration')
184
190
  SourceConfiguration = Shapes::StructureShape.new(name: 'SourceConfiguration')
191
+ SpeakerSearchTask = Shapes::StructureShape.new(name: 'SpeakerSearchTask')
185
192
  SqsQueueSinkConfiguration = Shapes::StructureShape.new(name: 'SqsQueueSinkConfiguration')
193
+ StartSpeakerSearchTaskRequest = Shapes::StructureShape.new(name: 'StartSpeakerSearchTaskRequest')
194
+ StartSpeakerSearchTaskResponse = Shapes::StructureShape.new(name: 'StartSpeakerSearchTaskResponse')
195
+ StartVoiceToneAnalysisTaskRequest = Shapes::StructureShape.new(name: 'StartVoiceToneAnalysisTaskRequest')
196
+ StartVoiceToneAnalysisTaskResponse = Shapes::StructureShape.new(name: 'StartVoiceToneAnalysisTaskResponse')
197
+ StopSpeakerSearchTaskRequest = Shapes::StructureShape.new(name: 'StopSpeakerSearchTaskRequest')
198
+ StopVoiceToneAnalysisTaskRequest = Shapes::StructureShape.new(name: 'StopVoiceToneAnalysisTaskRequest')
186
199
  StreamChannelDefinition = Shapes::StructureShape.new(name: 'StreamChannelDefinition')
187
200
  StreamConfiguration = Shapes::StructureShape.new(name: 'StreamConfiguration')
188
201
  Streams = Shapes::ListShape.new(name: 'Streams')
@@ -219,8 +232,10 @@ module Aws::ChimeSDKMediaPipelines
219
232
  VocabularyName = Shapes::StringShape.new(name: 'VocabularyName')
220
233
  VocabularyNames = Shapes::StringShape.new(name: 'VocabularyNames')
221
234
  VoiceAnalyticsConfigurationStatus = Shapes::StringShape.new(name: 'VoiceAnalyticsConfigurationStatus')
235
+ VoiceAnalyticsLanguageCode = Shapes::StringShape.new(name: 'VoiceAnalyticsLanguageCode')
222
236
  VoiceAnalyticsProcessorConfiguration = Shapes::StructureShape.new(name: 'VoiceAnalyticsProcessorConfiguration')
223
237
  VoiceEnhancementSinkConfiguration = Shapes::StructureShape.new(name: 'VoiceEnhancementSinkConfiguration')
238
+ VoiceToneAnalysisTask = Shapes::StructureShape.new(name: 'VoiceToneAnalysisTask')
224
239
 
225
240
  ActiveSpeakerOnlyConfiguration.add_member(:active_speaker_position, Shapes::ShapeRef.new(shape: ActiveSpeakerPosition, location_name: "ActiveSpeakerPosition"))
226
241
  ActiveSpeakerOnlyConfiguration.struct_class = Types::ActiveSpeakerOnlyConfiguration
@@ -434,6 +449,20 @@ module Aws::ChimeSDKMediaPipelines
434
449
  GetMediaPipelineResponse.add_member(:media_pipeline, Shapes::ShapeRef.new(shape: MediaPipeline, location_name: "MediaPipeline"))
435
450
  GetMediaPipelineResponse.struct_class = Types::GetMediaPipelineResponse
436
451
 
452
+ GetSpeakerSearchTaskRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "identifier"))
453
+ GetSpeakerSearchTaskRequest.add_member(:speaker_search_task_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "speakerSearchTaskId"))
454
+ GetSpeakerSearchTaskRequest.struct_class = Types::GetSpeakerSearchTaskRequest
455
+
456
+ GetSpeakerSearchTaskResponse.add_member(:speaker_search_task, Shapes::ShapeRef.new(shape: SpeakerSearchTask, location_name: "SpeakerSearchTask"))
457
+ GetSpeakerSearchTaskResponse.struct_class = Types::GetSpeakerSearchTaskResponse
458
+
459
+ GetVoiceToneAnalysisTaskRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "identifier"))
460
+ GetVoiceToneAnalysisTaskRequest.add_member(:voice_tone_analysis_task_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "voiceToneAnalysisTaskId"))
461
+ GetVoiceToneAnalysisTaskRequest.struct_class = Types::GetVoiceToneAnalysisTaskRequest
462
+
463
+ GetVoiceToneAnalysisTaskResponse.add_member(:voice_tone_analysis_task, Shapes::ShapeRef.new(shape: VoiceToneAnalysisTask, location_name: "VoiceToneAnalysisTask"))
464
+ GetVoiceToneAnalysisTaskResponse.struct_class = Types::GetVoiceToneAnalysisTaskResponse
465
+
437
466
  GridViewConfiguration.add_member(:content_share_layout, Shapes::ShapeRef.new(shape: ContentShareLayoutOption, required: true, location_name: "ContentShareLayout"))
438
467
  GridViewConfiguration.add_member(:presenter_only_configuration, Shapes::ShapeRef.new(shape: PresenterOnlyConfiguration, location_name: "PresenterOnlyConfiguration"))
439
468
  GridViewConfiguration.add_member(:active_speaker_only_configuration, Shapes::ShapeRef.new(shape: ActiveSpeakerOnlyConfiguration, location_name: "ActiveSpeakerOnlyConfiguration"))
@@ -471,6 +500,11 @@ module Aws::ChimeSDKMediaPipelines
471
500
  KinesisVideoStreamSourceRuntimeConfiguration.add_member(:media_sample_rate, Shapes::ShapeRef.new(shape: MediaSampleRateHertz, required: true, location_name: "MediaSampleRate"))
472
501
  KinesisVideoStreamSourceRuntimeConfiguration.struct_class = Types::KinesisVideoStreamSourceRuntimeConfiguration
473
502
 
503
+ KinesisVideoStreamSourceTaskConfiguration.add_member(:stream_arn, Shapes::ShapeRef.new(shape: KinesisVideoStreamArn, required: true, location_name: "StreamArn"))
504
+ KinesisVideoStreamSourceTaskConfiguration.add_member(:channel_id, Shapes::ShapeRef.new(shape: ChannelId, required: true, location_name: "ChannelId"))
505
+ KinesisVideoStreamSourceTaskConfiguration.add_member(:fragment_number, Shapes::ShapeRef.new(shape: FragmentNumberString, location_name: "FragmentNumber"))
506
+ KinesisVideoStreamSourceTaskConfiguration.struct_class = Types::KinesisVideoStreamSourceTaskConfiguration
507
+
474
508
  LambdaFunctionSinkConfiguration.add_member(:insights_target, Shapes::ShapeRef.new(shape: Arn, location_name: "InsightsTarget"))
475
509
  LambdaFunctionSinkConfiguration.struct_class = Types::LambdaFunctionSinkConfiguration
476
510
 
@@ -700,9 +734,41 @@ module Aws::ChimeSDKMediaPipelines
700
734
  SourceConfiguration.add_member(:selected_video_streams, Shapes::ShapeRef.new(shape: SelectedVideoStreams, location_name: "SelectedVideoStreams"))
701
735
  SourceConfiguration.struct_class = Types::SourceConfiguration
702
736
 
737
+ SpeakerSearchTask.add_member(:speaker_search_task_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "SpeakerSearchTaskId"))
738
+ SpeakerSearchTask.add_member(:speaker_search_task_status, Shapes::ShapeRef.new(shape: MediaPipelineTaskStatus, location_name: "SpeakerSearchTaskStatus"))
739
+ SpeakerSearchTask.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
740
+ SpeakerSearchTask.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
741
+ SpeakerSearchTask.struct_class = Types::SpeakerSearchTask
742
+
703
743
  SqsQueueSinkConfiguration.add_member(:insights_target, Shapes::ShapeRef.new(shape: Arn, location_name: "InsightsTarget"))
704
744
  SqsQueueSinkConfiguration.struct_class = Types::SqsQueueSinkConfiguration
705
745
 
746
+ StartSpeakerSearchTaskRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "identifier"))
747
+ StartSpeakerSearchTaskRequest.add_member(:voice_profile_domain_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "VoiceProfileDomainArn"))
748
+ StartSpeakerSearchTaskRequest.add_member(:kinesis_video_stream_source_task_configuration, Shapes::ShapeRef.new(shape: KinesisVideoStreamSourceTaskConfiguration, location_name: "KinesisVideoStreamSourceTaskConfiguration"))
749
+ StartSpeakerSearchTaskRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
750
+ StartSpeakerSearchTaskRequest.struct_class = Types::StartSpeakerSearchTaskRequest
751
+
752
+ StartSpeakerSearchTaskResponse.add_member(:speaker_search_task, Shapes::ShapeRef.new(shape: SpeakerSearchTask, location_name: "SpeakerSearchTask"))
753
+ StartSpeakerSearchTaskResponse.struct_class = Types::StartSpeakerSearchTaskResponse
754
+
755
+ StartVoiceToneAnalysisTaskRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "identifier"))
756
+ StartVoiceToneAnalysisTaskRequest.add_member(:language_code, Shapes::ShapeRef.new(shape: VoiceAnalyticsLanguageCode, required: true, location_name: "LanguageCode"))
757
+ StartVoiceToneAnalysisTaskRequest.add_member(:kinesis_video_stream_source_task_configuration, Shapes::ShapeRef.new(shape: KinesisVideoStreamSourceTaskConfiguration, location_name: "KinesisVideoStreamSourceTaskConfiguration"))
758
+ StartVoiceToneAnalysisTaskRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
759
+ StartVoiceToneAnalysisTaskRequest.struct_class = Types::StartVoiceToneAnalysisTaskRequest
760
+
761
+ StartVoiceToneAnalysisTaskResponse.add_member(:voice_tone_analysis_task, Shapes::ShapeRef.new(shape: VoiceToneAnalysisTask, location_name: "VoiceToneAnalysisTask"))
762
+ StartVoiceToneAnalysisTaskResponse.struct_class = Types::StartVoiceToneAnalysisTaskResponse
763
+
764
+ StopSpeakerSearchTaskRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "identifier"))
765
+ StopSpeakerSearchTaskRequest.add_member(:speaker_search_task_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "speakerSearchTaskId"))
766
+ StopSpeakerSearchTaskRequest.struct_class = Types::StopSpeakerSearchTaskRequest
767
+
768
+ StopVoiceToneAnalysisTaskRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "identifier"))
769
+ StopVoiceToneAnalysisTaskRequest.add_member(:voice_tone_analysis_task_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "voiceToneAnalysisTaskId"))
770
+ StopVoiceToneAnalysisTaskRequest.struct_class = Types::StopVoiceToneAnalysisTaskRequest
771
+
706
772
  StreamChannelDefinition.add_member(:number_of_channels, Shapes::ShapeRef.new(shape: NumberOfChannels, required: true, location_name: "NumberOfChannels"))
707
773
  StreamChannelDefinition.add_member(:channel_definitions, Shapes::ShapeRef.new(shape: ChannelDefinitions, location_name: "ChannelDefinitions"))
708
774
  StreamChannelDefinition.struct_class = Types::StreamChannelDefinition
@@ -790,6 +856,12 @@ module Aws::ChimeSDKMediaPipelines
790
856
  VoiceEnhancementSinkConfiguration.add_member(:disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Disabled"))
791
857
  VoiceEnhancementSinkConfiguration.struct_class = Types::VoiceEnhancementSinkConfiguration
792
858
 
859
+ VoiceToneAnalysisTask.add_member(:voice_tone_analysis_task_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "VoiceToneAnalysisTaskId"))
860
+ VoiceToneAnalysisTask.add_member(:voice_tone_analysis_task_status, Shapes::ShapeRef.new(shape: MediaPipelineTaskStatus, location_name: "VoiceToneAnalysisTaskStatus"))
861
+ VoiceToneAnalysisTask.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
862
+ VoiceToneAnalysisTask.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
863
+ VoiceToneAnalysisTask.struct_class = Types::VoiceToneAnalysisTask
864
+
793
865
 
794
866
  # @api private
795
867
  API = Seahorse::Model::Api.new.tap do |api|
@@ -926,6 +998,7 @@ module Aws::ChimeSDKMediaPipelines
926
998
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
927
999
  o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
928
1000
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1001
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
929
1002
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
930
1003
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
931
1004
  end)
@@ -975,6 +1048,36 @@ module Aws::ChimeSDKMediaPipelines
975
1048
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
976
1049
  end)
977
1050
 
1051
+ api.add_operation(:get_speaker_search_task, Seahorse::Model::Operation.new.tap do |o|
1052
+ o.name = "GetSpeakerSearchTask"
1053
+ o.http_method = "GET"
1054
+ o.http_request_uri = "/media-insights-pipelines/{identifier}/speaker-search-tasks/{speakerSearchTaskId}"
1055
+ o.input = Shapes::ShapeRef.new(shape: GetSpeakerSearchTaskRequest)
1056
+ o.output = Shapes::ShapeRef.new(shape: GetSpeakerSearchTaskResponse)
1057
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1058
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1059
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1060
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1061
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1062
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1063
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1064
+ end)
1065
+
1066
+ api.add_operation(:get_voice_tone_analysis_task, Seahorse::Model::Operation.new.tap do |o|
1067
+ o.name = "GetVoiceToneAnalysisTask"
1068
+ o.http_method = "GET"
1069
+ o.http_request_uri = "/media-insights-pipelines/{identifier}/voice-tone-analysis-tasks/{voiceToneAnalysisTaskId}"
1070
+ o.input = Shapes::ShapeRef.new(shape: GetVoiceToneAnalysisTaskRequest)
1071
+ o.output = Shapes::ShapeRef.new(shape: GetVoiceToneAnalysisTaskResponse)
1072
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1073
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1074
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1075
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1076
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1077
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1078
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1079
+ end)
1080
+
978
1081
  api.add_operation(:list_media_capture_pipelines, Seahorse::Model::Operation.new.tap do |o|
979
1082
  o.name = "ListMediaCapturePipelines"
980
1083
  o.http_method = "GET"
@@ -1053,6 +1156,70 @@ module Aws::ChimeSDKMediaPipelines
1053
1156
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1054
1157
  end)
1055
1158
 
1159
+ api.add_operation(:start_speaker_search_task, Seahorse::Model::Operation.new.tap do |o|
1160
+ o.name = "StartSpeakerSearchTask"
1161
+ o.http_method = "POST"
1162
+ o.http_request_uri = "/media-insights-pipelines/{identifier}/speaker-search-tasks?operation=start"
1163
+ o.input = Shapes::ShapeRef.new(shape: StartSpeakerSearchTaskRequest)
1164
+ o.output = Shapes::ShapeRef.new(shape: StartSpeakerSearchTaskResponse)
1165
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1166
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1167
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1168
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1169
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1170
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1171
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1172
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1173
+ end)
1174
+
1175
+ api.add_operation(:start_voice_tone_analysis_task, Seahorse::Model::Operation.new.tap do |o|
1176
+ o.name = "StartVoiceToneAnalysisTask"
1177
+ o.http_method = "POST"
1178
+ o.http_request_uri = "/media-insights-pipelines/{identifier}/voice-tone-analysis-tasks?operation=start"
1179
+ o.input = Shapes::ShapeRef.new(shape: StartVoiceToneAnalysisTaskRequest)
1180
+ o.output = Shapes::ShapeRef.new(shape: StartVoiceToneAnalysisTaskResponse)
1181
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1182
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1183
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1184
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1185
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1186
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1187
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1188
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1189
+ end)
1190
+
1191
+ api.add_operation(:stop_speaker_search_task, Seahorse::Model::Operation.new.tap do |o|
1192
+ o.name = "StopSpeakerSearchTask"
1193
+ o.http_method = "POST"
1194
+ o.http_request_uri = "/media-insights-pipelines/{identifier}/speaker-search-tasks/{speakerSearchTaskId}?operation=stop"
1195
+ o.input = Shapes::ShapeRef.new(shape: StopSpeakerSearchTaskRequest)
1196
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1197
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1198
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1199
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1200
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1201
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1202
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1203
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1204
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1205
+ end)
1206
+
1207
+ api.add_operation(:stop_voice_tone_analysis_task, Seahorse::Model::Operation.new.tap do |o|
1208
+ o.name = "StopVoiceToneAnalysisTask"
1209
+ o.http_method = "POST"
1210
+ o.http_request_uri = "/media-insights-pipelines/{identifier}/voice-tone-analysis-tasks/{voiceToneAnalysisTaskId}?operation=stop"
1211
+ o.input = Shapes::ShapeRef.new(shape: StopVoiceToneAnalysisTaskRequest)
1212
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1213
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1214
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1215
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1216
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
1217
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
1218
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1219
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1220
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
1221
+ end)
1222
+
1056
1223
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
1057
1224
  o.name = "TagResource"
1058
1225
  o.http_method = "POST"
@@ -166,6 +166,34 @@ module Aws::ChimeSDKMediaPipelines
166
166
  end
167
167
  end
168
168
 
169
+ class GetSpeakerSearchTask
170
+ def self.build(context)
171
+ unless context.config.regional_endpoint
172
+ endpoint = context.config.endpoint.to_s
173
+ end
174
+ Aws::ChimeSDKMediaPipelines::EndpointParameters.new(
175
+ region: context.config.region,
176
+ use_dual_stack: context.config.use_dualstack_endpoint,
177
+ use_fips: context.config.use_fips_endpoint,
178
+ endpoint: endpoint,
179
+ )
180
+ end
181
+ end
182
+
183
+ class GetVoiceToneAnalysisTask
184
+ def self.build(context)
185
+ unless context.config.regional_endpoint
186
+ endpoint = context.config.endpoint.to_s
187
+ end
188
+ Aws::ChimeSDKMediaPipelines::EndpointParameters.new(
189
+ region: context.config.region,
190
+ use_dual_stack: context.config.use_dualstack_endpoint,
191
+ use_fips: context.config.use_fips_endpoint,
192
+ endpoint: endpoint,
193
+ )
194
+ end
195
+ end
196
+
169
197
  class ListMediaCapturePipelines
170
198
  def self.build(context)
171
199
  unless context.config.regional_endpoint
@@ -222,6 +250,62 @@ module Aws::ChimeSDKMediaPipelines
222
250
  end
223
251
  end
224
252
 
253
+ class StartSpeakerSearchTask
254
+ def self.build(context)
255
+ unless context.config.regional_endpoint
256
+ endpoint = context.config.endpoint.to_s
257
+ end
258
+ Aws::ChimeSDKMediaPipelines::EndpointParameters.new(
259
+ region: context.config.region,
260
+ use_dual_stack: context.config.use_dualstack_endpoint,
261
+ use_fips: context.config.use_fips_endpoint,
262
+ endpoint: endpoint,
263
+ )
264
+ end
265
+ end
266
+
267
+ class StartVoiceToneAnalysisTask
268
+ def self.build(context)
269
+ unless context.config.regional_endpoint
270
+ endpoint = context.config.endpoint.to_s
271
+ end
272
+ Aws::ChimeSDKMediaPipelines::EndpointParameters.new(
273
+ region: context.config.region,
274
+ use_dual_stack: context.config.use_dualstack_endpoint,
275
+ use_fips: context.config.use_fips_endpoint,
276
+ endpoint: endpoint,
277
+ )
278
+ end
279
+ end
280
+
281
+ class StopSpeakerSearchTask
282
+ def self.build(context)
283
+ unless context.config.regional_endpoint
284
+ endpoint = context.config.endpoint.to_s
285
+ end
286
+ Aws::ChimeSDKMediaPipelines::EndpointParameters.new(
287
+ region: context.config.region,
288
+ use_dual_stack: context.config.use_dualstack_endpoint,
289
+ use_fips: context.config.use_fips_endpoint,
290
+ endpoint: endpoint,
291
+ )
292
+ end
293
+ end
294
+
295
+ class StopVoiceToneAnalysisTask
296
+ def self.build(context)
297
+ unless context.config.regional_endpoint
298
+ endpoint = context.config.endpoint.to_s
299
+ end
300
+ Aws::ChimeSDKMediaPipelines::EndpointParameters.new(
301
+ region: context.config.region,
302
+ use_dual_stack: context.config.use_dualstack_endpoint,
303
+ use_fips: context.config.use_fips_endpoint,
304
+ endpoint: endpoint,
305
+ )
306
+ end
307
+ end
308
+
225
309
  class TagResource
226
310
  def self.build(context)
227
311
  unless context.config.regional_endpoint
@@ -78,6 +78,10 @@ module Aws::ChimeSDKMediaPipelines
78
78
  Aws::ChimeSDKMediaPipelines::Endpoints::GetMediaInsightsPipelineConfiguration.build(context)
79
79
  when :get_media_pipeline
80
80
  Aws::ChimeSDKMediaPipelines::Endpoints::GetMediaPipeline.build(context)
81
+ when :get_speaker_search_task
82
+ Aws::ChimeSDKMediaPipelines::Endpoints::GetSpeakerSearchTask.build(context)
83
+ when :get_voice_tone_analysis_task
84
+ Aws::ChimeSDKMediaPipelines::Endpoints::GetVoiceToneAnalysisTask.build(context)
81
85
  when :list_media_capture_pipelines
82
86
  Aws::ChimeSDKMediaPipelines::Endpoints::ListMediaCapturePipelines.build(context)
83
87
  when :list_media_insights_pipeline_configurations
@@ -86,6 +90,14 @@ module Aws::ChimeSDKMediaPipelines
86
90
  Aws::ChimeSDKMediaPipelines::Endpoints::ListMediaPipelines.build(context)
87
91
  when :list_tags_for_resource
88
92
  Aws::ChimeSDKMediaPipelines::Endpoints::ListTagsForResource.build(context)
93
+ when :start_speaker_search_task
94
+ Aws::ChimeSDKMediaPipelines::Endpoints::StartSpeakerSearchTask.build(context)
95
+ when :start_voice_tone_analysis_task
96
+ Aws::ChimeSDKMediaPipelines::Endpoints::StartVoiceToneAnalysisTask.build(context)
97
+ when :stop_speaker_search_task
98
+ Aws::ChimeSDKMediaPipelines::Endpoints::StopSpeakerSearchTask.build(context)
99
+ when :stop_voice_tone_analysis_task
100
+ Aws::ChimeSDKMediaPipelines::Endpoints::StopVoiceToneAnalysisTask.build(context)
89
101
  when :tag_resource
90
102
  Aws::ChimeSDKMediaPipelines::Endpoints::TagResource.build(context)
91
103
  when :untag_resource
@@ -1144,9 +1144,12 @@ module Aws::ChimeSDKMediaPipelines
1144
1144
  #
1145
1145
  # @!attribute [rw] fragment_selector_type
1146
1146
  # The origin of the timestamps to use, `Server` or `Producer`. For
1147
- # more information, see
1148
- # [StartSelectorType](kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html#KinesisVideo-Type-dataplane_StartSelector-StartSelectorType)
1149
- # in the *Amazon Kinesis Video Streams Developer Guide*.
1147
+ # more information, see [StartSelectorType][1] in the *Amazon Kinesis
1148
+ # Video Streams Developer Guide*.
1149
+ #
1150
+ #
1151
+ #
1152
+ # [1]: https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html
1150
1153
  # @return [String]
1151
1154
  #
1152
1155
  # @!attribute [rw] timestamp_range
@@ -1236,6 +1239,66 @@ module Aws::ChimeSDKMediaPipelines
1236
1239
  include Aws::Structure
1237
1240
  end
1238
1241
 
1242
+ # @!attribute [rw] identifier
1243
+ # The unique identifier of the resource to be updated. Valid values
1244
+ # include the ID and ARN of the media insights pipeline.
1245
+ # @return [String]
1246
+ #
1247
+ # @!attribute [rw] speaker_search_task_id
1248
+ # The ID of the speaker search task.
1249
+ # @return [String]
1250
+ #
1251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTaskRequest AWS API Documentation
1252
+ #
1253
+ class GetSpeakerSearchTaskRequest < Struct.new(
1254
+ :identifier,
1255
+ :speaker_search_task_id)
1256
+ SENSITIVE = []
1257
+ include Aws::Structure
1258
+ end
1259
+
1260
+ # @!attribute [rw] speaker_search_task
1261
+ # The details of the speaker search task.
1262
+ # @return [Types::SpeakerSearchTask]
1263
+ #
1264
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTaskResponse AWS API Documentation
1265
+ #
1266
+ class GetSpeakerSearchTaskResponse < Struct.new(
1267
+ :speaker_search_task)
1268
+ SENSITIVE = []
1269
+ include Aws::Structure
1270
+ end
1271
+
1272
+ # @!attribute [rw] identifier
1273
+ # The unique identifier of the resource to be updated. Valid values
1274
+ # include the ID and ARN of the media insights pipeline.
1275
+ # @return [String]
1276
+ #
1277
+ # @!attribute [rw] voice_tone_analysis_task_id
1278
+ # The ID of the voice tone anlysis task.
1279
+ # @return [String]
1280
+ #
1281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskRequest AWS API Documentation
1282
+ #
1283
+ class GetVoiceToneAnalysisTaskRequest < Struct.new(
1284
+ :identifier,
1285
+ :voice_tone_analysis_task_id)
1286
+ SENSITIVE = []
1287
+ include Aws::Structure
1288
+ end
1289
+
1290
+ # @!attribute [rw] voice_tone_analysis_task
1291
+ # The details of the voice tone analysis task.
1292
+ # @return [Types::VoiceToneAnalysisTask]
1293
+ #
1294
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskResponse AWS API Documentation
1295
+ #
1296
+ class GetVoiceToneAnalysisTaskResponse < Struct.new(
1297
+ :voice_tone_analysis_task)
1298
+ SENSITIVE = []
1299
+ include Aws::Structure
1300
+ end
1301
+
1239
1302
  # Specifies the type of grid layout.
1240
1303
  #
1241
1304
  # @!attribute [rw] content_share_layout
@@ -1427,6 +1490,30 @@ module Aws::ChimeSDKMediaPipelines
1427
1490
  include Aws::Structure
1428
1491
  end
1429
1492
 
1493
+ # The task configuration settings for the Kinesis video stream source.
1494
+ #
1495
+ # @!attribute [rw] stream_arn
1496
+ # The ARN of the stream.
1497
+ # @return [String]
1498
+ #
1499
+ # @!attribute [rw] channel_id
1500
+ # The channel ID.
1501
+ # @return [Integer]
1502
+ #
1503
+ # @!attribute [rw] fragment_number
1504
+ # The unique identifier of the fragment to begin processing.
1505
+ # @return [String]
1506
+ #
1507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamSourceTaskConfiguration AWS API Documentation
1508
+ #
1509
+ class KinesisVideoStreamSourceTaskConfiguration < Struct.new(
1510
+ :stream_arn,
1511
+ :channel_id,
1512
+ :fragment_number)
1513
+ SENSITIVE = []
1514
+ include Aws::Structure
1515
+ end
1516
+
1430
1517
  # A structure that contains the configuration settings for an AWS Lambda
1431
1518
  # function's data sink.
1432
1519
  #
@@ -1943,8 +2030,8 @@ module Aws::ChimeSDKMediaPipelines
1943
2030
  # @return [Types::SnsTopicSinkConfiguration]
1944
2031
  #
1945
2032
  # @!attribute [rw] voice_enhancement_sink_configuration
1946
- # The configuration settings for the
1947
- # `VoiceEnhancementSinkConfiguration` element.
2033
+ # The configuration settings for voice enhancement sink in a media
2034
+ # insights pipeline configuration element.
1948
2035
  # @return [Types::VoiceEnhancementSinkConfiguration]
1949
2036
  #
1950
2037
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaInsightsPipelineConfigurationElement AWS API Documentation
@@ -2469,6 +2556,36 @@ module Aws::ChimeSDKMediaPipelines
2469
2556
  include Aws::Structure
2470
2557
  end
2471
2558
 
2559
+ # A representation of an asynchronous request to perform speaker search
2560
+ # analysis on a media insights pipeline.
2561
+ #
2562
+ # @!attribute [rw] speaker_search_task_id
2563
+ # The speaker search task ID.
2564
+ # @return [String]
2565
+ #
2566
+ # @!attribute [rw] speaker_search_task_status
2567
+ # The status of the speaker search task.
2568
+ # @return [String]
2569
+ #
2570
+ # @!attribute [rw] created_timestamp
2571
+ # The time at which a speaker search task was created.
2572
+ # @return [Time]
2573
+ #
2574
+ # @!attribute [rw] updated_timestamp
2575
+ # The time at which a speaker search task was updated.
2576
+ # @return [Time]
2577
+ #
2578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/SpeakerSearchTask AWS API Documentation
2579
+ #
2580
+ class SpeakerSearchTask < Struct.new(
2581
+ :speaker_search_task_id,
2582
+ :speaker_search_task_status,
2583
+ :created_timestamp,
2584
+ :updated_timestamp)
2585
+ SENSITIVE = []
2586
+ include Aws::Structure
2587
+ end
2588
+
2472
2589
  # The configuration settings for the SQS sink.
2473
2590
  #
2474
2591
  # @!attribute [rw] insights_target
@@ -2483,6 +2600,133 @@ module Aws::ChimeSDKMediaPipelines
2483
2600
  include Aws::Structure
2484
2601
  end
2485
2602
 
2603
+ # @!attribute [rw] identifier
2604
+ # The unique identifier of the resource to be updated. Valid values
2605
+ # include the ID and ARN of the media insights pipeline.
2606
+ # @return [String]
2607
+ #
2608
+ # @!attribute [rw] voice_profile_domain_arn
2609
+ # The ARN of the voice profile domain that will store the voice
2610
+ # profile.
2611
+ # @return [String]
2612
+ #
2613
+ # @!attribute [rw] kinesis_video_stream_source_task_configuration
2614
+ # The task configuration for the Kinesis video stream source of the
2615
+ # media insights pipeline.
2616
+ # @return [Types::KinesisVideoStreamSourceTaskConfiguration]
2617
+ #
2618
+ # @!attribute [rw] client_request_token
2619
+ # The unique identifier for the client request. Use a different token
2620
+ # for different speaker search tasks.
2621
+ #
2622
+ # **A suitable default value is auto-generated.** You should normally
2623
+ # not need to pass this option.
2624
+ # @return [String]
2625
+ #
2626
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTaskRequest AWS API Documentation
2627
+ #
2628
+ class StartSpeakerSearchTaskRequest < Struct.new(
2629
+ :identifier,
2630
+ :voice_profile_domain_arn,
2631
+ :kinesis_video_stream_source_task_configuration,
2632
+ :client_request_token)
2633
+ SENSITIVE = [:voice_profile_domain_arn, :client_request_token]
2634
+ include Aws::Structure
2635
+ end
2636
+
2637
+ # @!attribute [rw] speaker_search_task
2638
+ # The details of the speaker search task.
2639
+ # @return [Types::SpeakerSearchTask]
2640
+ #
2641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTaskResponse AWS API Documentation
2642
+ #
2643
+ class StartSpeakerSearchTaskResponse < Struct.new(
2644
+ :speaker_search_task)
2645
+ SENSITIVE = []
2646
+ include Aws::Structure
2647
+ end
2648
+
2649
+ # @!attribute [rw] identifier
2650
+ # The unique identifier of the resource to be updated. Valid values
2651
+ # include the ID and ARN of the media insights pipeline.
2652
+ # @return [String]
2653
+ #
2654
+ # @!attribute [rw] language_code
2655
+ # The language code.
2656
+ # @return [String]
2657
+ #
2658
+ # @!attribute [rw] kinesis_video_stream_source_task_configuration
2659
+ # The task configuration for the Kinesis video stream source of the
2660
+ # media insights pipeline.
2661
+ # @return [Types::KinesisVideoStreamSourceTaskConfiguration]
2662
+ #
2663
+ # @!attribute [rw] client_request_token
2664
+ # The unique identifier for the client request. Use a different token
2665
+ # for different voice tone analysis tasks.
2666
+ #
2667
+ # **A suitable default value is auto-generated.** You should normally
2668
+ # not need to pass this option.
2669
+ # @return [String]
2670
+ #
2671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTaskRequest AWS API Documentation
2672
+ #
2673
+ class StartVoiceToneAnalysisTaskRequest < Struct.new(
2674
+ :identifier,
2675
+ :language_code,
2676
+ :kinesis_video_stream_source_task_configuration,
2677
+ :client_request_token)
2678
+ SENSITIVE = [:client_request_token]
2679
+ include Aws::Structure
2680
+ end
2681
+
2682
+ # @!attribute [rw] voice_tone_analysis_task
2683
+ # The details of the voice tone analysis task.
2684
+ # @return [Types::VoiceToneAnalysisTask]
2685
+ #
2686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTaskResponse AWS API Documentation
2687
+ #
2688
+ class StartVoiceToneAnalysisTaskResponse < Struct.new(
2689
+ :voice_tone_analysis_task)
2690
+ SENSITIVE = []
2691
+ include Aws::Structure
2692
+ end
2693
+
2694
+ # @!attribute [rw] identifier
2695
+ # The unique identifier of the resource to be updated. Valid values
2696
+ # include the ID and ARN of the media insights pipeline.
2697
+ # @return [String]
2698
+ #
2699
+ # @!attribute [rw] speaker_search_task_id
2700
+ # The speaker search task ID.
2701
+ # @return [String]
2702
+ #
2703
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopSpeakerSearchTaskRequest AWS API Documentation
2704
+ #
2705
+ class StopSpeakerSearchTaskRequest < Struct.new(
2706
+ :identifier,
2707
+ :speaker_search_task_id)
2708
+ SENSITIVE = []
2709
+ include Aws::Structure
2710
+ end
2711
+
2712
+ # @!attribute [rw] identifier
2713
+ # The unique identifier of the resource to be updated. Valid values
2714
+ # include the ID and ARN of the media insights pipeline.
2715
+ # @return [String]
2716
+ #
2717
+ # @!attribute [rw] voice_tone_analysis_task_id
2718
+ # The ID of the voice tone analysis task.
2719
+ # @return [String]
2720
+ #
2721
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopVoiceToneAnalysisTaskRequest AWS API Documentation
2722
+ #
2723
+ class StopVoiceToneAnalysisTaskRequest < Struct.new(
2724
+ :identifier,
2725
+ :voice_tone_analysis_task_id)
2726
+ SENSITIVE = []
2727
+ include Aws::Structure
2728
+ end
2729
+
2486
2730
  # Defines a streaming channel.
2487
2731
  #
2488
2732
  # @!attribute [rw] number_of_channels
@@ -2855,5 +3099,35 @@ module Aws::ChimeSDKMediaPipelines
2855
3099
  include Aws::Structure
2856
3100
  end
2857
3101
 
3102
+ # A representation of an asynchronous request to perform voice tone
3103
+ # analysis on a media insights pipeline.
3104
+ #
3105
+ # @!attribute [rw] voice_tone_analysis_task_id
3106
+ # The ID of the voice tone analysis task.
3107
+ # @return [String]
3108
+ #
3109
+ # @!attribute [rw] voice_tone_analysis_task_status
3110
+ # The status of a voice tone analysis task.
3111
+ # @return [String]
3112
+ #
3113
+ # @!attribute [rw] created_timestamp
3114
+ # The time at which a voice tone analysis task was created.
3115
+ # @return [Time]
3116
+ #
3117
+ # @!attribute [rw] updated_timestamp
3118
+ # The time at which a voice tone analysis task was updated.
3119
+ # @return [Time]
3120
+ #
3121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/VoiceToneAnalysisTask AWS API Documentation
3122
+ #
3123
+ class VoiceToneAnalysisTask < Struct.new(
3124
+ :voice_tone_analysis_task_id,
3125
+ :voice_tone_analysis_task_status,
3126
+ :created_timestamp,
3127
+ :updated_timestamp)
3128
+ SENSITIVE = []
3129
+ include Aws::Structure
3130
+ end
3131
+
2858
3132
  end
2859
3133
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmediapipelines/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMediaPipelines
54
54
 
55
- GEM_VERSION = '1.12.0'
55
+ GEM_VERSION = '1.13.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkmediapipelines
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-31 00:00:00.000000000 Z
11
+ date: 2023-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core