aws-sdk-chimesdkvoice 1.2.0 → 1.3.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +624 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +603 -0
- data/lib/aws-sdk-chimesdkvoice/endpoints.rb +266 -0
- data/lib/aws-sdk-chimesdkvoice/errors.rb +22 -0
- data/lib/aws-sdk-chimesdkvoice/plugins/endpoints.rb +38 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +757 -1
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- metadata +2 -2
@@ -169,6 +169,25 @@ module Aws::ChimeSDKVoice
|
|
169
169
|
include Aws::Structure
|
170
170
|
end
|
171
171
|
|
172
|
+
# @!attribute [rw] voice_connector_id
|
173
|
+
# @return [String]
|
174
|
+
#
|
175
|
+
# @!attribute [rw] transaction_id
|
176
|
+
# @return [String]
|
177
|
+
#
|
178
|
+
# @!attribute [rw] is_caller
|
179
|
+
# @return [Boolean]
|
180
|
+
#
|
181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CallDetails AWS API Documentation
|
182
|
+
#
|
183
|
+
class CallDetails < Struct.new(
|
184
|
+
:voice_connector_id,
|
185
|
+
:transaction_id,
|
186
|
+
:is_caller)
|
187
|
+
SENSITIVE = []
|
188
|
+
include Aws::Structure
|
189
|
+
end
|
190
|
+
|
172
191
|
# @!attribute [rw] street_info
|
173
192
|
# @return [String]
|
174
193
|
#
|
@@ -446,6 +465,66 @@ module Aws::ChimeSDKVoice
|
|
446
465
|
include Aws::Structure
|
447
466
|
end
|
448
467
|
|
468
|
+
# @!attribute [rw] name
|
469
|
+
# @return [String]
|
470
|
+
#
|
471
|
+
# @!attribute [rw] description
|
472
|
+
# @return [String]
|
473
|
+
#
|
474
|
+
# @!attribute [rw] server_side_encryption_configuration
|
475
|
+
# @return [Types::ServerSideEncryptionConfiguration]
|
476
|
+
#
|
477
|
+
# @!attribute [rw] client_request_token
|
478
|
+
# @return [String]
|
479
|
+
#
|
480
|
+
# @!attribute [rw] tags
|
481
|
+
# @return [Array<Types::Tag>]
|
482
|
+
#
|
483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceProfileDomainRequest AWS API Documentation
|
484
|
+
#
|
485
|
+
class CreateVoiceProfileDomainRequest < Struct.new(
|
486
|
+
:name,
|
487
|
+
:description,
|
488
|
+
:server_side_encryption_configuration,
|
489
|
+
:client_request_token,
|
490
|
+
:tags)
|
491
|
+
SENSITIVE = []
|
492
|
+
include Aws::Structure
|
493
|
+
end
|
494
|
+
|
495
|
+
# @!attribute [rw] voice_profile_domain
|
496
|
+
# @return [Types::VoiceProfileDomain]
|
497
|
+
#
|
498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceProfileDomainResponse AWS API Documentation
|
499
|
+
#
|
500
|
+
class CreateVoiceProfileDomainResponse < Struct.new(
|
501
|
+
:voice_profile_domain)
|
502
|
+
SENSITIVE = []
|
503
|
+
include Aws::Structure
|
504
|
+
end
|
505
|
+
|
506
|
+
# @!attribute [rw] speaker_search_task_id
|
507
|
+
# @return [String]
|
508
|
+
#
|
509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceProfileRequest AWS API Documentation
|
510
|
+
#
|
511
|
+
class CreateVoiceProfileRequest < Struct.new(
|
512
|
+
:speaker_search_task_id)
|
513
|
+
SENSITIVE = []
|
514
|
+
include Aws::Structure
|
515
|
+
end
|
516
|
+
|
517
|
+
# @!attribute [rw] voice_profile
|
518
|
+
# @return [Types::VoiceProfile]
|
519
|
+
#
|
520
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceProfileResponse AWS API Documentation
|
521
|
+
#
|
522
|
+
class CreateVoiceProfileResponse < Struct.new(
|
523
|
+
:voice_profile)
|
524
|
+
SENSITIVE = []
|
525
|
+
include Aws::Structure
|
526
|
+
end
|
527
|
+
|
449
528
|
# @!attribute [rw] username
|
450
529
|
# @return [String]
|
451
530
|
#
|
@@ -620,6 +699,28 @@ module Aws::ChimeSDKVoice
|
|
620
699
|
include Aws::Structure
|
621
700
|
end
|
622
701
|
|
702
|
+
# @!attribute [rw] voice_profile_domain_id
|
703
|
+
# @return [String]
|
704
|
+
#
|
705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceProfileDomainRequest AWS API Documentation
|
706
|
+
#
|
707
|
+
class DeleteVoiceProfileDomainRequest < Struct.new(
|
708
|
+
:voice_profile_domain_id)
|
709
|
+
SENSITIVE = []
|
710
|
+
include Aws::Structure
|
711
|
+
end
|
712
|
+
|
713
|
+
# @!attribute [rw] voice_profile_id
|
714
|
+
# @return [String]
|
715
|
+
#
|
716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceProfileRequest AWS API Documentation
|
717
|
+
#
|
718
|
+
class DeleteVoiceProfileRequest < Struct.new(
|
719
|
+
:voice_profile_id)
|
720
|
+
SENSITIVE = []
|
721
|
+
include Aws::Structure
|
722
|
+
end
|
723
|
+
|
623
724
|
# @!attribute [rw] voice_connector_group_id
|
624
725
|
# @return [String]
|
625
726
|
#
|
@@ -886,6 +987,32 @@ module Aws::ChimeSDKVoice
|
|
886
987
|
include Aws::Structure
|
887
988
|
end
|
888
989
|
|
990
|
+
# @!attribute [rw] voice_connector_id
|
991
|
+
# @return [String]
|
992
|
+
#
|
993
|
+
# @!attribute [rw] speaker_search_task_id
|
994
|
+
# @return [String]
|
995
|
+
#
|
996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSpeakerSearchTaskRequest AWS API Documentation
|
997
|
+
#
|
998
|
+
class GetSpeakerSearchTaskRequest < Struct.new(
|
999
|
+
:voice_connector_id,
|
1000
|
+
:speaker_search_task_id)
|
1001
|
+
SENSITIVE = []
|
1002
|
+
include Aws::Structure
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
# @!attribute [rw] speaker_search_task
|
1006
|
+
# @return [Types::SpeakerSearchTask]
|
1007
|
+
#
|
1008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSpeakerSearchTaskResponse AWS API Documentation
|
1009
|
+
#
|
1010
|
+
class GetSpeakerSearchTaskResponse < Struct.new(
|
1011
|
+
:speaker_search_task)
|
1012
|
+
SENSITIVE = []
|
1013
|
+
include Aws::Structure
|
1014
|
+
end
|
1015
|
+
|
889
1016
|
# @!attribute [rw] voice_connector_id
|
890
1017
|
# @return [String]
|
891
1018
|
#
|
@@ -1084,6 +1211,84 @@ module Aws::ChimeSDKVoice
|
|
1084
1211
|
include Aws::Structure
|
1085
1212
|
end
|
1086
1213
|
|
1214
|
+
# @!attribute [rw] voice_profile_domain_id
|
1215
|
+
# @return [String]
|
1216
|
+
#
|
1217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceProfileDomainRequest AWS API Documentation
|
1218
|
+
#
|
1219
|
+
class GetVoiceProfileDomainRequest < Struct.new(
|
1220
|
+
:voice_profile_domain_id)
|
1221
|
+
SENSITIVE = []
|
1222
|
+
include Aws::Structure
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
# @!attribute [rw] voice_profile_domain
|
1226
|
+
# @return [Types::VoiceProfileDomain]
|
1227
|
+
#
|
1228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceProfileDomainResponse AWS API Documentation
|
1229
|
+
#
|
1230
|
+
class GetVoiceProfileDomainResponse < Struct.new(
|
1231
|
+
:voice_profile_domain)
|
1232
|
+
SENSITIVE = []
|
1233
|
+
include Aws::Structure
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
# @!attribute [rw] voice_profile_id
|
1237
|
+
# @return [String]
|
1238
|
+
#
|
1239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceProfileRequest AWS API Documentation
|
1240
|
+
#
|
1241
|
+
class GetVoiceProfileRequest < Struct.new(
|
1242
|
+
:voice_profile_id)
|
1243
|
+
SENSITIVE = []
|
1244
|
+
include Aws::Structure
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
# @!attribute [rw] voice_profile
|
1248
|
+
# @return [Types::VoiceProfile]
|
1249
|
+
#
|
1250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceProfileResponse AWS API Documentation
|
1251
|
+
#
|
1252
|
+
class GetVoiceProfileResponse < Struct.new(
|
1253
|
+
:voice_profile)
|
1254
|
+
SENSITIVE = []
|
1255
|
+
include Aws::Structure
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# @!attribute [rw] voice_connector_id
|
1259
|
+
# @return [String]
|
1260
|
+
#
|
1261
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
1262
|
+
# @return [String]
|
1263
|
+
#
|
1264
|
+
# @!attribute [rw] is_caller
|
1265
|
+
# @return [Boolean]
|
1266
|
+
#
|
1267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceToneAnalysisTaskRequest AWS API Documentation
|
1268
|
+
#
|
1269
|
+
class GetVoiceToneAnalysisTaskRequest < Struct.new(
|
1270
|
+
:voice_connector_id,
|
1271
|
+
:voice_tone_analysis_task_id,
|
1272
|
+
:is_caller)
|
1273
|
+
SENSITIVE = []
|
1274
|
+
include Aws::Structure
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
# @!attribute [rw] voice_tone_analysis_task
|
1278
|
+
# @return [Types::VoiceToneAnalysisTask]
|
1279
|
+
#
|
1280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceToneAnalysisTaskResponse AWS API Documentation
|
1281
|
+
#
|
1282
|
+
class GetVoiceToneAnalysisTaskResponse < Struct.new(
|
1283
|
+
:voice_tone_analysis_task)
|
1284
|
+
SENSITIVE = []
|
1285
|
+
include Aws::Structure
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GoneException AWS API Documentation
|
1289
|
+
#
|
1290
|
+
class GoneException < Aws::EmptyStructure; end
|
1291
|
+
|
1087
1292
|
# @!attribute [rw] voice_connector_regions
|
1088
1293
|
# @return [Array<String>]
|
1089
1294
|
#
|
@@ -1295,6 +1500,28 @@ module Aws::ChimeSDKVoice
|
|
1295
1500
|
include Aws::Structure
|
1296
1501
|
end
|
1297
1502
|
|
1503
|
+
# @!attribute [rw] resource_arn
|
1504
|
+
# @return [String]
|
1505
|
+
#
|
1506
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListTagsForResourceRequest AWS API Documentation
|
1507
|
+
#
|
1508
|
+
class ListTagsForResourceRequest < Struct.new(
|
1509
|
+
:resource_arn)
|
1510
|
+
SENSITIVE = [:resource_arn]
|
1511
|
+
include Aws::Structure
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
# @!attribute [rw] tags
|
1515
|
+
# @return [Array<Types::Tag>]
|
1516
|
+
#
|
1517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListTagsForResourceResponse AWS API Documentation
|
1518
|
+
#
|
1519
|
+
class ListTagsForResourceResponse < Struct.new(
|
1520
|
+
:tags)
|
1521
|
+
SENSITIVE = []
|
1522
|
+
include Aws::Structure
|
1523
|
+
end
|
1524
|
+
|
1298
1525
|
# @!attribute [rw] next_token
|
1299
1526
|
# @return [String]
|
1300
1527
|
#
|
@@ -1377,6 +1604,70 @@ module Aws::ChimeSDKVoice
|
|
1377
1604
|
include Aws::Structure
|
1378
1605
|
end
|
1379
1606
|
|
1607
|
+
# @!attribute [rw] next_token
|
1608
|
+
# @return [String]
|
1609
|
+
#
|
1610
|
+
# @!attribute [rw] max_results
|
1611
|
+
# @return [Integer]
|
1612
|
+
#
|
1613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceProfileDomainsRequest AWS API Documentation
|
1614
|
+
#
|
1615
|
+
class ListVoiceProfileDomainsRequest < Struct.new(
|
1616
|
+
:next_token,
|
1617
|
+
:max_results)
|
1618
|
+
SENSITIVE = []
|
1619
|
+
include Aws::Structure
|
1620
|
+
end
|
1621
|
+
|
1622
|
+
# @!attribute [rw] voice_profile_domains
|
1623
|
+
# @return [Array<Types::VoiceProfileDomainSummary>]
|
1624
|
+
#
|
1625
|
+
# @!attribute [rw] next_token
|
1626
|
+
# @return [String]
|
1627
|
+
#
|
1628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceProfileDomainsResponse AWS API Documentation
|
1629
|
+
#
|
1630
|
+
class ListVoiceProfileDomainsResponse < Struct.new(
|
1631
|
+
:voice_profile_domains,
|
1632
|
+
:next_token)
|
1633
|
+
SENSITIVE = []
|
1634
|
+
include Aws::Structure
|
1635
|
+
end
|
1636
|
+
|
1637
|
+
# @!attribute [rw] voice_profile_domain_id
|
1638
|
+
# @return [String]
|
1639
|
+
#
|
1640
|
+
# @!attribute [rw] next_token
|
1641
|
+
# @return [String]
|
1642
|
+
#
|
1643
|
+
# @!attribute [rw] max_results
|
1644
|
+
# @return [Integer]
|
1645
|
+
#
|
1646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceProfilesRequest AWS API Documentation
|
1647
|
+
#
|
1648
|
+
class ListVoiceProfilesRequest < Struct.new(
|
1649
|
+
:voice_profile_domain_id,
|
1650
|
+
:next_token,
|
1651
|
+
:max_results)
|
1652
|
+
SENSITIVE = []
|
1653
|
+
include Aws::Structure
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
# @!attribute [rw] voice_profiles
|
1657
|
+
# @return [Array<Types::VoiceProfileSummary>]
|
1658
|
+
#
|
1659
|
+
# @!attribute [rw] next_token
|
1660
|
+
# @return [String]
|
1661
|
+
#
|
1662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceProfilesResponse AWS API Documentation
|
1663
|
+
#
|
1664
|
+
class ListVoiceProfilesResponse < Struct.new(
|
1665
|
+
:voice_profiles,
|
1666
|
+
:next_token)
|
1667
|
+
SENSITIVE = []
|
1668
|
+
include Aws::Structure
|
1669
|
+
end
|
1670
|
+
|
1380
1671
|
# @!attribute [rw] enable_sip_logs
|
1381
1672
|
# @return [Boolean]
|
1382
1673
|
#
|
@@ -1392,6 +1683,21 @@ module Aws::ChimeSDKVoice
|
|
1392
1683
|
include Aws::Structure
|
1393
1684
|
end
|
1394
1685
|
|
1686
|
+
# @!attribute [rw] disabled
|
1687
|
+
# @return [Boolean]
|
1688
|
+
#
|
1689
|
+
# @!attribute [rw] configuration_arn
|
1690
|
+
# @return [String]
|
1691
|
+
#
|
1692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/MediaInsightsConfiguration AWS API Documentation
|
1693
|
+
#
|
1694
|
+
class MediaInsightsConfiguration < Struct.new(
|
1695
|
+
:disabled,
|
1696
|
+
:configuration_arn)
|
1697
|
+
SENSITIVE = [:configuration_arn]
|
1698
|
+
include Aws::Structure
|
1699
|
+
end
|
1700
|
+
|
1395
1701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/NotFoundException AWS API Documentation
|
1396
1702
|
#
|
1397
1703
|
class NotFoundException < Aws::EmptyStructure; end
|
@@ -2047,6 +2353,17 @@ module Aws::ChimeSDKVoice
|
|
2047
2353
|
include Aws::Structure
|
2048
2354
|
end
|
2049
2355
|
|
2356
|
+
# @!attribute [rw] kms_key_arn
|
2357
|
+
# @return [String]
|
2358
|
+
#
|
2359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ServerSideEncryptionConfiguration AWS API Documentation
|
2360
|
+
#
|
2361
|
+
class ServerSideEncryptionConfiguration < Struct.new(
|
2362
|
+
:kms_key_arn)
|
2363
|
+
SENSITIVE = [:kms_key_arn]
|
2364
|
+
include Aws::Structure
|
2365
|
+
end
|
2366
|
+
|
2050
2367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ServiceFailureException AWS API Documentation
|
2051
2368
|
#
|
2052
2369
|
class ServiceFailureException < Aws::EmptyStructure; end
|
@@ -2192,6 +2509,173 @@ module Aws::ChimeSDKVoice
|
|
2192
2509
|
include Aws::Structure
|
2193
2510
|
end
|
2194
2511
|
|
2512
|
+
# @!attribute [rw] results
|
2513
|
+
# @return [Array<Types::SpeakerSearchResult>]
|
2514
|
+
#
|
2515
|
+
# @!attribute [rw] voiceprint_generation_status
|
2516
|
+
# @return [String]
|
2517
|
+
#
|
2518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SpeakerSearchDetails AWS API Documentation
|
2519
|
+
#
|
2520
|
+
class SpeakerSearchDetails < Struct.new(
|
2521
|
+
:results,
|
2522
|
+
:voiceprint_generation_status)
|
2523
|
+
SENSITIVE = []
|
2524
|
+
include Aws::Structure
|
2525
|
+
end
|
2526
|
+
|
2527
|
+
# @!attribute [rw] confidence_score
|
2528
|
+
# @return [Float]
|
2529
|
+
#
|
2530
|
+
# @!attribute [rw] voice_profile_id
|
2531
|
+
# @return [String]
|
2532
|
+
#
|
2533
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SpeakerSearchResult AWS API Documentation
|
2534
|
+
#
|
2535
|
+
class SpeakerSearchResult < Struct.new(
|
2536
|
+
:confidence_score,
|
2537
|
+
:voice_profile_id)
|
2538
|
+
SENSITIVE = []
|
2539
|
+
include Aws::Structure
|
2540
|
+
end
|
2541
|
+
|
2542
|
+
# @!attribute [rw] speaker_search_task_id
|
2543
|
+
# @return [String]
|
2544
|
+
#
|
2545
|
+
# @!attribute [rw] speaker_search_task_status
|
2546
|
+
# @return [String]
|
2547
|
+
#
|
2548
|
+
# @!attribute [rw] call_details
|
2549
|
+
# @return [Types::CallDetails]
|
2550
|
+
#
|
2551
|
+
# @!attribute [rw] speaker_search_details
|
2552
|
+
# @return [Types::SpeakerSearchDetails]
|
2553
|
+
#
|
2554
|
+
# @!attribute [rw] created_timestamp
|
2555
|
+
# @return [Time]
|
2556
|
+
#
|
2557
|
+
# @!attribute [rw] updated_timestamp
|
2558
|
+
# @return [Time]
|
2559
|
+
#
|
2560
|
+
# @!attribute [rw] started_timestamp
|
2561
|
+
# @return [Time]
|
2562
|
+
#
|
2563
|
+
# @!attribute [rw] status_message
|
2564
|
+
# @return [String]
|
2565
|
+
#
|
2566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SpeakerSearchTask AWS API Documentation
|
2567
|
+
#
|
2568
|
+
class SpeakerSearchTask < Struct.new(
|
2569
|
+
:speaker_search_task_id,
|
2570
|
+
:speaker_search_task_status,
|
2571
|
+
:call_details,
|
2572
|
+
:speaker_search_details,
|
2573
|
+
:created_timestamp,
|
2574
|
+
:updated_timestamp,
|
2575
|
+
:started_timestamp,
|
2576
|
+
:status_message)
|
2577
|
+
SENSITIVE = []
|
2578
|
+
include Aws::Structure
|
2579
|
+
end
|
2580
|
+
|
2581
|
+
# @!attribute [rw] voice_connector_id
|
2582
|
+
# @return [String]
|
2583
|
+
#
|
2584
|
+
# @!attribute [rw] transaction_id
|
2585
|
+
# @return [String]
|
2586
|
+
#
|
2587
|
+
# @!attribute [rw] voice_profile_domain_id
|
2588
|
+
# @return [String]
|
2589
|
+
#
|
2590
|
+
# @!attribute [rw] client_request_token
|
2591
|
+
# @return [String]
|
2592
|
+
#
|
2593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartSpeakerSearchTaskRequest AWS API Documentation
|
2594
|
+
#
|
2595
|
+
class StartSpeakerSearchTaskRequest < Struct.new(
|
2596
|
+
:voice_connector_id,
|
2597
|
+
:transaction_id,
|
2598
|
+
:voice_profile_domain_id,
|
2599
|
+
:client_request_token)
|
2600
|
+
SENSITIVE = []
|
2601
|
+
include Aws::Structure
|
2602
|
+
end
|
2603
|
+
|
2604
|
+
# @!attribute [rw] speaker_search_task
|
2605
|
+
# @return [Types::SpeakerSearchTask]
|
2606
|
+
#
|
2607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartSpeakerSearchTaskResponse AWS API Documentation
|
2608
|
+
#
|
2609
|
+
class StartSpeakerSearchTaskResponse < Struct.new(
|
2610
|
+
:speaker_search_task)
|
2611
|
+
SENSITIVE = []
|
2612
|
+
include Aws::Structure
|
2613
|
+
end
|
2614
|
+
|
2615
|
+
# @!attribute [rw] voice_connector_id
|
2616
|
+
# @return [String]
|
2617
|
+
#
|
2618
|
+
# @!attribute [rw] transaction_id
|
2619
|
+
# @return [String]
|
2620
|
+
#
|
2621
|
+
# @!attribute [rw] language_code
|
2622
|
+
# @return [String]
|
2623
|
+
#
|
2624
|
+
# @!attribute [rw] client_request_token
|
2625
|
+
# @return [String]
|
2626
|
+
#
|
2627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartVoiceToneAnalysisTaskRequest AWS API Documentation
|
2628
|
+
#
|
2629
|
+
class StartVoiceToneAnalysisTaskRequest < Struct.new(
|
2630
|
+
:voice_connector_id,
|
2631
|
+
:transaction_id,
|
2632
|
+
:language_code,
|
2633
|
+
:client_request_token)
|
2634
|
+
SENSITIVE = []
|
2635
|
+
include Aws::Structure
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
# @!attribute [rw] voice_tone_analysis_task
|
2639
|
+
# @return [Types::VoiceToneAnalysisTask]
|
2640
|
+
#
|
2641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StartVoiceToneAnalysisTaskResponse AWS API Documentation
|
2642
|
+
#
|
2643
|
+
class StartVoiceToneAnalysisTaskResponse < Struct.new(
|
2644
|
+
:voice_tone_analysis_task)
|
2645
|
+
SENSITIVE = []
|
2646
|
+
include Aws::Structure
|
2647
|
+
end
|
2648
|
+
|
2649
|
+
# @!attribute [rw] voice_connector_id
|
2650
|
+
# @return [String]
|
2651
|
+
#
|
2652
|
+
# @!attribute [rw] speaker_search_task_id
|
2653
|
+
# @return [String]
|
2654
|
+
#
|
2655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StopSpeakerSearchTaskRequest AWS API Documentation
|
2656
|
+
#
|
2657
|
+
class StopSpeakerSearchTaskRequest < Struct.new(
|
2658
|
+
:voice_connector_id,
|
2659
|
+
:speaker_search_task_id)
|
2660
|
+
SENSITIVE = []
|
2661
|
+
include Aws::Structure
|
2662
|
+
end
|
2663
|
+
|
2664
|
+
# @!attribute [rw] voice_connector_id
|
2665
|
+
# @return [String]
|
2666
|
+
#
|
2667
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
2668
|
+
# @return [String]
|
2669
|
+
#
|
2670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StopVoiceToneAnalysisTaskRequest AWS API Documentation
|
2671
|
+
#
|
2672
|
+
class StopVoiceToneAnalysisTaskRequest < Struct.new(
|
2673
|
+
:voice_connector_id,
|
2674
|
+
:voice_tone_analysis_task_id)
|
2675
|
+
SENSITIVE = []
|
2676
|
+
include Aws::Structure
|
2677
|
+
end
|
2678
|
+
|
2195
2679
|
# @!attribute [rw] data_retention_in_hours
|
2196
2680
|
# @return [Integer]
|
2197
2681
|
#
|
@@ -2201,12 +2685,16 @@ module Aws::ChimeSDKVoice
|
|
2201
2685
|
# @!attribute [rw] streaming_notification_targets
|
2202
2686
|
# @return [Array<Types::StreamingNotificationTarget>]
|
2203
2687
|
#
|
2688
|
+
# @!attribute [rw] media_insights_configuration
|
2689
|
+
# @return [Types::MediaInsightsConfiguration]
|
2690
|
+
#
|
2204
2691
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StreamingConfiguration AWS API Documentation
|
2205
2692
|
#
|
2206
2693
|
class StreamingConfiguration < Struct.new(
|
2207
2694
|
:data_retention_in_hours,
|
2208
2695
|
:disabled,
|
2209
|
-
:streaming_notification_targets
|
2696
|
+
:streaming_notification_targets,
|
2697
|
+
:media_insights_configuration)
|
2210
2698
|
SENSITIVE = []
|
2211
2699
|
include Aws::Structure
|
2212
2700
|
end
|
@@ -2222,6 +2710,36 @@ module Aws::ChimeSDKVoice
|
|
2222
2710
|
include Aws::Structure
|
2223
2711
|
end
|
2224
2712
|
|
2713
|
+
# @!attribute [rw] key
|
2714
|
+
# @return [String]
|
2715
|
+
#
|
2716
|
+
# @!attribute [rw] value
|
2717
|
+
# @return [String]
|
2718
|
+
#
|
2719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Tag AWS API Documentation
|
2720
|
+
#
|
2721
|
+
class Tag < Struct.new(
|
2722
|
+
:key,
|
2723
|
+
:value)
|
2724
|
+
SENSITIVE = [:key, :value]
|
2725
|
+
include Aws::Structure
|
2726
|
+
end
|
2727
|
+
|
2728
|
+
# @!attribute [rw] resource_arn
|
2729
|
+
# @return [String]
|
2730
|
+
#
|
2731
|
+
# @!attribute [rw] tags
|
2732
|
+
# @return [Array<Types::Tag>]
|
2733
|
+
#
|
2734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/TagResourceRequest AWS API Documentation
|
2735
|
+
#
|
2736
|
+
class TagResourceRequest < Struct.new(
|
2737
|
+
:resource_arn,
|
2738
|
+
:tags)
|
2739
|
+
SENSITIVE = [:resource_arn]
|
2740
|
+
include Aws::Structure
|
2741
|
+
end
|
2742
|
+
|
2225
2743
|
# @!attribute [rw] cps_limit
|
2226
2744
|
# @return [Integer]
|
2227
2745
|
#
|
@@ -2272,6 +2790,25 @@ module Aws::ChimeSDKVoice
|
|
2272
2790
|
#
|
2273
2791
|
class UnauthorizedClientException < Aws::EmptyStructure; end
|
2274
2792
|
|
2793
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UnprocessableEntityException AWS API Documentation
|
2794
|
+
#
|
2795
|
+
class UnprocessableEntityException < Aws::EmptyStructure; end
|
2796
|
+
|
2797
|
+
# @!attribute [rw] resource_arn
|
2798
|
+
# @return [String]
|
2799
|
+
#
|
2800
|
+
# @!attribute [rw] tag_keys
|
2801
|
+
# @return [Array<String>]
|
2802
|
+
#
|
2803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UntagResourceRequest AWS API Documentation
|
2804
|
+
#
|
2805
|
+
class UntagResourceRequest < Struct.new(
|
2806
|
+
:resource_arn,
|
2807
|
+
:tag_keys)
|
2808
|
+
SENSITIVE = [:resource_arn]
|
2809
|
+
include Aws::Structure
|
2810
|
+
end
|
2811
|
+
|
2275
2812
|
# @!attribute [rw] voice_connector
|
2276
2813
|
# @return [Types::VoiceConnectorSettings]
|
2277
2814
|
#
|
@@ -2531,6 +3068,62 @@ module Aws::ChimeSDKVoice
|
|
2531
3068
|
include Aws::Structure
|
2532
3069
|
end
|
2533
3070
|
|
3071
|
+
# @!attribute [rw] voice_profile_domain_id
|
3072
|
+
# @return [String]
|
3073
|
+
#
|
3074
|
+
# @!attribute [rw] name
|
3075
|
+
# @return [String]
|
3076
|
+
#
|
3077
|
+
# @!attribute [rw] description
|
3078
|
+
# @return [String]
|
3079
|
+
#
|
3080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceProfileDomainRequest AWS API Documentation
|
3081
|
+
#
|
3082
|
+
class UpdateVoiceProfileDomainRequest < Struct.new(
|
3083
|
+
:voice_profile_domain_id,
|
3084
|
+
:name,
|
3085
|
+
:description)
|
3086
|
+
SENSITIVE = []
|
3087
|
+
include Aws::Structure
|
3088
|
+
end
|
3089
|
+
|
3090
|
+
# @!attribute [rw] voice_profile_domain
|
3091
|
+
# @return [Types::VoiceProfileDomain]
|
3092
|
+
#
|
3093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceProfileDomainResponse AWS API Documentation
|
3094
|
+
#
|
3095
|
+
class UpdateVoiceProfileDomainResponse < Struct.new(
|
3096
|
+
:voice_profile_domain)
|
3097
|
+
SENSITIVE = []
|
3098
|
+
include Aws::Structure
|
3099
|
+
end
|
3100
|
+
|
3101
|
+
# @!attribute [rw] voice_profile_id
|
3102
|
+
# @return [String]
|
3103
|
+
#
|
3104
|
+
# @!attribute [rw] speaker_search_task_id
|
3105
|
+
# @return [String]
|
3106
|
+
#
|
3107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceProfileRequest AWS API Documentation
|
3108
|
+
#
|
3109
|
+
class UpdateVoiceProfileRequest < Struct.new(
|
3110
|
+
:voice_profile_id,
|
3111
|
+
:speaker_search_task_id)
|
3112
|
+
SENSITIVE = []
|
3113
|
+
include Aws::Structure
|
3114
|
+
end
|
3115
|
+
|
3116
|
+
# @!attribute [rw] voice_profile
|
3117
|
+
# @return [Types::VoiceProfile]
|
3118
|
+
#
|
3119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceProfileResponse AWS API Documentation
|
3120
|
+
#
|
3121
|
+
class UpdateVoiceProfileResponse < Struct.new(
|
3122
|
+
:voice_profile)
|
3123
|
+
SENSITIVE = []
|
3124
|
+
include Aws::Structure
|
3125
|
+
end
|
3126
|
+
|
2534
3127
|
# @!attribute [rw] aws_account_id
|
2535
3128
|
# @return [String]
|
2536
3129
|
#
|
@@ -2685,5 +3278,168 @@ module Aws::ChimeSDKVoice
|
|
2685
3278
|
include Aws::Structure
|
2686
3279
|
end
|
2687
3280
|
|
3281
|
+
# @!attribute [rw] voice_profile_id
|
3282
|
+
# @return [String]
|
3283
|
+
#
|
3284
|
+
# @!attribute [rw] voice_profile_arn
|
3285
|
+
# @return [String]
|
3286
|
+
#
|
3287
|
+
# @!attribute [rw] voice_profile_domain_id
|
3288
|
+
# @return [String]
|
3289
|
+
#
|
3290
|
+
# @!attribute [rw] created_timestamp
|
3291
|
+
# @return [Time]
|
3292
|
+
#
|
3293
|
+
# @!attribute [rw] updated_timestamp
|
3294
|
+
# @return [Time]
|
3295
|
+
#
|
3296
|
+
# @!attribute [rw] expiration_timestamp
|
3297
|
+
# @return [Time]
|
3298
|
+
#
|
3299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceProfile AWS API Documentation
|
3300
|
+
#
|
3301
|
+
class VoiceProfile < Struct.new(
|
3302
|
+
:voice_profile_id,
|
3303
|
+
:voice_profile_arn,
|
3304
|
+
:voice_profile_domain_id,
|
3305
|
+
:created_timestamp,
|
3306
|
+
:updated_timestamp,
|
3307
|
+
:expiration_timestamp)
|
3308
|
+
SENSITIVE = [:voice_profile_arn]
|
3309
|
+
include Aws::Structure
|
3310
|
+
end
|
3311
|
+
|
3312
|
+
# @!attribute [rw] voice_profile_domain_id
|
3313
|
+
# @return [String]
|
3314
|
+
#
|
3315
|
+
# @!attribute [rw] voice_profile_domain_arn
|
3316
|
+
# @return [String]
|
3317
|
+
#
|
3318
|
+
# @!attribute [rw] name
|
3319
|
+
# @return [String]
|
3320
|
+
#
|
3321
|
+
# @!attribute [rw] description
|
3322
|
+
# @return [String]
|
3323
|
+
#
|
3324
|
+
# @!attribute [rw] server_side_encryption_configuration
|
3325
|
+
# @return [Types::ServerSideEncryptionConfiguration]
|
3326
|
+
#
|
3327
|
+
# @!attribute [rw] created_timestamp
|
3328
|
+
# @return [Time]
|
3329
|
+
#
|
3330
|
+
# @!attribute [rw] updated_timestamp
|
3331
|
+
# @return [Time]
|
3332
|
+
#
|
3333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceProfileDomain AWS API Documentation
|
3334
|
+
#
|
3335
|
+
class VoiceProfileDomain < Struct.new(
|
3336
|
+
:voice_profile_domain_id,
|
3337
|
+
:voice_profile_domain_arn,
|
3338
|
+
:name,
|
3339
|
+
:description,
|
3340
|
+
:server_side_encryption_configuration,
|
3341
|
+
:created_timestamp,
|
3342
|
+
:updated_timestamp)
|
3343
|
+
SENSITIVE = [:voice_profile_domain_arn]
|
3344
|
+
include Aws::Structure
|
3345
|
+
end
|
3346
|
+
|
3347
|
+
# @!attribute [rw] voice_profile_domain_id
|
3348
|
+
# @return [String]
|
3349
|
+
#
|
3350
|
+
# @!attribute [rw] voice_profile_domain_arn
|
3351
|
+
# @return [String]
|
3352
|
+
#
|
3353
|
+
# @!attribute [rw] name
|
3354
|
+
# @return [String]
|
3355
|
+
#
|
3356
|
+
# @!attribute [rw] description
|
3357
|
+
# @return [String]
|
3358
|
+
#
|
3359
|
+
# @!attribute [rw] created_timestamp
|
3360
|
+
# @return [Time]
|
3361
|
+
#
|
3362
|
+
# @!attribute [rw] updated_timestamp
|
3363
|
+
# @return [Time]
|
3364
|
+
#
|
3365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceProfileDomainSummary AWS API Documentation
|
3366
|
+
#
|
3367
|
+
class VoiceProfileDomainSummary < Struct.new(
|
3368
|
+
:voice_profile_domain_id,
|
3369
|
+
:voice_profile_domain_arn,
|
3370
|
+
:name,
|
3371
|
+
:description,
|
3372
|
+
:created_timestamp,
|
3373
|
+
:updated_timestamp)
|
3374
|
+
SENSITIVE = [:voice_profile_domain_arn]
|
3375
|
+
include Aws::Structure
|
3376
|
+
end
|
3377
|
+
|
3378
|
+
# @!attribute [rw] voice_profile_id
|
3379
|
+
# @return [String]
|
3380
|
+
#
|
3381
|
+
# @!attribute [rw] voice_profile_arn
|
3382
|
+
# @return [String]
|
3383
|
+
#
|
3384
|
+
# @!attribute [rw] voice_profile_domain_id
|
3385
|
+
# @return [String]
|
3386
|
+
#
|
3387
|
+
# @!attribute [rw] created_timestamp
|
3388
|
+
# @return [Time]
|
3389
|
+
#
|
3390
|
+
# @!attribute [rw] updated_timestamp
|
3391
|
+
# @return [Time]
|
3392
|
+
#
|
3393
|
+
# @!attribute [rw] expiration_timestamp
|
3394
|
+
# @return [Time]
|
3395
|
+
#
|
3396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceProfileSummary AWS API Documentation
|
3397
|
+
#
|
3398
|
+
class VoiceProfileSummary < Struct.new(
|
3399
|
+
:voice_profile_id,
|
3400
|
+
:voice_profile_arn,
|
3401
|
+
:voice_profile_domain_id,
|
3402
|
+
:created_timestamp,
|
3403
|
+
:updated_timestamp,
|
3404
|
+
:expiration_timestamp)
|
3405
|
+
SENSITIVE = [:voice_profile_arn]
|
3406
|
+
include Aws::Structure
|
3407
|
+
end
|
3408
|
+
|
3409
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
3410
|
+
# @return [String]
|
3411
|
+
#
|
3412
|
+
# @!attribute [rw] voice_tone_analysis_task_status
|
3413
|
+
# @return [String]
|
3414
|
+
#
|
3415
|
+
# @!attribute [rw] call_details
|
3416
|
+
# @return [Types::CallDetails]
|
3417
|
+
#
|
3418
|
+
# @!attribute [rw] created_timestamp
|
3419
|
+
# @return [Time]
|
3420
|
+
#
|
3421
|
+
# @!attribute [rw] updated_timestamp
|
3422
|
+
# @return [Time]
|
3423
|
+
#
|
3424
|
+
# @!attribute [rw] started_timestamp
|
3425
|
+
# @return [Time]
|
3426
|
+
#
|
3427
|
+
# @!attribute [rw] status_message
|
3428
|
+
# @return [String]
|
3429
|
+
#
|
3430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceToneAnalysisTask AWS API Documentation
|
3431
|
+
#
|
3432
|
+
class VoiceToneAnalysisTask < Struct.new(
|
3433
|
+
:voice_tone_analysis_task_id,
|
3434
|
+
:voice_tone_analysis_task_status,
|
3435
|
+
:call_details,
|
3436
|
+
:created_timestamp,
|
3437
|
+
:updated_timestamp,
|
3438
|
+
:started_timestamp,
|
3439
|
+
:status_message)
|
3440
|
+
SENSITIVE = []
|
3441
|
+
include Aws::Structure
|
3442
|
+
end
|
3443
|
+
|
2688
3444
|
end
|
2689
3445
|
end
|