aws-sdk-chimesdkvoice 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -812,6 +812,86 @@ module Aws::ChimeSDKVoice
812
812
  req.send_request(options)
813
813
  end
814
814
 
815
+ # @option params [required, String] :speaker_search_task_id
816
+ #
817
+ # @return [Types::CreateVoiceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
818
+ #
819
+ # * {Types::CreateVoiceProfileResponse#voice_profile #voice_profile} => Types::VoiceProfile
820
+ #
821
+ # @example Request syntax with placeholder values
822
+ #
823
+ # resp = client.create_voice_profile({
824
+ # speaker_search_task_id: "NonEmptyString256", # required
825
+ # })
826
+ #
827
+ # @example Response structure
828
+ #
829
+ # resp.voice_profile.voice_profile_id #=> String
830
+ # resp.voice_profile.voice_profile_arn #=> String
831
+ # resp.voice_profile.voice_profile_domain_id #=> String
832
+ # resp.voice_profile.created_timestamp #=> Time
833
+ # resp.voice_profile.updated_timestamp #=> Time
834
+ # resp.voice_profile.expiration_timestamp #=> Time
835
+ #
836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceProfile AWS API Documentation
837
+ #
838
+ # @overload create_voice_profile(params = {})
839
+ # @param [Hash] params ({})
840
+ def create_voice_profile(params = {}, options = {})
841
+ req = build_request(:create_voice_profile, params)
842
+ req.send_request(options)
843
+ end
844
+
845
+ # @option params [required, String] :name
846
+ #
847
+ # @option params [String] :description
848
+ #
849
+ # @option params [required, Types::ServerSideEncryptionConfiguration] :server_side_encryption_configuration
850
+ #
851
+ # @option params [String] :client_request_token
852
+ #
853
+ # @option params [Array<Types::Tag>] :tags
854
+ #
855
+ # @return [Types::CreateVoiceProfileDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
856
+ #
857
+ # * {Types::CreateVoiceProfileDomainResponse#voice_profile_domain #voice_profile_domain} => Types::VoiceProfileDomain
858
+ #
859
+ # @example Request syntax with placeholder values
860
+ #
861
+ # resp = client.create_voice_profile_domain({
862
+ # name: "VoiceProfileDomainName", # required
863
+ # description: "VoiceProfileDomainDescription",
864
+ # server_side_encryption_configuration: { # required
865
+ # kms_key_arn: "Arn", # required
866
+ # },
867
+ # client_request_token: "ClientRequestId",
868
+ # tags: [
869
+ # {
870
+ # key: "TagKey", # required
871
+ # value: "TagValue", # required
872
+ # },
873
+ # ],
874
+ # })
875
+ #
876
+ # @example Response structure
877
+ #
878
+ # resp.voice_profile_domain.voice_profile_domain_id #=> String
879
+ # resp.voice_profile_domain.voice_profile_domain_arn #=> String
880
+ # resp.voice_profile_domain.name #=> String
881
+ # resp.voice_profile_domain.description #=> String
882
+ # resp.voice_profile_domain.server_side_encryption_configuration.kms_key_arn #=> String
883
+ # resp.voice_profile_domain.created_timestamp #=> Time
884
+ # resp.voice_profile_domain.updated_timestamp #=> Time
885
+ #
886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceProfileDomain AWS API Documentation
887
+ #
888
+ # @overload create_voice_profile_domain(params = {})
889
+ # @param [Hash] params ({})
890
+ def create_voice_profile_domain(params = {}, options = {})
891
+ req = build_request(:create_voice_profile_domain, params)
892
+ req.send_request(options)
893
+ end
894
+
815
895
  # @option params [required, String] :phone_number_id
816
896
  #
817
897
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -1046,6 +1126,44 @@ module Aws::ChimeSDKVoice
1046
1126
  req.send_request(options)
1047
1127
  end
1048
1128
 
