@aws-sdk/client-voice-id 3.687.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.
@@ -8,7 +8,7 @@ import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceExce
8
8
  export declare class AccessDeniedException extends __BaseException {
9
9
  readonly name: "AccessDeniedException";
10
10
  readonly $fault: "client";
11
- Message?: string;
11
+ Message?: string | undefined;
12
12
  /**
13
13
  * @internal
14
14
  */
@@ -43,22 +43,22 @@ export interface Fraudster {
43
43
  * <p>The identifier of the domain that contains the fraudster.</p>
44
44
  * @public
45
45
  */
46
- DomainId?: string;
46
+ DomainId?: string | undefined;
47
47
  /**
48
48
  * <p>The service-generated identifier for the fraudster.</p>
49
49
  * @public
50
50
  */
51
- GeneratedFraudsterId?: string;
51
+ GeneratedFraudsterId?: string | undefined;
52
52
  /**
53
53
  * <p>The timestamp of when Voice ID identified the fraudster.</p>
54
54
  * @public
55
55
  */
56
- CreatedAt?: Date;
56
+ CreatedAt?: Date | undefined;
57
57
  /**
58
58
  * <p>The identifier of the watchlists the fraudster is a part of.</p>
59
59
  * @public
60
60
  */
61
- WatchlistIds?: string[];
61
+ WatchlistIds?: string[] | undefined;
62
62
  }
63
63
  /**
64
64
  * @public
@@ -68,7 +68,7 @@ export interface AssociateFraudsterResponse {
68
68
  * <p>Contains all the information about a fraudster.</p>
69
69
  * @public
70
70
  */
71
- Fraudster?: Fraudster;
71
+ Fraudster?: Fraudster | undefined;
72
72
  }
73
73
  /**
74
74
  * @public
@@ -98,7 +98,7 @@ export type ConflictType = (typeof ConflictType)[keyof typeof ConflictType];
98
98
  export declare class ConflictException extends __BaseException {
99
99
  readonly name: "ConflictException";
100
100
  readonly $fault: "client";
101
- Message?: string;
101
+ Message?: string | undefined;
102
102
  /**
103
103
  * <p>The type of conflict which caused a ConflictException. Possible types and the
104
104
  * corresponding error messages are as follows:</p>
@@ -135,7 +135,7 @@ export declare class ConflictException extends __BaseException {
135
135
  * </ul>
136
136
  * @public
137
137
  */
138
- ConflictType?: ConflictType;
138
+ ConflictType?: ConflictType | undefined;
139
139
  /**
140
140
  * @internal
141
141
  */
