aws-sdk-voiceid 1.6.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20ca633512173178e66ca61e427c1db73b22d3ac8f29186e2e642023e06b71d8
4
- data.tar.gz: 29a280f2ba0948ebebbf9b380f7ff14b0b47e6e7891fac406713737336ce8a9e
3
+ metadata.gz: 4c20d5fbceb4777f274be91ae37e7cde116df726237cc21e4fc463ea6a2899bd
4
+ data.tar.gz: a9d2449bc9252ff4c622dca3f4cddc7949e8cba93d53e16ccb05189732c5f802
5
5
  SHA512:
6
- metadata.gz: 739f3a5c3a40da973ca2a8b3e8136fc52839d42f3c237c2d7ed748182aa9a3f4b489978da0b11a8af5462d2bcf78f292f71e5ecf481dbb12d719336ec4cbfdfc
7
- data.tar.gz: f7de43943ef13ee54584d8f60ea17b6f108db85ed7d311c526e21938a74d9c47c66f350a84c03b342a2ad1e9ad75c9c2c8db72802844e4c1b7e962e5ba28e888
6
+ metadata.gz: 3a7e90604207b512af531b04d7ce5393d03087174c14d6a4627ee1b6f58d8dd020fb75e0a72a4d0660336f88aae3ccfe53064ff450c29dc8a4155bccec9b9ee2
7
+ data.tar.gz: 780a6e9dcb6353912f0cd95af620bcf62d07d63e8bef4c7a91ff5f8494f0be5145555366b44c1ca7f70465187f10d9bc1a6f133c9950b417bac3c0a6e63d062d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2022-08-29)
5
+ ------------------
6
+
7
+ * Feature - Amazon Connect Voice ID now detects voice spoofing. When a prospective fraudster tries to spoof caller audio using audio playback or synthesized speech, Voice ID will return a risk score and outcome to indicate the how likely it is that the voice is spoofed.
8
+
9
+ 1.8.0 (2022-06-02)
10
+ ------------------
11
+
12
+ * Feature - Added a new attribute ServerSideEncryptionUpdateDetails to Domain and DomainSummary.
13
+
14
+ 1.7.0 (2022-05-25)
15
+ ------------------
16
+
17
+ * Feature - VoiceID will now automatically expire Speakers if they haven't been accessed for Enrollment, Re-enrollment or Successful Auth for three years. The Speaker APIs now return a "LastAccessedAt" time for Speakers, and the EvaluateSession API returns "SPEAKER_EXPIRED" Auth Decision for EXPIRED Speakers.
18
+
4
19
  1.6.0 (2022-02-24)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.9.0
@@ -372,16 +372,16 @@ module Aws::VoiceID
372
372
  # not need to pass this option.**
373
373
  #
374
374
  # @option params [String] :description
375
- # A brief description of this domain.
375
+ # A brief description of the domain.
376
376
  #
377
377
  # @option params [required, String] :name
378
378
  # The name of the domain.
379
379
  #
380
380
  # @option params [required, Types::ServerSideEncryptionConfiguration] :server_side_encryption_configuration
381
- # The configuration, containing the KMS Key Identifier, to be used by
381
+ # The configuration, containing the KMS key identifier, to be used by
382
382
  # Voice ID for the server-side encryption of your data. Refer to [
383
- # Amazon Connect VoiceID encryption at rest][1] for more details on how
384
- # the KMS Key is used.
383
+ # Amazon Connect Voice ID encryption at rest][1] for more details on how
384
+ # the KMS key is used.
385
385
  #
386
386
  #
387
387
  #
@@ -420,6 +420,9 @@ module Aws::VoiceID
420
420
  # resp.domain.domain_status #=> String, one of "ACTIVE", "PENDING", "SUSPENDED"
421
421
  # resp.domain.name #=> String
422
422
  # resp.domain.server_side_encryption_configuration.kms_key_id #=> String
423
+ # resp.domain.server_side_encryption_update_details.message #=> String
424
+ # resp.domain.server_side_encryption_update_details.old_kms_key_id #=> String
425
+ # resp.domain.server_side_encryption_update_details.update_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
423
426
  # resp.domain.updated_at #=> Time
424
427
  #
425
428
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/CreateDomain AWS API Documentation
@@ -431,7 +434,7 @@ module Aws::VoiceID
431
434
  req.send_request(options)
432
435
  end
433
436
 
434
- # Deletes the specified domain from the Amazon Connect Voice ID system.
437
+ # Deletes the specified domain from Voice ID.
435
438
  #
436
439
  # @option params [required, String] :domain_id
437
440
  # The identifier of the domain you want to delete.
@@ -453,8 +456,7 @@ module Aws::VoiceID
453
456
  req.send_request(options)
454
457
  end
455
458
 
456
- # Deletes the specified fraudster from the Amazon Connect Voice ID
457
- # system.
459
+ # Deletes the specified fraudster from Voice ID.
458
460
  #
459
461
  # @option params [required, String] :domain_id
460
462
  # The identifier of the domain containing the fraudster.
@@ -480,7 +482,7 @@ module Aws::VoiceID
480
482
  req.send_request(options)
481
483
  end
482
484
 
483
- # Deletes the specified speaker from the Amazon Connect Voice ID system.
485
+ # Deletes the specified speaker from Voice ID.
484
486
  #
485
487
  # @option params [required, String] :domain_id
486
488
  # The identifier of the domain containing the speaker.
@@ -530,6 +532,9 @@ module Aws::VoiceID
530
532
  # resp.domain.domain_status #=> String, one of "ACTIVE", "PENDING", "SUSPENDED"
531
533
  # resp.domain.name #=> String