1129
+ # @option params [required, String] :voice_profile_id
1130
+ #
1131
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1132
+ #
1133
+ # @example Request syntax with placeholder values
1134
+ #
1135
+ # resp = client.delete_voice_profile({
1136
+ # voice_profile_id: "NonEmptyString256", # required
1137
+ # })
1138
+ #
1139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceProfile AWS API Documentation
1140
+ #
1141
+ # @overload delete_voice_profile(params = {})
1142
+ # @param [Hash] params ({})
1143
+ def delete_voice_profile(params = {}, options = {})
1144
+ req = build_request(:delete_voice_profile, params)
1145
+ req.send_request(options)
1146
+ end
1147
+
1148
+ # @option params [required, String] :voice_profile_domain_id
1149
+ #
1150
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1151
+ #
1152
+ # @example Request syntax with placeholder values
1153
+ #
1154
+ # resp = client.delete_voice_profile_domain({
1155
+ # voice_profile_domain_id: "NonEmptyString256", # required
1156
+ # })
1157
+ #
1158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceProfileDomain AWS API Documentation
1159
+ #
1160
+ # @overload delete_voice_profile_domain(params = {})
1161
+ # @param [Hash] params ({})
1162
+ def delete_voice_profile_domain(params = {}, options = {})
1163
+ req = build_request(:delete_voice_profile_domain, params)
1164
+ req.send_request(options)
1165
+ end
1166
+
1049
1167
  # @option params [required, String] :voice_connector_id
1050
1168
  #
1051
1169
  # @option params [required, Array<String>] :e164_phone_numbers
@@ -1385,6 +1503,46 @@ module Aws::ChimeSDKVoice
1385
1503
  req.send_request(options)
1386
1504
  end
1387
1505
 
1506
+ # @option params [required, String] :voice_connector_id
1507
+ #
1508
+ # @option params [required, String] :speaker_search_task_id
1509
+ #
1510
+ # @return [Types::GetSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1511
+ #
1512
+ # * {Types::GetSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
1513
+ #
1514
+ # @example Request syntax with placeholder values
1515
+ #
1516
+ # resp = client.get_speaker_search_task({
1517
+ # voice_connector_id: "NonEmptyString128", # required
1518
+ # speaker_search_task_id: "NonEmptyString256", # required
1519
+ # })
1520
+ #
1521
+ # @example Response structure
1522
+ #
1523
+ # resp.speaker_search_task.speaker_search_task_id #=> String
1524
+ # resp.speaker_search_task.speaker_search_task_status #=> String
1525
+ # resp.speaker_search_task.call_details.voice_connector_id #=> String
1526
+ # resp.speaker_search_task.call_details.transaction_id #=> String
1527
+ # resp.speaker_search_task.call_details.is_caller #=> Boolean
1528
+ # resp.speaker_search_task.speaker_search_details.results #=> Array
1529
+ # resp.speaker_search_task.speaker_search_details.results[0].confidence_score #=> Float
1530
+ # resp.speaker_search_task.speaker_search_details.results[0].voice_profile_id #=> String
1531
+ # resp.speaker_search_task.speaker_search_details.voiceprint_generation_status #=> String
1532
+ # resp.speaker_search_task.created_timestamp #=> Time
1533
+ # resp.speaker_search_task.updated_timestamp #=> Time
1534
+ # resp.speaker_search_task.started_timestamp #=> Time
1535
+ # resp.speaker_search_task.status_message #=> String
1536
+ #
1537
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSpeakerSearchTask AWS API Documentation
1538
+ #
1539
+ # @overload get_speaker_search_task(params = {})
1540
+ # @param [Hash] params ({})
1541
+ def get_speaker_search_task(params = {}, options = {})
1542
+ req = build_request(:get_speaker_search_task, params)
1543
+ req.send_request(options)
1544
+ end
1545
+
1388
1546
  # @option params [required, String] :voice_connector_id
1389
1547
  #
1390
1548
  # @return [Types::GetVoiceConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -1581,6 +1739,8 @@ module Aws::ChimeSDKVoice
1581
1739
  # resp.streaming_configuration.disabled #=> Boolean
1582
1740
  # resp.streaming_configuration.streaming_notification_targets #=> Array
1583
1741
  # resp.streaming_configuration.streaming_notification_targets[0].notification_target #=> String, one of "EventBridge", "SNS", "SQS"