@@ -148,7 +148,7 @@ export declare class ConflictException extends __BaseException {
148
148
  export declare class InternalServerException extends __BaseException {
149
149
  readonly name: "InternalServerException";
150
150
  readonly $fault: "server";
151
- Message?: string;
151
+ Message?: string | undefined;
152
152
  /**
153
153
  * @internal
154
154
  */
@@ -179,14 +179,14 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
179
179
  export declare class ResourceNotFoundException extends __BaseException {
180
180
  readonly name: "ResourceNotFoundException";
181
181
  readonly $fault: "client";
182
- Message?: string;
182
+ Message?: string | undefined;
183
183
  /**
184
184
  * <p>The type of resource which cannot not be found. Possible types are
185
185
  * <code>BATCH_JOB</code>, <code>COMPLIANCE_CONSENT</code>, <code>DOMAIN</code>,
186
186
  * <code>FRAUDSTER</code>, <code>SESSION</code> and <code>SPEAKER</code>.</p>
187
187
  * @public
188
188
  */
189
- ResourceType?: ResourceType;
189
+ ResourceType?: ResourceType | undefined;
190
190
  /**
191
191
  * @internal
192
192
  */
@@ -199,7 +199,7 @@ export declare class ResourceNotFoundException extends __BaseException {
199
199
  export declare class ServiceQuotaExceededException extends __BaseException {
200
200
  readonly name: "ServiceQuotaExceededException";
201
201
  readonly $fault: "client";
202
- Message?: string;
202
+ Message?: string | undefined;
203
203
  /**
204
204
  * @internal
205
205
  */
@@ -215,7 +215,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
215
215
  export declare class ThrottlingException extends __BaseException {
216
216
  readonly name: "ThrottlingException";
217
217
  readonly $fault: "client";
218
- Message?: string;
218
+ Message?: string | undefined;
219
219
  /**
220
220
  * @internal
221
221
  */
@@ -229,7 +229,7 @@ export declare class ThrottlingException extends __BaseException {
229
229
  export declare class ValidationException extends __BaseException {
230
230
  readonly name: "ValidationException";
231
231
  readonly $fault: "client";
232
- Message?: string;
232
+ Message?: string | undefined;
233
233
  /**
234
234
  * @internal
235
235
  */
@@ -277,50 +277,50 @@ export interface AuthenticationResult {
277
277
  * changes, Voice ID always returns cached Authentication Result for this API.</p>
278
278
  * @public
279
279
  */
280
- AuthenticationResultId?: string;
280
+ AuthenticationResultId?: string | undefined;
281
281
  /**
282
282
  * <p>A timestamp of when audio aggregation started for this authentication
283
283
  * result.</p>
284
284
  * @public
285
285
  */
286
- AudioAggregationStartedAt?: Date;
286
+ AudioAggregationStartedAt?: Date | undefined;
287
287
  /**
288
288
  * <p>A timestamp of when audio aggregation ended for this authentication
289
289
  * result.</p>
290
290
  * @public
291
291
  */
292
- AudioAggregationEndedAt?: Date;
292
+ AudioAggregationEndedAt?: Date | undefined;
293
293
  /**
294
294
  * <p>The client-provided identifier for the speaker whose authentication result is
295
295
  * produced. Only present if a <code>SpeakerId</code> is provided for the session.</p>
296
296
  * @public
297
297
  */
298
- CustomerSpeakerId?: string;
298
+ CustomerSpeakerId?: string | undefined;
299
299
  /**
300
300
  * <p>The service-generated identifier for the speaker whose authentication result is
301
301
  * produced.</p>
302
302
  * @public
303
303
  */
304
- GeneratedSpeakerId?: string;
304
+ GeneratedSpeakerId?: string | undefined;
305
305
  /**
306
306
  * <p>The authentication decision produced by Voice ID, processed against the current
307
307
  * session state and streamed audio of the speaker.</p>
308
308
  * @public
309
309
  */
310
- Decision?: AuthenticationDecision;
310
+ Decision?: AuthenticationDecision | undefined;
311
311
  /**
312
312
  * <p>The authentication score for the speaker whose authentication result is produced. This
313
313
  * value is only present if the authentication decision is either <code>ACCEPT</code> or
314
314
  * <code>REJECT</code>.</p>
315
315
  * @public
316
316
  */
317
- Score?: number;
317
+ Score?: number | undefined;
318
318
  /**
319
319
  * <p>The <code>AuthenticationConfiguration</code> used to generate this authentication
320
320
  * result.</p>
321
321
  * @public
322
322
  */
323
- Configuration?: AuthenticationConfiguration;
323
+ Configuration?: AuthenticationConfiguration | undefined;
324
324
  }
325
325
  /**
326
326
  * <p>The configuration containing information about the customer managed key used for
@@ -367,7 +367,7 @@ export interface CreateDomainRequest {
367
367
  * <p>A brief description of this domain.</p>
368
368
  * @public
369
369
  */
370
- Description?: string;
370
+ Description?: string | undefined;
371
371
  /**
372
372
  * <p>The configuration, containing the KMS key identifier, to be used by
373
373
  * Voice ID for the server-side encryption of your data. Refer to <a href="https://docs.aws.amazon.com/connect/latest/adminguide/encryption-at-rest.html#encryption-at-rest-voiceid">
@@ -382,12 +382,12 @@ export interface CreateDomainRequest {
382
382
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
383
383
  * @public
384
384
  */
385
- ClientToken?: string;
385
+ ClientToken?: string | undefined;
386
386
  /**
387
387
  * <p>A list of tags you want added to the domain.</p>
388
388
  * @public
389
389
  */
390
- Tags?: Tag[];
390
+ Tags?: Tag[] | undefined;
391
391
  }
392
392
  /**
393
393
  * @public
@@ -427,7 +427,7 @@ export interface ServerSideEncryptionUpdateDetails {
427
427
  * ServerSideEncryptionConfiguration was updated to a new KMS key ID.</p>
428
428
  * @public
429
429
  */
430
- OldKmsKeyId?: string;
430
+ OldKmsKeyId?: string | undefined;
431
431
  /**
432
432
  * <p>Status of the server-side encryption update. During an update, if there is an issue
433
433
  * with the domain's current or old KMS key ID, such as an inaccessible or
@@ -436,13 +436,13 @@ export interface ServerSideEncryptionUpdateDetails {
436
436
  * configuration will re-attempt this update process.</p>
437
437
  * @public
438
438
  */
439
- UpdateStatus?: ServerSideEncryptionUpdateStatus;
439
+ UpdateStatus?: ServerSideEncryptionUpdateStatus | undefined;
440
440
  /**
441
441
  * <p>Message explaining the current UpdateStatus. When the UpdateStatus is FAILED, this
442
442
  * message explains the cause of the failure.</p>
443
443
  * @public
444
444
  */
445
- Message?: string;
445
+ Message?: string | undefined;
446
446
  }
447
447
  /**
448
448
  * <p>Details of the watchlists in a domain.</p>
@@ -464,55 +464,55 @@ export interface Domain {
464
464
  * <p>The identifier of the domain.</p>
465
465
  * @public
466
466
  */
467
- DomainId?: string;
467
+ DomainId?: string | undefined;
468
468
  /**
469
469
  * <p>The Amazon Resource Name (ARN) for the domain.</p>
470
470
  * @public
471
471
  */
472
- Arn?: string;
472
+ Arn?: string | undefined;
473
473
  /**
474
474
  * <p>The name for the domain.</p>
475
475
  * @public
476
476
  */
477
- Name?: string;
477
+ Name?: string | undefined;
478
478
  /**
479
479
  * <p>The description of the domain.</p>
480
480
  * @public
481
481
  */
482
- Description?: string;
482
+ Description?: string | undefined;
483
483
  /**
484
484
  * <p>The current status of the domain.</p>
485
485
  * @public
486
486
  */
487
- DomainStatus?: DomainStatus;
487
+ DomainStatus?: DomainStatus | undefined;
488
488
  /**
489
489
  * <p>The server-side encryption configuration containing the KMS key
490
490
  * identifier you want Voice ID to use to encrypt your data.</p>
491
491
  * @public
492
492
  */
493
- ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
493
+ ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
494
494
  /**
495
495
  * <p>The timestamp of when the domain was created.</p>
496
496
  * @public
497
497
  */
498
- CreatedAt?: Date;
498
+ CreatedAt?: Date | undefined;
499
499
  /**
500
500
  * <p>The timestamp of when the domain was last update.</p>
501
501
  * @public
502
502
  */
503
- UpdatedAt?: Date;
503
+ UpdatedAt?: Date | undefined;
504
504
  /**
505
505
  * <p>Details about the most recent server-side encryption configuration update. When the
506
506
  * server-side encryption configuration is changed, dependency on the old KMS key is removed through an asynchronous process. When this update is
507
507
  * complete, the domain's data can only be accessed using the new KMS key.</p>
508
508
  * @public
509
509
  */
510
- ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
510
+ ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails | undefined;
511
511
  /**
512
512
  * <p>The watchlist details of a domain. Contains the default watchlist ID of the domain.</p>
513
513
  * @public
514
514
  */
515
- WatchlistDetails?: WatchlistDetails;
515
+ WatchlistDetails?: WatchlistDetails | undefined;
516
516
  }
517
517
  /**
518
518
  * @public
@@ -522,7 +522,7 @@ export interface CreateDomainResponse {
522
522
  * <p>Information about the newly created domain.</p>
523
523
  * @public
524
524
  */
525
- Domain?: Domain;
525
+ Domain?: Domain | undefined;
526
526
  }
527
527
  /**
528
528
  * @public
@@ -542,7 +542,7 @@ export interface CreateWatchlistRequest {
542
542
  * <p>A brief description of this watchlist.</p>
543
543
  * @public
544
544
  */
545
- Description?: string;
545
+ Description?: string | undefined;
546
546
  /**
547
547
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
548
548
  * request. If not provided, the Amazon Web Services
@@ -550,7 +550,7 @@ export interface CreateWatchlistRequest {
550
550
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
551
551
  * @public
552
552
  */
553
- ClientToken?: string;
553
+ ClientToken?: string | undefined;
554
554
  }
555
555
  /**
556
556
  * <p>Contains all the information about a watchlist.</p>
@@ -561,37 +561,37 @@ export interface Watchlist {
561
561
  * <p>The identifier of the domain that contains the watchlist.</p>
562
562
  * @public
563
563
  */
564
- DomainId?: string;
564
+ DomainId?: string | undefined;
565
565
  /**
566
566
  * <p>The identifier of the watchlist.</p>
567
567
  * @public
568
568
  */
569
- WatchlistId?: string;
569
+ WatchlistId?: string | undefined;
570
570
  /**
571
571
  * <p>The name for the watchlist.</p>
572
572
  * @public
573
573
  */
574
- Name?: string;
574
+ Name?: string | undefined;
575
575
  /**
576
576
  * <p>The description of the watchlist.</p>
577
577
  * @public
578
578
  */
579
- Description?: string;
579
+ Description?: string | undefined;
580
580
  /**
581
581
  * <p>Whether the specified watchlist is the default watchlist of a domain.</p>
582
582
  * @public
583
583
  */
584
- DefaultWatchlist?: boolean;
584
+ DefaultWatchlist?: boolean | undefined;
585
585
  /**
586
586
  * <p>The timestamp of when the watchlist was created.</p>
587
587
  * @public
588
588
  */
589
- CreatedAt?: Date;
589
+ CreatedAt?: Date | undefined;
590
590
  /**
591
591
  * <p>The timestamp of when the watchlist was updated.</p>
592
592
  * @public
593
593
  */
594
- UpdatedAt?: Date;
594
+ UpdatedAt?: Date | undefined;
595
595
  }
596
596
  /**
597
597
  * @public
@@ -601,7 +601,7 @@ export interface CreateWatchlistResponse {
601
601
  * <p>Information about the newly created watchlist.</p>
602
602
  * @public
603
603
  */
604
- Watchlist?: Watchlist;
604
+ Watchlist?: Watchlist | undefined;
605
605
  }
606
606
  /**
607
607
  * @public
@@ -676,7 +676,7 @@ export interface DescribeDomainResponse {
676
676
  * <p>Information about the specified domain.</p>
677
677
  * @public
678
678
  */
679
- Domain?: Domain;
679
+ Domain?: Domain | undefined;
680
680
  }
681
681
  /**
682
682
  * @public
@@ -701,7 +701,7 @@ export interface DescribeFraudsterResponse {
701
701
  * <p>Information about the specified fraudster.</p>
702
702
  * @public
703
703
  */
704
- Fraudster?: Fraudster;
704
+ Fraudster?: Fraudster | undefined;
705
705
  }
706
706
  /**
707
707
  * @public
@@ -727,12 +727,12 @@ export interface FailureDetails {
727
727
  * <p>An HTTP status code representing the nature of the error.</p>
728
728
  * @public
729
729
  */
730
- StatusCode?: number;
730
+ StatusCode?: number | undefined;
731
731
  /**
732
732
  * <p>A description of the error that caused the batch job failure.</p>
733
733
  * @public
734
734
  */
735
- Message?: string;
735
+ Message?: string | undefined;
736
736
  }
737
737
  /**
738
738
  * <p>The configuration containing input file information for a batch job.</p>
@@ -756,7 +756,7 @@ export interface JobProgress {
756
756
  * input file.</p>
757
757
  * @public
758
758
  */
759
- PercentComplete?: number;
759
+ PercentComplete?: number | undefined;
760
760
  }