532
534
  # resp.domain.server_side_encryption_configuration.kms_key_id #=> String
535
+ # resp.domain.server_side_encryption_update_details.message #=> String
536
+ # resp.domain.server_side_encryption_update_details.old_kms_key_id #=> String
537
+ # resp.domain.server_side_encryption_update_details.update_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
533
538
  # resp.domain.updated_at #=> Time
534
539
  #
535
540
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/DescribeDomain AWS API Documentation
@@ -647,6 +652,7 @@ module Aws::VoiceID
647
652
  # resp.speaker.customer_speaker_id #=> String
648
653
  # resp.speaker.domain_id #=> String
649
654
  # resp.speaker.generated_speaker_id #=> String
655
+ # resp.speaker.last_accessed_at #=> Time
650
656
  # resp.speaker.status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
651
657
  # resp.speaker.updated_at #=> Time
652
658
  #
@@ -739,7 +745,7 @@ module Aws::VoiceID
739
745
  # resp.authentication_result.authentication_result_id #=> String
740
746
  # resp.authentication_result.configuration.acceptance_threshold #=> Integer
741
747
  # resp.authentication_result.customer_speaker_id #=> String
742
- # resp.authentication_result.decision #=> String, one of "ACCEPT", "REJECT", "NOT_ENOUGH_SPEECH", "SPEAKER_NOT_ENROLLED", "SPEAKER_OPTED_OUT", "SPEAKER_ID_NOT_PROVIDED"
748
+ # resp.authentication_result.decision #=> String, one of "ACCEPT", "REJECT", "NOT_ENOUGH_SPEECH", "SPEAKER_NOT_ENROLLED", "SPEAKER_OPTED_OUT", "SPEAKER_ID_NOT_PROVIDED", "SPEAKER_EXPIRED"
743
749
  # resp.authentication_result.generated_speaker_id #=> String
744
750
  # resp.authentication_result.score #=> Integer
745
751
  # resp.domain_id #=> String
@@ -749,9 +755,10 @@ module Aws::VoiceID
749
755
  # resp.fraud_detection_result.decision #=> String, one of "HIGH_RISK", "LOW_RISK", "NOT_ENOUGH_SPEECH"
750
756
  # resp.fraud_detection_result.fraud_detection_result_id #=> String
751
757
  # resp.fraud_detection_result.reasons #=> Array
752
- # resp.fraud_detection_result.reasons[0] #=> String, one of "KNOWN_FRAUDSTER"
758
+ # resp.fraud_detection_result.reasons[0] #=> String, one of "KNOWN_FRAUDSTER", "VOICE_SPOOFING"
753
759
  # resp.fraud_detection_result.risk_details.known_fraudster_risk.generated_fraudster_id #=> String
754
760
  # resp.fraud_detection_result.risk_details.known_fraudster_risk.risk_score #=> Integer
761
+ # resp.fraud_detection_result.risk_details.voice_spoofing_risk.risk_score #=> Integer
755
762
  # resp.session_id #=> String
756
763
  # resp.session_name #=> String
757
764
  # resp.streaming_status #=> String, one of "PENDING_CONFIGURATION", "ONGOING", "ENDED"
@@ -768,9 +775,7 @@ module Aws::VoiceID
768
775
  # Lists all the domains in the Amazon Web Services account.
769
776
  #
770
777
  # @option params [Integer] :max_results
771
- # The maximum number of results that are returned per call. You can use
772
- # `NextToken` to obtain further pages of results. The default is 100;
773
- # the maximum allowed page size is also 100.
778
+ # The maximum number of domains to list per API call.
774
779
  #
775
780
  # @option params [String] :next_token
776
781
  # If `NextToken` is returned, there are more results available. The
@@ -803,6 +808,9 @@ module Aws::VoiceID
803
808
  # resp.domain_summaries[0].domain_status #=> String, one of "ACTIVE", "PENDING", "SUSPENDED"
804
809
  # resp.domain_summaries[0].name #=> String
805
810
  # resp.domain_summaries[0].server_side_encryption_configuration.kms_key_id #=> String
811
+ # resp.domain_summaries[0].server_side_encryption_update_details.message #=> String
812
+ # resp.domain_summaries[0].server_side_encryption_update_details.old_kms_key_id #=> String
813
+ # resp.domain_summaries[0].server_side_encryption_update_details.update_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
806
814
  # resp.domain_summaries[0].updated_at #=> Time
807
815
  # resp.next_token #=> String
808
816
  #
@@ -978,6 +986,7 @@ module Aws::VoiceID
978
986
  # resp.speaker_summaries[0].customer_speaker_id #=> String
979
987
  # resp.speaker_summaries[0].domain_id #=> String
980
988
  # resp.speaker_summaries[0].generated_speaker_id #=> String
989
+ # resp.speaker_summaries[0].last_accessed_at #=> Time
981
990
  # resp.speaker_summaries[0].status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
982
991
  # resp.speaker_summaries[0].updated_at #=> Time
983
992
  #
@@ -1021,13 +1030,13 @@ module Aws::VoiceID
1021
1030
  req.send_request(options)
1022
1031
  end
1023
1032
 
1024
- # Opts out a speaker from Voice ID system. A speaker can be opted out
1025
- # regardless of whether or not they already exist in the system. If they
1033
+ # Opts out a speaker from Voice ID. A speaker can be opted out
1034
+ # regardless of whether or not they already exist in Voice ID. If they
1026
1035
  # don't yet exist, a new speaker is created in an opted out state. If
1027
1036
  # they already exist, their existing status is overridden and they are
1028
1037
  # opted out. Enrollment and evaluation authentication requests are
1029
1038
  # rejected for opted out speakers, and opted out speakers have no voice