1742
+ # resp.streaming_configuration.media_insights_configuration.disabled #=> Boolean
1743
+ # resp.streaming_configuration.media_insights_configuration.configuration_arn #=> String
1584
1744
  #
1585
1745
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorStreamingConfiguration AWS API Documentation
1586
1746
  #
@@ -1648,6 +1808,106 @@ module Aws::ChimeSDKVoice
1648
1808
  req.send_request(options)
1649
1809
  end
1650
1810
 
1811
+ # @option params [required, String] :voice_profile_id
1812
+ #
1813
+ # @return [Types::GetVoiceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1814
+ #
1815
+ # * {Types::GetVoiceProfileResponse#voice_profile #voice_profile} => Types::VoiceProfile
1816
+ #
1817
+ # @example Request syntax with placeholder values
1818
+ #
1819
+ # resp = client.get_voice_profile({
1820
+ # voice_profile_id: "NonEmptyString256", # required
1821
+ # })
1822
+ #
1823
+ # @example Response structure
1824
+ #
1825
+ # resp.voice_profile.voice_profile_id #=> String
1826
+ # resp.voice_profile.voice_profile_arn #=> String
1827
+ # resp.voice_profile.voice_profile_domain_id #=> String
1828
+ # resp.voice_profile.created_timestamp #=> Time
1829
+ # resp.voice_profile.updated_timestamp #=> Time
1830
+ # resp.voice_profile.expiration_timestamp #=> Time
1831
+ #
1832
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceProfile AWS API Documentation
1833
+ #
1834
+ # @overload get_voice_profile(params = {})
1835
+ # @param [Hash] params ({})
1836
+ def get_voice_profile(params = {}, options = {})
1837
+ req = build_request(:get_voice_profile, params)
1838
+ req.send_request(options)
1839
+ end
1840
+
1841
+ # @option params [required, String] :voice_profile_domain_id
1842
+ #
1843
+ # @return [Types::GetVoiceProfileDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1844
+ #
1845
+ # * {Types::GetVoiceProfileDomainResponse#voice_profile_domain #voice_profile_domain} => Types::VoiceProfileDomain
1846
+ #
1847
+ # @example Request syntax with placeholder values
1848
+ #
1849
+ # resp = client.get_voice_profile_domain({
1850
+ # voice_profile_domain_id: "NonEmptyString256", # required
1851
+ # })
1852
+ #
1853
+ # @example Response structure
1854
+ #
1855
+ # resp.voice_profile_domain.voice_profile_domain_id #=> String
1856
+ # resp.voice_profile_domain.voice_profile_domain_arn #=> String
1857
+ # resp.voice_profile_domain.name #=> String
1858
+ # resp.voice_profile_domain.description #=> String
1859
+ # resp.voice_profile_domain.server_side_encryption_configuration.kms_key_arn #=> String
1860
+ # resp.voice_profile_domain.created_timestamp #=> Time
1861
+ # resp.voice_profile_domain.updated_timestamp #=> Time
1862
+ #
1863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceProfileDomain AWS API Documentation
1864
+ #
1865
+ # @overload get_voice_profile_domain(params = {})
1866
+ # @param [Hash] params ({})
1867
+ def get_voice_profile_domain(params = {}, options = {})
1868
+ req = build_request(:get_voice_profile_domain, params)
1869
+ req.send_request(options)
1870
+ end
1871
+
1872
+ # @option params [required, String] :voice_connector_id
1873
+ #
1874
+ # @option params [required, String] :voice_tone_analysis_task_id
1875
+ #
1876
+ # @option params [required, Boolean] :is_caller
1877
+ #
1878
+ # @return [Types::GetVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1879
+ #
1880
+ # * {Types::GetVoiceToneAnalysisTaskResponse#voice_tone_analysis_task #voice_tone_analysis_task} => Types::VoiceToneAnalysisTask
1881
+ #
1882
+ # @example Request syntax with placeholder values
1883
+ #
1884
+ # resp = client.get_voice_tone_analysis_task({
1885
+ # voice_connector_id: "NonEmptyString128", # required
1886
+ # voice_tone_analysis_task_id: "NonEmptyString256", # required
1887
+ # is_caller: false, # required
1888
+ # })
1889
+ #
1890
+ # @example Response structure
1891
+ #
1892
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_id #=> String
1893
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_status #=> String
1894
+ # resp.voice_tone_analysis_task.call_details.voice_connector_id #=> String
1895
+ # resp.voice_tone_analysis_task.call_details.transaction_id #=> String
1896
+ # resp.voice_tone_analysis_task.call_details.is_caller #=> Boolean
1897
+ # resp.voice_tone_analysis_task.created_timestamp #=> Time
1898
+ # resp.voice_tone_analysis_task.updated_timestamp #=> Time
1899
+ # resp.voice_tone_analysis_task.started_timestamp #=> Time
1900
+ # resp.voice_tone_analysis_task.status_message #=> String
1901
+ #
1902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceToneAnalysisTask AWS API Documentation
1903
+ #
1904
+ # @overload get_voice_tone_analysis_task(params = {})
1905
+ # @param [Hash] params ({})
1906
+ def get_voice_tone_analysis_task(params = {}, options = {})
1907
+ req = build_request(:get_voice_tone_analysis_task, params)
1908
+ req.send_request(options)
1909
+ end
1910
+
1651
1911
  # @return [Types::ListAvailableVoiceConnectorRegionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1652