761
761
  /**
762
762
  * @public
@@ -793,7 +793,7 @@ export interface OutputDataConfig {
793
793
  * </p>
794
794
  * @public
795
795
  */
796
- KmsKeyId?: string;
796
+ KmsKeyId?: string | undefined;
797
797
  }
798
798
  /**
799
799
  * @public
@@ -819,19 +819,19 @@ export interface RegistrationConfig {
819
819
  * domain.</p>
820
820
  * @public
821
821
  */
822
- DuplicateRegistrationAction?: DuplicateRegistrationAction;
822
+ DuplicateRegistrationAction?: DuplicateRegistrationAction | undefined;
823
823
  /**
824
824
  * <p>The minimum similarity score between the new and old fraudsters in order to consider
825
825
  * the new fraudster a duplicate.</p>
826
826
  * @public
827
827
  */
828
- FraudsterSimilarityThreshold?: number;
828
+ FraudsterSimilarityThreshold?: number | undefined;
829
829
  /**
830
830
  * <p>The identifiers of watchlists that a fraudster is registered to. If a watchlist isn't provided, the fraudsters are registered to the default watchlist.
831
831
  * </p>
832
832
  * @public
833
833
  */
834
- WatchlistIds?: string[];
834
+ WatchlistIds?: string[] | undefined;
835
835
  }
836
836
  /**
837
837
  * <p>Contains all the information about a fraudster registration job.</p>
@@ -842,58 +842,58 @@ export interface FraudsterRegistrationJob {
842
842
  * <p>The client-provided name for the fraudster registration job.</p>
843
843
  * @public
844
844
  */
845
- JobName?: string;
845
+ JobName?: string | undefined;
846
846
  /**
847
847
  * <p>The service-generated identifier for the fraudster registration job.</p>
848
848
  * @public
849
849
  */
850
- JobId?: string;
850
+ JobId?: string | undefined;
851
851
  /**
852
852
  * <p>The current status of the fraudster registration job.</p>
853
853
  * @public
854
854
  */
855
- JobStatus?: FraudsterRegistrationJobStatus;
855
+ JobStatus?: FraudsterRegistrationJobStatus | undefined;
856
856
  /**
857
857
  * <p>The identifier of the domain that contains the fraudster registration job.</p>
858
858
  * @public
859
859
  */
860
- DomainId?: string;
860
+ DomainId?: string | undefined;
861
861
  /**
862
862
  * <p>The IAM role Amazon Resource Name (ARN) that grants Voice ID permissions to access
863
863
  * customer's buckets to read the input manifest file and write the job output file.</p>
864
864
  * @public
865
865
  */
866
- DataAccessRoleArn?: string;
866
+ DataAccessRoleArn?: string | undefined;
867
867
  /**
868
868
  * <p>The registration config containing details such as the action to take when a duplicate
869
869
  * fraudster is detected, and the similarity threshold to use for detecting a duplicate
870
870
  * fraudster.</p>
871
871
  * @public
872
872
  */
873
- RegistrationConfig?: RegistrationConfig;
873
+ RegistrationConfig?: RegistrationConfig | undefined;
874
874
  /**
875
875
  * <p>The input data config containing an S3 URI for the input manifest file that contains
876
876
  * the list of fraudster registration job requests.</p>
877
877
  * @public
878
878
  */
879
- InputDataConfig?: InputDataConfig;
879
+ InputDataConfig?: InputDataConfig | undefined;
880
880
  /**
881
881
  * <p>The output data config containing the S3 location where you want Voice ID to write
882
882
  * your job output file; you must also include a KMS key ID in order to
883
883
  * encrypt the file.</p>
884
884
  * @public
885
885
  */
886
- OutputDataConfig?: OutputDataConfig;
886
+ OutputDataConfig?: OutputDataConfig | undefined;
887
887
  /**
888
888
  * <p>A timestamp of when the fraudster registration job was created.</p>
889
889
  * @public
890
890
  */
891
- CreatedAt?: Date;
891
+ CreatedAt?: Date | undefined;
892
892
  /**
893
893
  * <p>A timestamp of when the fraudster registration job ended.</p>
894
894
  * @public
895
895
  */
896
- EndedAt?: Date;
896
+ EndedAt?: Date | undefined;
897
897
  /**
898
898
  * <p>Contains details that are populated when an entire batch job fails. In cases of
899
899
  * individual registration job failures, the batch job as a whole doesn't fail; it is
@@ -902,13 +902,13 @@ export interface FraudsterRegistrationJob {
902
902
  * failed.</p>
903
903
  * @public
904
904
  */
905
- FailureDetails?: FailureDetails;
905
+ FailureDetails?: FailureDetails | undefined;
906
906
  /**
907
907
  * <p>Shows the completed percentage of registration requests listed in the input
908
908
  * file.</p>
909
909
  * @public
910
910
  */
911
- JobProgress?: JobProgress;
911
+ JobProgress?: JobProgress | undefined;
912
912
  }
913
913
  /**
914
914
  * @public
@@ -918,7 +918,7 @@ export interface DescribeFraudsterRegistrationJobResponse {
918
918
  * <p>Contains details about the specified fraudster registration job.</p>
919
919
  * @public
920
920
  */
921
- Job?: FraudsterRegistrationJob;
921
+ Job?: FraudsterRegistrationJob | undefined;
922
922
  }
923
923
  /**
924
924
  * @public
@@ -958,38 +958,38 @@ export interface Speaker {
958
958
  * <p>The identifier of the domain that contains the speaker.</p>
959
959
  * @public
960
960
  */
961
- DomainId?: string;
961
+ DomainId?: string | undefined;
962
962
  /**
963
963
  * <p>The client-provided identifier for the speaker.</p>
964
964
  * @public
965
965
  */
966
- CustomerSpeakerId?: string;
966
+ CustomerSpeakerId?: string | undefined;
967
967
  /**
968
968
  * <p>The service-generated identifier for the speaker.</p>
969
969
  * @public
970
970
  */
971
- GeneratedSpeakerId?: string;
971
+ GeneratedSpeakerId?: string | undefined;
972
972
  /**
973
973
  * <p>The current status of the speaker.</p>
974
974
  * @public
975
975
  */
976
- Status?: SpeakerStatus;
976
+ Status?: SpeakerStatus | undefined;
977
977
  /**
978
978
  * <p>A timestamp of when the speaker was created. </p>
979
979
  * @public
980
980
  */
981
- CreatedAt?: Date;
981
+ CreatedAt?: Date | undefined;
982
982
  /**
983
983
  * <p>A timestamp of the speaker's last update.</p>
984
984
  * @public
985
985
  */
986
- UpdatedAt?: Date;
986
+ UpdatedAt?: Date | undefined;
987
987
  /**
988
988
  * <p>The timestamp of when the speaker was last accessed for enrollment, re-enrollment or a
989
989
  * successful authentication. This timestamp is accurate to one hour.</p>
990
990
  * @public
991
991
  */
992
- LastAccessedAt?: Date;
992
+ LastAccessedAt?: Date | undefined;
993
993
  }
994
994
  /**
995
995
  * @public
@@ -999,7 +999,7 @@ export interface DescribeSpeakerResponse {
999
999
  * <p>Information about the specified speaker.</p>
1000
1000
  * @public
1001
1001
  */
1002
- Speaker?: Speaker;
1002
+ Speaker?: Speaker | undefined;
1003
1003
  }
1004
1004
  /**
1005
1005
  * @public
@@ -1052,20 +1052,20 @@ export interface EnrollmentJobFraudDetectionConfig {
1052
1052
  * flagged by the fraud detection system.</p>
1053
1053
  * @public
1054
1054
  */
1055
- FraudDetectionAction?: FraudDetectionAction;
1055
+ FraudDetectionAction?: FraudDetectionAction | undefined;
1056
1056
  /**
1057
1057
  * <p>Threshold value for determining whether the speaker is a high risk to be fraudulent.
1058
1058
  * If the detected risk score calculated by Voice ID is greater than or equal to the
1059
1059
  * threshold, the speaker is considered a fraudster.</p>
1060
1060
  * @public
1061
1061
  */