1030
- # embeddings stored in the system.
1039
+ # embeddings stored in Voice ID.
1031
1040
  #
1032
1041
  # @option params [required, String] :domain_id
1033
1042
  # The identifier of the domain containing the speaker.
@@ -1052,6 +1061,7 @@ module Aws::VoiceID
1052
1061
  # resp.speaker.customer_speaker_id #=> String
1053
1062
  # resp.speaker.domain_id #=> String
1054
1063
  # resp.speaker.generated_speaker_id #=> String
1064
+ # resp.speaker.last_accessed_at #=> Time
1055
1065
  # resp.speaker.status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
1056
1066
  # resp.speaker.updated_at #=> Time
1057
1067
  #
@@ -1097,7 +1107,7 @@ module Aws::VoiceID
1097
1107
  #
1098
1108
  # @option params [required, Types::OutputDataConfig] :output_data_config
1099
1109
  # The output data config containing the S3 location where Voice ID
1100
- # writes the job output file; you must also include a KMS Key ID to
1110
+ # writes the job output file; you must also include a KMS key ID to
1101
1111
  # encrypt the file.
1102
1112
  #
1103
1113
  # @option params [Types::RegistrationConfig] :registration_config
@@ -1169,8 +1179,8 @@ module Aws::VoiceID
1169
1179
  # The IAM role Amazon Resource Name (ARN) that grants Voice ID
1170
1180
  # permissions to access customer's buckets to read the input manifest
1171
1181
  # file and write the job output file. Refer to [Batch enrollment using
1172
- # audio data from prior calls][1] documentation for the permissions
1173
- # needed in this role.
1182
+ # audio data from prior calls][1] for the permissions needed in this
1183
+ # role.
1174
1184
  #
1175
1185
  #
1176
1186
  #
@@ -1182,8 +1192,8 @@ module Aws::VoiceID
1182
1192
  #
1183
1193
  # @option params [Types::EnrollmentConfig] :enrollment_config
1184
1194
  # The enrollment config that contains details such as the action to take
1185
- # when a speaker is already enrolled in the Voice ID system or when a
1186
- # speaker is identified as a fraudster.
1195
+ # when a speaker is already enrolled in Voice ID or when a speaker is
1196
+ # identified as a fraudster.
1187
1197
  #
1188
1198
  # @option params [required, Types::InputDataConfig] :input_data_config
1189
1199
  # The input data config containing the S3 location for the input
@@ -1194,7 +1204,7 @@ module Aws::VoiceID
1194
1204
  #
1195
1205
  # @option params [required, Types::OutputDataConfig] :output_data_config
1196
1206
  # The output data config containing the S3 location where Voice ID
1197
- # writes the job output file; you must also include a KMS Key ID to
1207
+ # writes the job output file; you must also include a KMS key ID to
1198
1208
  # encrypt the file.
1199
1209
  #
1200
1210
  # @return [Types::StartSpeakerEnrollmentJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -1252,8 +1262,7 @@ module Aws::VoiceID
1252
1262
  req.send_request(options)
1253
1263
  end
1254
1264
 
1255
- # Tags an Amazon Connect Voice ID resource with the provided list of
1256
- # tags.
1265
+ # Tags a Voice ID resource with the provided list of tags.
1257
1266
  #
1258
1267
  # @option params [required, String] :resource_arn
1259
1268
  # The Amazon Resource Name (ARN) of the Voice ID resource you want to
@@ -1318,7 +1327,7 @@ module Aws::VoiceID
1318
1327
  # 'Description' is not provided, it is removed from the domain.
1319
1328
  #
1320
1329
  # @option params [String] :description
1321
- # A brief description about this domain.
1330
+ # A brief description of the domain.
1322
1331
  #
1323
1332
  # @option params [required, String] :domain_id
1324
1333
  # The identifier of the domain to be updated.
@@ -1327,11 +1336,13 @@ module Aws::VoiceID
1327
1336
  # The name of the domain.
1328
1337
  #
1329
1338
  # @option params [required, Types::ServerSideEncryptionConfiguration] :server_side_encryption_configuration
1330
- # The configuration, containing the KMS Key Identifier, to be used by
1331
- # Voice ID for the server-side encryption of your data. Note that all
1332
- # the existing data in the domain are still encrypted using the existing
1333
- # key, only the data added to domain after updating the key is encrypted
1334
- # using the new key.
1339
+ # The configuration, containing the KMS key identifier, to be used by
1340
+ # Voice ID for the server-side encryption of your data. Changing the
1341
+ # domain's associated KMS key immediately triggers an asynchronous
1342
+ # process to remove dependency on the old KMS key, such that the
1343
+ # domain's data can only be accessed using the new KMS key. The
1344
+ # domain's `ServerSideEncryptionUpdateDetails` contains the details for
1345
+ # this process.
1335
1346
  #
1336
1347
  # @return [Types::UpdateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1337
1348
  #
@@ -1357,6 +1368,9 @@ module Aws::VoiceID
1357
1368
  # resp.domain.domain_status #=> String, one of "ACTIVE", "PENDING", "SUSPENDED"
1358
1369
  # resp.domain.name #=> String
1359
1370
  # resp.domain.server_side_encryption_configuration.kms_key_id #=> String
1371
+ # resp.domain.server_side_encryption_update_details.message #=> String
1372
+ # resp.domain.server_side_encryption_update_details.old_kms_key_id #=> String
1373
+ # resp.domain.server_side_encryption_update_details.update_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
1360
1374
  # resp.domain.updated_at #=> Time
1361
1375
  #
1362
1376
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/UpdateDomain AWS API Documentation
@@ -1381,7 +1395,7 @@ module Aws::VoiceID
1381
1395
  params: params,