1912
  #
1653
1913
  # * {Types::ListAvailableVoiceConnectorRegionsResponse#voice_connector_regions #voice_connector_regions} => Array&lt;String&gt;
@@ -1941,6 +2201,33 @@ module Aws::ChimeSDKVoice
1941
2201
  req.send_request(options)
1942
2202
  end
1943
2203
 
2204
+ # @option params [required, String] :resource_arn
2205
+ #
2206
+ # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2207
+ #
2208
+ # * {Types::ListTagsForResourceResponse#tags #tags} => Array&lt;Types::Tag&gt;
2209
+ #
2210
+ # @example Request syntax with placeholder values
2211
+ #
2212
+ # resp = client.list_tags_for_resource({
2213
+ # resource_arn: "Arn", # required
2214
+ # })
2215
+ #
2216
+ # @example Response structure
2217
+ #
2218
+ # resp.tags #=> Array
2219
+ # resp.tags[0].key #=> String
2220
+ # resp.tags[0].value #=> String
2221
+ #
2222
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListTagsForResource AWS API Documentation
2223
+ #
2224
+ # @overload list_tags_for_resource(params = {})
2225
+ # @param [Hash] params ({})
2226
+ def list_tags_for_resource(params = {}, options = {})
2227
+ req = build_request(:list_tags_for_resource, params)
2228
+ req.send_request(options)
2229
+ end
2230
+
1944
2231
  # @option params [String] :next_token
1945
2232
  #
1946
2233
  # @option params [Integer] :max_results
@@ -2047,6 +2334,85 @@ module Aws::ChimeSDKVoice
2047
2334
  req.send_request(options)
2048
2335
  end
2049
2336
 