1062
- RiskThreshold?: number;
1062
+ RiskThreshold?: number | undefined;
1063
1063
  /**
1064
1064
  * <p>The identifier of watchlists against which fraud detection is performed.
1065
1065
  * </p>
1066
1066
  * @public
1067
1067
  */
1068
- WatchlistIds?: string[];
1068
+ WatchlistIds?: string[] | undefined;
1069
1069
  }
1070
1070
  /**
1071
1071
  * <p>Contains configurations defining enrollment behavior for the batch job.</p>
@@ -1080,12 +1080,12 @@ export interface EnrollmentConfig {
1080
1080
  * the latest audio.</p>
1081
1081
  * @public
1082
1082
  */
1083
- ExistingEnrollmentAction?: ExistingEnrollmentAction;
1083
+ ExistingEnrollmentAction?: ExistingEnrollmentAction | undefined;
1084
1084
  /**
1085
1085
  * <p>The fraud detection configuration to use for the speaker enrollment job.</p>
1086
1086
  * @public
1087
1087
  */
1088
- FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig;
1088
+ FraudDetectionConfig?: EnrollmentJobFraudDetectionConfig | undefined;
1089
1089
  }
1090
1090
  /**
1091
1091
  * @public
@@ -1111,57 +1111,57 @@ export interface SpeakerEnrollmentJob {
1111
1111
  * <p>The client-provided name for the speaker enrollment job.</p>
1112
1112
  * @public
1113
1113
  */
1114
- JobName?: string;
1114
+ JobName?: string | undefined;
1115
1115
  /**
1116
1116
  * <p>The service-generated identifier for the speaker enrollment job.</p>
1117
1117
  * @public
1118
1118
  */
1119
- JobId?: string;
1119
+ JobId?: string | undefined;
1120
1120
  /**
1121
1121
  * <p>The current status of the speaker enrollment job.</p>
1122
1122
  * @public
1123
1123
  */
1124
- JobStatus?: SpeakerEnrollmentJobStatus;
1124
+ JobStatus?: SpeakerEnrollmentJobStatus | undefined;
1125
1125
  /**
1126
1126
  * <p>The identifier of the domain that contains the speaker enrollment job.</p>
1127
1127
  * @public
1128
1128
  */
1129
- DomainId?: string;
1129
+ DomainId?: string | undefined;
1130
1130
  /**
1131
1131
  * <p>The IAM role Amazon Resource Name (ARN) that grants Voice ID permissions to access
1132
1132
  * customer's buckets to read the input manifest file and write the job output file.</p>
1133
1133
  * @public
1134
1134
  */
1135
- DataAccessRoleArn?: string;
1135
+ DataAccessRoleArn?: string | undefined;
1136
1136
  /**
1137
1137
  * <p>The configuration that defines the action to take when the speaker is already enrolled
1138
1138
  * in Voice ID, and the <code>FraudDetectionConfig</code> to use.</p>
1139
1139
  * @public
1140
1140
  */
1141
- EnrollmentConfig?: EnrollmentConfig;
1141
+ EnrollmentConfig?: EnrollmentConfig | undefined;
1142
1142
  /**
1143
1143
  * <p>The input data config containing an S3 URI for the input manifest file that contains
1144
1144
  * the list of speaker enrollment job requests.</p>
1145
1145
  * @public
1146
1146
  */
1147
- InputDataConfig?: InputDataConfig;
1147
+ InputDataConfig?: InputDataConfig | undefined;
1148
1148
  /**
1149
1149
  * <p>The output data config containing the S3 location where Voice ID writes the job
1150
1150
  * output file; you must also include a KMS key ID to encrypt the
1151
1151
  * file.</p>
1152
1152
  * @public
1153
1153
  */
1154
- OutputDataConfig?: OutputDataConfig;
1154
+ OutputDataConfig?: OutputDataConfig | undefined;
1155
1155
  /**
1156
1156
  * <p>A timestamp of when the speaker enrollment job was created.</p>
1157
1157
  * @public
1158
1158
  */
1159
- CreatedAt?: Date;
1159
+ CreatedAt?: Date | undefined;
1160
1160
  /**
1161
1161
  * <p>A timestamp of when the speaker enrollment job ended. </p>
1162
1162
  * @public
1163
1163
  */
1164
- EndedAt?: Date;
1164
+ EndedAt?: Date | undefined;
1165
1165
  /**
1166
1166
  * <p>Contains details that are populated when an entire batch job fails. In cases of
1167
1167
  * individual registration job failures, the batch job as a whole doesn't fail; it is
@@ -1170,13 +1170,13 @@ export interface SpeakerEnrollmentJob {
1170
1170
  * failed.</p>
1171
1171
  * @public
1172
1172
  */
1173
- FailureDetails?: FailureDetails;
1173
+ FailureDetails?: FailureDetails | undefined;
1174
1174
  /**
1175
1175
  * <p>Provides details on job progress. This field shows the completed percentage of
1176
1176
  * registration requests listed in the input file.</p>
1177
1177
  * @public
1178
1178
  */
1179
- JobProgress?: JobProgress;
1179
+ JobProgress?: JobProgress | undefined;
1180
1180
  }
1181
1181
  /**
1182
1182
  * @public
@@ -1186,7 +1186,7 @@ export interface DescribeSpeakerEnrollmentJobResponse {
1186
1186
  * <p>Contains details about the specified speaker enrollment job.</p>
1187
1187
  * @public
1188
1188
  */
1189
- Job?: SpeakerEnrollmentJob;
1189
+ Job?: SpeakerEnrollmentJob | undefined;
1190
1190
  }
1191
1191
  /**
1192
1192
  * @public
@@ -1211,7 +1211,7 @@ export interface DescribeWatchlistResponse {
1211
1211
  * <p>Information about the specified watchlist.</p>
1212
1212
  * @public
1213
1213
  */
1214
- Watchlist?: Watchlist;
1214
+ Watchlist?: Watchlist | undefined;
1215
1215
  }
1216
1216
  /**
1217
1217
  * @public
@@ -1241,7 +1241,7 @@ export interface DisassociateFraudsterResponse {
1241
1241
  * <p>Contains all the information about a fraudster.</p>
1242
1242
  * @public
1243
1243
  */
1244
- Fraudster?: Fraudster;
1244
+ Fraudster?: Fraudster | undefined;
1245
1245
  }
1246
1246
  /**
1247
1247
  * @public
@@ -1252,7 +1252,7 @@ export interface ListDomainsRequest {
1252
1252
  * <code>NextToken</code> to obtain more pages of results. The default is 100; the maximum allowed page size is also 100.</p>
1253
1253
  * @public
1254
1254
  */
1255
- MaxResults?: number;
1255
+ MaxResults?: number | undefined;
1256
1256
  /**
1257
1257
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1258
1258
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1260,7 +1260,7 @@ export interface ListDomainsRequest {
1260
1260
  * unchanged. Each pagination token expires after 24 hours.</p>
1261
1261
  * @public
1262
1262
  */
1263
- NextToken?: string;
1263
+ NextToken?: string | undefined;
1264
1264
  }
1265
1265
  /**
1266
1266
  * <p>Contains a summary of information about a domain.</p>
@@ -1271,55 +1271,55 @@ export interface DomainSummary {
1271
1271
  * <p>The identifier of the domain.</p>
1272
1272
  * @public
1273
1273
  */
1274
- DomainId?: string;
1274
+ DomainId?: string | undefined;
1275
1275
  /**
1276
1276
  * <p>The Amazon Resource Name (ARN) for the domain.</p>
1277
1277
  * @public
1278
1278
  */
1279
- Arn?: string;
1279
+ Arn?: string | undefined;
1280
1280
  /**
1281
1281
  * <p>The client-provided name for the domain.</p>
1282
1282
  * @public
1283
1283
  */
1284
- Name?: string;
1284
+ Name?: string | undefined;
1285
1285
  /**
1286
1286
  * <p>The description of the domain.</p>
1287
1287
  * @public
1288
1288
  */
1289
- Description?: string;
1289
+ Description?: string | undefined;
1290
1290
  /**
1291
1291
  * <p>The current status of the domain.</p>
1292
1292
  * @public
1293
1293
  */