1382
1396
  config: config)
1383
1397
  context[:gem_name] = 'aws-sdk-voiceid'
1384
- context[:gem_version] = '1.6.0'
1398
+ context[:gem_version] = '1.9.0'
1385
1399
  Seahorse::Client::Request.new(handlers, context)
1386
1400
  end
1387
1401
 
@@ -98,6 +98,8 @@ module Aws::VoiceID
98
98
  S3Uri = Shapes::StringShape.new(name: 'S3Uri')
99
99
  Score = Shapes::IntegerShape.new(name: 'Score')
100
100
  ServerSideEncryptionConfiguration = Shapes::StructureShape.new(name: 'ServerSideEncryptionConfiguration')
101
+ ServerSideEncryptionUpdateDetails = Shapes::StructureShape.new(name: 'ServerSideEncryptionUpdateDetails')
102
+ ServerSideEncryptionUpdateStatus = Shapes::StringShape.new(name: 'ServerSideEncryptionUpdateStatus')
101
103
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
102
104
  SessionId = Shapes::StringShape.new(name: 'SessionId')
103
105
  SessionName = Shapes::StringShape.new(name: 'SessionName')
@@ -132,6 +134,7 @@ module Aws::VoiceID
132
134
  UpdateDomainRequest = Shapes::StructureShape.new(name: 'UpdateDomainRequest')
133
135
  UpdateDomainResponse = Shapes::StructureShape.new(name: 'UpdateDomainResponse')
134
136
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
137
+ VoiceSpoofingRisk = Shapes::StructureShape.new(name: 'VoiceSpoofingRisk')
135
138
 
136
139
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
137
140
  AccessDeniedException.struct_class = Types::AccessDeniedException
@@ -215,6 +218,7 @@ module Aws::VoiceID
215
218
  Domain.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
216
219
  Domain.add_member(:name, Shapes::ShapeRef.new(shape: DomainName, location_name: "Name"))
217
220
  Domain.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "ServerSideEncryptionConfiguration"))
221
+ Domain.add_member(:server_side_encryption_update_details, Shapes::ShapeRef.new(shape: ServerSideEncryptionUpdateDetails, location_name: "ServerSideEncryptionUpdateDetails"))
218
222
  Domain.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
219
223
  Domain.struct_class = Types::Domain
220
224
 
@@ -227,6 +231,7 @@ module Aws::VoiceID
227
231
  DomainSummary.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
228
232
  DomainSummary.add_member(:name, Shapes::ShapeRef.new(shape: DomainName, location_name: "Name"))
229
233
  DomainSummary.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "ServerSideEncryptionConfiguration"))
234
+ DomainSummary.add_member(:server_side_encryption_update_details, Shapes::ShapeRef.new(shape: ServerSideEncryptionUpdateDetails, location_name: "ServerSideEncryptionUpdateDetails"))
230
235
  DomainSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
231
236
  DomainSummary.struct_class = Types::DomainSummary
232
237
 
@@ -269,6 +274,7 @@ module Aws::VoiceID
269
274
  FraudDetectionResult.struct_class = Types::FraudDetectionResult
270
275
 
271
276
  FraudRiskDetails.add_member(:known_fraudster_risk, Shapes::ShapeRef.new(shape: KnownFraudsterRisk, required: true, location_name: "KnownFraudsterRisk"))
277
+ FraudRiskDetails.add_member(:voice_spoofing_risk, Shapes::ShapeRef.new(shape: VoiceSpoofingRisk, required: true, location_name: "VoiceSpoofingRisk"))
272
278
  FraudRiskDetails.struct_class = Types::FraudRiskDetails
273
279
 
274
280
  Fraudster.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
@@ -380,6 +386,11 @@ module Aws::VoiceID
380
386
  ServerSideEncryptionConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, required: true, location_name: "KmsKeyId"))
381
387
  ServerSideEncryptionConfiguration.struct_class = Types::ServerSideEncryptionConfiguration
382
388
 
389
+ ServerSideEncryptionUpdateDetails.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
390
+ ServerSideEncryptionUpdateDetails.add_member(:old_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "OldKmsKeyId"))
391
+ ServerSideEncryptionUpdateDetails.add_member(:update_status, Shapes::ShapeRef.new(shape: ServerSideEncryptionUpdateStatus, location_name: "UpdateStatus"))
392
+ ServerSideEncryptionUpdateDetails.struct_class = Types::ServerSideEncryptionUpdateDetails
393
+
383
394
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
384
395
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
385
396
 
@@ -387,6 +398,7 @@ module Aws::VoiceID
387
398
  Speaker.add_member(:customer_speaker_id, Shapes::ShapeRef.new(shape: CustomerSpeakerId, location_name: "CustomerSpeakerId"))
388
399
  Speaker.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
389
400
  Speaker.add_member(:generated_speaker_id, Shapes::ShapeRef.new(shape: GeneratedSpeakerId, location_name: "GeneratedSpeakerId"))