2337
+ # @option params [String] :next_token
2338
+ #
2339
+ # @option params [Integer] :max_results
2340
+ #
2341
+ # @return [Types::ListVoiceProfileDomainsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2342
+ #
2343
+ # * {Types::ListVoiceProfileDomainsResponse#voice_profile_domains #voice_profile_domains} => Array&lt;Types::VoiceProfileDomainSummary&gt;
2344
+ # * {Types::ListVoiceProfileDomainsResponse#next_token #next_token} => String
2345
+ #
2346
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2347
+ #
2348
+ # @example Request syntax with placeholder values
2349
+ #
2350
+ # resp = client.list_voice_profile_domains({
2351
+ # next_token: "String",
2352
+ # max_results: 1,
2353
+ # })
2354
+ #
2355
+ # @example Response structure
2356
+ #
2357
+ # resp.voice_profile_domains #=> Array
2358
+ # resp.voice_profile_domains[0].voice_profile_domain_id #=> String
2359
+ # resp.voice_profile_domains[0].voice_profile_domain_arn #=> String
2360
+ # resp.voice_profile_domains[0].name #=> String
2361
+ # resp.voice_profile_domains[0].description #=> String
2362
+ # resp.voice_profile_domains[0].created_timestamp #=> Time
2363
+ # resp.voice_profile_domains[0].updated_timestamp #=> Time
2364
+ # resp.next_token #=> String
2365
+ #
2366
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceProfileDomains AWS API Documentation
2367
+ #
2368
+ # @overload list_voice_profile_domains(params = {})
2369
+ # @param [Hash] params ({})
2370
+ def list_voice_profile_domains(params = {}, options = {})
2371
+ req = build_request(:list_voice_profile_domains, params)
2372
+ req.send_request(options)
2373
+ end
2374
+
2375
+ # @option params [required, String] :voice_profile_domain_id
2376
+ #
2377
+ # @option params [String] :next_token
2378
+ #
2379
+ # @option params [Integer] :max_results
2380
+ #
2381
+ # @return [Types::ListVoiceProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2382
+ #
2383
+ # * {Types::ListVoiceProfilesResponse#voice_profiles #voice_profiles} => Array&lt;Types::VoiceProfileSummary&gt;
2384
+ # * {Types::ListVoiceProfilesResponse#next_token #next_token} => String
2385
+ #
2386
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2387
+ #
2388
+ # @example Request syntax with placeholder values
2389
+ #
2390
+ # resp = client.list_voice_profiles({
2391
+ # voice_profile_domain_id: "NonEmptyString256", # required
2392
+ # next_token: "String",
2393
+ # max_results: 1,
2394
+ # })
2395
+ #
2396
+ # @example Response structure
2397
+ #
2398
+ # resp.voice_profiles #=> Array
2399
+ # resp.voice_profiles[0].voice_profile_id #=> String
2400
+ # resp.voice_profiles[0].voice_profile_arn #=> String
2401
+ # resp.voice_profiles[0].voice_profile_domain_id #=> String
2402
+ # resp.voice_profiles[0].created_timestamp #=> Time
2403
+ # resp.voice_profiles[0].updated_timestamp #=> Time
2404
+ # resp.voice_profiles[0].expiration_timestamp #=> Time
2405
+ # resp.next_token #=> String
2406
+ #
2407
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceProfiles AWS API Documentation
2408
+ #
2409
+ # @overload list_voice_profiles(params = {})
2410
+ # @param [Hash] params ({})
2411
+ def list_voice_profiles(params = {}, options = {})
2412
+ req = build_request(:list_voice_profiles, params)
2413
+ req.send_request(options)
2414
+ end
2415
+
2050
2416
  # @option params [required, String] :sip_media_application_id
2051
2417
  #
2052
2418
  # @option params [Types::SipMediaApplicationAlexaSkillConfiguration] :sip_media_application_alexa_skill_configuration
@@ -2287,6 +2653,10 @@ module Aws::ChimeSDKVoice
2287
2653
  # notification_target: "EventBridge", # accepts EventBridge, SNS, SQS
2288
2654
  # },
2289
2655
  # ],
2656
+ # media_insights_configuration: {
2657
+ # disabled: false,
2658
+ # configuration_arn: "Arn",
2659
+ # },
2290
2660
  # },
2291
2661
  # })
2292
2662
  #
@@ -2296,6 +2666,8 @@ module Aws::ChimeSDKVoice
2296
2666
  # resp.streaming_configuration.disabled #=> Boolean
2297
2667
  # resp.streaming_configuration.streaming_notification_targets #=> Array
2298
2668
  # resp.streaming_configuration.streaming_notification_targets[0].notification_target #=> String, one of "EventBridge", "SNS", "SQS"
2669
+ # resp.streaming_configuration.media_insights_configuration.disabled #=> Boolean
2670
+ # resp.streaming_configuration.media_insights_configuration.configuration_arn #=> String
2299
2671
  #
2300
2672
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorStreamingConfiguration AWS API Documentation
2301
2673
  #
@@ -2470,6 +2842,187 @@ module Aws::ChimeSDKVoice
2470
2842
  req.send_request(options)
2471
2843
  end
2472
2844
 