1294
- DomainStatus?: DomainStatus;
1294
+ DomainStatus?: DomainStatus | undefined;
1295
1295
  /**
1296
1296
  * <p>The server-side encryption configuration containing the KMS key
1297
1297
  * identifier you want Voice ID to use to encrypt your data.</p>
1298
1298
  * @public
1299
1299
  */
1300
- ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
1300
+ ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
1301
1301
  /**
1302
1302
  * <p>The timestamp of when the domain was created.</p>
1303
1303
  * @public
1304
1304
  */
1305
- CreatedAt?: Date;
1305
+ CreatedAt?: Date | undefined;
1306
1306
  /**
1307
1307
  * <p>The timestamp of when the domain was last updated.</p>
1308
1308
  * @public
1309
1309
  */
1310
- UpdatedAt?: Date;
1310
+ UpdatedAt?: Date | undefined;
1311
1311
  /**
1312
1312
  * <p>Details about the most recent server-side encryption configuration update. When the
1313
1313
  * server-side encryption configuration is changed, dependency on the old KMS key is removed through an asynchronous process. When this update is
1314
1314
  * complete, the domain's data can only be accessed using the new KMS key.</p>
1315
1315
  * @public
1316
1316
  */
1317
- ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
1317
+ ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails | undefined;
1318
1318
  /**
1319
1319
  * <p>Provides information about <code>watchlistDetails</code> and <code>DefaultWatchlistID</code>. </p>
1320
1320
  * @public
1321
1321
  */
1322
- WatchlistDetails?: WatchlistDetails;
1322
+ WatchlistDetails?: WatchlistDetails | undefined;
1323
1323
  }
1324
1324
  /**
1325
1325
  * @public
@@ -1329,7 +1329,7 @@ export interface ListDomainsResponse {
1329
1329
  * <p>A list containing details about each domain in the Amazon Web Services account.</p>
1330
1330
  * @public
1331
1331
  */
1332
- DomainSummaries?: DomainSummary[];
1332
+ DomainSummaries?: DomainSummary[] | undefined;
1333
1333
  /**
1334
1334
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1335
1335
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1337,7 +1337,7 @@ export interface ListDomainsResponse {
1337
1337
  * unchanged. Each pagination token expires after 24 hours.</p>
1338
1338
  * @public
1339
1339
  */
1340
- NextToken?: string;
1340
+ NextToken?: string | undefined;
1341
1341
  }
1342
1342
  /**
1343
1343
  * @public
@@ -1357,7 +1357,7 @@ export interface UpdateDomainRequest {
1357
1357
  * <p>A brief description about this domain.</p>
1358
1358
  * @public
1359
1359
  */
1360
- Description?: string;
1360
+ Description?: string | undefined;
1361
1361
  /**
1362
1362
  * <p>The configuration, containing the KMS key identifier, to be used by
1363
1363
  * Voice ID for the server-side encryption of your data. Changing the domain's associated
@@ -1378,7 +1378,7 @@ export interface UpdateDomainResponse {
1378
1378
  * <p>Details about the updated domain</p>
1379
1379
  * @public
1380
1380
  */
1381
- Domain?: Domain;
1381
+ Domain?: Domain | undefined;
1382
1382
  }
1383
1383
  /**
1384
1384
  * @public
@@ -1408,13 +1408,13 @@ export interface FraudDetectionConfiguration {
1408
1408
  * considered a fraudster.</p>
1409
1409
  * @public
1410
1410
  */
1411
- RiskThreshold?: number;
1411
+ RiskThreshold?: number | undefined;
1412
1412
  /**
1413
1413
  * <p>The identifier of the watchlist against which fraud detection is performed.
1414
1414
  * </p>
1415
1415
  * @public
1416
1416
  */
1417
- WatchlistId?: string;
1417
+ WatchlistId?: string | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * @public
@@ -1458,7 +1458,7 @@ export interface KnownFraudsterRisk {
1458
1458
  * non-zero RiskScore, this value is <code>null</code>.</p>
1459
1459
  * @public
1460
1460
  */
1461
- GeneratedFraudsterId?: string;
1461
+ GeneratedFraudsterId?: string | undefined;
1462
1462
  }
1463
1463
  /**
1464
1464
  * <p>The details resulting from 'Voice Spoofing Risk' analysis of the speaker.</p>
@@ -1502,44 +1502,44 @@ export interface FraudDetectionResult {
1502
1502
  * Fraud Detection result for this API.</p>
1503
1503
  * @public
1504
1504
  */
1505
- FraudDetectionResultId?: string;
1505
+ FraudDetectionResultId?: string | undefined;
1506
1506
  /**
1507
1507
  * <p>A timestamp of when audio aggregation started for this fraud detection
1508
1508
  * result.</p>
1509
1509
  * @public
1510
1510
  */
1511
- AudioAggregationStartedAt?: Date;
1511
+ AudioAggregationStartedAt?: Date | undefined;
1512
1512
  /**
1513
1513
  * <p>A timestamp of when audio aggregation ended for this fraud detection
1514
1514
  * result.</p>
1515
1515
  * @public
1516
1516
  */
1517
- AudioAggregationEndedAt?: Date;
1517
+ AudioAggregationEndedAt?: Date | undefined;
1518
1518
  /**
1519
1519
  * <p>The <code>FraudDetectionConfiguration</code> used to generate this fraud detection
1520
1520
  * result.</p>
1521
1521
  * @public
1522
1522
  */
1523
- Configuration?: FraudDetectionConfiguration;
1523
+ Configuration?: FraudDetectionConfiguration | undefined;
1524
1524
  /**
1525
1525
  * <p>The fraud detection decision produced by Voice ID, processed against the current
1526
1526
  * session state and streamed audio of the speaker.</p>
1527
1527
  * @public
1528
1528
  */
1529
- Decision?: FraudDetectionDecision;
1529
+ Decision?: FraudDetectionDecision | undefined;
1530
1530
  /**
1531
1531
  * <p>The reason speaker was flagged by the fraud detection system. This is only be
1532
1532
  * populated if fraud detection Decision is <code>HIGH_RISK</code>, and the following
1533
1533
  * possible values: <code>KNOWN_FRAUDSTER</code> and <code>VOICE_SPOOFING</code>.</p>
1534
1534
  * @public
1535
1535
  */
1536
- Reasons?: FraudDetectionReason[];
1536
+ Reasons?: FraudDetectionReason[] | undefined;
1537
1537
  /**
1538
1538
  * <p>Details about each risk analyzed for this speaker. Currently, this contains
1539
1539
  * KnownFraudsterRisk and VoiceSpoofingRisk details.</p>
1540
1540
  * @public
1541
1541
  */
1542
- RiskDetails?: FraudRiskDetails;
1542
+ RiskDetails?: FraudRiskDetails | undefined;
1543
1543
  }
1544
1544
  /**
1545
1545
  * @public
@@ -1562,17 +1562,17 @@ export interface EvaluateSessionResponse {
1562
1562
  * <p>The identifier of the domain that contains the session.</p>
1563
1563
  * @public
1564
1564
  */
1565
- DomainId?: string;
1565
+ DomainId?: string | undefined;
1566
1566
  /**
1567
1567
  * <p>The service-generated identifier of the session.</p>
1568
1568
  * @public
1569
1569
  */
1570
- SessionId?: string;
1570
+ SessionId?: string | undefined;
1571
1571
  /**
1572
1572
  * <p>The client-provided name of the session.</p>
1573
1573
  * @public
1574
1574
  */
1575
- SessionName?: string;
1575
+ SessionName?: string | undefined;
1576
1576
  /**
1577
1577
  * <p>The current status of audio streaming for this session. This field is useful to infer
1578
1578
  * next steps when the Authentication or Fraud Detection results are empty or the decision
@@ -1585,19 +1585,19 @@ export interface EvaluateSessionResponse {
1585
1585
  * session is needed to try again.</p>
1586
1586
  * @public
1587
1587
  */
