aws-sdk-voiceid 1.7.0 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b76a48ba7d13a86c8abb18c893542577852d7a6d306e4c0c6f8fbca03b1de1f
4
- data.tar.gz: db8f4a87bc00afff2d90262f5cf33681d2895dc98f9753c9d464dfb3fc458cfd
3
+ metadata.gz: feb0865c3e2c57108372971c5af9f23374721f80f1a3ef95a4f3c8032c5eb9a5
4
+ data.tar.gz: 9b0ed9ae3b16f0edfae60f6de8de845d4f2fd2917c2fcb8c5bea9fe7d57f235b
5
5
  SHA512:
6
- metadata.gz: 3643de13aea4c5ef93ec2e779e4d0b31b574713ae19891b94dce42bbeb27d8b2fdc1d5a0646c961fa0521c815170a6848e42c425d4d8b160948361ff09dfb99d
7
- data.tar.gz: 8b09358593d88cf20550fd27253cae782d54b13523991ef7b665dde25c2378e1d400c43539375ff20bfae4438f66ec42056dafb60212d4d7dd1f4b51558cc928
6
+ metadata.gz: '08430c2ad7609072224d1928e825124485797caf51be38e66235bd05a53737074ab409ad3e778997b8c4f03bf8918e32d44892ea4593ef51a4382defc3f22101'
7
+ data.tar.gz: ad1c698d73d13beb720ace7e6d6fd8be2da8a4cc6aa7ad0f59dc152b2b532cba10cffca74b8fc12955847f3c173c7d1e58193f604fbe0e9c5f789af82a58e536
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2022-06-02)
5
+ ------------------
6
+
7
+ * Feature - Added a new attribute ServerSideEncryptionUpdateDetails to Domain and DomainSummary.
8
+
4
9
  1.7.0 (2022-05-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.8.0
@@ -378,10 +378,10 @@ module Aws::VoiceID
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
@@ -804,6 +809,9 @@ module Aws::VoiceID
804
809
  # resp.domain_summaries[0].domain_status #=> String, one of "ACTIVE", "PENDING", "SUSPENDED"
805
810
  # resp.domain_summaries[0].name #=> String
806
811
  # resp.domain_summaries[0].server_side_encryption_configuration.kms_key_id #=> String
812
+ # resp.domain_summaries[0].server_side_encryption_update_details.message #=> String
813
+ # resp.domain_summaries[0].server_side_encryption_update_details.old_kms_key_id #=> String
814
+ # resp.domain_summaries[0].server_side_encryption_update_details.update_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
807
815
  # resp.domain_summaries[0].updated_at #=> Time
808
816
  # resp.next_token #=> String
809
817
  #
@@ -1023,13 +1031,13 @@ module Aws::VoiceID
1023
1031
  req.send_request(options)
1024
1032
  end
1025
1033
 
1026
- # Opts out a speaker from Voice ID system. A speaker can be opted out
1027
- # regardless of whether or not they already exist in the system. If they
1034
+ # Opts out a speaker from Voice ID. A speaker can be opted out
1035
+ # regardless of whether or not they already exist in Voice ID. If they
1028
1036
  # don't yet exist, a new speaker is created in an opted out state. If
1029
1037
  # they already exist, their existing status is overridden and they are
1030
1038
  # opted out. Enrollment and evaluation authentication requests are
1031
1039
  # rejected for opted out speakers, and opted out speakers have no voice
1032
- # embeddings stored in the system.
1040
+ # embeddings stored in Voice ID.
1033
1041
  #
1034
1042
  # @option params [required, String] :domain_id
1035
1043
  # The identifier of the domain containing the speaker.
@@ -1100,7 +1108,7 @@ module Aws::VoiceID
1100
1108
  #
1101
1109
  # @option params [required, Types::OutputDataConfig] :output_data_config
1102
1110
  # The output data config containing the S3 location where Voice ID
1103
- # writes the job output file; you must also include a KMS Key ID to
1111
+ # writes the job output file; you must also include a KMS key ID to
1104
1112
  # encrypt the file.
1105
1113
  #
1106
1114
  # @option params [Types::RegistrationConfig] :registration_config
@@ -1185,8 +1193,8 @@ module Aws::VoiceID
1185
1193
  #
1186
1194
  # @option params [Types::EnrollmentConfig] :enrollment_config
1187
1195
  # The enrollment config that contains details such as the action to take
1188
- # when a speaker is already enrolled in the Voice ID system or when a
1189
- # speaker is identified as a fraudster.
1196
+ # when a speaker is already enrolled in Voice ID or when a speaker is
1197
+ # identified as a fraudster.
1190
1198
  #
1191
1199
  # @option params [required, Types::InputDataConfig] :input_data_config
1192
1200
  # The input data config containing the S3 location for the input
@@ -1197,7 +1205,7 @@ module Aws::VoiceID
1197
1205
  #
1198
1206
  # @option params [required, Types::OutputDataConfig] :output_data_config
1199
1207
  # The output data config containing the S3 location where Voice ID
1200
- # writes the job output file; you must also include a KMS Key ID to
1208
+ # writes the job output file; you must also include a KMS key ID to
1201
1209
  # encrypt the file.
1202
1210
  #
1203
1211
  # @return [Types::StartSpeakerEnrollmentJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -1255,8 +1263,7 @@ module Aws::VoiceID
1255
1263
  req.send_request(options)
1256
1264
  end
1257
1265
 
1258
- # Tags an Amazon Connect Voice ID resource with the provided list of
1259
- # tags.
1266
+ # Tags a Voice ID resource with the provided list of tags.
1260
1267
  #
1261
1268
  # @option params [required, String] :resource_arn
1262
1269
  # The Amazon Resource Name (ARN) of the Voice ID resource you want to
@@ -1330,7 +1337,7 @@ module Aws::VoiceID
1330
1337
  # The name of the domain.
1331
1338
  #
1332
1339
  # @option params [required, Types::ServerSideEncryptionConfiguration] :server_side_encryption_configuration
1333
- # The configuration, containing the KMS Key Identifier, to be used by
1340
+ # The configuration, containing the KMS key identifier, to be used by
1334
1341
  # Voice ID for the server-side encryption of your data. Note that all
1335
1342
  # the existing data in the domain are still encrypted using the existing
1336
1343
  # key, only the data added to domain after updating the key is encrypted
@@ -1360,6 +1367,9 @@ module Aws::VoiceID
1360
1367
  # resp.domain.domain_status #=> String, one of "ACTIVE", "PENDING", "SUSPENDED"
1361
1368
  # resp.domain.name #=> String
1362
1369
  # resp.domain.server_side_encryption_configuration.kms_key_id #=> String
1370
+ # resp.domain.server_side_encryption_update_details.message #=> String
1371
+ # resp.domain.server_side_encryption_update_details.old_kms_key_id #=> String
1372
+ # resp.domain.server_side_encryption_update_details.update_status #=> String, one of "IN_PROGRESS", "COMPLETED", "FAILED"
1363
1373
  # resp.domain.updated_at #=> Time
1364
1374
  #
1365
1375
  # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/UpdateDomain AWS API Documentation
@@ -1384,7 +1394,7 @@ module Aws::VoiceID
1384
1394
  params: params,
1385
1395
  config: config)
