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