1588
- StreamingStatus?: StreamingStatus;
1588
+ StreamingStatus?: StreamingStatus | undefined;
1589
1589
  /**
1590
1590
  * <p>Details resulting from the authentication process, such as authentication decision and
1591
1591
  * authentication score.</p>
1592
1592
  * @public
1593
1593
  */
1594
- AuthenticationResult?: AuthenticationResult;
1594
+ AuthenticationResult?: AuthenticationResult | undefined;
1595
1595
  /**
1596
1596
  * <p>Details resulting from the fraud detection process, such as fraud detection decision
1597
1597
  * and risk score.</p>
1598
1598
  * @public
1599
1599
  */
1600
- FraudDetectionResult?: FraudDetectionResult;
1600
+ FraudDetectionResult?: FraudDetectionResult | undefined;
1601
1601
  }
1602
1602
  /**
1603
1603
  * <p>Contains a summary of information about a fraudster registration job.</p>
@@ -1608,32 +1608,32 @@ export interface FraudsterRegistrationJobSummary {
1608
1608
  * <p>The client-provided name for the fraudster registration job.</p>
1609
1609
  * @public
1610
1610
  */
1611
- JobName?: string;
1611
+ JobName?: string | undefined;
1612
1612
  /**
1613
1613
  * <p>The service-generated identifier for the fraudster registration job.</p>
1614
1614
  * @public
1615
1615
  */
1616
- JobId?: string;
1616
+ JobId?: string | undefined;
1617
1617
  /**
1618
1618
  * <p>The current status of the fraudster registration job.</p>
1619
1619
  * @public
1620
1620
  */
1621
- JobStatus?: FraudsterRegistrationJobStatus;
1621
+ JobStatus?: FraudsterRegistrationJobStatus | undefined;
1622
1622
  /**
1623
1623
  * <p>The identifier of the domain that contains the fraudster registration job.</p>
1624
1624
  * @public
1625
1625
  */
1626
- DomainId?: string;
1626
+ DomainId?: string | undefined;
1627
1627
  /**
1628
1628
  * <p>A timestamp of when the fraudster registration job was created. </p>
1629
1629
  * @public
1630
1630
  */
1631
- CreatedAt?: Date;
1631
+ CreatedAt?: Date | undefined;
1632
1632
  /**
1633
1633
  * <p>A timestamp of when the fraudster registration job ended.</p>
1634
1634
  * @public
1635
1635
  */
1636
- EndedAt?: Date;
1636
+ EndedAt?: Date | undefined;
1637
1637
  /**
1638
1638
  * <p>Contains details that are populated when an entire batch job fails. In cases of
1639
1639
  * individual registration job failures, the batch job as a whole doesn't fail; it is
@@ -1642,13 +1642,13 @@ export interface FraudsterRegistrationJobSummary {
1642
1642
  * failed.</p>
1643
1643
  * @public
1644
1644
  */
1645
- FailureDetails?: FailureDetails;
1645
+ FailureDetails?: FailureDetails | undefined;
1646
1646
  /**
1647
1647
  * <p>Shows the completed percentage of registration requests listed in the input
1648
1648
  * file.</p>
1649
1649
  * @public
1650
1650
  */
1651
- JobProgress?: JobProgress;
1651
+ JobProgress?: JobProgress | undefined;
1652
1652
  }
1653
1653
  /**
1654
1654
  * <p>Contains a summary of information about a fraudster.
@@ -1660,22 +1660,22 @@ export interface FraudsterSummary {
1660
1660
  * <p>The identifier of the domain that contains the fraudster summary.</p>
1661
1661
  * @public
1662
1662
  */
1663
- DomainId?: string;
1663
+ DomainId?: string | undefined;
1664
1664
  /**
1665
1665
  * <p>The service-generated identifier for the fraudster.</p>
1666
1666
  * @public
1667
1667
  */
1668
- GeneratedFraudsterId?: string;
1668
+ GeneratedFraudsterId?: string | undefined;
1669
1669
  /**
1670
1670
  * <p>The timestamp of when the fraudster summary was created.</p>
1671
1671
  * @public
1672
1672
  */
1673
- CreatedAt?: Date;
1673
+ CreatedAt?: Date | undefined;
1674
1674
  /**
1675
1675
  * <p>The identifier of the watchlists the fraudster is a part of.</p>
1676
1676
  * @public
1677
1677
  */
1678
- WatchlistIds?: string[];
1678
+ WatchlistIds?: string[] | undefined;
1679
1679
  }
1680
1680
  /**
1681
1681
  * @public
@@ -1690,13 +1690,13 @@ export interface ListFraudsterRegistrationJobsRequest {
1690
1690
  * <p>Provides the status of your fraudster registration job.</p>
1691
1691
  * @public
1692
1692
  */
1693
- JobStatus?: FraudsterRegistrationJobStatus;
1693
+ JobStatus?: FraudsterRegistrationJobStatus | undefined;
1694
1694
  /**
1695
1695
  * <p>The maximum number of results that are returned per call. You can use
1696
1696
  * <code>NextToken</code> to obtain more pages of results. The default is 100; the maximum allowed page size is also 100. </p>
1697
1697
  * @public
1698
1698
  */
1699
- MaxResults?: number;
1699
+ MaxResults?: number | undefined;
1700
1700
  /**
1701
1701
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1702
1702
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1704,7 +1704,7 @@ export interface ListFraudsterRegistrationJobsRequest {
1704
1704
  * unchanged. Each pagination token expires after 24 hours.</p>
1705
1705
  * @public
1706
1706
  */
1707
- NextToken?: string;
1707
+ NextToken?: string | undefined;
1708
1708
  }
1709
1709
  /**
1710
1710
  * @public
@@ -1714,7 +1714,7 @@ export interface ListFraudsterRegistrationJobsResponse {
1714
1714
  * <p>A list containing details about each specified fraudster registration job.</p>
1715
1715
  * @public
1716
1716
  */
1717
- JobSummaries?: FraudsterRegistrationJobSummary[];
1717
+ JobSummaries?: FraudsterRegistrationJobSummary[] | undefined;
1718
1718
  /**
1719
1719
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1720
1720
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1722,7 +1722,7 @@ export interface ListFraudsterRegistrationJobsResponse {
1722
1722
  * unchanged. Each pagination token expires after 24 hours.</p>
1723
1723
  * @public
1724
1724
  */
1725
- NextToken?: string;
1725
+ NextToken?: string | undefined;
1726
1726
  }
1727
1727
  /**
1728
1728
  * @public
@@ -1737,13 +1737,13 @@ export interface ListFraudstersRequest {
1737
1737
  * <p>The identifier of the watchlist. If provided, all fraudsters in the watchlist are listed. If not provided, all fraudsters in the domain are listed.</p>
1738
1738
  * @public
1739
1739
  */
1740
- WatchlistId?: string;
1740
+ WatchlistId?: string | undefined;
1741
1741
  /**
1742
1742
  * <p>The maximum number of results that are returned per call. You can use
1743
1743
  * <code>NextToken</code> to obtain more pages of results. The default is 100; the maximum allowed page size is also 100. </p>
1744
1744
  * @public
1745
1745
  */
1746
- MaxResults?: number;
1746
+ MaxResults?: number | undefined;
1747
1747
  /**
1748
1748
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1749
1749
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1752,7 +1752,7 @@ export interface ListFraudstersRequest {
1752
1752
  * </p>
1753
1753
  * @public
1754
1754
  */
1755
- NextToken?: string;
1755
+ NextToken?: string | undefined;
1756
1756
  }
1757
1757
  /**
1758
1758
  * @public
@@ -1763,7 +1763,7 @@ export interface ListFraudstersResponse {
1763
1763
  * </p>
1764
1764
  * @public
1765
1765
  */
1766
- FraudsterSummaries?: FraudsterSummary[];
1766
+ FraudsterSummaries?: FraudsterSummary[] | undefined;
1767
1767
  /**
1768
1768
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1769
1769
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1772,7 +1772,7 @@ export interface ListFraudstersResponse {
1772
1772
  * </p>
1773
1773
  * @public
1774
1774
  */
1775
- NextToken?: string;
1775
+ NextToken?: string | undefined;
1776
1776
  }