2845
+ # @option params [required, String] :voice_connector_id
2846
+ #
2847
+ # @option params [required, String] :transaction_id
2848
+ #
2849
+ # @option params [required, String] :voice_profile_domain_id
2850
+ #
2851
+ # @option params [String] :client_request_token
2852
+ #
2853
+ # @return [Types::StartSpeakerSearchTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2854
+ #
2855
+ # * {Types::StartSpeakerSearchTaskResponse#speaker_search_task #speaker_search_task} => Types::SpeakerSearchTask
2856
+ #
2857
+ # @example Request syntax with placeholder values
2858
+ #
2859
+ # resp = client.start_speaker_search_task({
2860
+ # voice_connector_id: "NonEmptyString128", # required
2861
+ # transaction_id: "NonEmptyString256", # required
2862
+ # voice_profile_domain_id: "NonEmptyString256", # required
2863
+ # client_request_token: "ClientRequestId",
2864
+ # })
2865
+ #
2866
+ # @example Response structure
2867
+ #
2868
+ # resp.speaker_search_task.speaker_search_task_id #=> String
2869
+ # resp.speaker_search_task.speaker_search_task_status #=> String
2870
+ # resp.speaker_search_task.call_details.voice_connector_id #=> String
2871
+ # resp.speaker_search_task.call_details.transaction_id #=> String
2872
+ # resp.speaker_search_task.call_details.is_caller #=> Boolean
2873
+ # resp.speaker_search_task.speaker_search_details.results #=> Array
2874
+ # resp.speaker_search_task.speaker_search_details.results[0].confidence_score #=> Float
2875
+ # resp.speaker_search_task.speaker_search_details.results[0].voice_profile_id #=> String
2876
+ # resp.speaker_search_task.speaker_search_details.voiceprint_generation_status #=> String
2877
+ # resp.speaker_search_task.created_timestamp #=> Time
2878
+ # resp.speaker_search_task.updated_timestamp #=> Time
2879
+ # resp.speaker_search_task.started_timestamp #=> Time
2880
+ # resp.speaker_search_task.status_message #=> String
2881
+ #
2882
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartSpeakerSearchTask AWS API Documentation
2883
+ #
2884
+ # @overload start_speaker_search_task(params = {})
2885
+ # @param [Hash] params ({})
2886
+ def start_speaker_search_task(params = {}, options = {})
2887
+ req = build_request(:start_speaker_search_task, params)
2888
+ req.send_request(options)
2889
+ end
2890
+
2891
+ # @option params [required, String] :voice_connector_id
2892
+ #
2893
+ # @option params [required, String] :transaction_id
2894
+ #
2895
+ # @option params [required, String] :language_code
2896
+ #
2897
+ # @option params [String] :client_request_token
2898
+ #
2899
+ # @return [Types::StartVoiceToneAnalysisTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2900
+ #
2901
+ # * {Types::StartVoiceToneAnalysisTaskResponse#voice_tone_analysis_task #voice_tone_analysis_task} => Types::VoiceToneAnalysisTask
2902
+ #
2903
+ # @example Request syntax with placeholder values
2904
+ #
2905
+ # resp = client.start_voice_tone_analysis_task({
2906
+ # voice_connector_id: "NonEmptyString128", # required
2907
+ # transaction_id: "NonEmptyString256", # required
2908
+ # language_code: "en-US", # required, accepts en-US
2909
+ # client_request_token: "ClientRequestId",
2910
+ # })
2911
+ #
2912
+ # @example Response structure
2913
+ #
2914
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_id #=> String
2915
+ # resp.voice_tone_analysis_task.voice_tone_analysis_task_status #=> String
2916
+ # resp.voice_tone_analysis_task.call_details.voice_connector_id #=> String
2917
+ # resp.voice_tone_analysis_task.call_details.transaction_id #=> String
2918
+ # resp.voice_tone_analysis_task.call_details.is_caller #=> Boolean
2919
+ # resp.voice_tone_analysis_task.created_timestamp #=> Time
2920
+ # resp.voice_tone_analysis_task.updated_timestamp #=> Time
2921
+ # resp.voice_tone_analysis_task.started_timestamp #=> Time
2922
+ # resp.voice_tone_analysis_task.status_message #=> String
2923
+ #
2924
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartVoiceToneAnalysisTask AWS API Documentation
2925
+ #
2926
+ # @overload start_voice_tone_analysis_task(params = {})
2927
+ # @param [Hash] params ({})
2928
+ def start_voice_tone_analysis_task(params = {}, options = {})
2929
+ req = build_request(:start_voice_tone_analysis_task, params)
2930
+ req.send_request(options)
2931
+ end
2932
+
2933
+ # @option params [required, String] :voice_connector_id
2934
+ #
2935
+ # @option params [required, String] :speaker_search_task_id
2936
+ #
2937
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2938
+ #
2939
+ # @example Request syntax with placeholder values
2940
+ #
2941
+ # resp = client.stop_speaker_search_task({
2942
+ # voice_connector_id: "NonEmptyString128", # required
2943
+ # speaker_search_task_id: "NonEmptyString256", # required
2944
+ # })
2945
+ #
2946
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StopSpeakerSearchTask AWS API Documentation
2947
+ #
2948
+ # @overload stop_speaker_search_task(params = {})
2949
+ # @param [Hash] params ({})
2950
+ def stop_speaker_search_task(params = {}, options = {})
2951
+ req = build_request(:stop_speaker_search_task, params)
2952
+ req.send_request(options)
2953
+ end
2954
+
2955
+ # @option params [required, String] :voice_connector_id
2956
+ #
2957
+ # @option params [required, String] :voice_tone_analysis_task_id
2958
+ #
2959
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2960
+ #
2961
+ # @example Request syntax with placeholder values
2962
+ #
2963
+ # resp = client.stop_voice_tone_analysis_task({
2964
+ # voice_connector_id: "NonEmptyString128", # required
2965
+ # voice_tone_analysis_task_id: "NonEmptyString256", # required
2966
+ # })
2967
+ #
2968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StopVoiceToneAnalysisTask AWS API Documentation
2969
+ #
2970
+ # @overload stop_voice_tone_analysis_task(params = {})
2971
+ # @param [Hash] params ({})
2972
+ def stop_voice_tone_analysis_task(params = {}, options = {})
2973
+ req = build_request(:stop_voice_tone_analysis_task, params)
2974
+ req.send_request(options)
2975
+ end
2976
+
2977
+ # @option params [required, String] :resource_arn
2978
+ #
2979
+ # @option params [required, Array<Types::Tag>] :tags
2980
+ #
2981
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2982
+ #
2983
+ # @example Request syntax with placeholder values
2984
+ #
2985
+ # resp = client.tag_resource({
2986
+ # resource_arn: "Arn", # required
2987
+ # tags: [ # required
2988
+ # {
2989
+ # key: "TagKey", # required
2990
+ # value: "TagValue", # required
2991
+ # },
2992
+ # ],
2993
+ # })
2994
+ #
2995
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/TagResource AWS API Documentation
2996
+ #
2997
+ # @overload tag_resource(params = {})
2998
+ # @param [Hash] params ({})
2999
+ def tag_resource(params = {}, options = {})
3000
+ req = build_request(:tag_resource, params)
3001
+ req.send_request(options)
3002
+ end
3003
+
3004
+ # @option params [required, String] :resource_arn
3005
+ #
3006
+ # @option params [required, Array<String>] :tag_keys
3007
+ #
3008
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3009
+ #
3010
+ # @example Request syntax with placeholder values
3011
+ #
3012
+ # resp = client.untag_resource({
3013
+ # resource_arn: "Arn", # required
3014
+ # tag_keys: ["TagKey"], # required
3015
+ # })
3016
+ #
3017
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UntagResource AWS API Documentation
3018
+ #
3019
+ # @overload untag_resource(params = {})
3020
+ # @param [Hash] params ({})
3021
+ def untag_resource(params = {}, options = {})
3022
+ req = build_request(:untag_resource, params)
3023
+ req.send_request(options)
3024
+ end
3025
+
2473
3026
  # @option params [Types::VoiceConnectorSettings] :voice_connector
