@aws-sdk/client-voice-id 3.169.0 → 3.171.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 (42) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/VoiceID.d.ts +361 -110
  3. package/dist-types/ts3.4/VoiceIDClient.d.ts +230 -94
  4. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +30 -17
  6. package/dist-types/ts3.4/commands/DeleteFraudsterCommand.d.ts +30 -17
  7. package/dist-types/ts3.4/commands/DeleteSpeakerCommand.d.ts +30 -17
  8. package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DescribeFraudsterCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DescribeFraudsterRegistrationJobCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeSpeakerCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/EvaluateSessionCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListFraudsterRegistrationJobsCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/ListSpeakerEnrollmentJobsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListSpeakersCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/OptOutSpeakerCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/StartFraudsterRegistrationJobCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/StartSpeakerEnrollmentJobCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +6 -6
  28. package/dist-types/ts3.4/models/VoiceIDServiceException.d.ts +7 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +657 -829
  31. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  32. package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListFraudsterRegistrationJobsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListSpeakerEnrollmentJobsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListSpeakersPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  37. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +257 -65
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  42. package/package.json +34 -34
@@ -1,829 +1,657 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
-
12
- export interface AuthenticationConfiguration {
13
-
14
- AcceptanceThreshold: number | undefined;
15
- }
16
- export declare enum AuthenticationDecision {
17
- ACCEPT = "ACCEPT",
18
- NOT_ENOUGH_SPEECH = "NOT_ENOUGH_SPEECH",
19
- REJECT = "REJECT",
20
- SPEAKER_EXPIRED = "SPEAKER_EXPIRED",
21
- SPEAKER_ID_NOT_PROVIDED = "SPEAKER_ID_NOT_PROVIDED",
22
- SPEAKER_NOT_ENROLLED = "SPEAKER_NOT_ENROLLED",
23
- SPEAKER_OPTED_OUT = "SPEAKER_OPTED_OUT"
24
- }
25
-
26
- export interface AuthenticationResult {
27
-
28
- AuthenticationResultId?: string;
29
-
30
- AudioAggregationStartedAt?: Date;
31
-
32
- AudioAggregationEndedAt?: Date;
33
-
34
- CustomerSpeakerId?: string;
35
-
36
- GeneratedSpeakerId?: string;
37
-
38
- Decision?: AuthenticationDecision | string;
39
-
40
- Score?: number;
41
-
42
- Configuration?: AuthenticationConfiguration;
43
- }
44
- export declare enum ConflictType {
45
- ANOTHER_ACTIVE_STREAM = "ANOTHER_ACTIVE_STREAM",
46
- CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT = "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT",
47
- CONCURRENT_CHANGES = "CONCURRENT_CHANGES",
48
- DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES = "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES",
49
- DOMAIN_NOT_ACTIVE = "DOMAIN_NOT_ACTIVE",
50
- ENROLLMENT_ALREADY_EXISTS = "ENROLLMENT_ALREADY_EXISTS",
51
- SPEAKER_NOT_SET = "SPEAKER_NOT_SET",
52
- SPEAKER_OPTED_OUT = "SPEAKER_OPTED_OUT"
53
- }
54
-
55
- export declare class ConflictException extends __BaseException {
56
- readonly name: "ConflictException";
57
- readonly $fault: "client";
58
- Message?: string;
59
-
60
- ConflictType?: ConflictType | string;
61
-
62
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
63
- }
64
-
65
- export interface ServerSideEncryptionConfiguration {
66
-
67
- KmsKeyId: string | undefined;
68
- }
69
-
70
- export interface Tag {
71
-
72
- Key: string | undefined;
73
-
74
- Value: string | undefined;
75
- }
76
- export interface CreateDomainRequest {
77
-
78
- Name: string | undefined;
79
-
80
- Description?: string;
81
-
82
- ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
83
-
84
- ClientToken?: string;
85
-
86
- Tags?: Tag[];
87
- }
88
- export declare enum DomainStatus {
89
- ACTIVE = "ACTIVE",
90
- PENDING = "PENDING",
91
- SUSPENDED = "SUSPENDED"
92
- }
93
- export declare enum ServerSideEncryptionUpdateStatus {
94
- COMPLETED = "COMPLETED",
95
- FAILED = "FAILED",
96
- IN_PROGRESS = "IN_PROGRESS"
97
- }
98
-
99
- export interface ServerSideEncryptionUpdateDetails {
100
-
101
- OldKmsKeyId?: string;
102
-
103
- UpdateStatus?: ServerSideEncryptionUpdateStatus | string;
104
-
105
- Message?: string;
106
- }
107
-
108
- export interface Domain {
109
-
110
- DomainId?: string;
111
-
112
- Arn?: string;
113
-
114
- Name?: string;
115
-
116
- Description?: string;
117
-
118
- DomainStatus?: DomainStatus | string;
119
-
120
- ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
121
-
122
- CreatedAt?: Date;
123
-
124
- UpdatedAt?: Date;
125
-
126
- ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
127
- }
128
- export interface CreateDomainResponse {
129
-
130
- Domain?: Domain;
131
- }
132
-
133
- export declare class InternalServerException extends __BaseException {
134
- readonly name: "InternalServerException";
135
- readonly $fault: "server";
136
- Message?: string;
137
-
138
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
139
- }
140
- export declare enum ResourceType {
141
- BATCH_JOB = "BATCH_JOB",
142
- COMPLIANCE_CONSENT = "COMPLIANCE_CONSENT",
143
- DOMAIN = "DOMAIN",
144
- FRAUDSTER = "FRAUDSTER",
145
- SESSION = "SESSION",
146
- SPEAKER = "SPEAKER"
147
- }
148
-
149
- export declare class ResourceNotFoundException extends __BaseException {
150
- readonly name: "ResourceNotFoundException";
151
- readonly $fault: "client";
152
- Message?: string;
153
-
154
- ResourceType?: ResourceType | string;
155
-
156
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
157
- }
158
-
159
- export declare class ServiceQuotaExceededException extends __BaseException {
160
- readonly name: "ServiceQuotaExceededException";
161
- readonly $fault: "client";
162
- Message?: string;
163
-
164
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
165
- }
166
-
167
- export declare class ThrottlingException extends __BaseException {
168
- readonly name: "ThrottlingException";
169
- readonly $fault: "client";
170
- Message?: string;
171
-
172
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
173
- }
174
-
175
- export declare class ValidationException extends __BaseException {
176
- readonly name: "ValidationException";
177
- readonly $fault: "client";
178
- Message?: string;
179
-
180
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
181
- }
182
- export interface DeleteDomainRequest {
183
-
184
- DomainId: string | undefined;
185
- }
186
- export interface DeleteFraudsterRequest {
187
-
188
- DomainId: string | undefined;
189
-
190
- FraudsterId: string | undefined;
191
- }
192
- export interface DeleteSpeakerRequest {
193
-
194
- DomainId: string | undefined;
195
-
196
- SpeakerId: string | undefined;
197
- }
198
- export interface DescribeDomainRequest {
199
-
200
- DomainId: string | undefined;
201
- }
202
- export interface DescribeDomainResponse {
203
-
204
- Domain?: Domain;
205
- }
206
- export interface DescribeFraudsterRequest {
207
-
208
- DomainId: string | undefined;
209
-
210
- FraudsterId: string | undefined;
211
- }
212
-
213
- export interface Fraudster {
214
-
215
- DomainId?: string;
216
-
217
- GeneratedFraudsterId?: string;
218
-
219
- CreatedAt?: Date;
220
- }
221
- export interface DescribeFraudsterResponse {
222
-
223
- Fraudster?: Fraudster;
224
- }
225
- export interface DescribeFraudsterRegistrationJobRequest {
226
-
227
- DomainId: string | undefined;
228
-
229
- JobId: string | undefined;
230
- }
231
-
232
- export interface FailureDetails {
233
-
234
- StatusCode?: number;
235
-
236
- Message?: string;
237
- }
238
-
239
- export interface InputDataConfig {
240
-
241
- S3Uri: string | undefined;
242
- }
243
-
244
- export interface JobProgress {
245
-
246
- PercentComplete?: number;
247
- }
248
- export declare enum FraudsterRegistrationJobStatus {
249
- COMPLETED = "COMPLETED",
250
- COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
251
- FAILED = "FAILED",
252
- IN_PROGRESS = "IN_PROGRESS",
253
- SUBMITTED = "SUBMITTED"
254
- }
255
-
256
- export interface OutputDataConfig {
257
-
258
- S3Uri: string | undefined;
259
-
260
- KmsKeyId?: string;
261
- }
262
- export declare enum DuplicateRegistrationAction {
263
- REGISTER_AS_NEW = "REGISTER_AS_NEW",
264
- SKIP = "SKIP"
265
- }
266
-
267
- export interface RegistrationConfig {
268
-
269
- DuplicateRegistrationAction?: DuplicateRegistrationAction | string;
270
-
271
- FraudsterSimilarityThreshold?: number;
272
- }
273
-
274
- export interface FraudsterRegistrationJob {
275
-
276
- JobName?: string;
277
-
278
- JobId?: string;
279
-
280
- JobStatus?: FraudsterRegistrationJobStatus | string;
281
-
282
- DomainId?: string;
283
-
284
- DataAccessRoleArn?: string;
285
-
286
- RegistrationConfig?: RegistrationConfig;
287
-
288
- InputDataConfig?: InputDataConfig;
289
-
290
- OutputDataConfig?: OutputDataConfig;
291
-
292
- CreatedAt?: Date;
293
-
294
- EndedAt?: Date;
295
-
296
- FailureDetails?: FailureDetails;
297
-
298
- JobProgress?: JobProgress;
299
- }
300
- export interface DescribeFraudsterRegistrationJobResponse {
301
-
302
- Job?: FraudsterRegistrationJob;
303
- }
304
- export interface DescribeSpeakerRequest {
305
-
306
- DomainId: string | undefined;
307
-
308
- SpeakerId: string | undefined;
309
- }
310
- export declare enum SpeakerStatus {
311
- ENROLLED = "ENROLLED",
312
- EXPIRED = "EXPIRED",
313
- OPTED_OUT = "OPTED_OUT",
314
- PENDING = "PENDING"
315
- }
316
-
317
- export interface Speaker {
318
-
319
- DomainId?: string;
320
-
321
- CustomerSpeakerId?: string;
322
-
323
- GeneratedSpeakerId?: string;
324
-
325
- Status?: SpeakerStatus | string;
326
-
327
- CreatedAt?: Date;
328
-
329
- UpdatedAt?: Date;
330
-
331
- LastAccessedAt?: Date;
332
- }
333
- export interface DescribeSpeakerResponse {
334
-
335
- Speaker?: Speaker;
336
- }
337
- export interface DescribeSpeakerEnrollmentJobRequest {
338
-
339
- DomainId: string | undefined;
340
-
341
- JobId: string | undefined;
342
- }
343
- export declare enum ExistingEnrollmentAction {
344
- OVERWRITE = "OVERWRITE",
345
- SKIP = "SKIP"
346
- }
347
- export declare enum FraudDetectionAction {
348
- FAIL = "FAIL",
349
- IGNORE = "IGNORE"
350
- }
351
-
352
- export interface EnrollmentJobFraudDetectionConfig {
353
-
354
- FraudDetectionAction?: FraudDetectionAction | string;
355
-
356
- RiskThreshold?: number;
357
- }
358
-
359
- export interface EnrollmentConfig {
360
-
361
- ExistingEnrollmentAction?: ExistingEnrollmentAction | string;
362
-
363
- FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig;
364
- }
365
- export declare enum SpeakerEnrollmentJobStatus {
366
- COMPLETED = "COMPLETED",
367
- COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
368
- FAILED = "FAILED",
369
- IN_PROGRESS = "IN_PROGRESS",
370
- SUBMITTED = "SUBMITTED"
371
- }
372
-
373
- export interface SpeakerEnrollmentJob {
374
-
375
- JobName?: string;
376
-
377
- JobId?: string;
378
-
379
- JobStatus?: SpeakerEnrollmentJobStatus | string;
380
-
381
- DomainId?: string;
382
-
383
- DataAccessRoleArn?: string;
384
-
385
- EnrollmentConfig?: EnrollmentConfig;
386
-
387
- InputDataConfig?: InputDataConfig;
388
-
389
- OutputDataConfig?: OutputDataConfig;
390
-
391
- CreatedAt?: Date;
392
-
393
- EndedAt?: Date;
394
-
395
- FailureDetails?: FailureDetails;
396
-
397
- JobProgress?: JobProgress;
398
- }
399
- export interface DescribeSpeakerEnrollmentJobResponse {
400
-
401
- Job?: SpeakerEnrollmentJob;
402
- }
403
- export interface ListDomainsRequest {
404
-
405
- MaxResults?: number;
406
-
407
- NextToken?: string;
408
- }
409
-
410
- export interface DomainSummary {
411
-
412
- DomainId?: string;
413
-
414
- Arn?: string;
415
-
416
- Name?: string;
417
-
418
- Description?: string;
419
-
420
- DomainStatus?: DomainStatus | string;
421
-
422
- ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
423
-
424
- CreatedAt?: Date;
425
-
426
- UpdatedAt?: Date;
427
-
428
- ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
429
- }
430
- export interface ListDomainsResponse {
431
-
432
- DomainSummaries?: DomainSummary[];
433
-
434
- NextToken?: string;
435
- }
436
- export interface UpdateDomainRequest {
437
-
438
- DomainId: string | undefined;
439
-
440
- Name: string | undefined;
441
-
442
- Description?: string;
443
-
444
- ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
445
- }
446
- export interface UpdateDomainResponse {
447
-
448
- Domain?: Domain;
449
- }
450
- export interface EvaluateSessionRequest {
451
-
452
- DomainId: string | undefined;
453
-
454
- SessionNameOrId: string | undefined;
455
- }
456
-
457
- export interface FraudDetectionConfiguration {
458
-
459
- RiskThreshold: number | undefined;
460
- }
461
- export declare enum FraudDetectionDecision {
462
- HIGH_RISK = "HIGH_RISK",
463
- LOW_RISK = "LOW_RISK",
464
- NOT_ENOUGH_SPEECH = "NOT_ENOUGH_SPEECH"
465
- }
466
- export declare enum FraudDetectionReason {
467
- KNOWN_FRAUDSTER = "KNOWN_FRAUDSTER",
468
- VOICE_SPOOFING = "VOICE_SPOOFING"
469
- }
470
-
471
- export interface KnownFraudsterRisk {
472
-
473
- RiskScore: number | undefined;
474
-
475
- GeneratedFraudsterId?: string;
476
- }
477
-
478
- export interface VoiceSpoofingRisk {
479
-
480
- RiskScore: number | undefined;
481
- }
482
-
483
- export interface FraudRiskDetails {
484
-
485
- KnownFraudsterRisk: KnownFraudsterRisk | undefined;
486
-
487
- VoiceSpoofingRisk: VoiceSpoofingRisk | undefined;
488
- }
489
-
490
- export interface FraudDetectionResult {
491
-
492
- FraudDetectionResultId?: string;
493
-
494
- AudioAggregationStartedAt?: Date;
495
-
496
- AudioAggregationEndedAt?: Date;
497
-
498
- Configuration?: FraudDetectionConfiguration;
499
-
500
- Decision?: FraudDetectionDecision | string;
501
-
502
- Reasons?: (FraudDetectionReason | string)[];
503
-
504
- RiskDetails?: FraudRiskDetails;
505
- }
506
- export declare enum StreamingStatus {
507
- ENDED = "ENDED",
508
- ONGOING = "ONGOING",
509
- PENDING_CONFIGURATION = "PENDING_CONFIGURATION"
510
- }
511
- export interface EvaluateSessionResponse {
512
-
513
- DomainId?: string;
514
-
515
- SessionId?: string;
516
-
517
- SessionName?: string;
518
-
519
- StreamingStatus?: StreamingStatus | string;
520
-
521
- AuthenticationResult?: AuthenticationResult;
522
-
523
- FraudDetectionResult?: FraudDetectionResult;
524
- }
525
-
526
- export interface FraudsterRegistrationJobSummary {
527
-
528
- JobName?: string;
529
-
530
- JobId?: string;
531
-
532
- JobStatus?: FraudsterRegistrationJobStatus | string;
533
-
534
- DomainId?: string;
535
-
536
- CreatedAt?: Date;
537
-
538
- EndedAt?: Date;
539
-
540
- FailureDetails?: FailureDetails;
541
-
542
- JobProgress?: JobProgress;
543
- }
544
- export interface ListFraudsterRegistrationJobsRequest {
545
-
546
- DomainId: string | undefined;
547
-
548
- JobStatus?: FraudsterRegistrationJobStatus | string;
549
-
550
- MaxResults?: number;
551
-
552
- NextToken?: string;
553
- }
554
- export interface ListFraudsterRegistrationJobsResponse {
555
-
556
- JobSummaries?: FraudsterRegistrationJobSummary[];
557
-
558
- NextToken?: string;
559
- }
560
- export interface ListSpeakerEnrollmentJobsRequest {
561
-
562
- DomainId: string | undefined;
563
-
564
- JobStatus?: SpeakerEnrollmentJobStatus | string;
565
-
566
- MaxResults?: number;
567
-
568
- NextToken?: string;
569
- }
570
-
571
- export interface SpeakerEnrollmentJobSummary {
572
-
573
- JobName?: string;
574
-
575
- JobId?: string;
576
-
577
- JobStatus?: SpeakerEnrollmentJobStatus | string;
578
-
579
- DomainId?: string;
580
-
581
- CreatedAt?: Date;
582
-
583
- EndedAt?: Date;
584
-
585
- FailureDetails?: FailureDetails;
586
-
587
- JobProgress?: JobProgress;
588
- }
589
- export interface ListSpeakerEnrollmentJobsResponse {
590
-
591
- JobSummaries?: SpeakerEnrollmentJobSummary[];
592
-
593
- NextToken?: string;
594
- }
595
- export interface ListSpeakersRequest {
596
-
597
- DomainId: string | undefined;
598
-
599
- MaxResults?: number;
600
-
601
- NextToken?: string;
602
- }
603
-
604
- export interface SpeakerSummary {
605
-
606
- DomainId?: string;
607
-
608
- CustomerSpeakerId?: string;
609
-
610
- GeneratedSpeakerId?: string;
611
-
612
- Status?: SpeakerStatus | string;
613
-
614
- CreatedAt?: Date;
615
-
616
- UpdatedAt?: Date;
617
-
618
- LastAccessedAt?: Date;
619
- }
620
- export interface ListSpeakersResponse {
621
-
622
- SpeakerSummaries?: SpeakerSummary[];
623
-
624
- NextToken?: string;
625
- }
626
- export interface ListTagsForResourceRequest {
627
-
628
- ResourceArn: string | undefined;
629
- }
630
- export interface ListTagsForResourceResponse {
631
-
632
- Tags?: Tag[];
633
- }
634
- export interface OptOutSpeakerRequest {
635
-
636
- DomainId: string | undefined;
637
-
638
- SpeakerId: string | undefined;
639
- }
640
- export interface OptOutSpeakerResponse {
641
-
642
- Speaker?: Speaker;
643
- }
644
- export interface StartFraudsterRegistrationJobRequest {
645
-
646
- ClientToken?: string;
647
-
648
- JobName?: string;
649
-
650
- DomainId: string | undefined;
651
-
652
- DataAccessRoleArn: string | undefined;
653
-
654
- RegistrationConfig?: RegistrationConfig;
655
-
656
- InputDataConfig: InputDataConfig | undefined;
657
-
658
- OutputDataConfig: OutputDataConfig | undefined;
659
- }
660
- export interface StartFraudsterRegistrationJobResponse {
661
-
662
- Job?: FraudsterRegistrationJob;
663
- }
664
- export interface StartSpeakerEnrollmentJobRequest {
665
-
666
- ClientToken?: string;
667
-
668
- JobName?: string;
669
-
670
- DomainId: string | undefined;
671
-
672
- DataAccessRoleArn: string | undefined;
673
-
674
- EnrollmentConfig?: EnrollmentConfig;
675
-
676
- InputDataConfig: InputDataConfig | undefined;
677
-
678
- OutputDataConfig: OutputDataConfig | undefined;
679
- }
680
- export interface StartSpeakerEnrollmentJobResponse {
681
-
682
- Job?: SpeakerEnrollmentJob;
683
- }
684
- export interface TagResourceRequest {
685
-
686
- ResourceArn: string | undefined;
687
-
688
- Tags: Tag[] | undefined;
689
- }
690
- export interface TagResourceResponse {
691
- }
692
- export interface UntagResourceRequest {
693
-
694
- ResourceArn: string | undefined;
695
-
696
- TagKeys: string[] | undefined;
697
- }
698
- export interface UntagResourceResponse {
699
- }
700
-
701
- export declare const AuthenticationConfigurationFilterSensitiveLog: (obj: AuthenticationConfiguration) => any;
702
-
703
- export declare const AuthenticationResultFilterSensitiveLog: (obj: AuthenticationResult) => any;
704
-
705
- export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (obj: ServerSideEncryptionConfiguration) => any;
706
-
707
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
708
-
709
- export declare const CreateDomainRequestFilterSensitiveLog: (obj: CreateDomainRequest) => any;
710
-
711
- export declare const ServerSideEncryptionUpdateDetailsFilterSensitiveLog: (obj: ServerSideEncryptionUpdateDetails) => any;
712
-
713
- export declare const DomainFilterSensitiveLog: (obj: Domain) => any;
714
-
715
- export declare const CreateDomainResponseFilterSensitiveLog: (obj: CreateDomainResponse) => any;
716
-
717
- export declare const DeleteDomainRequestFilterSensitiveLog: (obj: DeleteDomainRequest) => any;
718
-
719
- export declare const DeleteFraudsterRequestFilterSensitiveLog: (obj: DeleteFraudsterRequest) => any;
720
-
721
- export declare const DeleteSpeakerRequestFilterSensitiveLog: (obj: DeleteSpeakerRequest) => any;
722
-
723
- export declare const DescribeDomainRequestFilterSensitiveLog: (obj: DescribeDomainRequest) => any;
724
-
725
- export declare const DescribeDomainResponseFilterSensitiveLog: (obj: DescribeDomainResponse) => any;
726
-
727
- export declare const DescribeFraudsterRequestFilterSensitiveLog: (obj: DescribeFraudsterRequest) => any;
728
-
729
- export declare const FraudsterFilterSensitiveLog: (obj: Fraudster) => any;
730
-
731
- export declare const DescribeFraudsterResponseFilterSensitiveLog: (obj: DescribeFraudsterResponse) => any;
732
-
733
- export declare const DescribeFraudsterRegistrationJobRequestFilterSensitiveLog: (obj: DescribeFraudsterRegistrationJobRequest) => any;
734
-
735
- export declare const FailureDetailsFilterSensitiveLog: (obj: FailureDetails) => any;
736
-
737
- export declare const InputDataConfigFilterSensitiveLog: (obj: InputDataConfig) => any;
738
-
739
- export declare const JobProgressFilterSensitiveLog: (obj: JobProgress) => any;
740
-
741
- export declare const OutputDataConfigFilterSensitiveLog: (obj: OutputDataConfig) => any;
742
-
743
- export declare const RegistrationConfigFilterSensitiveLog: (obj: RegistrationConfig) => any;
744
-
745
- export declare const FraudsterRegistrationJobFilterSensitiveLog: (obj: FraudsterRegistrationJob) => any;
746
-
747
- export declare const DescribeFraudsterRegistrationJobResponseFilterSensitiveLog: (obj: DescribeFraudsterRegistrationJobResponse) => any;
748
-
749
- export declare const DescribeSpeakerRequestFilterSensitiveLog: (obj: DescribeSpeakerRequest) => any;
750
-
751
- export declare const SpeakerFilterSensitiveLog: (obj: Speaker) => any;
752
-
753
- export declare const DescribeSpeakerResponseFilterSensitiveLog: (obj: DescribeSpeakerResponse) => any;
754
-
755
- export declare const DescribeSpeakerEnrollmentJobRequestFilterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobRequest) => any;
756
-
757
- export declare const EnrollmentJobFraudDetectionConfigFilterSensitiveLog: (obj: EnrollmentJobFraudDetectionConfig) => any;
758
-
759
- export declare const EnrollmentConfigFilterSensitiveLog: (obj: EnrollmentConfig) => any;
760
-
761
- export declare const SpeakerEnrollmentJobFilterSensitiveLog: (obj: SpeakerEnrollmentJob) => any;
762
-
763
- export declare const DescribeSpeakerEnrollmentJobResponseFilterSensitiveLog: (obj: DescribeSpeakerEnrollmentJobResponse) => any;
764
-
765
- export declare const ListDomainsRequestFilterSensitiveLog: (obj: ListDomainsRequest) => any;
766
-
767
- export declare const DomainSummaryFilterSensitiveLog: (obj: DomainSummary) => any;
768
-
769
- export declare const ListDomainsResponseFilterSensitiveLog: (obj: ListDomainsResponse) => any;
770
-
771
- export declare const UpdateDomainRequestFilterSensitiveLog: (obj: UpdateDomainRequest) => any;
772
-
773
- export declare const UpdateDomainResponseFilterSensitiveLog: (obj: UpdateDomainResponse) => any;
774
-
775
- export declare const EvaluateSessionRequestFilterSensitiveLog: (obj: EvaluateSessionRequest) => any;
776
-
777
- export declare const FraudDetectionConfigurationFilterSensitiveLog: (obj: FraudDetectionConfiguration) => any;
778
-
779
- export declare const KnownFraudsterRiskFilterSensitiveLog: (obj: KnownFraudsterRisk) => any;
780
-
781
- export declare const VoiceSpoofingRiskFilterSensitiveLog: (obj: VoiceSpoofingRisk) => any;
782
-
783
- export declare const FraudRiskDetailsFilterSensitiveLog: (obj: FraudRiskDetails) => any;
784
-
785
- export declare const FraudDetectionResultFilterSensitiveLog: (obj: FraudDetectionResult) => any;
786
-
787
- export declare const EvaluateSessionResponseFilterSensitiveLog: (obj: EvaluateSessionResponse) => any;
788
-
789
- export declare const FraudsterRegistrationJobSummaryFilterSensitiveLog: (obj: FraudsterRegistrationJobSummary) => any;
790
-
791
- export declare const ListFraudsterRegistrationJobsRequestFilterSensitiveLog: (obj: ListFraudsterRegistrationJobsRequest) => any;
792
-
793
- export declare const ListFraudsterRegistrationJobsResponseFilterSensitiveLog: (obj: ListFraudsterRegistrationJobsResponse) => any;
794
-
795
- export declare const ListSpeakerEnrollmentJobsRequestFilterSensitiveLog: (obj: ListSpeakerEnrollmentJobsRequest) => any;
796
-
797
- export declare const SpeakerEnrollmentJobSummaryFilterSensitiveLog: (obj: SpeakerEnrollmentJobSummary) => any;
798
-
799
- export declare const ListSpeakerEnrollmentJobsResponseFilterSensitiveLog: (obj: ListSpeakerEnrollmentJobsResponse) => any;
800
-
801
- export declare const ListSpeakersRequestFilterSensitiveLog: (obj: ListSpeakersRequest) => any;
802
-
803
- export declare const SpeakerSummaryFilterSensitiveLog: (obj: SpeakerSummary) => any;
804
-
805
- export declare const ListSpeakersResponseFilterSensitiveLog: (obj: ListSpeakersResponse) => any;
806
-
807
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
808
-
809
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
810
-
811
- export declare const OptOutSpeakerRequestFilterSensitiveLog: (obj: OptOutSpeakerRequest) => any;
812
-
813
- export declare const OptOutSpeakerResponseFilterSensitiveLog: (obj: OptOutSpeakerResponse) => any;
814
-
815
- export declare const StartFraudsterRegistrationJobRequestFilterSensitiveLog: (obj: StartFraudsterRegistrationJobRequest) => any;
816
-
817
- export declare const StartFraudsterRegistrationJobResponseFilterSensitiveLog: (obj: StartFraudsterRegistrationJobResponse) => any;
818
-
819
- export declare const StartSpeakerEnrollmentJobRequestFilterSensitiveLog: (obj: StartSpeakerEnrollmentJobRequest) => any;
820
-
821
- export declare const StartSpeakerEnrollmentJobResponseFilterSensitiveLog: (obj: StartSpeakerEnrollmentJobResponse) => any;
822
-
823
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
824
-
825
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
826
-
827
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
828
-
829
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export interface AuthenticationConfiguration {
12
+ AcceptanceThreshold: number | undefined;
13
+ }
14
+ export declare enum AuthenticationDecision {
15
+ ACCEPT = "ACCEPT",
16
+ NOT_ENOUGH_SPEECH = "NOT_ENOUGH_SPEECH",
17
+ REJECT = "REJECT",
18
+ SPEAKER_EXPIRED = "SPEAKER_EXPIRED",
19
+ SPEAKER_ID_NOT_PROVIDED = "SPEAKER_ID_NOT_PROVIDED",
20
+ SPEAKER_NOT_ENROLLED = "SPEAKER_NOT_ENROLLED",
21
+ SPEAKER_OPTED_OUT = "SPEAKER_OPTED_OUT",
22
+ }
23
+ export interface AuthenticationResult {
24
+ AuthenticationResultId?: string;
25
+ AudioAggregationStartedAt?: Date;
26
+ AudioAggregationEndedAt?: Date;
27
+ CustomerSpeakerId?: string;
28
+ GeneratedSpeakerId?: string;
29
+ Decision?: AuthenticationDecision | string;
30
+ Score?: number;
31
+ Configuration?: AuthenticationConfiguration;
32
+ }
33
+ export declare enum ConflictType {
34
+ ANOTHER_ACTIVE_STREAM = "ANOTHER_ACTIVE_STREAM",
35
+ CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT = "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT",
36
+ CONCURRENT_CHANGES = "CONCURRENT_CHANGES",
37
+ DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES = "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES",
38
+ DOMAIN_NOT_ACTIVE = "DOMAIN_NOT_ACTIVE",
39
+ ENROLLMENT_ALREADY_EXISTS = "ENROLLMENT_ALREADY_EXISTS",
40
+ SPEAKER_NOT_SET = "SPEAKER_NOT_SET",
41
+ SPEAKER_OPTED_OUT = "SPEAKER_OPTED_OUT",
42
+ }
43
+ export declare class ConflictException extends __BaseException {
44
+ readonly name: "ConflictException";
45
+ readonly $fault: "client";
46
+ Message?: string;
47
+ ConflictType?: ConflictType | string;
48
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
49
+ }
50
+ export interface ServerSideEncryptionConfiguration {
51
+ KmsKeyId: string | undefined;
52
+ }
53
+ export interface Tag {
54
+ Key: string | undefined;
55
+ Value: string | undefined;
56
+ }
57
+ export interface CreateDomainRequest {
58
+ Name: string | undefined;
59
+ Description?: string;
60
+ ServerSideEncryptionConfiguration:
61
+ | ServerSideEncryptionConfiguration
62
+ | undefined;
63
+ ClientToken?: string;
64
+ Tags?: Tag[];
65
+ }
66
+ export declare enum DomainStatus {
67
+ ACTIVE = "ACTIVE",
68
+ PENDING = "PENDING",
69
+ SUSPENDED = "SUSPENDED",
70
+ }
71
+ export declare enum ServerSideEncryptionUpdateStatus {
72
+ COMPLETED = "COMPLETED",
73
+ FAILED = "FAILED",
74
+ IN_PROGRESS = "IN_PROGRESS",
75
+ }
76
+ export interface ServerSideEncryptionUpdateDetails {
77
+ OldKmsKeyId?: string;
78
+ UpdateStatus?: ServerSideEncryptionUpdateStatus | string;
79
+ Message?: string;
80
+ }
81
+ export interface Domain {
82
+ DomainId?: string;
83
+ Arn?: string;
84
+ Name?: string;
85
+ Description?: string;
86
+ DomainStatus?: DomainStatus | string;
87
+ ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
88
+ CreatedAt?: Date;
89
+ UpdatedAt?: Date;
90
+ ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
91
+ }
92
+ export interface CreateDomainResponse {
93
+ Domain?: Domain;
94
+ }
95
+ export declare class InternalServerException extends __BaseException {
96
+ readonly name: "InternalServerException";
97
+ readonly $fault: "server";
98
+ Message?: string;
99
+ constructor(
100
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
101
+ );
102
+ }
103
+ export declare enum ResourceType {
104
+ BATCH_JOB = "BATCH_JOB",
105
+ COMPLIANCE_CONSENT = "COMPLIANCE_CONSENT",
106
+ DOMAIN = "DOMAIN",
107
+ FRAUDSTER = "FRAUDSTER",
108
+ SESSION = "SESSION",
109
+ SPEAKER = "SPEAKER",
110
+ }
111
+ export declare class ResourceNotFoundException extends __BaseException {
112
+ readonly name: "ResourceNotFoundException";
113
+ readonly $fault: "client";
114
+ Message?: string;
115
+ ResourceType?: ResourceType | string;
116
+ constructor(
117
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
118
+ );
119
+ }
120
+ export declare class ServiceQuotaExceededException extends __BaseException {
121
+ readonly name: "ServiceQuotaExceededException";
122
+ readonly $fault: "client";
123
+ Message?: string;
124
+ constructor(
125
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
126
+ );
127
+ }
128
+ export declare class ThrottlingException extends __BaseException {
129
+ readonly name: "ThrottlingException";
130
+ readonly $fault: "client";
131
+ Message?: string;
132
+ constructor(
133
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
134
+ );
135
+ }
136
+ export declare class ValidationException extends __BaseException {
137
+ readonly name: "ValidationException";
138
+ readonly $fault: "client";
139
+ Message?: string;
140
+ constructor(
141
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
142
+ );
143
+ }
144
+ export interface DeleteDomainRequest {
145
+ DomainId: string | undefined;
146
+ }
147
+ export interface DeleteFraudsterRequest {
148
+ DomainId: string | undefined;
149
+ FraudsterId: string | undefined;
150
+ }
151
+ export interface DeleteSpeakerRequest {
152
+ DomainId: string | undefined;
153
+ SpeakerId: string | undefined;
154
+ }
155
+ export interface DescribeDomainRequest {
156
+ DomainId: string | undefined;
157
+ }
158
+ export interface DescribeDomainResponse {
159
+ Domain?: Domain;
160
+ }
161
+ export interface DescribeFraudsterRequest {
162
+ DomainId: string | undefined;
163
+ FraudsterId: string | undefined;
164
+ }
165
+ export interface Fraudster {
166
+ DomainId?: string;
167
+ GeneratedFraudsterId?: string;
168
+ CreatedAt?: Date;
169
+ }
170
+ export interface DescribeFraudsterResponse {
171
+ Fraudster?: Fraudster;
172
+ }
173
+ export interface DescribeFraudsterRegistrationJobRequest {
174
+ DomainId: string | undefined;
175
+ JobId: string | undefined;
176
+ }
177
+ export interface FailureDetails {
178
+ StatusCode?: number;
179
+ Message?: string;
180
+ }
181
+ export interface InputDataConfig {
182
+ S3Uri: string | undefined;
183
+ }
184
+ export interface JobProgress {
185
+ PercentComplete?: number;
186
+ }
187
+ export declare enum FraudsterRegistrationJobStatus {
188
+ COMPLETED = "COMPLETED",
189
+ COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
190
+ FAILED = "FAILED",
191
+ IN_PROGRESS = "IN_PROGRESS",
192
+ SUBMITTED = "SUBMITTED",
193
+ }
194
+ export interface OutputDataConfig {
195
+ S3Uri: string | undefined;
196
+ KmsKeyId?: string;
197
+ }
198
+ export declare enum DuplicateRegistrationAction {
199
+ REGISTER_AS_NEW = "REGISTER_AS_NEW",
200
+ SKIP = "SKIP",
201
+ }
202
+ export interface RegistrationConfig {
203
+ DuplicateRegistrationAction?: DuplicateRegistrationAction | string;
204
+ FraudsterSimilarityThreshold?: number;
205
+ }
206
+ export interface FraudsterRegistrationJob {
207
+ JobName?: string;
208
+ JobId?: string;
209
+ JobStatus?: FraudsterRegistrationJobStatus | string;
210
+ DomainId?: string;
211
+ DataAccessRoleArn?: string;
212
+ RegistrationConfig?: RegistrationConfig;
213
+ InputDataConfig?: InputDataConfig;
214
+ OutputDataConfig?: OutputDataConfig;
215
+ CreatedAt?: Date;
216
+ EndedAt?: Date;
217
+ FailureDetails?: FailureDetails;
218
+ JobProgress?: JobProgress;
219
+ }
220
+ export interface DescribeFraudsterRegistrationJobResponse {
221
+ Job?: FraudsterRegistrationJob;
222
+ }
223
+ export interface DescribeSpeakerRequest {
224
+ DomainId: string | undefined;
225
+ SpeakerId: string | undefined;
226
+ }
227
+ export declare enum SpeakerStatus {
228
+ ENROLLED = "ENROLLED",
229
+ EXPIRED = "EXPIRED",
230
+ OPTED_OUT = "OPTED_OUT",
231
+ PENDING = "PENDING",
232
+ }
233
+ export interface Speaker {
234
+ DomainId?: string;
235
+ CustomerSpeakerId?: string;
236
+ GeneratedSpeakerId?: string;
237
+ Status?: SpeakerStatus | string;
238
+ CreatedAt?: Date;
239
+ UpdatedAt?: Date;
240
+ LastAccessedAt?: Date;
241
+ }
242
+ export interface DescribeSpeakerResponse {
243
+ Speaker?: Speaker;
244
+ }
245
+ export interface DescribeSpeakerEnrollmentJobRequest {
246
+ DomainId: string | undefined;
247
+ JobId: string | undefined;
248
+ }
249
+ export declare enum ExistingEnrollmentAction {
250
+ OVERWRITE = "OVERWRITE",
251
+ SKIP = "SKIP",
252
+ }
253
+ export declare enum FraudDetectionAction {
254
+ FAIL = "FAIL",
255
+ IGNORE = "IGNORE",
256
+ }
257
+ export interface EnrollmentJobFraudDetectionConfig {
258
+ FraudDetectionAction?: FraudDetectionAction | string;
259
+ RiskThreshold?: number;
260
+ }
261
+ export interface EnrollmentConfig {
262
+ ExistingEnrollmentAction?: ExistingEnrollmentAction | string;
263
+ FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig;
264
+ }
265
+ export declare enum SpeakerEnrollmentJobStatus {
266
+ COMPLETED = "COMPLETED",
267
+ COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
268
+ FAILED = "FAILED",
269
+ IN_PROGRESS = "IN_PROGRESS",
270
+ SUBMITTED = "SUBMITTED",
271
+ }
272
+ export interface SpeakerEnrollmentJob {
273
+ JobName?: string;
274
+ JobId?: string;
275
+ JobStatus?: SpeakerEnrollmentJobStatus | string;
276
+ DomainId?: string;
277
+ DataAccessRoleArn?: string;
278
+ EnrollmentConfig?: EnrollmentConfig;
279
+ InputDataConfig?: InputDataConfig;
280
+ OutputDataConfig?: OutputDataConfig;
281
+ CreatedAt?: Date;
282
+ EndedAt?: Date;
283
+ FailureDetails?: FailureDetails;
284
+ JobProgress?: JobProgress;
285
+ }
286
+ export interface DescribeSpeakerEnrollmentJobResponse {
287
+ Job?: SpeakerEnrollmentJob;
288
+ }
289
+ export interface ListDomainsRequest {
290
+ MaxResults?: number;
291
+ NextToken?: string;
292
+ }
293
+ export interface DomainSummary {
294
+ DomainId?: string;
295
+ Arn?: string;
296
+ Name?: string;
297
+ Description?: string;
298
+ DomainStatus?: DomainStatus | string;
299
+ ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
300
+ CreatedAt?: Date;
301
+ UpdatedAt?: Date;
302
+ ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
303
+ }
304
+ export interface ListDomainsResponse {
305
+ DomainSummaries?: DomainSummary[];
306
+ NextToken?: string;
307
+ }
308
+ export interface UpdateDomainRequest {
309
+ DomainId: string | undefined;
310
+ Name: string | undefined;
311
+ Description?: string;
312
+ ServerSideEncryptionConfiguration:
313
+ | ServerSideEncryptionConfiguration
314
+ | undefined;
315
+ }
316
+ export interface UpdateDomainResponse {
317
+ Domain?: Domain;
318
+ }
319
+ export interface EvaluateSessionRequest {
320
+ DomainId: string | undefined;
321
+ SessionNameOrId: string | undefined;
322
+ }
323
+ export interface FraudDetectionConfiguration {
324
+ RiskThreshold: number | undefined;
325
+ }
326
+ export declare enum FraudDetectionDecision {
327
+ HIGH_RISK = "HIGH_RISK",
328
+ LOW_RISK = "LOW_RISK",
329
+ NOT_ENOUGH_SPEECH = "NOT_ENOUGH_SPEECH",
330
+ }
331
+ export declare enum FraudDetectionReason {
332
+ KNOWN_FRAUDSTER = "KNOWN_FRAUDSTER",
333
+ VOICE_SPOOFING = "VOICE_SPOOFING",
334
+ }
335
+ export interface KnownFraudsterRisk {
336
+ RiskScore: number | undefined;
337
+ GeneratedFraudsterId?: string;
338
+ }
339
+ export interface VoiceSpoofingRisk {
340
+ RiskScore: number | undefined;
341
+ }
342
+ export interface FraudRiskDetails {
343
+ KnownFraudsterRisk: KnownFraudsterRisk | undefined;
344
+ VoiceSpoofingRisk: VoiceSpoofingRisk | undefined;
345
+ }
346
+ export interface FraudDetectionResult {
347
+ FraudDetectionResultId?: string;
348
+ AudioAggregationStartedAt?: Date;
349
+ AudioAggregationEndedAt?: Date;
350
+ Configuration?: FraudDetectionConfiguration;
351
+ Decision?: FraudDetectionDecision | string;
352
+ Reasons?: (FraudDetectionReason | string)[];
353
+ RiskDetails?: FraudRiskDetails;
354
+ }
355
+ export declare enum StreamingStatus {
356
+ ENDED = "ENDED",
357
+ ONGOING = "ONGOING",
358
+ PENDING_CONFIGURATION = "PENDING_CONFIGURATION",
359
+ }
360
+ export interface EvaluateSessionResponse {
361
+ DomainId?: string;
362
+ SessionId?: string;
363
+ SessionName?: string;
364
+ StreamingStatus?: StreamingStatus | string;
365
+ AuthenticationResult?: AuthenticationResult;
366
+ FraudDetectionResult?: FraudDetectionResult;
367
+ }
368
+ export interface FraudsterRegistrationJobSummary {
369
+ JobName?: string;
370
+ JobId?: string;
371
+ JobStatus?: FraudsterRegistrationJobStatus | string;
372
+ DomainId?: string;
373
+ CreatedAt?: Date;
374
+ EndedAt?: Date;
375
+ FailureDetails?: FailureDetails;
376
+ JobProgress?: JobProgress;
377
+ }
378
+ export interface ListFraudsterRegistrationJobsRequest {
379
+ DomainId: string | undefined;
380
+ JobStatus?: FraudsterRegistrationJobStatus | string;
381
+ MaxResults?: number;
382
+ NextToken?: string;
383
+ }
384
+ export interface ListFraudsterRegistrationJobsResponse {
385
+ JobSummaries?: FraudsterRegistrationJobSummary[];
386
+ NextToken?: string;
387
+ }
388
+ export interface ListSpeakerEnrollmentJobsRequest {
389
+ DomainId: string | undefined;
390
+ JobStatus?: SpeakerEnrollmentJobStatus | string;
391
+ MaxResults?: number;
392
+ NextToken?: string;
393
+ }
394
+ export interface SpeakerEnrollmentJobSummary {
395
+ JobName?: string;
396
+ JobId?: string;
397
+ JobStatus?: SpeakerEnrollmentJobStatus | string;
398
+ DomainId?: string;
399
+ CreatedAt?: Date;
400
+ EndedAt?: Date;
401
+ FailureDetails?: FailureDetails;
402
+ JobProgress?: JobProgress;
403
+ }
404
+ export interface ListSpeakerEnrollmentJobsResponse {
405
+ JobSummaries?: SpeakerEnrollmentJobSummary[];
406
+ NextToken?: string;
407
+ }
408
+ export interface ListSpeakersRequest {
409
+ DomainId: string | undefined;
410
+ MaxResults?: number;
411
+ NextToken?: string;
412
+ }
413
+ export interface SpeakerSummary {
414
+ DomainId?: string;
415
+ CustomerSpeakerId?: string;
416
+ GeneratedSpeakerId?: string;
417
+ Status?: SpeakerStatus | string;
418
+ CreatedAt?: Date;
419
+ UpdatedAt?: Date;
420
+ LastAccessedAt?: Date;
421
+ }
422
+ export interface ListSpeakersResponse {
423
+ SpeakerSummaries?: SpeakerSummary[];
424
+ NextToken?: string;
425
+ }
426
+ export interface ListTagsForResourceRequest {
427
+ ResourceArn: string | undefined;
428
+ }
429
+ export interface ListTagsForResourceResponse {
430
+ Tags?: Tag[];
431
+ }
432
+ export interface OptOutSpeakerRequest {
433
+ DomainId: string | undefined;
434
+ SpeakerId: string | undefined;
435
+ }
436
+ export interface OptOutSpeakerResponse {
437
+ Speaker?: Speaker;
438
+ }
439
+ export interface StartFraudsterRegistrationJobRequest {
440
+ ClientToken?: string;
441
+ JobName?: string;
442
+ DomainId: string | undefined;
443
+ DataAccessRoleArn: string | undefined;
444
+ RegistrationConfig?: RegistrationConfig;
445
+ InputDataConfig: InputDataConfig | undefined;
446
+ OutputDataConfig: OutputDataConfig | undefined;
447
+ }
448
+ export interface StartFraudsterRegistrationJobResponse {
449
+ Job?: FraudsterRegistrationJob;
450
+ }
451
+ export interface StartSpeakerEnrollmentJobRequest {
452
+ ClientToken?: string;
453
+ JobName?: string;
454
+ DomainId: string | undefined;
455
+ DataAccessRoleArn: string | undefined;
456
+ EnrollmentConfig?: EnrollmentConfig;
457
+ InputDataConfig: InputDataConfig | undefined;
458
+ OutputDataConfig: OutputDataConfig | undefined;
459
+ }
460
+ export interface StartSpeakerEnrollmentJobResponse {
461
+ Job?: SpeakerEnrollmentJob;
462
+ }
463
+ export interface TagResourceRequest {
464
+ ResourceArn: string | undefined;
465
+ Tags: Tag[] | undefined;
466
+ }
467
+ export interface TagResourceResponse {}
468
+ export interface UntagResourceRequest {
469
+ ResourceArn: string | undefined;
470
+ TagKeys: string[] | undefined;
471
+ }
472
+ export interface UntagResourceResponse {}
473
+ export declare const AuthenticationConfigurationFilterSensitiveLog: (
474
+ obj: AuthenticationConfiguration
475
+ ) => any;
476
+ export declare const AuthenticationResultFilterSensitiveLog: (
477
+ obj: AuthenticationResult
478
+ ) => any;
479
+ export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (
480
+ obj: ServerSideEncryptionConfiguration
481
+ ) => any;
482
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
483
+ export declare const CreateDomainRequestFilterSensitiveLog: (
484
+ obj: CreateDomainRequest
485
+ ) => any;
486
+ export declare const ServerSideEncryptionUpdateDetailsFilterSensitiveLog: (
487
+ obj: ServerSideEncryptionUpdateDetails
488
+ ) => any;
489
+ export declare const DomainFilterSensitiveLog: (obj: Domain) => any;
490
+ export declare const CreateDomainResponseFilterSensitiveLog: (
491
+ obj: CreateDomainResponse
492
+ ) => any;
493
+ export declare const DeleteDomainRequestFilterSensitiveLog: (
494
+ obj: DeleteDomainRequest
495
+ ) => any;
496
+ export declare const DeleteFraudsterRequestFilterSensitiveLog: (
497
+ obj: DeleteFraudsterRequest
498
+ ) => any;
499
+ export declare const DeleteSpeakerRequestFilterSensitiveLog: (
500
+ obj: DeleteSpeakerRequest
501
+ ) => any;
502
+ export declare const DescribeDomainRequestFilterSensitiveLog: (
503
+ obj: DescribeDomainRequest
504
+ ) => any;
505
+ export declare const DescribeDomainResponseFilterSensitiveLog: (
506
+ obj: DescribeDomainResponse
507
+ ) => any;
508
+ export declare const DescribeFraudsterRequestFilterSensitiveLog: (
509
+ obj: DescribeFraudsterRequest
510
+ ) => any;
511
+ export declare const FraudsterFilterSensitiveLog: (obj: Fraudster) => any;
512
+ export declare const DescribeFraudsterResponseFilterSensitiveLog: (
513
+ obj: DescribeFraudsterResponse
514
+ ) => any;
515
+ export declare const DescribeFraudsterRegistrationJobRequestFilterSensitiveLog: (
516
+ obj: DescribeFraudsterRegistrationJobRequest
517
+ ) => any;
518
+ export declare const FailureDetailsFilterSensitiveLog: (
519
+ obj: FailureDetails
520
+ ) => any;
521
+ export declare const InputDataConfigFilterSensitiveLog: (
522
+ obj: InputDataConfig
523
+ ) => any;
524
+ export declare const JobProgressFilterSensitiveLog: (obj: JobProgress) => any;
525
+ export declare const OutputDataConfigFilterSensitiveLog: (
526
+ obj: OutputDataConfig
527
+ ) => any;
528
+ export declare const RegistrationConfigFilterSensitiveLog: (
529
+ obj: RegistrationConfig
530
+ ) => any;
531
+ export declare const FraudsterRegistrationJobFilterSensitiveLog: (
532
+ obj: FraudsterRegistrationJob
533
+ ) => any;
534
+ export declare const DescribeFraudsterRegistrationJobResponseFilterSensitiveLog: (
535
+ obj: DescribeFraudsterRegistrationJobResponse
536
+ ) => any;
537
+ export declare const DescribeSpeakerRequestFilterSensitiveLog: (
538
+ obj: DescribeSpeakerRequest
539
+ ) => any;
540
+ export declare const SpeakerFilterSensitiveLog: (obj: Speaker) => any;
541
+ export declare const DescribeSpeakerResponseFilterSensitiveLog: (
542
+ obj: DescribeSpeakerResponse
543
+ ) => any;
544
+ export declare const DescribeSpeakerEnrollmentJobRequestFilterSensitiveLog: (
545
+ obj: DescribeSpeakerEnrollmentJobRequest
546
+ ) => any;
547
+ export declare const EnrollmentJobFraudDetectionConfigFilterSensitiveLog: (
548
+ obj: EnrollmentJobFraudDetectionConfig
549
+ ) => any;
550
+ export declare const EnrollmentConfigFilterSensitiveLog: (
551
+ obj: EnrollmentConfig
552
+ ) => any;
553
+ export declare const SpeakerEnrollmentJobFilterSensitiveLog: (
554
+ obj: SpeakerEnrollmentJob
555
+ ) => any;
556
+ export declare const DescribeSpeakerEnrollmentJobResponseFilterSensitiveLog: (
557
+ obj: DescribeSpeakerEnrollmentJobResponse
558
+ ) => any;
559
+ export declare const ListDomainsRequestFilterSensitiveLog: (
560
+ obj: ListDomainsRequest
561
+ ) => any;
562
+ export declare const DomainSummaryFilterSensitiveLog: (
563
+ obj: DomainSummary
564
+ ) => any;
565
+ export declare const ListDomainsResponseFilterSensitiveLog: (
566
+ obj: ListDomainsResponse
567
+ ) => any;
568
+ export declare const UpdateDomainRequestFilterSensitiveLog: (
569
+ obj: UpdateDomainRequest
570
+ ) => any;
571
+ export declare const UpdateDomainResponseFilterSensitiveLog: (
572
+ obj: UpdateDomainResponse
573
+ ) => any;
574
+ export declare const EvaluateSessionRequestFilterSensitiveLog: (
575
+ obj: EvaluateSessionRequest
576
+ ) => any;
577
+ export declare const FraudDetectionConfigurationFilterSensitiveLog: (
578
+ obj: FraudDetectionConfiguration
579
+ ) => any;
580
+ export declare const KnownFraudsterRiskFilterSensitiveLog: (
581
+ obj: KnownFraudsterRisk
582
+ ) => any;
583
+ export declare const VoiceSpoofingRiskFilterSensitiveLog: (
584
+ obj: VoiceSpoofingRisk
585
+ ) => any;
586
+ export declare const FraudRiskDetailsFilterSensitiveLog: (
587
+ obj: FraudRiskDetails
588
+ ) => any;
589
+ export declare const FraudDetectionResultFilterSensitiveLog: (
590
+ obj: FraudDetectionResult
591
+ ) => any;
592
+ export declare const EvaluateSessionResponseFilterSensitiveLog: (
593
+ obj: EvaluateSessionResponse
594
+ ) => any;
595
+ export declare const FraudsterRegistrationJobSummaryFilterSensitiveLog: (
596
+ obj: FraudsterRegistrationJobSummary
597
+ ) => any;
598
+ export declare const ListFraudsterRegistrationJobsRequestFilterSensitiveLog: (
599
+ obj: ListFraudsterRegistrationJobsRequest
600
+ ) => any;
601
+ export declare const ListFraudsterRegistrationJobsResponseFilterSensitiveLog: (
602
+ obj: ListFraudsterRegistrationJobsResponse
603
+ ) => any;
604
+ export declare const ListSpeakerEnrollmentJobsRequestFilterSensitiveLog: (
605
+ obj: ListSpeakerEnrollmentJobsRequest
606
+ ) => any;
607
+ export declare const SpeakerEnrollmentJobSummaryFilterSensitiveLog: (
608
+ obj: SpeakerEnrollmentJobSummary
609
+ ) => any;
610
+ export declare const ListSpeakerEnrollmentJobsResponseFilterSensitiveLog: (
611
+ obj: ListSpeakerEnrollmentJobsResponse
612
+ ) => any;
613
+ export declare const ListSpeakersRequestFilterSensitiveLog: (
614
+ obj: ListSpeakersRequest
615
+ ) => any;
616
+ export declare const SpeakerSummaryFilterSensitiveLog: (
617
+ obj: SpeakerSummary
618
+ ) => any;
619
+ export declare const ListSpeakersResponseFilterSensitiveLog: (
620
+ obj: ListSpeakersResponse
621
+ ) => any;
622
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
623
+ obj: ListTagsForResourceRequest
624
+ ) => any;
625
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
626
+ obj: ListTagsForResourceResponse
627
+ ) => any;
628
+ export declare const OptOutSpeakerRequestFilterSensitiveLog: (
629
+ obj: OptOutSpeakerRequest
630
+ ) => any;
631
+ export declare const OptOutSpeakerResponseFilterSensitiveLog: (
632
+ obj: OptOutSpeakerResponse
633
+ ) => any;
634
+ export declare const StartFraudsterRegistrationJobRequestFilterSensitiveLog: (
635
+ obj: StartFraudsterRegistrationJobRequest
636
+ ) => any;
637
+ export declare const StartFraudsterRegistrationJobResponseFilterSensitiveLog: (
638
+ obj: StartFraudsterRegistrationJobResponse
639
+ ) => any;
640
+ export declare const StartSpeakerEnrollmentJobRequestFilterSensitiveLog: (
641
+ obj: StartSpeakerEnrollmentJobRequest
642
+ ) => any;
643
+ export declare const StartSpeakerEnrollmentJobResponseFilterSensitiveLog: (
644
+ obj: StartSpeakerEnrollmentJobResponse
645
+ ) => any;
646
+ export declare const TagResourceRequestFilterSensitiveLog: (
647
+ obj: TagResourceRequest
648
+ ) => any;
649
+ export declare const TagResourceResponseFilterSensitiveLog: (
650
+ obj: TagResourceResponse
651
+ ) => any;
652
+ export declare const UntagResourceRequestFilterSensitiveLog: (
653
+ obj: UntagResourceRequest
654
+ ) => any;
655
+ export declare const UntagResourceResponseFilterSensitiveLog: (
656
+ obj: UntagResourceResponse
657
+ ) => any;