/** * @public * @enum */ export declare const ConflictType: { readonly ANOTHER_ACTIVE_STREAM: "ANOTHER_ACTIVE_STREAM"; readonly CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT: "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT"; readonly CANNOT_DELETE_NON_EMPTY_WATCHLIST: "CANNOT_DELETE_NON_EMPTY_WATCHLIST"; readonly CONCURRENT_CHANGES: "CONCURRENT_CHANGES"; readonly DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES: "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES"; readonly DOMAIN_NOT_ACTIVE: "DOMAIN_NOT_ACTIVE"; readonly ENROLLMENT_ALREADY_EXISTS: "ENROLLMENT_ALREADY_EXISTS"; readonly FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST: "FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST"; readonly SPEAKER_NOT_SET: "SPEAKER_NOT_SET"; readonly SPEAKER_OPTED_OUT: "SPEAKER_OPTED_OUT"; }; /** * @public */ export type ConflictType = (typeof ConflictType)[keyof typeof ConflictType]; /** * @public * @enum */ export declare const ResourceType: { readonly BATCH_JOB: "BATCH_JOB"; readonly COMPLIANCE_CONSENT: "COMPLIANCE_CONSENT"; readonly DOMAIN: "DOMAIN"; readonly FRAUDSTER: "FRAUDSTER"; readonly SESSION: "SESSION"; readonly SPEAKER: "SPEAKER"; readonly WATCHLIST: "WATCHLIST"; }; /** * @public */ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; /** * @public * @enum */ export declare const AuthenticationDecision: { readonly ACCEPT: "ACCEPT"; readonly NOT_ENOUGH_SPEECH: "NOT_ENOUGH_SPEECH"; readonly REJECT: "REJECT"; readonly SPEAKER_EXPIRED: "SPEAKER_EXPIRED"; readonly SPEAKER_ID_NOT_PROVIDED: "SPEAKER_ID_NOT_PROVIDED"; readonly SPEAKER_NOT_ENROLLED: "SPEAKER_NOT_ENROLLED"; readonly SPEAKER_OPTED_OUT: "SPEAKER_OPTED_OUT"; }; /** * @public */ export type AuthenticationDecision = (typeof AuthenticationDecision)[keyof typeof AuthenticationDecision]; /** * @public * @enum */ export declare const DomainStatus: { readonly ACTIVE: "ACTIVE"; readonly PENDING: "PENDING"; readonly SUSPENDED: "SUSPENDED"; }; /** * @public */ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus]; /** * @public * @enum */ export declare const ServerSideEncryptionUpdateStatus: { readonly COMPLETED: "COMPLETED"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; }; /** * @public */ export type ServerSideEncryptionUpdateStatus = (typeof ServerSideEncryptionUpdateStatus)[keyof typeof ServerSideEncryptionUpdateStatus]; /** * @public * @enum */ export declare const FraudsterRegistrationJobStatus: { readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type FraudsterRegistrationJobStatus = (typeof FraudsterRegistrationJobStatus)[keyof typeof FraudsterRegistrationJobStatus]; /** * @public * @enum */ export declare const DuplicateRegistrationAction: { readonly REGISTER_AS_NEW: "REGISTER_AS_NEW"; readonly SKIP: "SKIP"; }; /** * @public */ export type DuplicateRegistrationAction = (typeof DuplicateRegistrationAction)[keyof typeof DuplicateRegistrationAction]; /** * @public * @enum */ export declare const SpeakerStatus: { readonly ENROLLED: "ENROLLED"; readonly EXPIRED: "EXPIRED"; readonly OPTED_OUT: "OPTED_OUT"; readonly PENDING: "PENDING"; }; /** * @public */ export type SpeakerStatus = (typeof SpeakerStatus)[keyof typeof SpeakerStatus]; /** * @public * @enum */ export declare const ExistingEnrollmentAction: { readonly OVERWRITE: "OVERWRITE"; readonly SKIP: "SKIP"; }; /** * @public */ export type ExistingEnrollmentAction = (typeof ExistingEnrollmentAction)[keyof typeof ExistingEnrollmentAction]; /** * @public * @enum */ export declare const FraudDetectionAction: { readonly FAIL: "FAIL"; readonly IGNORE: "IGNORE"; }; /** * @public */ export type FraudDetectionAction = (typeof FraudDetectionAction)[keyof typeof FraudDetectionAction]; /** * @public * @enum */ export declare const SpeakerEnrollmentJobStatus: { readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type SpeakerEnrollmentJobStatus = (typeof SpeakerEnrollmentJobStatus)[keyof typeof SpeakerEnrollmentJobStatus]; /** * @public * @enum */ export declare const FraudDetectionDecision: { readonly HIGH_RISK: "HIGH_RISK"; readonly LOW_RISK: "LOW_RISK"; readonly NOT_ENOUGH_SPEECH: "NOT_ENOUGH_SPEECH"; }; /** * @public */ export type FraudDetectionDecision = (typeof FraudDetectionDecision)[keyof typeof FraudDetectionDecision]; /** * @public * @enum */ export declare const FraudDetectionReason: { readonly KNOWN_FRAUDSTER: "KNOWN_FRAUDSTER"; readonly VOICE_SPOOFING: "VOICE_SPOOFING"; }; /** * @public */ export type FraudDetectionReason = (typeof FraudDetectionReason)[keyof typeof FraudDetectionReason]; /** * @public * @enum */ export declare const StreamingStatus: { readonly ENDED: "ENDED"; readonly ONGOING: "ONGOING"; readonly PENDING_CONFIGURATION: "PENDING_CONFIGURATION"; }; /** * @public */ export type StreamingStatus = (typeof StreamingStatus)[keyof typeof StreamingStatus];