1386
1396
  context[:gem_name] = 'aws-sdk-voiceid'
1387
- context[:gem_version] = '1.7.0'
1397
+ context[:gem_version] = '1.8.0'
1388
1398
  Seahorse::Client::Request.new(handlers, context)
1389
1399
  end
1390
1400
 
@@ -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')
@@ -215,6 +217,7 @@ module Aws::VoiceID
215
217
  Domain.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
216
218
  Domain.add_member(:name, Shapes::ShapeRef.new(shape: DomainName, location_name: "Name"))
217
219
  Domain.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "ServerSideEncryptionConfiguration"))
220
+ Domain.add_member(:server_side_encryption_update_details, Shapes::ShapeRef.new(shape: ServerSideEncryptionUpdateDetails, location_name: "ServerSideEncryptionUpdateDetails"))
218
221
  Domain.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
219
222
  Domain.struct_class = Types::Domain
220
223
 
@@ -227,6 +230,7 @@ module Aws::VoiceID
227
230
  DomainSummary.add_member(:domain_status, Shapes::ShapeRef.new(shape: DomainStatus, location_name: "DomainStatus"))
228
231
  DomainSummary.add_member(:name, Shapes::ShapeRef.new(shape: DomainName, location_name: "Name"))
229
232
  DomainSummary.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "ServerSideEncryptionConfiguration"))
233
+ DomainSummary.add_member(:server_side_encryption_update_details, Shapes::ShapeRef.new(shape: ServerSideEncryptionUpdateDetails, location_name: "ServerSideEncryptionUpdateDetails"))
230
234
  DomainSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