401
+ Speaker.add_member(:last_accessed_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastAccessedAt"))
390
402
  Speaker.add_member(:status, Shapes::ShapeRef.new(shape: SpeakerStatus, location_name: "Status"))
391
403
  Speaker.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
392
404
  Speaker.struct_class = Types::Speaker
@@ -423,6 +435,7 @@ module Aws::VoiceID
423
435
  SpeakerSummary.add_member(:customer_speaker_id, Shapes::ShapeRef.new(shape: CustomerSpeakerId, location_name: "CustomerSpeakerId"))
424
436
  SpeakerSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
425
437
  SpeakerSummary.add_member(:generated_speaker_id, Shapes::ShapeRef.new(shape: GeneratedSpeakerId, location_name: "GeneratedSpeakerId"))
438
+ SpeakerSummary.add_member(:last_accessed_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastAccessedAt"))
426
439
  SpeakerSummary.add_member(:status, Shapes::ShapeRef.new(shape: SpeakerStatus, location_name: "Status"))
427
440
  SpeakerSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
428
441
  SpeakerSummary.struct_class = Types::SpeakerSummary
@@ -486,6 +499,9 @@ module Aws::VoiceID
486
499
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
487
500
  ValidationException.struct_class = Types::ValidationException
488
501
 
502
+ VoiceSpoofingRisk.add_member(:risk_score, Shapes::ShapeRef.new(shape: Score, required: true, location_name: "RiskScore"))
503
+ VoiceSpoofingRisk.struct_class = Types::VoiceSpoofingRisk
504
+
489
505
 
490
506
  # @api private
491
507
  API = Seahorse::Model::Api.new.tap do |api|
@@ -542,6 +558,7 @@ module Aws::VoiceID
542
558
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
543
559
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
544
560
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
561
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
545
562
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
546
563
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
547
564
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -634,6 +651,7 @@ module Aws::VoiceID
634
651
  o.output = Shapes::ShapeRef.new(shape: EvaluateSessionResponse)
635
652
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
636
653
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
654
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
637
655
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
638
656
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
639
657
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -733,6 +751,7 @@ module Aws::VoiceID
733
751
  o.http_request_uri = "/"
734
752
  o.input = Shapes::ShapeRef.new(shape: OptOutSpeakerRequest)
735
753
  o.output = Shapes::ShapeRef.new(shape: OptOutSpeakerResponse)
754
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
736
755
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
737
756
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
738
757
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
@@ -167,7 +167,7 @@ module Aws::VoiceID
167
167
  # @return [String]
168
168
  #
169
169
  # @!attribute [rw] description
170
- # A brief description of this domain.
170
+ # A brief description of the domain.
171
171
  # @return [String]
172
172
  #
173
173
  # @!attribute [rw] name
@@ -175,10 +175,10 @@ module Aws::VoiceID
175
175
  # @return [String]
176
176
  #
177
177
  # @!attribute [rw] server_side_encryption_configuration
178
- # The configuration, containing the KMS Key Identifier, to be used by
178
+ # The configuration, containing the KMS key identifier, to be used by
179
179
  # Voice ID for the server-side encryption of your data. Refer to [
180
- # Amazon Connect VoiceID encryption at rest][1] for more details on
181
- # how the KMS Key is used.
180
+ # Amazon Connect Voice ID encryption at rest][1] for more details on
181
+ # how the KMS key is used.
182
182
  #
183
183
  #
184
184
  #
@@ -490,10 +490,18 @@ module Aws::VoiceID
490
490
  # @return [String]
491
491
  #
492
492
  # @!attribute [rw] server_side_encryption_configuration
493
- # The server-side encryption configuration containing the KMS Key
494
- # Identifier you want Voice ID to use to encrypt your data.
493
+ # The server-side encryption configuration containing the KMS key
494
+ # identifier you want Voice ID to use to encrypt your data.
495
495
  # @return [Types::ServerSideEncryptionConfiguration]
496
496
  #
497
+ # @!attribute [rw] server_side_encryption_update_details
498
+ # Details about the most recent server-side encryption configuration
499
+ # update. When the server-side encryption configuration is changed,
500
+ # dependency on the old KMS key is removed through an asynchronous
501
+ # process. When this update is complete, the domain's data can only
502
+ # be accessed using the new KMS key.
503
+ # @return [Types::ServerSideEncryptionUpdateDetails]
504
+ #
497
505
  # @!attribute [rw] updated_at
498
506
  # The timestamp showing the domain's last update.
499
507
  # @return [Time]
@@ -508,6 +516,7 @@ module Aws::VoiceID
508
516
  :domain_status,
509
517
  :name,
510
518
  :server_side_encryption_configuration,
519
+ :server_side_encryption_update_details,
511
520
  :updated_at)
512
521
  SENSITIVE = [:description, :name]
513
522
  include Aws::Structure
@@ -540,10 +549,18 @@ module Aws::VoiceID
540
549
  # @return [String]
541
550
  #
542
551
  # @!attribute [rw] server_side_encryption_configuration
543
- # The server-side encryption configuration containing the KMS Key
544
- # Identifier you want Voice ID to use to encrypt your data..
552
+ # The server-side encryption configuration containing the KMS key
553
+ # identifier you want Voice ID to use to encrypt your data.
545
554
  # @return [Types::ServerSideEncryptionConfiguration]
546
555
  #
556
+ # @!attribute [rw] server_side_encryption_update_details
557
+ # Details about the most recent server-side encryption configuration
558
+ # update. When the server-side encryption configuration is changed,
559
+ # dependency on the old KMS key is removed through an asynchronous
560
+ # process. When this update is complete, the domain's data can only
561
+ # be accessed using the new KMS key.
562
+ # @return [Types::ServerSideEncryptionUpdateDetails]
563
+ #
547
564
  # @!attribute [rw] updated_at
548
565
  # The timestamp showing the domain's last update.
549
566
  # @return [Time]
@@ -558,6 +575,7 @@ module Aws::VoiceID
558
575
  :domain_status,
559
576
  :name,
560
577
  :server_side_encryption_configuration,
578
+ :server_side_encryption_update_details,
561
579
  :updated_at)
562
580
  SENSITIVE = [:description, :name]
563
581
  include Aws::Structure
@@ -690,7 +708,7 @@ module Aws::VoiceID
690
708
  # Detection results are empty or the decision is `NOT_ENOUGH_SPEECH`.
