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