1777
1777
  /**
1778
1778
  * @public
@@ -1787,13 +1787,13 @@ export interface ListSpeakerEnrollmentJobsRequest {
1787
1787
  * <p>Provides the status of your speaker enrollment Job.</p>
1788
1788
  * @public
1789
1789
  */
1790
- JobStatus?: SpeakerEnrollmentJobStatus;
1790
+ JobStatus?: SpeakerEnrollmentJobStatus | undefined;
1791
1791
  /**
1792
1792
  * <p>The maximum number of results that are returned per call. You can use
1793
1793
  * <code>NextToken</code> to obtain more pages of results. The default is 100; the maximum allowed page size is also 100.</p>
1794
1794
  * @public
1795
1795
  */
1796
- MaxResults?: number;
1796
+ MaxResults?: number | undefined;
1797
1797
  /**
1798
1798
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1799
1799
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1801,7 +1801,7 @@ export interface ListSpeakerEnrollmentJobsRequest {
1801
1801
  * unchanged. Each pagination token expires after 24 hours.</p>
1802
1802
  * @public
1803
1803
  */
1804
- NextToken?: string;
1804
+ NextToken?: string | undefined;
1805
1805
  }
1806
1806
  /**
1807
1807
  * <p>Contains a summary of information about a speaker enrollment job.</p>
@@ -1812,32 +1812,32 @@ export interface SpeakerEnrollmentJobSummary {
1812
1812
  * <p>The client-provided name for the speaker enrollment job.</p>
1813
1813
  * @public
1814
1814
  */
1815
- JobName?: string;
1815
+ JobName?: string | undefined;
1816
1816
  /**
1817
1817
  * <p>The service-generated identifier for the speaker enrollment job.</p>
1818
1818
  * @public
1819
1819
  */
1820
- JobId?: string;
1820
+ JobId?: string | undefined;
1821
1821
  /**
1822
1822
  * <p>The current status of the speaker enrollment job.</p>
1823
1823
  * @public
1824
1824
  */
1825
- JobStatus?: SpeakerEnrollmentJobStatus;
1825
+ JobStatus?: SpeakerEnrollmentJobStatus | undefined;
1826
1826
  /**
1827
1827
  * <p>The identifier of the domain that contains the speaker enrollment job.</p>
1828
1828
  * @public
1829
1829
  */
1830
- DomainId?: string;
1830
+ DomainId?: string | undefined;
1831
1831
  /**
1832
1832
  * <p>A timestamp of when of the speaker enrollment job was created.</p>
1833
1833
  * @public
1834
1834
  */
1835
- CreatedAt?: Date;
1835
+ CreatedAt?: Date | undefined;
1836
1836
  /**
1837
1837
  * <p>A timestamp of when the speaker enrollment job ended.</p>
1838
1838
  * @public
1839
1839
  */
1840
- EndedAt?: Date;
1840
+ EndedAt?: Date | undefined;
1841
1841
  /**
1842
1842
  * <p>Contains details that are populated when an entire batch job fails. In cases of
1843
1843
  * individual registration job failures, the batch job as a whole doesn't fail; it is
@@ -1846,13 +1846,13 @@ export interface SpeakerEnrollmentJobSummary {
1846
1846
  * failed.</p>
1847
1847
  * @public
1848
1848
  */
1849
- FailureDetails?: FailureDetails;
1849
+ FailureDetails?: FailureDetails | undefined;
1850
1850
  /**
1851
1851
  * <p>Provides details regarding job progress. This field shows the completed percentage of
1852
1852
  * enrollment requests listed in the input file.</p>
1853
1853
  * @public
1854
1854
  */
1855
- JobProgress?: JobProgress;
1855
+ JobProgress?: JobProgress | undefined;
1856
1856
  }
1857
1857
  /**
1858
1858
  * @public
@@ -1862,7 +1862,7 @@ export interface ListSpeakerEnrollmentJobsResponse {
1862
1862
  * <p>A list containing details about each specified speaker enrollment job.</p>
1863
1863
  * @public
1864
1864
  */
1865
- JobSummaries?: SpeakerEnrollmentJobSummary[];
1865
+ JobSummaries?: SpeakerEnrollmentJobSummary[] | undefined;
1866
1866
  /**
1867
1867
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1868
1868
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1870,7 +1870,7 @@ export interface ListSpeakerEnrollmentJobsResponse {
1870
1870
  * unchanged. Each pagination token expires after 24 hours. </p>
1871
1871
  * @public
1872
1872
  */
1873
- NextToken?: string;
1873
+ NextToken?: string | undefined;
1874
1874
  }
1875
1875
  /**
1876
1876
  * @public
@@ -1886,7 +1886,7 @@ export interface ListSpeakersRequest {
1886
1886
  * <code>NextToken</code> to obtain more pages of results. The default is 100; the maximum allowed page size is also 100. </p>
1887
1887
  * @public
1888
1888
  */
1889
- MaxResults?: number;
1889
+ MaxResults?: number | undefined;
1890
1890
  /**
1891
1891
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1892
1892
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1894,7 +1894,7 @@ export interface ListSpeakersRequest {
1894
1894
  * unchanged. Each pagination token expires after 24 hours.</p>
1895
1895
  * @public
1896
1896
  */
1897
- NextToken?: string;
1897
+ NextToken?: string | undefined;
1898
1898
  }
1899
1899
  /**
1900
1900
  * <p>Contains a summary of information about a speaker.</p>
@@ -1905,38 +1905,38 @@ export interface SpeakerSummary {
1905
1905
  * <p>The identifier of the domain that contains the speaker.</p>
1906
1906
  * @public
1907
1907
  */
1908
- DomainId?: string;
1908
+ DomainId?: string | undefined;
1909
1909
  /**
1910
1910
  * <p>The client-provided identifier for the speaker.</p>
1911
1911
  * @public
1912
1912
  */
1913
- CustomerSpeakerId?: string;
1913
+ CustomerSpeakerId?: string | undefined;
1914
1914
  /**
1915
1915
  * <p>The service-generated identifier for the speaker. </p>
1916
1916
  * @public
1917
1917
  */
1918
- GeneratedSpeakerId?: string;
1918
+ GeneratedSpeakerId?: string | undefined;
1919
1919
  /**
1920
1920
  * <p>The current status of the speaker.</p>
1921
1921
  * @public
1922
1922
  */
1923
- Status?: SpeakerStatus;
1923
+ Status?: SpeakerStatus | undefined;
1924
1924
  /**
1925
1925
  * <p>A timestamp showing the speaker's creation time. </p>
1926
1926
  * @public
1927
1927
  */
1928
- CreatedAt?: Date;
1928
+ CreatedAt?: Date | undefined;
1929
1929
  /**
1930
1930
  * <p>A timestamp showing the speaker's last update.</p>
1931
1931
  * @public
1932
1932
  */
1933
- UpdatedAt?: Date;
1933
+ UpdatedAt?: Date | undefined;
1934
1934
  /**
1935
1935
  * <p>The timestamp when the speaker was last accessed for enrollment, re-enrollment or a
1936
1936
  * successful authentication. This timestamp is accurate to one hour.</p>
1937
1937
  * @public
1938
1938
  */
1939
- LastAccessedAt?: Date;
1939
+ LastAccessedAt?: Date | undefined;
1940
1940
  }
1941
1941
  /**
1942
1942
  * @public
@@ -1947,7 +1947,7 @@ export interface ListSpeakersResponse {
1947
1947
  * </p>
1948
1948
  * @public
1949
1949
  */
1950
- SpeakerSummaries?: SpeakerSummary[];
1950
+ SpeakerSummaries?: SpeakerSummary[] | undefined;
1951
1951
  /**
1952
1952
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1953
1953
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -1955,7 +1955,7 @@ export interface ListSpeakersResponse {
1955
1955
  * unchanged. Each pagination token expires after 24 hours. </p>
1956
1956
  * @public
1957
1957
  */
1958
- NextToken?: string;
1958
+ NextToken?: string | undefined;
1959
1959
  }