691
709
  # In this situation, if the `StreamingStatus` is
692
710
  # `ONGOING/PENDING_CONFIGURATION`, it can mean that the client should
693
- # call the API again later, once Voice ID has enough audio to produce
711
+ # call the API again later, after Voice ID has enough audio to produce
694
712
  # a result. If the decision remains `NOT_ENOUGH_SPEECH` even after
695
713
  # `StreamingStatus` is `ENDED`, it means that the previously streamed
696
714
  # session did not have enough speech to perform evaluation, and a new
@@ -781,11 +799,13 @@ module Aws::VoiceID
781
799
  # @!attribute [rw] reasons
782
800
  # The reason speaker was flagged by the fraud detection system. This
783
801
  # is only be populated if fraud detection Decision is `HIGH_RISK`, and
784
- # only has one possible value: `KNOWN_FRAUDSTER`.
802
+ # the following possible values: `KNOWN_FRAUDSTER` and
803
+ # `VOICE_SPOOFING`.
785
804
  # @return [Array<String>]
786
805
  #
787
806
  # @!attribute [rw] risk_details
788
- # Details about each risk analyzed for this speaker.
807
+ # Details about each risk analyzed for this speaker. Currently, this
808
+ # contains KnownFraudsterRisk and VoiceSpoofingRisk details.
789
809
  # @return [Types::FraudRiskDetails]
790
810
  #
791
811
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/FraudDetectionResult AWS API Documentation
@@ -810,10 +830,16 @@ module Aws::VoiceID
810
830
  # speaker.
811
831
  # @return [Types::KnownFraudsterRisk]
812
832
  #
833
+ # @!attribute [rw] voice_spoofing_risk
834
+ # The details resulting from 'Voice Spoofing Risk' analysis of the
835
+ # speaker.
836
+ # @return [Types::VoiceSpoofingRisk]
837
+ #
813
838
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/FraudRiskDetails AWS API Documentation
814
839
  #
815
840
  class FraudRiskDetails < Struct.new(
816
- :known_fraudster_risk)
841
+ :known_fraudster_risk,
842
+ :voice_spoofing_risk)
817
843
  SENSITIVE = []
818
844
  include Aws::Structure
819
845
  end
@@ -882,7 +908,7 @@ module Aws::VoiceID
882
908
  # @return [String]
883
909
  #
884
910
  # @!attribute [rw] job_name
885
- # The client-provied name for the fraudster registration job.
911
+ # The client-provided name for the fraudster registration job.
886
912
  # @return [String]
887
913
  #
888
914
  # @!attribute [rw] job_progress
@@ -897,7 +923,7 @@ module Aws::VoiceID
897
923
  # @!attribute [rw] output_data_config
898
924
  # The output data config containing the S3 location where you want
899
925
  # Voice ID to write your job output file; you must also include a KMS
900
- # Key ID in order to encrypt the file.
926
+ # key ID in order to encrypt the file.
901
927
  # @return [Types::OutputDataConfig]
902
928
  #
903
929
  # @!attribute [rw] registration_config
@@ -953,7 +979,7 @@ module Aws::VoiceID
953
979
  # @return [String]
954
980
  #
955
981
  # @!attribute [rw] job_name
956
- # The client-provied name for the fraudster registration job.
982
+ # The client-provided name for the fraudster registration job.
957
983
  # @return [String]
958
984
  #
959
985
  # @!attribute [rw] job_progress
@@ -1063,9 +1089,7 @@ module Aws::VoiceID
1063
1089
  # }
1064
1090
  #
1065
1091
  # @!attribute [rw] max_results
1066
- # The maximum number of results that are returned per call. You can
1067
- # use `NextToken` to obtain further pages of results. The default is
1068
- # 100; the maximum allowed page size is also 100.
1092
+ # The maximum number of domains to list per API call.
1069
1093
  # @return [Integer]
1070
1094
  #
1071
1095
  # @!attribute [rw] next_token
@@ -1377,14 +1401,15 @@ module Aws::VoiceID
1377
1401
  # }
1378
1402
  #
1379
1403
  # @!attribute [rw] kms_key_id
1380
- # the identifier of the KMS key you want Voice ID to use to encrypt
1381
- # the output file of the fraudster registration job.
1404
+ # The identifier of the KMS key you want Voice ID to use to encrypt
1405
+ # the output file of a speaker enrollment job/fraudster registration
1406
+ # job.
1382
1407
  # @return [String]
1383
1408
  #
1384
1409
  # @!attribute [rw] s3_uri
1385
- # The S3 path of the folder to which Voice ID writes the job output
1386
- # file, which has a `*.out` extension. For example, if the input file
1387
- # name is `input-file.json` and the output folder path is
1410
+ # The S3 path of the folder where Voice ID writes the job output file.
1411
+ # It has a `*.out` extension. For example, if the input file name is
1412
+ # `input-file.json` and the output folder path is
1388
1413
  # `s3://output-bucket/output-folder`, the full output file path is
1389
1414
  # `s3://output-bucket/output-folder/job-Id/input-file.json.out`.
1390
1415
  # @return [String]
@@ -1398,7 +1423,7 @@ module Aws::VoiceID
1398
1423
  include Aws::Structure
1399
1424
  end
1400
1425
 
1401
- # The configuration definining the action to take when a duplicate
1426
+ # The configuration defining the action to take when a duplicate
1402
1427
  # fraudster is detected, and the similarity threshold to use for
1403
1428
  # detecting a duplicate fraudster during a batch fraudster registration
1404
1429
  # job.
@@ -1453,8 +1478,8 @@ module Aws::VoiceID
1453
1478
  include Aws::Structure
