@aws-sdk/client-voice-id 3.686.0 → 3.691.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.
@@ -3,7 +3,7 @@ import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceExce
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -14,13 +14,13 @@ export interface AssociateFraudsterRequest {
14
14
  FraudsterId: string | undefined;
15
15
  }
16
16
  export interface Fraudster {
17
- DomainId?: string;
18
- GeneratedFraudsterId?: string;
19
- CreatedAt?: Date;
20
- WatchlistIds?: string[];
17
+ DomainId?: string | undefined;
18
+ GeneratedFraudsterId?: string | undefined;
19
+ CreatedAt?: Date | undefined;
20
+ WatchlistIds?: string[] | undefined;
21
21
  }
22
22
  export interface AssociateFraudsterResponse {
23
- Fraudster?: Fraudster;
23
+ Fraudster?: Fraudster | undefined;
24
24
  }
25
25
  export declare const ConflictType: {
26
26
  readonly ANOTHER_ACTIVE_STREAM: "ANOTHER_ACTIVE_STREAM";
@@ -38,14 +38,14 @@ export type ConflictType = (typeof ConflictType)[keyof typeof ConflictType];
38
38
  export declare class ConflictException extends __BaseException {
39
39
  readonly name: "ConflictException";
40
40
  readonly $fault: "client";
41
- Message?: string;
42
- ConflictType?: ConflictType;
41
+ Message?: string | undefined;
42
+ ConflictType?: ConflictType | undefined;
43
43
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
44
44
  }
45
45
  export declare class InternalServerException extends __BaseException {
46
46
  readonly name: "InternalServerException";
47
47
  readonly $fault: "server";
48
- Message?: string;
48
+ Message?: string | undefined;
49
49
  constructor(
50
50
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
51
51
  );
@@ -63,8 +63,8 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
63
63
  export declare class ResourceNotFoundException extends __BaseException {
64
64
  readonly name: "ResourceNotFoundException";
65
65
  readonly $fault: "client";
66
- Message?: string;
67
- ResourceType?: ResourceType;
66
+ Message?: string | undefined;
67
+ ResourceType?: ResourceType | undefined;
68
68
  constructor(
69
69
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
70
70
  );
@@ -72,7 +72,7 @@ export declare class ResourceNotFoundException extends __BaseException {
72
72
  export declare class ServiceQuotaExceededException extends __BaseException {
73
73
  readonly name: "ServiceQuotaExceededException";
74
74
  readonly $fault: "client";
75
- Message?: string;
75
+ Message?: string | undefined;
76
76
  constructor(
77
77
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
78
78
  );
@@ -80,7 +80,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
80
80
  export declare class ThrottlingException extends __BaseException {
81
81
  readonly name: "ThrottlingException";
82
82
  readonly $fault: "client";
83
- Message?: string;
83
+ Message?: string | undefined;
84
84
  constructor(
85
85
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
86
86
  );
@@ -88,7 +88,7 @@ export declare class ThrottlingException extends __BaseException {
88
88
  export declare class ValidationException extends __BaseException {
89
89
  readonly name: "ValidationException";
90
90
  readonly $fault: "client";
91
- Message?: string;
91
+ Message?: string | undefined;
92
92
  constructor(
93
93
  opts: __ExceptionOptionType<ValidationException, __BaseException>
94
94
  );
@@ -108,14 +108,14 @@ export declare const AuthenticationDecision: {
108
108
  export type AuthenticationDecision =
109
109
  (typeof AuthenticationDecision)[keyof typeof AuthenticationDecision];
110
110
  export interface AuthenticationResult {
111
- AuthenticationResultId?: string;
112
- AudioAggregationStartedAt?: Date;
113
- AudioAggregationEndedAt?: Date;
114
- CustomerSpeakerId?: string;
115
- GeneratedSpeakerId?: string;
116
- Decision?: AuthenticationDecision;
117
- Score?: number;
118
- Configuration?: AuthenticationConfiguration;
111
+ AuthenticationResultId?: string | undefined;
112
+ AudioAggregationStartedAt?: Date | undefined;
113
+ AudioAggregationEndedAt?: Date | undefined;
114
+ CustomerSpeakerId?: string | undefined;
115
+ GeneratedSpeakerId?: string | undefined;
116
+ Decision?: AuthenticationDecision | undefined;
117
+ Score?: number | undefined;
118
+ Configuration?: AuthenticationConfiguration | undefined;
119
119
  }
120
120
  export interface ServerSideEncryptionConfiguration {
121
121
  KmsKeyId: string | undefined;
@@ -126,12 +126,12 @@ export interface Tag {
126
126
  }
127
127
  export interface CreateDomainRequest {
128
128
  Name: string | undefined;
129
- Description?: string;
129
+ Description?: string | undefined;
130
130
  ServerSideEncryptionConfiguration:
131
131
  | ServerSideEncryptionConfiguration
132
132
  | undefined;
133
- ClientToken?: string;
134
- Tags?: Tag[];
133
+ ClientToken?: string | undefined;
134
+ Tags?: Tag[] | undefined;
135
135
  }
136
136
  export declare const DomainStatus: {
137
137
  readonly ACTIVE: "ACTIVE";
@@ -147,45 +147,49 @@ export declare const ServerSideEncryptionUpdateStatus: {
147
147
  export type ServerSideEncryptionUpdateStatus =
148
148
  (typeof ServerSideEncryptionUpdateStatus)[keyof typeof ServerSideEncryptionUpdateStatus];
149
149
  export interface ServerSideEncryptionUpdateDetails {
150
- OldKmsKeyId?: string;
151
- UpdateStatus?: ServerSideEncryptionUpdateStatus;
152
- Message?: string;
150
+ OldKmsKeyId?: string | undefined;
151
+ UpdateStatus?: ServerSideEncryptionUpdateStatus | undefined;
152
+ Message?: string | undefined;
153
153
  }
154
154
  export interface WatchlistDetails {
155
155
  DefaultWatchlistId: string | undefined;
156
156
  }
157
157
  export interface Domain {
158
- DomainId?: string;
159
- Arn?: string;
160
- Name?: string;
161
- Description?: string;
162
- DomainStatus?: DomainStatus;
163
- ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
164
- CreatedAt?: Date;
165
- UpdatedAt?: Date;
166
- ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
167
- WatchlistDetails?: WatchlistDetails;
158
+ DomainId?: string | undefined;
159
+ Arn?: string | undefined;
160
+ Name?: string | undefined;
161
+ Description?: string | undefined;
162
+ DomainStatus?: DomainStatus | undefined;
163
+ ServerSideEncryptionConfiguration?:
164
+ | ServerSideEncryptionConfiguration
165
+ | undefined;
166
+ CreatedAt?: Date | undefined;
167
+ UpdatedAt?: Date | undefined;
168
+ ServerSideEncryptionUpdateDetails?:
169
+ | ServerSideEncryptionUpdateDetails
170
+ | undefined;
171
+ WatchlistDetails?: WatchlistDetails | undefined;
168
172
  }
169
173
  export interface CreateDomainResponse {
170
- Domain?: Domain;
174
+ Domain?: Domain | undefined;
171
175
  }
172
176
  export interface CreateWatchlistRequest {
173
177
  DomainId: string | undefined;
174
178
  Name: string | undefined;
175
- Description?: string;
176
- ClientToken?: string;
179
+ Description?: string | undefined;
180
+ ClientToken?: string | undefined;
177
181
  }
178
182
  export interface Watchlist {
179
- DomainId?: string;
180
- WatchlistId?: string;
181
- Name?: string;
182
- Description?: string;
183
- DefaultWatchlist?: boolean;
184
- CreatedAt?: Date;
185
- UpdatedAt?: Date;
183
+ DomainId?: string | undefined;
184
+ WatchlistId?: string | undefined;
185
+ Name?: string | undefined;
186
+ Description?: string | undefined;
187
+ DefaultWatchlist?: boolean | undefined;
188
+ CreatedAt?: Date | undefined;
189
+ UpdatedAt?: Date | undefined;
186
190
  }
187
191
  export interface CreateWatchlistResponse {
188
- Watchlist?: Watchlist;
192
+ Watchlist?: Watchlist | undefined;
189
193
  }
190
194
  export interface DeleteDomainRequest {
191
195
  DomainId: string | undefined;
@@ -206,28 +210,28 @@ export interface DescribeDomainRequest {
206
210
  DomainId: string | undefined;
207
211
  }
208
212
  export interface DescribeDomainResponse {
209
- Domain?: Domain;
213
+ Domain?: Domain | undefined;
210
214
  }
211
215
  export interface DescribeFraudsterRequest {
212
216
  DomainId: string | undefined;
213
217
  FraudsterId: string | undefined;
214
218
  }
215
219
  export interface DescribeFraudsterResponse {
216
- Fraudster?: Fraudster;
220
+ Fraudster?: Fraudster | undefined;
217
221
  }
218
222
  export interface DescribeFraudsterRegistrationJobRequest {
219
223
  DomainId: string | undefined;
220
224
  JobId: string | undefined;
221
225
  }
222
226
  export interface FailureDetails {
223
- StatusCode?: number;
224
- Message?: string;
227
+ StatusCode?: number | undefined;
228
+ Message?: string | undefined;
225
229
  }
226
230
  export interface InputDataConfig {
227
231
  S3Uri: string | undefined;
228
232
  }
229
233
  export interface JobProgress {
230
- PercentComplete?: number;
234
+ PercentComplete?: number | undefined;
231
235
  }
232
236
  export declare const FraudsterRegistrationJobStatus: {
233
237
  readonly COMPLETED: "COMPLETED";
@@ -240,7 +244,7 @@ export type FraudsterRegistrationJobStatus =
240
244
  (typeof FraudsterRegistrationJobStatus)[keyof typeof FraudsterRegistrationJobStatus];
241
245
  export interface OutputDataConfig {
242
246
  S3Uri: string | undefined;
243
- KmsKeyId?: string;
247
+ KmsKeyId?: string | undefined;
244
248
  }
245
249
  export declare const DuplicateRegistrationAction: {
246
250
  readonly REGISTER_AS_NEW: "REGISTER_AS_NEW";
@@ -249,26 +253,26 @@ export declare const DuplicateRegistrationAction: {
249
253
  export type DuplicateRegistrationAction =
250
254
  (typeof DuplicateRegistrationAction)[keyof typeof DuplicateRegistrationAction];
251
255
  export interface RegistrationConfig {
252
- DuplicateRegistrationAction?: DuplicateRegistrationAction;
253
- FraudsterSimilarityThreshold?: number;
254
- WatchlistIds?: string[];
256
+ DuplicateRegistrationAction?: DuplicateRegistrationAction | undefined;
257
+ FraudsterSimilarityThreshold?: number | undefined;
258
+ WatchlistIds?: string[] | undefined;
255
259
  }
256
260
  export interface FraudsterRegistrationJob {
257
- JobName?: string;
258
- JobId?: string;
259
- JobStatus?: FraudsterRegistrationJobStatus;
260
- DomainId?: string;
261
- DataAccessRoleArn?: string;
262
- RegistrationConfig?: RegistrationConfig;
263
- InputDataConfig?: InputDataConfig;
264
- OutputDataConfig?: OutputDataConfig;
265
- CreatedAt?: Date;
266
- EndedAt?: Date;
267
- FailureDetails?: FailureDetails;
268
- JobProgress?: JobProgress;
261
+ JobName?: string | undefined;
262
+ JobId?: string | undefined;
263
+ JobStatus?: FraudsterRegistrationJobStatus | undefined;
264
+ DomainId?: string | undefined;
265
+ DataAccessRoleArn?: string | undefined;
266
+ RegistrationConfig?: RegistrationConfig | undefined;
267
+ InputDataConfig?: InputDataConfig | undefined;
268
+ OutputDataConfig?: OutputDataConfig | undefined;
269
+ CreatedAt?: Date | undefined;
270
+ EndedAt?: Date | undefined;
271
+ FailureDetails?: FailureDetails | undefined;
272
+ JobProgress?: JobProgress | undefined;
269
273
  }
270
274
  export interface DescribeFraudsterRegistrationJobResponse {
271
- Job?: FraudsterRegistrationJob;
275
+ Job?: FraudsterRegistrationJob | undefined;
272
276
  }
273
277
  export interface DescribeSpeakerRequest {
274
278
  DomainId: string | undefined;
@@ -282,16 +286,16 @@ export declare const SpeakerStatus: {
282
286
  };
283
287
  export type SpeakerStatus = (typeof SpeakerStatus)[keyof typeof SpeakerStatus];
284
288
  export interface Speaker {
285
- DomainId?: string;
286
- CustomerSpeakerId?: string;
287
- GeneratedSpeakerId?: string;
288
- Status?: SpeakerStatus;
289
- CreatedAt?: Date;
290
- UpdatedAt?: Date;
291
- LastAccessedAt?: Date;
289
+ DomainId?: string | undefined;
290
+ CustomerSpeakerId?: string | undefined;
291
+ GeneratedSpeakerId?: string | undefined;
292
+ Status?: SpeakerStatus | undefined;
293
+ CreatedAt?: Date | undefined;
294
+ UpdatedAt?: Date | undefined;
295
+ LastAccessedAt?: Date | undefined;
292
296
  }
293
297
  export interface DescribeSpeakerResponse {
294
- Speaker?: Speaker;
298
+ Speaker?: Speaker | undefined;
295
299
  }
296
300
  export interface DescribeSpeakerEnrollmentJobRequest {
297
301
  DomainId: string | undefined;
@@ -310,13 +314,13 @@ export declare const FraudDetectionAction: {
310
314
  export type FraudDetectionAction =
311
315
  (typeof FraudDetectionAction)[keyof typeof FraudDetectionAction];
312
316
  export interface EnrollmentJobFraudDetectionConfig {
313
- FraudDetectionAction?: FraudDetectionAction;
314
- RiskThreshold?: number;
315
- WatchlistIds?: string[];
317
+ FraudDetectionAction?: FraudDetectionAction | undefined;
318
+ RiskThreshold?: number | undefined;
319
+ WatchlistIds?: string[] | undefined;
316
320
  }
317
321
  export interface EnrollmentConfig {
318
- ExistingEnrollmentAction?: ExistingEnrollmentAction;
319
- FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig;
322
+ ExistingEnrollmentAction?: ExistingEnrollmentAction | undefined;
323
+ FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig | undefined;
320
324
  }
321
325
  export declare const SpeakerEnrollmentJobStatus: {
322
326
  readonly COMPLETED: "COMPLETED";
@@ -328,28 +332,28 @@ export declare const SpeakerEnrollmentJobStatus: {
328
332
  export type SpeakerEnrollmentJobStatus =
329
333
  (typeof SpeakerEnrollmentJobStatus)[keyof typeof SpeakerEnrollmentJobStatus];
330
334
  export interface SpeakerEnrollmentJob {
331
- JobName?: string;
332
- JobId?: string;
333
- JobStatus?: SpeakerEnrollmentJobStatus;
334
- DomainId?: string;
335
- DataAccessRoleArn?: string;
336
- EnrollmentConfig?: EnrollmentConfig;
337
- InputDataConfig?: InputDataConfig;
338
- OutputDataConfig?: OutputDataConfig;
339
- CreatedAt?: Date;
340
- EndedAt?: Date;
341
- FailureDetails?: FailureDetails;
342
- JobProgress?: JobProgress;
335
+ JobName?: string | undefined;
336
+ JobId?: string | undefined;
337
+ JobStatus?: SpeakerEnrollmentJobStatus | undefined;
338
+ DomainId?: string | undefined;
339
+ DataAccessRoleArn?: string | undefined;
340
+ EnrollmentConfig?: EnrollmentConfig | undefined;
341
+ InputDataConfig?: InputDataConfig | undefined;
342
+ OutputDataConfig?: OutputDataConfig | undefined;
343
+ CreatedAt?: Date | undefined;
344
+ EndedAt?: Date | undefined;
345
+ FailureDetails?: FailureDetails | undefined;
346
+ JobProgress?: JobProgress | undefined;
343
347
  }
344
348
  export interface DescribeSpeakerEnrollmentJobResponse {
345
- Job?: SpeakerEnrollmentJob;
349
+ Job?: SpeakerEnrollmentJob | undefined;
346
350
  }
347
351
  export interface DescribeWatchlistRequest {
348
352
  DomainId: string | undefined;
349
353
  WatchlistId: string | undefined;
350
354
  }
351
355
  export interface DescribeWatchlistResponse {
352
- Watchlist?: Watchlist;
356
+ Watchlist?: Watchlist | undefined;
353
357
  }
354
358
  export interface DisassociateFraudsterRequest {
355
359
  DomainId: string | undefined;
@@ -357,46 +361,50 @@ export interface DisassociateFraudsterRequest {
357
361
  FraudsterId: string | undefined;
358
362
  }
359
363
  export interface DisassociateFraudsterResponse {
360
- Fraudster?: Fraudster;
364
+ Fraudster?: Fraudster | undefined;
361
365
  }
362
366
  export interface ListDomainsRequest {
363
- MaxResults?: number;
364
- NextToken?: string;
367
+ MaxResults?: number | undefined;
368
+ NextToken?: string | undefined;
365
369
  }
366
370
  export interface DomainSummary {
367
- DomainId?: string;
368
- Arn?: string;
369
- Name?: string;
370
- Description?: string;
371
- DomainStatus?: DomainStatus;
372
- ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
373
- CreatedAt?: Date;
374
- UpdatedAt?: Date;
375
- ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
376
- WatchlistDetails?: WatchlistDetails;
371
+ DomainId?: string | undefined;
372
+ Arn?: string | undefined;
373
+ Name?: string | undefined;
374
+ Description?: string | undefined;
375
+ DomainStatus?: DomainStatus | undefined;
376
+ ServerSideEncryptionConfiguration?:
377
+ | ServerSideEncryptionConfiguration
378
+ | undefined;
379
+ CreatedAt?: Date | undefined;
380
+ UpdatedAt?: Date | undefined;
381
+ ServerSideEncryptionUpdateDetails?:
382
+ | ServerSideEncryptionUpdateDetails
383
+ | undefined;
384
+ WatchlistDetails?: WatchlistDetails | undefined;
377
385
  }
378
386
  export interface ListDomainsResponse {
379
- DomainSummaries?: DomainSummary[];
380
- NextToken?: string;
387
+ DomainSummaries?: DomainSummary[] | undefined;
388
+ NextToken?: string | undefined;
381
389
  }
382
390
  export interface UpdateDomainRequest {
383
391
  DomainId: string | undefined;
384
392
  Name: string | undefined;
385
- Description?: string;
393
+ Description?: string | undefined;
386
394
  ServerSideEncryptionConfiguration:
387
395
  | ServerSideEncryptionConfiguration
388
396
  | undefined;
389
397
  }
390
398
  export interface UpdateDomainResponse {
391
- Domain?: Domain;
399
+ Domain?: Domain | undefined;
392
400
  }
393
401
  export interface EvaluateSessionRequest {
394
402
  DomainId: string | undefined;
395
403
  SessionNameOrId: string | undefined;
396
404
  }
397
405
  export interface FraudDetectionConfiguration {
398
- RiskThreshold?: number;
399
- WatchlistId?: string;
406
+ RiskThreshold?: number | undefined;
407
+ WatchlistId?: string | undefined;
400
408
  }
401
409
  export declare const FraudDetectionDecision: {
402
410
  readonly HIGH_RISK: "HIGH_RISK";
@@ -413,7 +421,7 @@ export type FraudDetectionReason =
413
421
  (typeof FraudDetectionReason)[keyof typeof FraudDetectionReason];
414
422
  export interface KnownFraudsterRisk {
415
423
  RiskScore: number | undefined;
416
- GeneratedFraudsterId?: string;
424
+ GeneratedFraudsterId?: string | undefined;
417
425
  }
418
426
  export interface VoiceSpoofingRisk {
419
427
  RiskScore: number | undefined;
@@ -423,13 +431,13 @@ export interface FraudRiskDetails {
423
431
  VoiceSpoofingRisk: VoiceSpoofingRisk | undefined;
424
432
  }
425
433
  export interface FraudDetectionResult {
426
- FraudDetectionResultId?: string;
427
- AudioAggregationStartedAt?: Date;
428
- AudioAggregationEndedAt?: Date;
429
- Configuration?: FraudDetectionConfiguration;
430
- Decision?: FraudDetectionDecision;
431
- Reasons?: FraudDetectionReason[];
432
- RiskDetails?: FraudRiskDetails;
434
+ FraudDetectionResultId?: string | undefined;
435
+ AudioAggregationStartedAt?: Date | undefined;
436
+ AudioAggregationEndedAt?: Date | undefined;
437
+ Configuration?: FraudDetectionConfiguration | undefined;
438
+ Decision?: FraudDetectionDecision | undefined;
439
+ Reasons?: FraudDetectionReason[] | undefined;
440
+ RiskDetails?: FraudRiskDetails | undefined;
433
441
  }
434
442
  export declare const StreamingStatus: {
435
443
  readonly ENDED: "ENDED";
@@ -439,141 +447,141 @@ export declare const StreamingStatus: {
439
447
  export type StreamingStatus =
440
448
  (typeof StreamingStatus)[keyof typeof StreamingStatus];
441
449
  export interface EvaluateSessionResponse {
442
- DomainId?: string;
443
- SessionId?: string;
444
- SessionName?: string;
445
- StreamingStatus?: StreamingStatus;
446
- AuthenticationResult?: AuthenticationResult;
447
- FraudDetectionResult?: FraudDetectionResult;
450
+ DomainId?: string | undefined;
451
+ SessionId?: string | undefined;
452
+ SessionName?: string | undefined;
453
+ StreamingStatus?: StreamingStatus | undefined;
454
+ AuthenticationResult?: AuthenticationResult | undefined;
455
+ FraudDetectionResult?: FraudDetectionResult | undefined;
448
456
  }
449
457
  export interface FraudsterRegistrationJobSummary {
450
- JobName?: string;
451
- JobId?: string;
452
- JobStatus?: FraudsterRegistrationJobStatus;
453
- DomainId?: string;
454
- CreatedAt?: Date;
455
- EndedAt?: Date;
456
- FailureDetails?: FailureDetails;
457
- JobProgress?: JobProgress;
458
+ JobName?: string | undefined;
459
+ JobId?: string | undefined;
460
+ JobStatus?: FraudsterRegistrationJobStatus | undefined;
461
+ DomainId?: string | undefined;
462
+ CreatedAt?: Date | undefined;
463
+ EndedAt?: Date | undefined;
464
+ FailureDetails?: FailureDetails | undefined;
465
+ JobProgress?: JobProgress | undefined;
458
466
  }
459
467
  export interface FraudsterSummary {
460
- DomainId?: string;
461
- GeneratedFraudsterId?: string;
462
- CreatedAt?: Date;
463
- WatchlistIds?: string[];
468
+ DomainId?: string | undefined;
469
+ GeneratedFraudsterId?: string | undefined;
470
+ CreatedAt?: Date | undefined;
471
+ WatchlistIds?: string[] | undefined;
464
472
  }
465
473
  export interface ListFraudsterRegistrationJobsRequest {
466
474
  DomainId: string | undefined;
467
- JobStatus?: FraudsterRegistrationJobStatus;
468
- MaxResults?: number;
469
- NextToken?: string;
475
+ JobStatus?: FraudsterRegistrationJobStatus | undefined;
476
+ MaxResults?: number | undefined;
477
+ NextToken?: string | undefined;
470
478
  }
471
479
  export interface ListFraudsterRegistrationJobsResponse {
472
- JobSummaries?: FraudsterRegistrationJobSummary[];
473
- NextToken?: string;
480
+ JobSummaries?: FraudsterRegistrationJobSummary[] | undefined;
481
+ NextToken?: string | undefined;
474
482
  }
475
483
  export interface ListFraudstersRequest {
476
484
  DomainId: string | undefined;
477
- WatchlistId?: string;
478
- MaxResults?: number;
479
- NextToken?: string;
485
+ WatchlistId?: string | undefined;
486
+ MaxResults?: number | undefined;
487
+ NextToken?: string | undefined;
480
488
  }
481
489
  export interface ListFraudstersResponse {
482
- FraudsterSummaries?: FraudsterSummary[];
483
- NextToken?: string;
490
+ FraudsterSummaries?: FraudsterSummary[] | undefined;
491
+ NextToken?: string | undefined;
484
492
  }
485
493
  export interface ListSpeakerEnrollmentJobsRequest {
486
494
  DomainId: string | undefined;
487
- JobStatus?: SpeakerEnrollmentJobStatus;
488
- MaxResults?: number;
489
- NextToken?: string;
495
+ JobStatus?: SpeakerEnrollmentJobStatus | undefined;
496
+ MaxResults?: number | undefined;
497
+ NextToken?: string | undefined;
490
498
  }
491
499
  export interface SpeakerEnrollmentJobSummary {
492
- JobName?: string;
493
- JobId?: string;
494
- JobStatus?: SpeakerEnrollmentJobStatus;
495
- DomainId?: string;
496
- CreatedAt?: Date;
497
- EndedAt?: Date;
498
- FailureDetails?: FailureDetails;
499
- JobProgress?: JobProgress;
500
+ JobName?: string | undefined;
501
+ JobId?: string | undefined;
502
+ JobStatus?: SpeakerEnrollmentJobStatus | undefined;
503
+ DomainId?: string | undefined;
504
+ CreatedAt?: Date | undefined;
505
+ EndedAt?: Date | undefined;
506
+ FailureDetails?: FailureDetails | undefined;
507
+ JobProgress?: JobProgress | undefined;
500
508
  }
501
509
  export interface ListSpeakerEnrollmentJobsResponse {
502
- JobSummaries?: SpeakerEnrollmentJobSummary[];
503
- NextToken?: string;
510
+ JobSummaries?: SpeakerEnrollmentJobSummary[] | undefined;
511
+ NextToken?: string | undefined;
504
512
  }
505
513
  export interface ListSpeakersRequest {
506
514
  DomainId: string | undefined;
507
- MaxResults?: number;
508
- NextToken?: string;
515
+ MaxResults?: number | undefined;
516
+ NextToken?: string | undefined;
509
517
  }
510
518
  export interface SpeakerSummary {
511
- DomainId?: string;
512
- CustomerSpeakerId?: string;
513
- GeneratedSpeakerId?: string;
514
- Status?: SpeakerStatus;
515
- CreatedAt?: Date;
516
- UpdatedAt?: Date;
517
- LastAccessedAt?: Date;
519
+ DomainId?: string | undefined;
520
+ CustomerSpeakerId?: string | undefined;
521
+ GeneratedSpeakerId?: string | undefined;
522
+ Status?: SpeakerStatus | undefined;
523
+ CreatedAt?: Date | undefined;
524
+ UpdatedAt?: Date | undefined;
525
+ LastAccessedAt?: Date | undefined;
518
526
  }
519
527
  export interface ListSpeakersResponse {
520
- SpeakerSummaries?: SpeakerSummary[];
521
- NextToken?: string;
528
+ SpeakerSummaries?: SpeakerSummary[] | undefined;
529
+ NextToken?: string | undefined;
522
530
  }
523
531
  export interface ListTagsForResourceRequest {
524
532
  ResourceArn: string | undefined;
525
533
  }
526
534
  export interface ListTagsForResourceResponse {
527
- Tags?: Tag[];
535
+ Tags?: Tag[] | undefined;
528
536
  }
529
537
  export interface ListWatchlistsRequest {
530
538
  DomainId: string | undefined;
531
- MaxResults?: number;
532
- NextToken?: string;
539
+ MaxResults?: number | undefined;
540
+ NextToken?: string | undefined;
533
541
  }
534
542
  export interface WatchlistSummary {
535
- DomainId?: string;
536
- WatchlistId?: string;
537
- Name?: string;
538
- Description?: string;
539
- DefaultWatchlist?: boolean;
540
- CreatedAt?: Date;
541
- UpdatedAt?: Date;
543
+ DomainId?: string | undefined;
544
+ WatchlistId?: string | undefined;
545
+ Name?: string | undefined;
546
+ Description?: string | undefined;
547
+ DefaultWatchlist?: boolean | undefined;
548
+ CreatedAt?: Date | undefined;
549
+ UpdatedAt?: Date | undefined;
542
550
  }
543
551
  export interface ListWatchlistsResponse {
544
- WatchlistSummaries?: WatchlistSummary[];
545
- NextToken?: string;
552
+ WatchlistSummaries?: WatchlistSummary[] | undefined;
553
+ NextToken?: string | undefined;
546
554
  }
547
555
  export interface OptOutSpeakerRequest {
548
556
  DomainId: string | undefined;
549
557
  SpeakerId: string | undefined;
550
558
  }
551
559
  export interface OptOutSpeakerResponse {
552
- Speaker?: Speaker;
560
+ Speaker?: Speaker | undefined;
553
561
  }
554
562
  export interface StartFraudsterRegistrationJobRequest {
555
- ClientToken?: string;
556
- JobName?: string;
563
+ ClientToken?: string | undefined;
564
+ JobName?: string | undefined;
557
565
  DomainId: string | undefined;
558
566
  DataAccessRoleArn: string | undefined;
559
- RegistrationConfig?: RegistrationConfig;
567
+ RegistrationConfig?: RegistrationConfig | undefined;
560
568
  InputDataConfig: InputDataConfig | undefined;
561
569
  OutputDataConfig: OutputDataConfig | undefined;
562
570
  }
563
571
  export interface StartFraudsterRegistrationJobResponse {
564
- Job?: FraudsterRegistrationJob;
572
+ Job?: FraudsterRegistrationJob | undefined;
565
573
  }
566
574
  export interface StartSpeakerEnrollmentJobRequest {
567
- ClientToken?: string;
568
- JobName?: string;
575
+ ClientToken?: string | undefined;
576
+ JobName?: string | undefined;
569
577
  DomainId: string | undefined;
570
578
  DataAccessRoleArn: string | undefined;
571
- EnrollmentConfig?: EnrollmentConfig;
579
+ EnrollmentConfig?: EnrollmentConfig | undefined;
572
580
  InputDataConfig: InputDataConfig | undefined;
573
581
  OutputDataConfig: OutputDataConfig | undefined;
574
582
  }
575
583
  export interface StartSpeakerEnrollmentJobResponse {
576
- Job?: SpeakerEnrollmentJob;
584
+ Job?: SpeakerEnrollmentJob | undefined;
577
585
  }
578
586
  export interface TagResourceRequest {
579
587
  ResourceArn: string | undefined;
@@ -588,11 +596,11 @@ export interface UntagResourceResponse {}
588
596
  export interface UpdateWatchlistRequest {
589
597
  DomainId: string | undefined;
590
598
  WatchlistId: string | undefined;
591
- Name?: string;
592
- Description?: string;
599
+ Name?: string | undefined;
600
+ Description?: string | undefined;
593
601
  }
594
602
  export interface UpdateWatchlistResponse {
595
- Watchlist?: Watchlist;
603
+ Watchlist?: Watchlist | undefined;
596
604
  }
597
605
  export declare const AssociateFraudsterRequestFilterSensitiveLog: (
598
606
  obj: AssociateFraudsterRequest