@aws-sdk/client-voice-id 3.131.0 → 3.142.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateDomainCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteDomainCommand.js +1 -1
  5. package/dist-cjs/commands/DeleteFraudsterCommand.js +1 -1
  6. package/dist-cjs/commands/DeleteSpeakerCommand.js +1 -1
  7. package/dist-cjs/commands/DescribeDomainCommand.js +2 -2
  8. package/dist-cjs/commands/DescribeFraudsterCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeFraudsterRegistrationJobCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeSpeakerCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeSpeakerEnrollmentJobCommand.js +2 -2
  12. package/dist-cjs/commands/EvaluateSessionCommand.js +2 -2
  13. package/dist-cjs/commands/ListDomainsCommand.js +2 -2
  14. package/dist-cjs/commands/ListFraudsterRegistrationJobsCommand.js +2 -2
  15. package/dist-cjs/commands/ListSpeakerEnrollmentJobsCommand.js +2 -2
  16. package/dist-cjs/commands/ListSpeakersCommand.js +2 -2
  17. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-cjs/commands/OptOutSpeakerCommand.js +2 -2
  19. package/dist-cjs/commands/StartFraudsterRegistrationJobCommand.js +2 -2
  20. package/dist-cjs/commands/StartSpeakerEnrollmentJobCommand.js +2 -2
  21. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  22. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UpdateDomainCommand.js +2 -2
  24. package/dist-cjs/models/models_0.js +310 -438
  25. package/dist-cjs/protocols/Aws_json1_0.js +105 -174
  26. package/dist-es/commands/CreateDomainCommand.js +3 -3
  27. package/dist-es/commands/DeleteDomainCommand.js +2 -2
  28. package/dist-es/commands/DeleteFraudsterCommand.js +2 -2
  29. package/dist-es/commands/DeleteSpeakerCommand.js +2 -2
  30. package/dist-es/commands/DescribeDomainCommand.js +3 -3
  31. package/dist-es/commands/DescribeFraudsterCommand.js +3 -3
  32. package/dist-es/commands/DescribeFraudsterRegistrationJobCommand.js +3 -3
  33. package/dist-es/commands/DescribeSpeakerCommand.js +3 -3
  34. package/dist-es/commands/DescribeSpeakerEnrollmentJobCommand.js +3 -3
  35. package/dist-es/commands/EvaluateSessionCommand.js +3 -3
  36. package/dist-es/commands/ListDomainsCommand.js +3 -3
  37. package/dist-es/commands/ListFraudsterRegistrationJobsCommand.js +3 -3
  38. package/dist-es/commands/ListSpeakerEnrollmentJobsCommand.js +3 -3
  39. package/dist-es/commands/ListSpeakersCommand.js +3 -3
  40. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  41. package/dist-es/commands/OptOutSpeakerCommand.js +3 -3
  42. package/dist-es/commands/StartFraudsterRegistrationJobCommand.js +3 -3
  43. package/dist-es/commands/StartSpeakerEnrollmentJobCommand.js +3 -3
  44. package/dist-es/commands/TagResourceCommand.js +3 -3
  45. package/dist-es/commands/UntagResourceCommand.js +3 -3
  46. package/dist-es/commands/UpdateDomainCommand.js +3 -3
  47. package/dist-es/models/models_0.js +74 -266
  48. package/dist-es/protocols/Aws_json1_0.js +169 -175
  49. package/dist-types/models/models_0.d.ts +256 -384
  50. package/dist-types/ts3.4/models/models_0.d.ts +128 -256
  51. package/package.json +6 -6
@@ -22,12 +22,6 @@ export interface AuthenticationConfiguration {
22
22
  */
23
23
  AcceptanceThreshold: number | undefined;
24
24
  }