1454
1479
  end
1455
1480
 
1456
- # The configuration containing information about the customer-managed
1457
- # KMS Key used for encrypting customer data.
1481
+ # The configuration containing information about the customer managed
1482
+ # key used for encrypting customer data.
1458
1483
  #
1459
1484
  # @note When making an API call, you may pass ServerSideEncryptionConfiguration
1460
1485
  # data as a hash:
@@ -1464,8 +1489,8 @@ module Aws::VoiceID
1464
1489
  # }
1465
1490
  #
1466
1491
  # @!attribute [rw] kms_key_id
1467
- # The identifier of the KMS Key you want Voice ID to use to encrypt
1468
- # your data.
1492
+ # The identifier of the KMS key to use to encrypt data stored by Voice
1493
+ # ID. Voice ID doesn't support asymmetric customer managed keys.
1469
1494
  # @return [String]
1470
1495
  #
1471
1496
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/ServerSideEncryptionConfiguration AWS API Documentation
@@ -1476,6 +1501,41 @@ module Aws::VoiceID
1476
1501
  include Aws::Structure
1477
1502
  end
1478
1503
 
1504
+ # Details about the most recent server-side encryption configuration
1505
+ # update. When the server-side encryption configuration is changed,
1506
+ # dependency on the old KMS key is removed through an asynchronous
1507
+ # process. When this update is complete, the domain’s data can only be
1508
+ # accessed using the new KMS key.
1509
+ #
1510
+ # @!attribute [rw] message
1511
+ # Message explaining the current UpdateStatus. When the UpdateStatus
1512
+ # is FAILED, this message explains the cause of the failure.
1513
+ # @return [String]
1514
+ #
1515
+ # @!attribute [rw] old_kms_key_id
1516
+ # The previous KMS key ID the domain was encrypted with, before
1517
+ # ServerSideEncryptionConfiguration was updated to a new KMS key ID.
1518
+ # @return [String]
1519
+ #
1520
+ # @!attribute [rw] update_status
1521
+ # Status of the server-side encryption update. During an update, if
1522
+ # there is an issue with the domain's current or old KMS key ID, such
1523
+ # as an inaccessible or disabled key, then the status is FAILED. In
1524
+ # order to resolve this, the key needs to be made accessible, and then
1525
+ # an UpdateDomain call with the existing server-side encryption
1526
+ # configuration will re-attempt this update process.
1527
+ # @return [String]
1528
+ #
1529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/ServerSideEncryptionUpdateDetails AWS API Documentation
1530
+ #
1531
+ class ServerSideEncryptionUpdateDetails < Struct.new(
1532
+ :message,
1533
+ :old_kms_key_id,
1534
+ :update_status)
1535
+ SENSITIVE = []
1536
+ include Aws::Structure
1537
+ end
1538
+
1479
1539
  # The request exceeded the service quota. Refer to [Voice ID Service
1480
1540
  # Quotas][1] and try your request again.
1481
1541
  #
@@ -1512,6 +1572,12 @@ module Aws::VoiceID
1512
1572
  # The service-generated identifier for the speaker.
1513
1573
  # @return [String]
1514
1574
  #
1575
+ # @!attribute [rw] last_accessed_at
1576
+ # The timestamp when the speaker was last accessed for enrollment,
1577
+ # re-enrollment or a successful authentication. This timestamp is
1578
+ # accurate to one hour.
1579
+ # @return [Time]
1580
+ #
1515
1581
  # @!attribute [rw] status
1516
1582
  # The current status of the speaker.
1517
1583
  # @return [String]
@@ -1527,6 +1593,7 @@ module Aws::VoiceID
1527
1593
  :customer_speaker_id,
1528
1594
  :domain_id,
1529
1595
  :generated_speaker_id,
1596
+ :last_accessed_at,
1530
1597
  :status,
1531
1598
  :updated_at)
1532
1599
  SENSITIVE = [:customer_speaker_id]
@@ -1592,7 +1659,7 @@ module Aws::VoiceID
1592
1659
  #
1593
1660
  # @!attribute [rw] output_data_config
1594
1661
  # The output data config containing the S3 location where Voice ID
1595
- # writes the job output file; you must also include a KMS Key ID to
1662
+ # writes the job output file; you must also include a KMS key ID to
1596
1663
  # encrypt the file.
1597
1664
  # @return [Types::OutputDataConfig]
1598
1665
  #
@@ -1689,6 +1756,12 @@ module Aws::VoiceID
1689
1756
  # The service-generated identifier for the speaker.
1690
1757
  # @return [String]
1691
1758
  #
1759
+ # @!attribute [rw] last_accessed_at
1760
+ # The timestamp when the speaker was last accessed for enrollment,
1761
+ # re-enrollment or a successful authentication. This timestamp is
1762
+ # accurate to one hour.
1763
+ # @return [Time]
1764
+ #
1692
1765
  # @!attribute [rw] status
1693
1766
  # The current status of the speaker.
1694
1767
  # @return [String]
@@ -1704,6 +1777,7 @@ module Aws::VoiceID
1704
1777
  :customer_speaker_id,
1705
1778
  :domain_id,
1706
1779
  :generated_speaker_id,
1780
+ :last_accessed_at,
1707
1781
  :status,
1708
1782
  :updated_at)
1709
1783
  SENSITIVE = [:customer_speaker_id]
@@ -1767,7 +1841,7 @@ module Aws::VoiceID
1767
1841
  #
1768
1842
  # @!attribute [rw] output_data_config
1769
1843
  # The output data config containing the S3 location where Voice ID