1960
1960
  /**
1961
1961
  * @public
@@ -1976,7 +1976,7 @@ export interface ListTagsForResourceResponse {
1976
1976
  * <p>The list of tags associated with the specified resource.</p>
1977
1977
  * @public
1978
1978
  */
1979
- Tags?: Tag[];
1979
+ Tags?: Tag[] | undefined;
1980
1980
  }
1981
1981
  /**
1982
1982
  * @public
@@ -1993,7 +1993,7 @@ export interface ListWatchlistsRequest {
1993
1993
  * </p>
1994
1994
  * @public
1995
1995
  */
1996
- MaxResults?: number;
1996
+ MaxResults?: number | undefined;
1997
1997
  /**
1998
1998
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
1999
1999
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -2002,7 +2002,7 @@ export interface ListWatchlistsRequest {
2002
2002
  * </p>
2003
2003
  * @public
2004
2004
  */
2005
- NextToken?: string;
2005
+ NextToken?: string | undefined;
2006
2006
  }
2007
2007
  /**
2008
2008
  * <p>Contains a summary of information about a watchlist.</p>
@@ -2013,37 +2013,37 @@ export interface WatchlistSummary {
2013
2013
  * <p>The identifier of the domain that contains the watchlist.</p>
2014
2014
  * @public
2015
2015
  */
2016
- DomainId?: string;
2016
+ DomainId?: string | undefined;
2017
2017
  /**
2018
2018
  * <p>The identifier of the watchlist.</p>
2019
2019
  * @public
2020
2020
  */
2021
- WatchlistId?: string;
2021
+ WatchlistId?: string | undefined;
2022
2022
  /**
2023
2023
  * <p>The name for the watchlist.</p>
2024
2024
  * @public
2025
2025
  */
2026
- Name?: string;
2026
+ Name?: string | undefined;
2027
2027
  /**
2028
2028
  * <p>The description of the watchlist.</p>
2029
2029
  * @public
2030
2030
  */
2031
- Description?: string;
2031
+ Description?: string | undefined;
2032
2032
  /**
2033
2033
  * <p>Whether the specified watchlist is the default watchlist of a domain.</p>
2034
2034
  * @public
2035
2035
  */
2036
- DefaultWatchlist?: boolean;
2036
+ DefaultWatchlist?: boolean | undefined;
2037
2037
  /**
2038
2038
  * <p>The timestamp of when the watchlist was created.</p>
2039
2039
  * @public
2040
2040
  */
2041
- CreatedAt?: Date;
2041
+ CreatedAt?: Date | undefined;
2042
2042
  /**
2043
2043
  * <p>The timestamp of when the watchlist was last updated.</p>
2044
2044
  * @public
2045
2045
  */
2046
- UpdatedAt?: Date;
2046
+ UpdatedAt?: Date | undefined;
2047
2047
  }
2048
2048
  /**
2049
2049
  * @public
@@ -2054,7 +2054,7 @@ export interface ListWatchlistsResponse {
2054
2054
  * </p>
2055
2055
  * @public
2056
2056
  */
2057
- WatchlistSummaries?: WatchlistSummary[];
2057
+ WatchlistSummaries?: WatchlistSummary[] | undefined;
2058
2058
  /**
2059
2059
  * <p>If <code>NextToken</code> is returned, there are more results available. The value of
2060
2060
  * <code>NextToken</code> is a unique pagination token for each page. Make the call
@@ -2063,7 +2063,7 @@ export interface ListWatchlistsResponse {
2063
2063
  * </p>
2064
2064
  * @public
2065
2065
  */
2066
- NextToken?: string;
2066
+ NextToken?: string | undefined;
2067
2067
  }
2068
2068
  /**
2069
2069
  * @public
@@ -2088,7 +2088,7 @@ export interface OptOutSpeakerResponse {
2088
2088
  * <p>Details about the opted-out speaker.</p>
2089
2089
  * @public
2090
2090
  */
2091
- Speaker?: Speaker;
2091
+ Speaker?: Speaker | undefined;
2092
2092
  }
2093
2093
  /**
2094
2094
  * @public
@@ -2101,12 +2101,12 @@ export interface StartFraudsterRegistrationJobRequest {
2101
2101
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
2102
2102
  * @public
2103
2103
  */
2104
- ClientToken?: string;
2104
+ ClientToken?: string | undefined;
2105
2105
  /**
2106
2106
  * <p>The name of the new fraudster registration job.</p>
2107
2107
  * @public
2108
2108
  */
2109
- JobName?: string;
2109
+ JobName?: string | undefined;
2110
2110
  /**
2111
2111
  * <p>The identifier of the domain that contains the fraudster registration job and in which
2112
2112
  * the fraudsters are registered.</p>
@@ -2128,7 +2128,7 @@ export interface StartFraudsterRegistrationJobRequest {
2128
2128
  * fraudster. </p>
2129
2129
  * @public
2130
2130
  */
2131
- RegistrationConfig?: RegistrationConfig;
2131
+ RegistrationConfig?: RegistrationConfig | undefined;
2132
2132
  /**
2133
2133
  * <p>The input data config containing an S3 URI for the input manifest file that contains
2134
2134
  * the list of fraudster registration requests.</p>
@@ -2151,7 +2151,7 @@ export interface StartFraudsterRegistrationJobResponse {
2151
2151
  * <p>Details about the started fraudster registration job.</p>
2152
2152
  * @public
2153
2153
  */
2154
- Job?: FraudsterRegistrationJob;
2154
+ Job?: FraudsterRegistrationJob | undefined;
2155
2155
  }
2156
2156
  /**
2157
2157
  * @public
@@ -2164,12 +2164,12 @@ export interface StartSpeakerEnrollmentJobRequest {
2164
2164
  * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
2165
2165
  * @public
2166
2166
  */
2167
- ClientToken?: string;
2167
+ ClientToken?: string | undefined;
2168
2168
  /**
2169
2169
  * <p>A name for your speaker enrollment job.</p>
2170
2170
  * @public
2171
2171
  */
2172
- JobName?: string;
2172
+ JobName?: string | undefined;
2173
2173
  /**
2174
2174
  * <p>The identifier of the domain that contains the speaker enrollment job and in which the
2175
2175
  * speakers are enrolled. </p>
@@ -2189,7 +2189,7 @@ export interface StartSpeakerEnrollmentJobRequest {
2189
2189
  * is already enrolled in Voice ID or when a speaker is identified as a fraudster.</p>
2190
2190
  * @public
2191
2191
  */
2192
- EnrollmentConfig?: EnrollmentConfig;
2192
+ EnrollmentConfig?: EnrollmentConfig | undefined;
2193
2193
  /**
2194
2194
  * <p>The input data config containing the S3 location for the input manifest file that
2195
2195
  * contains the list of speaker enrollment requests.</p>
@@ -2212,7 +2212,7 @@ export interface StartSpeakerEnrollmentJobResponse {
2212
2212
  * <p>Details about the started speaker enrollment job.</p>
2213
2213
  * @public
2214
2214
  */
2215
- Job?: SpeakerEnrollmentJob;
2215
+ Job?: SpeakerEnrollmentJob | undefined;
2216
2216
  }
2217
2217
  /**
2218
2218
  * @public
@@ -2273,12 +2273,12 @@ export interface UpdateWatchlistRequest {
2273
2273
  * <p>The name of the watchlist.</p>
2274
2274
  * @public
2275
2275
  */
2276
- Name?: string;
2276
+ Name?: string | undefined;
2277
2277
  /**
2278
2278
  * <p>A brief description about this watchlist.</p>
2279
2279
  * @public
2280
2280
  */
2281
- Description?: string;
2281
+ Description?: string | undefined;
2282
2282
  }
2283
2283
  /**
2284
2284
  * @public
@@ -2288,7 +2288,7 @@ export interface UpdateWatchlistResponse {
2288
2288
  * <p>Details about the updated watchlist.</p>
2289
2289
  * @public
2290
2290
  */
2291
- Watchlist?: Watchlist;
2291
+ Watchlist?: Watchlist | undefined;
2292
2292
  }
2293
2293
  /**
2294
2294
  * @internal