231
235
  DomainSummary.struct_class = Types::DomainSummary
232
236
 
@@ -380,6 +384,11 @@ module Aws::VoiceID
380
384
  ServerSideEncryptionConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, required: true, location_name: "KmsKeyId"))
381
385
  ServerSideEncryptionConfiguration.struct_class = Types::ServerSideEncryptionConfiguration
382
386
 
387
+ ServerSideEncryptionUpdateDetails.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
388
+ ServerSideEncryptionUpdateDetails.add_member(:old_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "OldKmsKeyId"))
389
+ ServerSideEncryptionUpdateDetails.add_member(:update_status, Shapes::ShapeRef.new(shape: ServerSideEncryptionUpdateStatus, location_name: "UpdateStatus"))
390
+ ServerSideEncryptionUpdateDetails.struct_class = Types::ServerSideEncryptionUpdateDetails
391
+
383
392
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
384
393
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
385
394
 
@@ -544,6 +553,7 @@ module Aws::VoiceID
544
553
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
545
554
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
546
555
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
556
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
547
557
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
548
558
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
549
559
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -636,6 +646,7 @@ module Aws::VoiceID
636
646
  o.output = Shapes::ShapeRef.new(shape: EvaluateSessionResponse)
637
647
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
638
648
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
649
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
639
650
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
640
651
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
641
652
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
@@ -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 be
561
+ # 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
@@ -882,7 +900,7 @@ module Aws::VoiceID
882
900
  # @return [String]
883
901
  #
884
902
  # @!attribute [rw] job_name
885
- # The client-provied name for the fraudster registration job.
903
+ # The client-provided name for the fraudster registration job.
886
904
  # @return [String]
887
905
  #
888
906
  # @!attribute [rw] job_progress
@@ -897,7 +915,7 @@ module Aws::VoiceID
897
915
  # @!attribute [rw] output_data_config
898
916
  # The output data config containing the S3 location where you want
899
917
  # Voice ID to write your job output file; you must also include a KMS
900
- # Key ID in order to encrypt the file.
918
+ # key iD in order to encrypt the file.
901
919
  # @return [Types::OutputDataConfig]
902
920
  #
903
921
  # @!attribute [rw] registration_config
@@ -1382,9 +1400,9 @@ module Aws::VoiceID
1382
1400
  # @return [String]
1383
1401
  #
1384
1402
  # @!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
1403
+ # The S3 path of the folder where Voice ID writes the job output file.
1404
+ # It has a `*.out` extension. For example, if the input file name is
1405
+ # `input-file.json` and the output folder path is
1388
1406
  # `s3://output-bucket/output-folder`, the full output file path is
1389
1407
  # `s3://output-bucket/output-folder/job-Id/input-file.json.out`.
1390
1408
  # @return [String]
@@ -1398,7 +1416,7 @@ module Aws::VoiceID
1398
1416
  include Aws::Structure
1399
1417
  end
1400
1418
 
1401
- # The configuration definining the action to take when a duplicate
1419
+ # The configuration defining the action to take when a duplicate
1402
1420
  # fraudster is detected, and the similarity threshold to use for
1403
1421
  # detecting a duplicate fraudster during a batch fraudster registration
1404
1422
  # job.
@@ -1453,8 +1471,8 @@ module Aws::VoiceID
1453
1471
  include Aws::Structure
1454
1472
  end
1455
1473
 
1456
- # The configuration containing information about the customer-managed
1457
- # KMS Key used for encrypting customer data.
1474
+ # The configuration containing information about the customer managed
1475
+ # key used for encrypting customer data.
1458
1476
  #
1459
1477
  # @note When making an API call, you may pass ServerSideEncryptionConfiguration
1460
1478
  # data as a hash:
@@ -1464,7 +1482,7 @@ module Aws::VoiceID
1464
1482
  # }
1465
1483
  #
1466
1484
  # @!attribute [rw] kms_key_id
1467
- # The identifier of the KMS Key you want Voice ID to use to encrypt
1485
+ # The identifier of the KMS key you want Voice ID to use to encrypt
1468
1486
  # your data.
1469
1487
  # @return [String]
1470
1488
  #
@@ -1476,6 +1494,41 @@ module Aws::VoiceID
1476
1494
  include Aws::Structure
1477
1495
  end
1478
1496
 