2474
3027
  #
2475
3028
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -2817,6 +3370,76 @@ module Aws::ChimeSDKVoice
2817
3370
  req.send_request(options)
2818
3371
  end
2819
3372
 
3373
+ # @option params [required, String] :voice_profile_id
3374
+ #
3375
+ # @option params [required, String] :speaker_search_task_id
3376
+ #
3377
+ # @return [Types::UpdateVoiceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3378
+ #
3379
+ # * {Types::UpdateVoiceProfileResponse#voice_profile #voice_profile} => Types::VoiceProfile
3380
+ #
3381
+ # @example Request syntax with placeholder values
3382
+ #
3383
+ # resp = client.update_voice_profile({
3384
+ # voice_profile_id: "NonEmptyString256", # required
3385
+ # speaker_search_task_id: "NonEmptyString256", # required
3386
+ # })
3387
+ #
3388
+ # @example Response structure
3389
+ #
3390
+ # resp.voice_profile.voice_profile_id #=> String
3391
+ # resp.voice_profile.voice_profile_arn #=> String
3392
+ # resp.voice_profile.voice_profile_domain_id #=> String
3393
+ # resp.voice_profile.created_timestamp #=> Time
3394
+ # resp.voice_profile.updated_timestamp #=> Time
3395
+ # resp.voice_profile.expiration_timestamp #=> Time
3396
+ #
3397
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceProfile AWS API Documentation
3398
+ #
3399
+ # @overload update_voice_profile(params = {})
3400
+ # @param [Hash] params ({})
3401
+ def update_voice_profile(params = {}, options = {})
3402
+ req = build_request(:update_voice_profile, params)
3403
+ req.send_request(options)
3404
+ end
3405
+
3406
+ # @option params [required, String] :voice_profile_domain_id
3407
+ #
3408
+ # @option params [String] :name
3409
+ #
3410
+ # @option params [String] :description
3411
+ #
3412
+ # @return [Types::UpdateVoiceProfileDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3413
+ #
3414
+ # * {Types::UpdateVoiceProfileDomainResponse#voice_profile_domain #voice_profile_domain} => Types::VoiceProfileDomain
3415
+ #
3416
+ # @example Request syntax with placeholder values
3417
+ #
3418
+ # resp = client.update_voice_profile_domain({
3419
+ # voice_profile_domain_id: "NonEmptyString256", # required
3420
+ # name: "VoiceProfileDomainName",
3421
+ # description: "VoiceProfileDomainDescription",
3422
+ # })
3423
+ #
3424
+ # @example Response structure
3425
+ #
3426
+ # resp.voice_profile_domain.voice_profile_domain_id #=> String
3427
+ # resp.voice_profile_domain.voice_profile_domain_arn #=> String
3428
+ # resp.voice_profile_domain.name #=> String
3429
+ # resp.voice_profile_domain.description #=> String
3430
+ # resp.voice_profile_domain.server_side_encryption_configuration.kms_key_arn #=> String
3431
+ # resp.voice_profile_domain.created_timestamp #=> Time
3432
+ # resp.voice_profile_domain.updated_timestamp #=> Time
3433
+ #
3434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceProfileDomain AWS API Documentation
3435
+ #
3436
+ # @overload update_voice_profile_domain(params = {})
3437
+ # @param [Hash] params ({})
3438
+ def update_voice_profile_domain(params = {}, options = {})
3439
+ req = build_request(:update_voice_profile_domain, params)
3440
+ req.send_request(options)
3441
+ end
3442
+
2820
3443
  # @option params [required, String] :aws_account_id
2821
3444
  #
2822
3445
  # @option params [required, String] :street_number
@@ -2895,7 +3518,7 @@ module Aws::ChimeSDKVoice
2895
3518
  params: params,
2896
3519
  config: config)
2897
3520
  context[:gem_name] = 'aws-sdk-chimesdkvoice'
2898
- context[:gem_version] = '1.2.0'
3521
+ context[:gem_version] = '1.3.0'
2899
3522
  Seahorse::Client::Request.new(handlers, context)
2900
3523
  end
2901
3524