1770
- # writes the job output file; you must also include a KMS Key ID to
1844
+ # writes the job output file; you must also include a KMS key ID to
1771
1845
  # encrypt the file.
1772
1846
  # @return [Types::OutputDataConfig]
1773
1847
  #
@@ -1839,8 +1913,8 @@ module Aws::VoiceID
1839
1913
  # The IAM role Amazon Resource Name (ARN) that grants Voice ID
1840
1914
  # permissions to access customer's buckets to read the input manifest
1841
1915
  # file and write the job output file. Refer to [Batch enrollment using
1842
- # audio data from prior calls][1] documentation for the permissions
1843
- # needed in this role.
1916
+ # audio data from prior calls][1] for the permissions needed in this
1917
+ # role.
1844
1918
  #
1845
1919
  #
1846
1920
  #
@@ -1854,8 +1928,8 @@ module Aws::VoiceID
1854
1928
  #
1855
1929
  # @!attribute [rw] enrollment_config
1856
1930
  # The enrollment config that contains details such as the action to
1857
- # take when a speaker is already enrolled in the Voice ID system or
1858
- # when a speaker is identified as a fraudster.
1931
+ # take when a speaker is already enrolled in Voice ID or when a
1932
+ # speaker is identified as a fraudster.
1859
1933
  # @return [Types::EnrollmentConfig]
1860
1934
  #
1861
1935
  # @!attribute [rw] input_data_config
@@ -1869,7 +1943,7 @@ module Aws::VoiceID
1869
1943
  #
1870
1944
  # @!attribute [rw] output_data_config
1871
1945
  # The output data config containing the S3 location where Voice ID
1872
- # writes the job output file; you must also include a KMS Key ID to
1946
+ # writes the job output file; you must also include a KMS key ID to
1873
1947
  # encrypt the file.
1874
1948
  # @return [Types::OutputDataConfig]
1875
1949
  #
@@ -1899,7 +1973,9 @@ module Aws::VoiceID
1899
1973
  include Aws::Structure
1900
1974
  end
1901
1975
 
1902
- # A tag that can be assigned to a Voice ID resource.
1976
+ # The tags used to organize, track, or control access for this resource.
1977
+ # For example, \\\{ "tags": \\\{"key1":"value1",
1978
+ # "key2":"value2"\\} \\}.
1903
1979
  #
1904
1980
  # @note When making an API call, you may pass Tag
1905
1981
  # data as a hash:
@@ -1911,14 +1987,14 @@ module Aws::VoiceID
1911
1987
  #
1912
1988
  # @!attribute [rw] key
1913
1989
  # The first part of a key:value pair that forms a tag associated with
1914
- # a given resource. For example, in the tag Department’:’Sales’, the
1915
- # key is 'Department'.
1990
+ # a given resource. For example, in the tag 'Department':'Sales',
1991
+ # the key is 'Department'.
1916
1992
  # @return [String]
1917
1993
  #
1918
1994
  # @!attribute [rw] value
1919
1995
  # The second part of a key:value pair that forms a tag associated with
1920
- # a given resource. For example, in the tag Department’:’Sales’, the
1921
- # value is 'Sales'.
1996
+ # a given resource. For example, in the tag 'Department':'Sales',
1997
+ # the value is 'Sales'.
1922
1998
  # @return [String]
1923
1999
  #
1924
2000
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/Tag AWS API Documentation
@@ -2027,7 +2103,7 @@ module Aws::VoiceID
2027
2103
  # }
2028
2104
  #
2029
2105
  # @!attribute [rw] description
2030
- # A brief description about this domain.
2106
+ # A brief description of the domain.
2031
2107
  # @return [String]
2032
2108
  #
2033
2109
  # @!attribute [rw] domain_id
@@ -2039,11 +2115,13 @@ module Aws::VoiceID
2039
2115
  # @return [String]
2040
2116
  #
2041
2117
  # @!attribute [rw] server_side_encryption_configuration
2042
- # The configuration, containing the KMS Key Identifier, to be used by
2043
- # Voice ID for the server-side encryption of your data. Note that all
2044
- # the existing data in the domain are still encrypted using the
2045
- # existing key, only the data added to domain after updating the key
2046
- # is encrypted using the new key.
2118
+ # The configuration, containing the KMS key identifier, to be used by
2119
+ # Voice ID for the server-side encryption of your data. Changing the
2120
+ # domain's associated KMS key immediately triggers an asynchronous
2121
+ # process to remove dependency on the old KMS key, such that the
2122
+ # domain's data can only be accessed using the new KMS key. The
2123
+ # domain's `ServerSideEncryptionUpdateDetails` contains the details
2124
+ # for this process.
2047
2125
  # @return [Types::ServerSideEncryptionConfiguration]
2048
2126
  #
2049
2127
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/UpdateDomainRequest AWS API Documentation
@@ -2083,5 +2161,21 @@ module Aws::VoiceID
2083
2161
  include Aws::Structure
2084
2162
  end
2085
2163
 
2164
+ # The details resulting from 'Voice Spoofing Risk' analysis of the
2165
+ # speaker.
2166
+ #
2167
+ # @!attribute [rw] risk_score
2168
+ # The score indicating the likelihood of speaker’s voice being
2169
+ # spoofed.
2170
+ # @return [Integer]
2171
+ #
2172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/VoiceSpoofingRisk AWS API Documentation
2173
+ #
2174
+ class VoiceSpoofingRisk < Struct.new(
2175
+ :risk_score)
2176
+ SENSITIVE = []
2177
+ include Aws::Structure
2178
+ end
2179
+
2086
2180
  end
2087
2181
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-voiceid/customizations'
48
48
  # @!group service
49
49
  module Aws::VoiceID
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-voiceid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.9.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core