1497
+ # Details about the most recent server-side encryption configuration
1498
+ # update. When the server-side encryption configuration is changed,
1499
+ # dependency on the old KMS key is removed through an asynchronous
1500
+ # process. When this update is complete, the domain’s data can only be
1501
+ # accessed using the new KMS key.
1502
+ #
1503
+ # @!attribute [rw] message
1504
+ # Message explaining the current UpdateStatus. When the UpdateStatus
1505
+ # is FAILED, this message explains the cause of the failure.
1506
+ # @return [String]
1507
+ #
1508
+ # @!attribute [rw] old_kms_key_id
1509
+ # The previous KMS key ID the domain was encrypted with, before
1510
+ # ServerSideEncryptionConfiguration was updated to a new KMS key ID.
1511
+ # @return [String]
1512
+ #
1513
+ # @!attribute [rw] update_status
1514
+ # Status of the server-side encryption update. During an update, if
1515
+ # there is an issue with the domain's current or old KMS key ID, such
1516
+ # as an inaccessible or disabled key, then the status is FAILED. In
1517
+ # order to resolve this, the key needs to be made accessible, and then
1518
+ # an UpdateDomain call with the existing server-side encryption
1519
+ # configuration will re-attempt this update process.
1520
+ # @return [String]
1521
+ #
1522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/voice-id-2021-09-27/ServerSideEncryptionUpdateDetails AWS API Documentation
1523
+ #
1524
+ class ServerSideEncryptionUpdateDetails < Struct.new(
1525
+ :message,
1526
+ :old_kms_key_id,
1527
+ :update_status)
1528
+ SENSITIVE = []
1529
+ include Aws::Structure
1530
+ end
1531
+
1479
1532
  # The request exceeded the service quota. Refer to [Voice ID Service
1480
1533
  # Quotas][1] and try your request again.
1481
1534
  #
@@ -1599,7 +1652,7 @@ module Aws::VoiceID
1599
1652
  #
1600
1653
  # @!attribute [rw] output_data_config
1601
1654
  # The output data config containing the S3 location where Voice ID
1602
- # writes the job output file; you must also include a KMS Key ID to
1655
+ # writes the job output file; you must also include a KMS key ID to
1603
1656
  # encrypt the file.
1604
1657
  # @return [Types::OutputDataConfig]
1605
1658
  #
@@ -1781,7 +1834,7 @@ module Aws::VoiceID
1781
1834
  #
1782
1835
  # @!attribute [rw] output_data_config
1783
1836
  # The output data config containing the S3 location where Voice ID
1784
- # writes the job output file; you must also include a KMS Key ID to
1837
+ # writes the job output file; you must also include a KMS key ID to
1785
1838
  # encrypt the file.
1786
1839
  # @return [Types::OutputDataConfig]
1787
1840
  #
@@ -1868,8 +1921,8 @@ module Aws::VoiceID
1868
1921
  #
1869
1922
  # @!attribute [rw] enrollment_config
1870
1923
  # The enrollment config that contains details such as the action to
1871
- # take when a speaker is already enrolled in the Voice ID system or
1872
- # when a speaker is identified as a fraudster.
1924
+ # take when a speaker is already enrolled in Voice ID or when a
1925
+ # speaker is identified as a fraudster.
1873
1926
  # @return [Types::EnrollmentConfig]
1874
1927
  #
1875
1928
  # @!attribute [rw] input_data_config
@@ -1883,7 +1936,7 @@ module Aws::VoiceID
1883
1936
  #
1884
1937
  # @!attribute [rw] output_data_config
1885
1938
  # The output data config containing the S3 location where Voice ID
1886
- # writes the job output file; you must also include a KMS Key ID to
1939
+ # writes the job output file; you must also include a KMS key ID to
1887
1940
  # encrypt the file.
1888
1941
  # @return [Types::OutputDataConfig]
1889
1942
  #
@@ -2053,7 +2106,7 @@ module Aws::VoiceID
2053
2106
  # @return [String]
2054
2107
  #
2055
2108
  # @!attribute [rw] server_side_encryption_configuration
2056
- # The configuration, containing the KMS Key Identifier, to be used by
2109
+ # The configuration, containing the KMS key identifier, to be used by
2057
2110
  # Voice ID for the server-side encryption of your data. Note that all
2058
2111
  # the existing data in the domain are still encrypted using the
2059
2112
  # existing key, only the data added to domain after updating the key
@@ -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.7.0'
51
+ GEM_VERSION = '1.8.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.7.0
4
+ version: 1.8.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-05-25 00:00:00.000000000 Z
11
+ date: 2022-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core