25
- export declare namespace AuthenticationConfiguration {
26
- /**
27
- * @internal
28
- */
29
- const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
30
- }
31
25
  export declare enum AuthenticationDecision {
32
26
  ACCEPT = "ACCEPT",
33
27
  NOT_ENOUGH_SPEECH = "NOT_ENOUGH_SPEECH",
@@ -82,12 +76,6 @@ export interface AuthenticationResult {
82
76
  */
83
77
  Configuration?: AuthenticationConfiguration;
84
78
  }
85
- export declare namespace AuthenticationResult {
86
- /**
87
- * @internal
88
- */
89
- const filterSensitiveLog: (obj: AuthenticationResult) => any;
90
- }
91
79
  export declare enum ConflictType {
92
80
  ANOTHER_ACTIVE_STREAM = "ANOTHER_ACTIVE_STREAM",
93
81
  CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT = "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT",
@@ -152,12 +140,6 @@ export interface ServerSideEncryptionConfiguration {
152
140
  */
153
141
  KmsKeyId: string | undefined;
154
142
  }
155
- export declare namespace ServerSideEncryptionConfiguration {
156
- /**
157
- * @internal
158
- */
159
- const filterSensitiveLog: (obj: ServerSideEncryptionConfiguration) => any;
160
- }
161
143
  /**
162
144
  * <p>A tag that can be assigned to a Voice ID resource.</p>
163
145
  */
@@ -175,12 +157,6 @@ export interface Tag {
175
157
  */
176
158
  Value: string | undefined;
177
159
  }
178
- export declare namespace Tag {
179
- /**
180
- * @internal
181
- */
182
- const filterSensitiveLog: (obj: Tag) => any;
183
- }
184
160
  export interface CreateDomainRequest {
185
161
  /**
186
162
  * <p>The name of the domain.</p>
@@ -207,12 +183,6 @@ export interface CreateDomainRequest {
207
183
  */
208
184
  Tags?: Tag[];
209
185
  }
210
- export declare namespace CreateDomainRequest {
211
- /**
212
- * @internal
213
- */
214
- const filterSensitiveLog: (obj: CreateDomainRequest) => any;
215
- }
216
186
  export declare enum DomainStatus {
217
187
  ACTIVE = "ACTIVE",
218
188
  PENDING = "PENDING",
@@ -248,12 +218,6 @@ export interface ServerSideEncryptionUpdateDetails {
248
218
  */
249
219
  Message?: string;
250
220
  }
251
- export declare namespace ServerSideEncryptionUpdateDetails {
252
- /**
253
- * @internal
254
- */
255
- const filterSensitiveLog: (obj: ServerSideEncryptionUpdateDetails) => any;
256
- }
257
221
  /**
258
222
  * <p>Contains all the information about a domain.</p>
259
223
  */
@@ -299,24 +263,12 @@ export interface Domain {
299
263
  */
300
264
  ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
301
265
  }
302
- export declare namespace Domain {
303
- /**
304
- * @internal
305
- */
306
- const filterSensitiveLog: (obj: Domain) => any;
307
- }
308
266
  export interface CreateDomainResponse {
309
267
  /**
310
268
  * <p>Information about the newly created domain.</p>
311
269
  */
312
270
  Domain?: Domain;
313
271
  }
314
- export declare namespace CreateDomainResponse {
315
- /**
316
- * @internal
317
- */
318
- const filterSensitiveLog: (obj: CreateDomainResponse) => any;
319
- }
320
272
  /**
321
273
  * <p>The request failed due to an unknown error on the server side.</p>
322
274
  */
@@ -401,12 +353,6 @@ export interface DeleteDomainRequest {
401
353
  */
402
354
  DomainId: string | undefined;
403
355
  }
404
- export declare namespace DeleteDomainRequest {
405
- /**
406
- * @internal
407
- */
408
- const filterSensitiveLog: (obj: DeleteDomainRequest) => any;
409
- }
410
356
  export interface DeleteFraudsterRequest {
411
357
  /**
412
358
  * <p>The identifier of the domain containing the fraudster.</p>
@@ -417,12 +363,6 @@ export interface DeleteFraudsterRequest {
417
363
  */
418
364
  FraudsterId: string | undefined;
419
365
  }
420
- export declare namespace DeleteFraudsterRequest {
421
- /**
422
- * @internal
423
- */
424
- const filterSensitiveLog: (obj: DeleteFraudsterRequest) => any;
425
- }
426
366
  export interface DeleteSpeakerRequest {
427
367
  /**
428
368
  * <p>The identifier of the domain containing the speaker.</p>
@@ -433,36 +373,18 @@ export interface DeleteSpeakerRequest {
433
373
  */
434
374
  SpeakerId: string | undefined;
435
375
  }
436
- export declare namespace DeleteSpeakerRequest {
437
- /**
438
- * @internal
439
- */
440
- const filterSensitiveLog: (obj: DeleteSpeakerRequest) => any;
441
- }
442
376
  export interface DescribeDomainRequest {
443
377
  /**
444
378
  * <p>The identifier of the domain you are describing.</p>
445
379
  */
446
380
  DomainId: string | undefined;
447
381
  }
448
- export declare namespace DescribeDomainRequest {
449
- /**
450
- * @internal
451
- */
452
- const filterSensitiveLog: (obj: DescribeDomainRequest) => any;
453
- }
454
382
  export interface DescribeDomainResponse {
455
383
  /**
456
384
  * <p>Information about the specified domain.</p>
457
385
  */
458
386
  Domain?: Domain;
459
387
  }
460
- export declare namespace DescribeDomainResponse {
461
- /**
462
- * @internal
463
- */
464
- const filterSensitiveLog: (obj: DescribeDomainResponse) => any;
465
- }
466
388
  export interface DescribeFraudsterRequest {
467
389
  /**
468
390
  * <p>The identifier of the domain containing the fraudster.</p>
@@ -473,12 +395,6 @@ export interface DescribeFraudsterRequest {
473
395
  */
474
396
  FraudsterId: string | undefined;
475
397
  }
476
- export declare namespace DescribeFraudsterRequest {
477
- /**
478
- * @internal
479
- */
480
- const filterSensitiveLog: (obj: DescribeFraudsterRequest) => any;
481
- }
482
398
  /**
483
399
  * <p>Contains all the information about a fraudster.</p>
484
400
  */
@@ -496,24 +412,12 @@ export interface Fraudster {
496
412
  */
497
413
  CreatedAt?: Date;
498
414
  }
499
- export declare namespace Fraudster {
500
- /**
501
- * @internal
502
- */
503
- const filterSensitiveLog: (obj: Fraudster) => any;
504
- }
505
415
  export interface DescribeFraudsterResponse {
506
416
  /**
507
417
  * <p>Information about the specified fraudster.</p>
508
418
  */
509
419
  Fraudster?: Fraudster;
510
420
  }
511
- export declare namespace DescribeFraudsterResponse {
512
- /**
513
- * @internal
514
- */
515
- const filterSensitiveLog: (obj: DescribeFraudsterResponse) => any;
516
- }
517
421
  export interface DescribeFraudsterRegistrationJobRequest {
518
422
  /**
519
423
  * <p>The identifier for the domain containing the fraudster registration job.</p>
@@ -524,12 +428,6 @@ export interface DescribeFraudsterRegistrationJobRequest {
524
428
  */
525
429
  JobId: string | undefined;
526
430
  }
527
- export declare namespace DescribeFraudsterRegistrationJobRequest {
528
- /**
529
- * @internal
530
- */
531
- const filterSensitiveLog: (obj: DescribeFraudsterRegistrationJobRequest) => any;
532
- }
533
431
  /**
534
432
  * <p>Contains error details for a failed batch job.</p>
535
433
  */
@@ -543,12 +441,6 @@ export interface FailureDetails {
543
441
  */
544
442
  Message?: string;
545
443
  }
546
- export declare namespace FailureDetails {
547
- /**
548
- * @internal
549
- */
550
- const filterSensitiveLog: (obj: FailureDetails) => any;
551
- }
552
444
  /**
553
445
  * <p>The configuration containing input file information for a batch job.</p>
554
446
  */
@@ -559,12 +451,6 @@ export interface InputDataConfig {
559
451
  */
560
452
  S3Uri: string | undefined;
561
453
  }
562
- export declare namespace InputDataConfig {
563
- /**
564
- * @internal
565
- */
566
- const filterSensitiveLog: (obj: InputDataConfig) => any;
567
- }
568
454
  /**
569
455
  * <p>Indicates the completion progress for a batch job.</p>
570
456
  */
@@ -574,12 +460,6 @@ export interface JobProgress {
574
460
  */
575
461
  PercentComplete?: number;
576
462
  }
577
- export declare namespace JobProgress {
578
- /**
579
- * @internal
580
- */
581
- const filterSensitiveLog: (obj: JobProgress) => any;
582
- }
583
463
  export declare enum FraudsterRegistrationJobStatus {
584
464
  COMPLETED = "COMPLETED",
585
465
  COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
@@ -604,12 +484,6 @@ export interface OutputDataConfig {
604
484
  */
605
485
  KmsKeyId?: string;
606
486
  }
607
- export declare namespace OutputDataConfig {
608
- /**
609
- * @internal
610
- */
611
- const filterSensitiveLog: (obj: OutputDataConfig) => any;
612
- }
613
487
  export declare enum DuplicateRegistrationAction {
614
488
  REGISTER_AS_NEW = "REGISTER_AS_NEW",
615
489
  SKIP = "SKIP"
@@ -631,12 +505,6 @@ export interface RegistrationConfig {
631
505
  */
632
506
  FraudsterSimilarityThreshold?: number;
633
507
  }
634
- export declare namespace RegistrationConfig {
635
- /**
636
- * @internal
637
- */
638
- const filterSensitiveLog: (obj: RegistrationConfig) => any;
639
- }
640
508
  /**
641
509
  * <p>Contains all the information about a fraudster registration job.</p>
642
510
  */
@@ -697,24 +565,12 @@ export interface FraudsterRegistrationJob {
697
565
  */
698
566
  JobProgress?: JobProgress;
699
567
  }
700
- export declare namespace FraudsterRegistrationJob {
701
- /**
702
- * @internal
703
- */
704
- const filterSensitiveLog: (obj: FraudsterRegistrationJob) => any;
705
- }
706
568
  export interface DescribeFraudsterRegistrationJobResponse {
707
569
  /**
708
570
  * <p>Contains details about the specified fraudster registration job.</p>
709
571
  */
710
572
  Job?: FraudsterRegistrationJob;
711
573
  }
712
- export declare namespace DescribeFraudsterRegistrationJobResponse {
713
- /**
714
- * @internal
715
- */
716
- const filterSensitiveLog: (obj: DescribeFraudsterRegistrationJobResponse) => any;
717
- }
718
574
  export interface DescribeSpeakerRequest {
719
575
  /**
720
576
  * <p>The identifier of the domain that contains the speaker.</p>
@@ -725,12 +581,6 @@ export interface DescribeSpeakerRequest {
725
581
  */
726
582
  SpeakerId: string | undefined;
727
583
  }
728
- export declare namespace DescribeSpeakerRequest {
729
- /**
730
- * @internal
731
- */
732
- const filterSensitiveLog: (obj: DescribeSpeakerRequest) => any;
733
- }
734
584
  export declare enum SpeakerStatus {
735
585
  ENROLLED = "ENROLLED",
736
586
  EXPIRED = "EXPIRED",
@@ -770,24 +620,12 @@ export interface Speaker {
770
620
  */
771
621
  LastAccessedAt?: Date;
772
622
  }
773
- export declare namespace Speaker {
774
- /**
775
- * @internal
776
- */
777
- const filterSensitiveLog: (obj: Speaker) => any;
778
- }
779
623
  export interface DescribeSpeakerResponse {
780
624
  /**
781
625
  * <p>Information about the specified speaker.</p>
782
626
  */
783
627
  Speaker?: Speaker;
784
628
  }
785
- export declare namespace DescribeSpeakerResponse {
786
- /**
787
- * @internal
788
- */
789
- const filterSensitiveLog: (obj: DescribeSpeakerResponse) => any;
790
- }
791
629
  export interface DescribeSpeakerEnrollmentJobRequest {
792
630
  /**
793
631
  * <p>The identifier of the domain containing the speaker enrollment job.</p>
@@ -798,12 +636,6 @@ export interface DescribeSpeakerEnrollmentJobRequest {
798
636
  */
799
637
  JobId: string | undefined;
800
638
  }
801
- export declare namespace DescribeSpeakerEnrollmentJobRequest {
802
- /**
803
- * @internal
804
- */
805
- const filterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobRequest) => any;
806
- }
807
639
  export declare enum ExistingEnrollmentAction {
808
640
  OVERWRITE = "OVERWRITE",
809
641
  SKIP = "SKIP"
@@ -829,12 +661,6 @@ export interface EnrollmentJobFraudDetectionConfig {
829
661
  */
830
662
  RiskThreshold?: number;
831
663
  }
832
- export declare namespace EnrollmentJobFraudDetectionConfig {
833
- /**
834
- * @internal
835
- */
836
- const filterSensitiveLog: (obj: EnrollmentJobFraudDetectionConfig) => any;
837
- }
838
664
  /**
839
665
  * <p>Contains configurations defining enrollment behavior for the batch job.</p>
840
666
  */
@@ -851,12 +677,6 @@ export interface EnrollmentConfig {
851
677
  */
852
678
  FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig;
853
679
  }
854
- export declare namespace EnrollmentConfig {
855
- /**
856
- * @internal
857
- */
858
- const filterSensitiveLog: (obj: EnrollmentConfig) => any;
859
- }
860
680
  export declare enum SpeakerEnrollmentJobStatus {
861
681
  COMPLETED = "COMPLETED",
862
682
  COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
@@ -925,24 +745,12 @@ export interface SpeakerEnrollmentJob {
925
745
  */
926
746
  JobProgress?: JobProgress;
927
747
  }
928
- export declare namespace SpeakerEnrollmentJob {
929
- /**
930
- * @internal
931
- */
932
- const filterSensitiveLog: (obj: SpeakerEnrollmentJob) => any;
933
- }
934
748
  export interface DescribeSpeakerEnrollmentJobResponse {
935
749
  /**
936
750
  * <p>Contains details about the specified speaker enrollment job.</p>
937
751
  */
938
752
  Job?: SpeakerEnrollmentJob;
939
753
  }
940
- export declare namespace DescribeSpeakerEnrollmentJobResponse {
941
- /**
942
- * @internal
943
- */
944
- const filterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobResponse) => any;
945
- }
946
754
  /**
947
755
  * <p>Contains a summary of information about a domain.</p>
948
756
  */
@@ -988,12 +796,6 @@ export interface DomainSummary {
988
796
  */
989
797
  ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
990
798
  }
991
- export declare namespace DomainSummary {
992
- /**
993
- * @internal
994
- */
995
- const filterSensitiveLog: (obj: DomainSummary) => any;
996
- }
997
799
  export interface EvaluateSessionRequest {
998
800
  /**
999
801
  * <p>The identifier of the domain where the session started.</p>
@@ -1005,12 +807,6 @@ export interface EvaluateSessionRequest {
1005
807
  */
1006
808
  SessionNameOrId: string | undefined;
1007
809
  }
1008
- export declare namespace EvaluateSessionRequest {
1009
- /**
1010
- * @internal
1011
- */
1012
- const filterSensitiveLog: (obj: EvaluateSessionRequest) => any;
1013
- }
1014
810
  /**
1015
811
  * <p>The configuration used for performing fraud detection over a speaker during a session.</p>
1016
812
  */
@@ -1021,12 +817,6 @@ export interface FraudDetectionConfiguration {
1021
817
  */
1022
818
  RiskThreshold: number | undefined;
1023
819
  }
1024
- export declare namespace FraudDetectionConfiguration {
1025
- /**
1026
- * @internal
1027
- */
1028
- const filterSensitiveLog: (obj: FraudDetectionConfiguration) => any;
1029
- }
1030
820
  export declare enum FraudDetectionDecision {
1031
821
  HIGH_RISK = "HIGH_RISK",
1032
822
  LOW_RISK = "LOW_RISK",
@@ -1050,12 +840,6 @@ export interface KnownFraudsterRisk {
1050
840
  */
1051
841
  GeneratedFraudsterId?: string;
1052
842
  }
1053
- export declare namespace KnownFraudsterRisk {
1054
- /**
1055
- * @internal
1056
- */
1057
- const filterSensitiveLog: (obj: KnownFraudsterRisk) => any;
1058
- }
1059
843
  /**
1060
844
  * <p>Details regarding various fraud risk analyses performed against the current session state and streamed
1061
845
  * audio of the speaker.</p>
@@ -1066,12 +850,6 @@ export interface FraudRiskDetails {
1066
850
  */
1067
851
  KnownFraudsterRisk: KnownFraudsterRisk | undefined;
1068
852
  }
1069
- export declare namespace FraudRiskDetails {
1070
- /**
1071
- * @internal
1072
- */
1073
- const filterSensitiveLog: (obj: FraudRiskDetails) => any;
1074
- }
1075
853
  /**
1076
854
  * <p>The fraud detection result produced by Voice ID, processed against the current session state and streamed
1077
855
  * audio of the speaker.</p>
@@ -1112,12 +890,6 @@ export interface FraudDetectionResult {
1112
890
  */
1113
891
  RiskDetails?: FraudRiskDetails;
1114
892
  }
1115
- export declare namespace FraudDetectionResult {
1116
- /**
1117
- * @internal
1118
- */
1119
- const filterSensitiveLog: (obj: FraudDetectionResult) => any;
1120
- }
1121
893
  export declare enum StreamingStatus {
1122
894
  ENDED = "ENDED",
1123
895
  ONGOING = "ONGOING",
@@ -1156,12 +928,6 @@ export interface EvaluateSessionResponse {
1156
928
  */
1157
929
  FraudDetectionResult?: FraudDetectionResult;
1158
930
  }
1159
- export declare namespace EvaluateSessionResponse {
1160
- /**
1161
- * @internal
1162
- */
1163
- const filterSensitiveLog: (obj: EvaluateSessionResponse) => any;
1164
- }
1165
931
  /**
1166
932
  * <p>Contains a summary of information about a fraudster registration job.</p>
1167
933
  */
@@ -1202,12 +968,6 @@ export interface FraudsterRegistrationJobSummary {
1202
968
  */
1203
969
  JobProgress?: JobProgress;
1204
970
  }
1205
- export declare namespace FraudsterRegistrationJobSummary {
1206
- /**
1207
- * @internal
1208
- */
1209
- const filterSensitiveLog: (obj: FraudsterRegistrationJobSummary) => any;
1210
- }
1211
971
  export interface ListDomainsRequest {
1212
972
  /**
1213
973
  * <p>The maximum number of results that are returned per call. You can use <code>NextToken</code> to obtain
@@ -1223,12 +983,6 @@ export interface ListDomainsRequest {
1223
983
  */
1224
984
  NextToken?: string;
1225
985
  }
1226
- export declare namespace ListDomainsRequest {
1227
- /**
1228
- * @internal
1229
- */
1230
- const filterSensitiveLog: (obj: ListDomainsRequest) => any;
1231
- }
1232
986
  export interface ListDomainsResponse {
1233
987
  /**
1234
988
  * <p>A list containing details about each domain in the Amazon Web Services account.</p>
@@ -1242,12 +996,6 @@ export interface ListDomainsResponse {
1242
996
  */
1243
997
  NextToken?: string;
1244
998
  }
1245
- export declare namespace ListDomainsResponse {
1246
- /**
1247
- * @internal
1248
- */
1249
- const filterSensitiveLog: (obj: ListDomainsResponse) => any;
1250
- }
1251
999
  export interface ListFraudsterRegistrationJobsRequest {
1252
1000
  /**
1253
1001
  * <p>The identifier of the domain containing the fraudster registration Jobs.</p>
@@ -1271,12 +1019,6 @@ export interface ListFraudsterRegistrationJobsRequest {
1271
1019
  */
1272
1020
  NextToken?: string;
1273
1021
  }
1274
- export declare namespace ListFraudsterRegistrationJobsRequest {
1275
- /**
1276
- * @internal
1277
- */
1278
- const filterSensitiveLog: (obj: ListFraudsterRegistrationJobsRequest) => any;
1279
- }
1280
1022
  export interface ListFraudsterRegistrationJobsResponse {
1281
1023
  /**
1282
1024
  * <p>A list containing details about each specified fraudster registration job.</p>
@@ -1290,12 +1032,6 @@ export interface ListFraudsterRegistrationJobsResponse {
1290
1032
  */
1291
1033
  NextToken?: string;
1292
1034
  }
1293
- export declare namespace ListFraudsterRegistrationJobsResponse {
1294
- /**
1295
- * @internal
1296
- */
1297
- const filterSensitiveLog: (obj: ListFraudsterRegistrationJobsResponse) => any;
1298
- }
1299
1035
  export interface ListSpeakerEnrollmentJobsRequest {
1300
1036
  /**
1301
1037
  * <p>The identifier of the domain containing the speaker enrollment jobs.</p>
@@ -1319,12 +1055,6 @@ export interface ListSpeakerEnrollmentJobsRequest {
1319
1055
  */
1320
1056
  NextToken?: string;
1321
1057
  }
1322
- export declare namespace ListSpeakerEnrollmentJobsRequest {
1323
- /**
1324
- * @internal
1325
- */
1326
- const filterSensitiveLog: (obj: ListSpeakerEnrollmentJobsRequest) => any;
1327
- }
1328
1058
  /**
1329
1059
  * <p>Contains a summary of information about a speaker enrollment job.</p>
1330
1060
  */
@@ -1366,12 +1096,6 @@ export interface SpeakerEnrollmentJobSummary {
1366
1096
  */
1367
1097
  JobProgress?: JobProgress;
1368
1098
  }
1369
- export declare namespace SpeakerEnrollmentJobSummary {
1370
- /**
1371
- * @internal
1372
- */
1373
- const filterSensitiveLog: (obj: SpeakerEnrollmentJobSummary) => any;
1374
- }
1375
1099
  export interface ListSpeakerEnrollmentJobsResponse {
1376
1100
  /**
1377
1101
  * <p>A list containing details about each specified speaker enrollment job.</p>
@@ -1385,12 +1109,6 @@ export interface ListSpeakerEnrollmentJobsResponse {
1385
1109
  */
1386
1110
  NextToken?: string;
1387
1111
  }
1388
- export declare namespace ListSpeakerEnrollmentJobsResponse {
1389
- /**
1390
- * @internal
1391
- */
1392
- const filterSensitiveLog: (obj: ListSpeakerEnrollmentJobsResponse) => any;
1393
- }
1394
1112
  export interface ListSpeakersRequest {
1395
1113
  /**
1396
1114
  * <p>The identifier of the domain.</p>
@@ -1410,12 +1128,6 @@ export interface ListSpeakersRequest {
1410
1128
  */
1411
1129
  NextToken?: string;
1412
1130
  }
1413
- export declare namespace ListSpeakersRequest {
1414
- /**
1415
- * @internal
1416
- */
1417
- const filterSensitiveLog: (obj: ListSpeakersRequest) => any;
1418
- }
1419
1131
  /**
1420
1132
  * <p>Contains a summary of information about a speaker.</p>
1421
1133
  */
@@ -1449,12 +1161,6 @@ export interface SpeakerSummary {
1449
1161
  */
1450
1162
  LastAccessedAt?: Date;
1451
1163
  }
1452
- export declare namespace SpeakerSummary {
1453
- /**
1454
- * @internal
1455
- */
1456
- const filterSensitiveLog: (obj: SpeakerSummary) => any;
1457
- }
1458
1164
  export interface ListSpeakersResponse {
1459
1165
  /**
1460
1166
  * <p>A list containing details about each speaker in the Amazon Web Services account.
@@ -1469,36 +1175,18 @@ export interface ListSpeakersResponse {
1469
1175
  */
1470
1176
  NextToken?: string;
1471
1177
  }
1472
- export declare namespace ListSpeakersResponse {
1473
- /**
1474
- * @internal
1475
- */
1476
- const filterSensitiveLog: (obj: ListSpeakersResponse) => any;
1477
- }
1478
1178
  export interface ListTagsForResourceRequest {
1479
1179
  /**
1480
1180
  * <p>The Amazon Resource Name (ARN) of the Voice ID resource for which you want to list the tags.</p>
1481
1181
  */
1482
1182
  ResourceArn: string | undefined;
1483
1183
  }
1484
- export declare namespace ListTagsForResourceRequest {
1485
- /**
1486
- * @internal
1487
- */
1488
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1489
- }
1490
1184
  export interface ListTagsForResourceResponse {
1491
1185
  /**
1492
1186
  * <p>The list of tags associated with the specified resource.</p>
1493
1187
  */
1494
1188
  Tags?: Tag[];
1495
1189
  }
1496
- export declare namespace ListTagsForResourceResponse {
1497
- /**
1498
- * @internal
1499
- */
1500
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1501
- }
1502
1190
  export interface OptOutSpeakerRequest {
1503
1191
  /**
1504
1192
  * <p>The identifier of the domain containing the speaker.</p>
@@ -1509,24 +1197,12 @@ export interface OptOutSpeakerRequest {
1509
1197
  */
1510
1198
  SpeakerId: string | undefined;
1511
1199
  }
1512
- export declare namespace OptOutSpeakerRequest {
1513
- /**
1514
- * @internal
1515
- */
1516
- const filterSensitiveLog: (obj: OptOutSpeakerRequest) => any;
1517
- }
1518
1200
  export interface OptOutSpeakerResponse {
1519
1201
  /**
1520
1202
  * <p>Details about the opted-out speaker.</p>
1521
1203
  */
1522
1204
  Speaker?: Speaker;
1523
1205
  }
1524
- export declare namespace OptOutSpeakerResponse {
1525
- /**
1526
- * @internal
1527
- */
1528
- const filterSensitiveLog: (obj: OptOutSpeakerResponse) => any;
1529
- }
1530
1206
  export interface StartFraudsterRegistrationJobRequest {
1531
1207
  /**
1532
1208
  * <p>The idempotency token for starting a new fraudster registration job. If not provided, Amazon Web Services
@@ -1565,24 +1241,12 @@ export interface StartFraudsterRegistrationJobRequest {
1565
1241
  */
1566
1242
  OutputDataConfig: OutputDataConfig | undefined;
1567
1243
  }
1568
- export declare namespace StartFraudsterRegistrationJobRequest {
1569
- /**
1570
- * @internal
1571
- */
1572
- const filterSensitiveLog: (obj: StartFraudsterRegistrationJobRequest) => any;
1573
- }
1574
1244
  export interface StartFraudsterRegistrationJobResponse {
1575
1245
  /**
1576
1246
  * <p>Details about the started fraudster registration job.</p>
1577
1247
  */
1578
1248
  Job?: FraudsterRegistrationJob;
1579
1249
  }
1580
- export declare namespace StartFraudsterRegistrationJobResponse {
1581
- /**
1582
- * @internal
1583
- */
1584
- const filterSensitiveLog: (obj: StartFraudsterRegistrationJobResponse) => any;
1585
- }
1586
1250
  export interface StartSpeakerEnrollmentJobRequest {
1587
1251
  /**
1588
1252
  * <p>The idempotency token for starting a new speaker enrollment Job. If not provided, Amazon Web Services
@@ -1621,24 +1285,12 @@ export interface StartSpeakerEnrollmentJobRequest {
1621
1285
  */
1622
1286
  OutputDataConfig: OutputDataConfig | undefined;
1623
1287
  }
1624
- export declare namespace StartSpeakerEnrollmentJobRequest {
1625
- /**
1626
- * @internal
1627
- */
1628
- const filterSensitiveLog: (obj: StartSpeakerEnrollmentJobRequest) => any;
1629
- }
1630
1288
  export interface StartSpeakerEnrollmentJobResponse {
1631
1289
  /**
1632
1290
  * <p>Details about the started speaker enrollment job.</p>
1633
1291
  */
1634
1292
  Job?: SpeakerEnrollmentJob;
1635
1293
  }
1636
- export declare namespace StartSpeakerEnrollmentJobResponse {
1637
- /**
1638
- * @internal
1639
- */
1640
- const filterSensitiveLog: (obj: StartSpeakerEnrollmentJobResponse) => any;
1641
- }
1642
1294
  export interface TagResourceRequest {
1643
1295
  /**
1644
1296
  * <p>The Amazon Resource Name (ARN) of the Voice ID resource you want to tag.</p>
@@ -1649,20 +1301,8 @@ export interface TagResourceRequest {
1649
1301
  */
1650
1302
  Tags: Tag[] | undefined;
1651
1303
  }
1652
- export declare namespace TagResourceRequest {
1653
- /**
1654
- * @internal
1655
- */
1656
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1657
- }
1658
1304
  export interface TagResourceResponse {
1659
1305
  }
1660
- export declare namespace TagResourceResponse {
1661
- /**
1662
- * @internal
1663
- */
1664
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1665
- }
1666
1306
  export interface UntagResourceRequest {
1667
1307
  /**
1668
1308
  * <p>The Amazon Resource Name (ARN) of the Voice ID resource you want to remove tags from.</p>
@@ -1673,20 +1313,8 @@ export interface UntagResourceRequest {
1673
1313
  */
1674
1314
  TagKeys: string[] | undefined;
1675
1315
  }
1676
- export declare namespace UntagResourceRequest {
1677
- /**
1678
- * @internal
1679
- */
1680
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1681
- }
1682
1316
  export interface UntagResourceResponse {
1683
1317
  }
1684
- export declare namespace UntagResourceResponse {
1685
- /**
1686
- * @internal
1687
- */
1688
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1689
- }
1690
1318
  export interface UpdateDomainRequest {
1691
1319
  /**
1692
1320
  * <p>The identifier of the domain to be updated.</p>
@@ -1707,21 +1335,265 @@ export interface UpdateDomainRequest {
1707
1335
  */
1708
1336
  ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
1709
1337
  }
1710
- export declare namespace UpdateDomainRequest {
1711
- /**
1712
- * @internal
1713
- */
1714
- const filterSensitiveLog: (obj: UpdateDomainRequest) => any;
1715
- }
1716
1338
  export interface UpdateDomainResponse {
1717
1339
  /**
1718
1340
  * <p>Details about the updated domain</p>
1719
1341
  */
1720
1342
  Domain?: Domain;
1721
1343
  }
1722
- export declare namespace UpdateDomainResponse {
1723
- /**
1724
- * @internal
1725
- */
1726
- const filterSensitiveLog: (obj: UpdateDomainResponse) => any;
1727
- }
1344
+ /**
1345
+ * @internal
1346
+ */
1347
+ export declare const AuthenticationConfigurationFilterSensitiveLog: (obj: AuthenticationConfiguration) => any;
1348
+ /**
1349
+ * @internal
1350
+ */
1351
+ export declare const AuthenticationResultFilterSensitiveLog: (obj: AuthenticationResult) => any;
1352
+ /**
1353
+ * @internal
1354
+ */
1355
+ export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (obj: ServerSideEncryptionConfiguration) => any;
1356
+ /**
1357
+ * @internal
1358
+ */
1359
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1360
+ /**
1361
+ * @internal
1362
+ */
1363
+ export declare const CreateDomainRequestFilterSensitiveLog: (obj: CreateDomainRequest) => any;
1364
+ /**
1365
+ * @internal
1366
+ */
1367
+ export declare const ServerSideEncryptionUpdateDetailsFilterSensitiveLog: (obj: ServerSideEncryptionUpdateDetails) => any;
1368
+ /**
1369
+ * @internal
1370
+ */
1371
+ export declare const DomainFilterSensitiveLog: (obj: Domain) => any;
1372
+ /**
1373
+ * @internal
1374
+ */
1375
+ export declare const CreateDomainResponseFilterSensitiveLog: (obj: CreateDomainResponse) => any;
1376
+ /**
1377
+ * @internal
1378
+ */
1379
+ export declare const DeleteDomainRequestFilterSensitiveLog: (obj: DeleteDomainRequest) => any;
1380
+ /**
1381
+ * @internal
1382
+ */
1383
+ export declare const DeleteFraudsterRequestFilterSensitiveLog: (obj: DeleteFraudsterRequest) => any;
1384
+ /**
1385
+ * @internal
1386
+ */
1387
+ export declare const DeleteSpeakerRequestFilterSensitiveLog: (obj: DeleteSpeakerRequest) => any;
1388
+ /**
1389
+ * @internal
1390
+ */
1391
+ export declare const DescribeDomainRequestFilterSensitiveLog: (obj: DescribeDomainRequest) => any;
1392
+ /**
1393
+ * @internal
1394
+ */
1395
+ export declare const DescribeDomainResponseFilterSensitiveLog: (obj: DescribeDomainResponse) => any;
1396
+ /**
1397
+ * @internal
1398
+ */
1399
+ export declare const DescribeFraudsterRequestFilterSensitiveLog: (obj: DescribeFraudsterRequest) => any;
1400
+ /**
1401
+ * @internal
1402
+ */
1403
+ export declare const FraudsterFilterSensitiveLog: (obj: Fraudster) => any;
1404
+ /**
1405
+ * @internal
1406
+ */
1407
+ export declare const DescribeFraudsterResponseFilterSensitiveLog: (obj: DescribeFraudsterResponse) => any;
1408
+ /**
1409
+ * @internal
1410
+ */
1411
+ export declare const DescribeFraudsterRegistrationJobRequestFilterSensitiveLog: (obj: DescribeFraudsterRegistrationJobRequest) => any;
1412
+ /**
1413
+ * @internal
1414
+ */
1415
+ export declare const FailureDetailsFilterSensitiveLog: (obj: FailureDetails) => any;
1416
+ /**
1417
+ * @internal
1418
+ */
1419
+ export declare const InputDataConfigFilterSensitiveLog: (obj: InputDataConfig) => any;
1420
+ /**
1421
+ * @internal
1422
+ */
1423
+ export declare const JobProgressFilterSensitiveLog: (obj: JobProgress) => any;
1424
+ /**
1425
+ * @internal
1426
+ */
1427
+ export declare const OutputDataConfigFilterSensitiveLog: (obj: OutputDataConfig) => any;
1428
+ /**
1429
+ * @internal
1430
+ */
1431
+ export declare const RegistrationConfigFilterSensitiveLog: (obj: RegistrationConfig) => any;
1432
+ /**
1433
+ * @internal
1434
+ */
1435
+ export declare const FraudsterRegistrationJobFilterSensitiveLog: (obj: FraudsterRegistrationJob) => any;
1436
+ /**
1437
+ * @internal
1438
+ */
1439
+ export declare const DescribeFraudsterRegistrationJobResponseFilterSensitiveLog: (obj: DescribeFraudsterRegistrationJobResponse) => any;
1440
+ /**
1441
+ * @internal
1442
+ */
1443
+ export declare const DescribeSpeakerRequestFilterSensitiveLog: (obj: DescribeSpeakerRequest) => any;
1444
+ /**
1445
+ * @internal
1446
+ */
1447
+ export declare const SpeakerFilterSensitiveLog: (obj: Speaker) => any;
1448
+ /**
1449
+ * @internal
1450
+ */
1451
+ export declare const DescribeSpeakerResponseFilterSensitiveLog: (obj: DescribeSpeakerResponse) => any;
1452
+ /**
1453
+ * @internal
1454
+ */
1455
+ export declare const DescribeSpeakerEnrollmentJobRequestFilterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobRequest) => any;
1456
+ /**
1457
+ * @internal
1458
+ */
1459
+ export declare const EnrollmentJobFraudDetectionConfigFilterSensitiveLog: (obj: EnrollmentJobFraudDetectionConfig) => any;
1460
+ /**
1461
+ * @internal
1462
+ */
1463
+ export declare const EnrollmentConfigFilterSensitiveLog: (obj: EnrollmentConfig) => any;
1464
+ /**
1465
+ * @internal
1466
+ */
1467
+ export declare const SpeakerEnrollmentJobFilterSensitiveLog: (obj: SpeakerEnrollmentJob) => any;
1468
+ /**
1469
+ * @internal
1470
+ */
1471
+ export declare const DescribeSpeakerEnrollmentJobResponseFilterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobResponse) => any;
1472
+ /**
1473
+ * @internal
1474
+ */
1475
+ export declare const DomainSummaryFilterSensitiveLog: (obj: DomainSummary) => any;
1476
+ /**
1477
+ * @internal
1478
+ */
1479
+ export declare const EvaluateSessionRequestFilterSensitiveLog: (obj: EvaluateSessionRequest) => any;
1480
+ /**
1481
+ * @internal
1482
+ */
1483
+ export declare const FraudDetectionConfigurationFilterSensitiveLog: (obj: FraudDetectionConfiguration) => any;
1484
+ /**
1485
+ * @internal
1486
+ */
1487
+ export declare const KnownFraudsterRiskFilterSensitiveLog: (obj: KnownFraudsterRisk) => any;
1488
+ /**
1489
+ * @internal
1490
+ */
1491
+ export declare const FraudRiskDetailsFilterSensitiveLog: (obj: FraudRiskDetails) => any;
1492
+ /**
1493
+ * @internal
1494
+ */
1495
+ export declare const FraudDetectionResultFilterSensitiveLog: (obj: FraudDetectionResult) => any;
1496
+ /**
1497
+ * @internal
1498
+ */
1499
+ export declare const EvaluateSessionResponseFilterSensitiveLog: (obj: EvaluateSessionResponse) => any;
1500
+ /**
1501
+ * @internal
1502
+ */
1503
+ export declare const FraudsterRegistrationJobSummaryFilterSensitiveLog: (obj: FraudsterRegistrationJobSummary) => any;
1504
+ /**
1505
+ * @internal
1506
+ */
1507
+ export declare const ListDomainsRequestFilterSensitiveLog: (obj: ListDomainsRequest) => any;
1508
+ /**
1509
+ * @internal
1510
+ */
1511
+ export declare const ListDomainsResponseFilterSensitiveLog: (obj: ListDomainsResponse) => any;
1512
+ /**
1513
+ * @internal
1514
+ */
1515
+ export declare const ListFraudsterRegistrationJobsRequestFilterSensitiveLog: (obj: ListFraudsterRegistrationJobsRequest) => any;
1516
+ /**
1517
+ * @internal
1518
+ */
1519
+ export declare const ListFraudsterRegistrationJobsResponseFilterSensitiveLog: (obj: ListFraudsterRegistrationJobsResponse) => any;
1520
+ /**
1521
+ * @internal
1522
+ */
1523
+ export declare const ListSpeakerEnrollmentJobsRequestFilterSensitiveLog: (obj: ListSpeakerEnrollmentJobsRequest) => any;
1524
+ /**
1525
+ * @internal
1526
+ */
1527
+ export declare const SpeakerEnrollmentJobSummaryFilterSensitiveLog: (obj: SpeakerEnrollmentJobSummary) => any;
1528
+ /**
1529
+ * @internal
1530
+ */
1531
+ export declare const ListSpeakerEnrollmentJobsResponseFilterSensitiveLog: (obj: ListSpeakerEnrollmentJobsResponse) => any;
1532
+ /**
1533
+ * @internal
1534
+ */
1535
+ export declare const ListSpeakersRequestFilterSensitiveLog: (obj: ListSpeakersRequest) => any;
1536
+ /**
1537
+ * @internal
1538
+ */
1539
+ export declare const SpeakerSummaryFilterSensitiveLog: (obj: SpeakerSummary) => any;
1540
+ /**
1541
+ * @internal
1542
+ */
1543
+ export declare const ListSpeakersResponseFilterSensitiveLog: (obj: ListSpeakersResponse) => any;
1544
+ /**
1545
+ * @internal
1546
+ */
1547
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1548
+ /**
1549
+ * @internal
1550
+ */
1551
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1552
+ /**
1553
+ * @internal
1554
+ */
1555
+ export declare const OptOutSpeakerRequestFilterSensitiveLog: (obj: OptOutSpeakerRequest) => any;
1556
+ /**
1557
+ * @internal
1558
+ */
1559
+ export declare const OptOutSpeakerResponseFilterSensitiveLog: (obj: OptOutSpeakerResponse) => any;
1560
+ /**
1561
+ * @internal
1562
+ */
1563
+ export declare const StartFraudsterRegistrationJobRequestFilterSensitiveLog: (obj: StartFraudsterRegistrationJobRequest) => any;
1564
+ /**
1565
+ * @internal
1566
+ */
1567
+ export declare const StartFraudsterRegistrationJobResponseFilterSensitiveLog: (obj: StartFraudsterRegistrationJobResponse) => any;
1568
+ /**
1569
+ * @internal
1570
+ */
1571
+ export declare const StartSpeakerEnrollmentJobRequestFilterSensitiveLog: (obj: StartSpeakerEnrollmentJobRequest) => any;
1572
+ /**
1573
+ * @internal
1574
+ */
1575
+ export declare const StartSpeakerEnrollmentJobResponseFilterSensitiveLog: (obj: StartSpeakerEnrollmentJobResponse) => any;
1576
+ /**
1577
+ * @internal
1578
+ */
1579
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1580
+ /**
1581
+ * @internal
1582
+ */
1583
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1584
+ /**
1585
+ * @internal
1586
+ */
1587
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1588
+ /**
1589
+ * @internal
1590
+ */
1591
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1592
+ /**
1593
+ * @internal
1594
+ */
1595
+ export declare const UpdateDomainRequestFilterSensitiveLog: (obj: UpdateDomainRequest) => any;
1596
+ /**
1597
+ * @internal
1598
+ */
1599
+ export declare const UpdateDomainResponseFilterSensitiveLog: (obj: UpdateDomainResponse) => any;