@aws-sdk/client-voice-id 3.300.0 → 3.303.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/dist-cjs/models/models_0.js +86 -100
- package/dist-es/models/models_0.js +86 -100
- package/dist-types/commands/AssociateFraudsterCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +4 -4
- package/dist-types/commands/CreateWatchlistCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFraudsterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSpeakerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWatchlistCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFraudsterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFraudsterRegistrationJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpeakerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWatchlistCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateFraudsterCommand.d.ts +1 -1
- package/dist-types/commands/EvaluateSessionCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
- package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListFraudstersCommand.d.ts +1 -1
- package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpeakersCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWatchlistsCommand.d.ts +1 -1
- package/dist-types/commands/OptOutSpeakerCommand.d.ts +1 -1
- package/dist-types/commands/StartFraudsterRegistrationJobCommand.d.ts +5 -5
- package/dist-types/commands/StartSpeakerEnrollmentJobCommand.d.ts +6 -6
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDomainCommand.d.ts +2 -2
- package/dist-types/commands/UpdateWatchlistCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +156 -86
- package/dist-types/ts3.4/models/models_0.d.ts +110 -86
- package/package.json +34 -34
|
@@ -18,19 +18,18 @@ class AccessDeniedException extends VoiceIDServiceException_1.VoiceIDServiceExce
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
exports.AccessDeniedException = AccessDeniedException;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
})(ConflictType = exports.ConflictType || (exports.ConflictType = {}));
|
|
21
|
+
exports.ConflictType = {
|
|
22
|
+
ANOTHER_ACTIVE_STREAM: "ANOTHER_ACTIVE_STREAM",
|
|
23
|
+
CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT: "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT",
|
|
24
|
+
CANNOT_DELETE_NON_EMPTY_WATCHLIST: "CANNOT_DELETE_NON_EMPTY_WATCHLIST",
|
|
25
|
+
CONCURRENT_CHANGES: "CONCURRENT_CHANGES",
|
|
26
|
+
DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES: "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES",
|
|
27
|
+
DOMAIN_NOT_ACTIVE: "DOMAIN_NOT_ACTIVE",
|
|
28
|
+
ENROLLMENT_ALREADY_EXISTS: "ENROLLMENT_ALREADY_EXISTS",
|
|
29
|
+
FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST: "FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST",
|
|
30
|
+
SPEAKER_NOT_SET: "SPEAKER_NOT_SET",
|
|
31
|
+
SPEAKER_OPTED_OUT: "SPEAKER_OPTED_OUT",
|
|
32
|
+
};
|
|
34
33
|
class ConflictException extends VoiceIDServiceException_1.VoiceIDServiceException {
|
|
35
34
|
constructor(opts) {
|
|
36
35
|
super({
|
|
@@ -60,16 +59,15 @@ class InternalServerException extends VoiceIDServiceException_1.VoiceIDServiceEx
|
|
|
60
59
|
}
|
|
61
60
|
}
|
|
62
61
|
exports.InternalServerException = InternalServerException;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
})(ResourceType = exports.ResourceType || (exports.ResourceType = {}));
|
|
62
|
+
exports.ResourceType = {
|
|
63
|
+
BATCH_JOB: "BATCH_JOB",
|
|
64
|
+
COMPLIANCE_CONSENT: "COMPLIANCE_CONSENT",
|
|
65
|
+
DOMAIN: "DOMAIN",
|
|
66
|
+
FRAUDSTER: "FRAUDSTER",
|
|
67
|
+
SESSION: "SESSION",
|
|
68
|
+
SPEAKER: "SPEAKER",
|
|
69
|
+
WATCHLIST: "WATCHLIST",
|
|
70
|
+
};
|
|
73
71
|
class ResourceNotFoundException extends VoiceIDServiceException_1.VoiceIDServiceException {
|
|
74
72
|
constructor(opts) {
|
|
75
73
|
super({
|
|
@@ -127,83 +125,71 @@ class ValidationException extends VoiceIDServiceException_1.VoiceIDServiceExcept
|
|
|
127
125
|
}
|
|
128
126
|
}
|
|
129
127
|
exports.ValidationException = ValidationException;
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
})(FraudDetectionDecision = exports.FraudDetectionDecision || (exports.FraudDetectionDecision = {}));
|
|
196
|
-
var FraudDetectionReason;
|
|
197
|
-
(function (FraudDetectionReason) {
|
|
198
|
-
FraudDetectionReason["KNOWN_FRAUDSTER"] = "KNOWN_FRAUDSTER";
|
|
199
|
-
FraudDetectionReason["VOICE_SPOOFING"] = "VOICE_SPOOFING";
|
|
200
|
-
})(FraudDetectionReason = exports.FraudDetectionReason || (exports.FraudDetectionReason = {}));
|
|
201
|
-
var StreamingStatus;
|
|
202
|
-
(function (StreamingStatus) {
|
|
203
|
-
StreamingStatus["ENDED"] = "ENDED";
|
|
204
|
-
StreamingStatus["ONGOING"] = "ONGOING";
|
|
205
|
-
StreamingStatus["PENDING_CONFIGURATION"] = "PENDING_CONFIGURATION";
|
|
206
|
-
})(StreamingStatus = exports.StreamingStatus || (exports.StreamingStatus = {}));
|
|
128
|
+
exports.AuthenticationDecision = {
|
|
129
|
+
ACCEPT: "ACCEPT",
|
|
130
|
+
NOT_ENOUGH_SPEECH: "NOT_ENOUGH_SPEECH",
|
|
131
|
+
REJECT: "REJECT",
|
|
132
|
+
SPEAKER_EXPIRED: "SPEAKER_EXPIRED",
|
|
133
|
+
SPEAKER_ID_NOT_PROVIDED: "SPEAKER_ID_NOT_PROVIDED",
|
|
134
|
+
SPEAKER_NOT_ENROLLED: "SPEAKER_NOT_ENROLLED",
|
|
135
|
+
SPEAKER_OPTED_OUT: "SPEAKER_OPTED_OUT",
|
|
136
|
+
};
|
|
137
|
+
exports.DomainStatus = {
|
|
138
|
+
ACTIVE: "ACTIVE",
|
|
139
|
+
PENDING: "PENDING",
|
|
140
|
+
SUSPENDED: "SUSPENDED",
|
|
141
|
+
};
|
|
142
|
+
exports.ServerSideEncryptionUpdateStatus = {
|
|
143
|
+
COMPLETED: "COMPLETED",
|
|
144
|
+
FAILED: "FAILED",
|
|
145
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
146
|
+
};
|
|
147
|
+
exports.FraudsterRegistrationJobStatus = {
|
|
148
|
+
COMPLETED: "COMPLETED",
|
|
149
|
+
COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
|
|
150
|
+
FAILED: "FAILED",
|
|
151
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
152
|
+
SUBMITTED: "SUBMITTED",
|
|
153
|
+
};
|
|
154
|
+
exports.DuplicateRegistrationAction = {
|
|
155
|
+
REGISTER_AS_NEW: "REGISTER_AS_NEW",
|
|
156
|
+
SKIP: "SKIP",
|
|
157
|
+
};
|
|
158
|
+
exports.SpeakerStatus = {
|
|
159
|
+
ENROLLED: "ENROLLED",
|
|
160
|
+
EXPIRED: "EXPIRED",
|
|
161
|
+
OPTED_OUT: "OPTED_OUT",
|
|
162
|
+
PENDING: "PENDING",
|
|
163
|
+
};
|
|
164
|
+
exports.ExistingEnrollmentAction = {
|
|
165
|
+
OVERWRITE: "OVERWRITE",
|
|
166
|
+
SKIP: "SKIP",
|
|
167
|
+
};
|
|
168
|
+
exports.FraudDetectionAction = {
|
|
169
|
+
FAIL: "FAIL",
|
|
170
|
+
IGNORE: "IGNORE",
|
|
171
|
+
};
|
|
172
|
+
exports.SpeakerEnrollmentJobStatus = {
|
|
173
|
+
COMPLETED: "COMPLETED",
|
|
174
|
+
COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
|
|
175
|
+
FAILED: "FAILED",
|
|
176
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
177
|
+
SUBMITTED: "SUBMITTED",
|
|
178
|
+
};
|
|
179
|
+
exports.FraudDetectionDecision = {
|
|
180
|
+
HIGH_RISK: "HIGH_RISK",
|
|
181
|
+
LOW_RISK: "LOW_RISK",
|
|
182
|
+
NOT_ENOUGH_SPEECH: "NOT_ENOUGH_SPEECH",
|
|
183
|
+
};
|
|
184
|
+
exports.FraudDetectionReason = {
|
|
185
|
+
KNOWN_FRAUDSTER: "KNOWN_FRAUDSTER",
|
|
186
|
+
VOICE_SPOOFING: "VOICE_SPOOFING",
|
|
187
|
+
};
|
|
188
|
+
exports.StreamingStatus = {
|
|
189
|
+
ENDED: "ENDED",
|
|
190
|
+
ONGOING: "ONGOING",
|
|
191
|
+
PENDING_CONFIGURATION: "PENDING_CONFIGURATION",
|
|
192
|
+
};
|
|
207
193
|
const AssociateFraudsterRequestFilterSensitiveLog = (obj) => ({
|
|
208
194
|
...obj,
|
|
209
195
|
...(obj.FraudsterId && { FraudsterId: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -13,19 +13,18 @@ export class AccessDeniedException extends __BaseException {
|
|
|
13
13
|
this.Message = opts.Message;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
})(ConflictType || (ConflictType = {}));
|
|
16
|
+
export const ConflictType = {
|
|
17
|
+
ANOTHER_ACTIVE_STREAM: "ANOTHER_ACTIVE_STREAM",
|
|
18
|
+
CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT: "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT",
|
|
19
|
+
CANNOT_DELETE_NON_EMPTY_WATCHLIST: "CANNOT_DELETE_NON_EMPTY_WATCHLIST",
|
|
20
|
+
CONCURRENT_CHANGES: "CONCURRENT_CHANGES",
|
|
21
|
+
DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES: "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES",
|
|
22
|
+
DOMAIN_NOT_ACTIVE: "DOMAIN_NOT_ACTIVE",
|
|
23
|
+
ENROLLMENT_ALREADY_EXISTS: "ENROLLMENT_ALREADY_EXISTS",
|
|
24
|
+
FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST: "FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST",
|
|
25
|
+
SPEAKER_NOT_SET: "SPEAKER_NOT_SET",
|
|
26
|
+
SPEAKER_OPTED_OUT: "SPEAKER_OPTED_OUT",
|
|
27
|
+
};
|
|
29
28
|
export class ConflictException extends __BaseException {
|
|
30
29
|
constructor(opts) {
|
|
31
30
|
super({
|
|
@@ -53,16 +52,15 @@ export class InternalServerException extends __BaseException {
|
|
|
53
52
|
this.Message = opts.Message;
|
|
54
53
|
}
|
|
55
54
|
}
|
|
56
|
-
export
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
})(ResourceType || (ResourceType = {}));
|
|
55
|
+
export const ResourceType = {
|
|
56
|
+
BATCH_JOB: "BATCH_JOB",
|
|
57
|
+
COMPLIANCE_CONSENT: "COMPLIANCE_CONSENT",
|
|
58
|
+
DOMAIN: "DOMAIN",
|
|
59
|
+
FRAUDSTER: "FRAUDSTER",
|
|
60
|
+
SESSION: "SESSION",
|
|
61
|
+
SPEAKER: "SPEAKER",
|
|
62
|
+
WATCHLIST: "WATCHLIST",
|
|
63
|
+
};
|
|
66
64
|
export class ResourceNotFoundException extends __BaseException {
|
|
67
65
|
constructor(opts) {
|
|
68
66
|
super({
|
|
@@ -116,83 +114,71 @@ export class ValidationException extends __BaseException {
|
|
|
116
114
|
this.Message = opts.Message;
|
|
117
115
|
}
|
|
118
116
|
}
|
|
119
|
-
export
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
}
|
|
149
|
-
export
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
}
|
|
179
|
-
export
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
})(FraudDetectionDecision || (FraudDetectionDecision = {}));
|
|
185
|
-
export var FraudDetectionReason;
|
|
186
|
-
(function (FraudDetectionReason) {
|
|
187
|
-
FraudDetectionReason["KNOWN_FRAUDSTER"] = "KNOWN_FRAUDSTER";
|
|
188
|
-
FraudDetectionReason["VOICE_SPOOFING"] = "VOICE_SPOOFING";
|
|
189
|
-
})(FraudDetectionReason || (FraudDetectionReason = {}));
|
|
190
|
-
export var StreamingStatus;
|
|
191
|
-
(function (StreamingStatus) {
|
|
192
|
-
StreamingStatus["ENDED"] = "ENDED";
|
|
193
|
-
StreamingStatus["ONGOING"] = "ONGOING";
|
|
194
|
-
StreamingStatus["PENDING_CONFIGURATION"] = "PENDING_CONFIGURATION";
|
|
195
|
-
})(StreamingStatus || (StreamingStatus = {}));
|
|
117
|
+
export const AuthenticationDecision = {
|
|
118
|
+
ACCEPT: "ACCEPT",
|
|
119
|
+
NOT_ENOUGH_SPEECH: "NOT_ENOUGH_SPEECH",
|
|
120
|
+
REJECT: "REJECT",
|
|
121
|
+
SPEAKER_EXPIRED: "SPEAKER_EXPIRED",
|
|
122
|
+
SPEAKER_ID_NOT_PROVIDED: "SPEAKER_ID_NOT_PROVIDED",
|
|
123
|
+
SPEAKER_NOT_ENROLLED: "SPEAKER_NOT_ENROLLED",
|
|
124
|
+
SPEAKER_OPTED_OUT: "SPEAKER_OPTED_OUT",
|
|
125
|
+
};
|
|
126
|
+
export const DomainStatus = {
|
|
127
|
+
ACTIVE: "ACTIVE",
|
|
128
|
+
PENDING: "PENDING",
|
|
129
|
+
SUSPENDED: "SUSPENDED",
|
|
130
|
+
};
|
|
131
|
+
export const ServerSideEncryptionUpdateStatus = {
|
|
132
|
+
COMPLETED: "COMPLETED",
|
|
133
|
+
FAILED: "FAILED",
|
|
134
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
135
|
+
};
|
|
136
|
+
export const FraudsterRegistrationJobStatus = {
|
|
137
|
+
COMPLETED: "COMPLETED",
|
|
138
|
+
COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
|
|
139
|
+
FAILED: "FAILED",
|
|
140
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
141
|
+
SUBMITTED: "SUBMITTED",
|
|
142
|
+
};
|
|
143
|
+
export const DuplicateRegistrationAction = {
|
|
144
|
+
REGISTER_AS_NEW: "REGISTER_AS_NEW",
|
|
145
|
+
SKIP: "SKIP",
|
|
146
|
+
};
|
|
147
|
+
export const SpeakerStatus = {
|
|
148
|
+
ENROLLED: "ENROLLED",
|
|
149
|
+
EXPIRED: "EXPIRED",
|
|
150
|
+
OPTED_OUT: "OPTED_OUT",
|
|
151
|
+
PENDING: "PENDING",
|
|
152
|
+
};
|
|
153
|
+
export const ExistingEnrollmentAction = {
|
|
154
|
+
OVERWRITE: "OVERWRITE",
|
|
155
|
+
SKIP: "SKIP",
|
|
156
|
+
};
|
|
157
|
+
export const FraudDetectionAction = {
|
|
158
|
+
FAIL: "FAIL",
|
|
159
|
+
IGNORE: "IGNORE",
|
|
160
|
+
};
|
|
161
|
+
export const SpeakerEnrollmentJobStatus = {
|
|
162
|
+
COMPLETED: "COMPLETED",
|
|
163
|
+
COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
|
|
164
|
+
FAILED: "FAILED",
|
|
165
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
166
|
+
SUBMITTED: "SUBMITTED",
|
|
167
|
+
};
|
|
168
|
+
export const FraudDetectionDecision = {
|
|
169
|
+
HIGH_RISK: "HIGH_RISK",
|
|
170
|
+
LOW_RISK: "LOW_RISK",
|
|
171
|
+
NOT_ENOUGH_SPEECH: "NOT_ENOUGH_SPEECH",
|
|
172
|
+
};
|
|
173
|
+
export const FraudDetectionReason = {
|
|
174
|
+
KNOWN_FRAUDSTER: "KNOWN_FRAUDSTER",
|
|
175
|
+
VOICE_SPOOFING: "VOICE_SPOOFING",
|
|
176
|
+
};
|
|
177
|
+
export const StreamingStatus = {
|
|
178
|
+
ENDED: "ENDED",
|
|
179
|
+
ONGOING: "ONGOING",
|
|
180
|
+
PENDING_CONFIGURATION: "PENDING_CONFIGURATION",
|
|
181
|
+
};
|
|
196
182
|
export const AssociateFraudsterRequestFilterSensitiveLog = (obj) => ({
|
|
197
183
|
...obj,
|
|
198
184
|
...(obj.FraudsterId && { FraudsterId: SENSITIVE_STRING }),
|
|
@@ -26,7 +26,7 @@ export interface AssociateFraudsterCommandOutput extends AssociateFraudsterRespo
|
|
|
26
26
|
* import { VoiceIDClient, AssociateFraudsterCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, AssociateFraudsterCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // AssociateFraudsterRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* WatchlistId: "STRING_VALUE", // required
|
|
32
32
|
* FraudsterId: "STRING_VALUE", // required
|
|
@@ -27,15 +27,15 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
27
27
|
* import { VoiceIDClient, CreateDomainCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
28
28
|
* // const { VoiceIDClient, CreateDomainCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
29
29
|
* const client = new VoiceIDClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateDomainRequest
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
|
-
* ServerSideEncryptionConfiguration: {
|
|
33
|
+
* ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
|
|
34
34
|
* KmsKeyId: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
36
|
* ClientToken: "STRING_VALUE",
|
|
37
|
-
* Tags: [
|
|
38
|
-
* {
|
|
37
|
+
* Tags: [ // TagList
|
|
38
|
+
* { // Tag
|
|
39
39
|
* Key: "STRING_VALUE", // required
|
|
40
40
|
* Value: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
@@ -26,7 +26,7 @@ export interface CreateWatchlistCommandOutput extends CreateWatchlistResponse, _
|
|
|
26
26
|
* import { VoiceIDClient, CreateWatchlistCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, CreateWatchlistCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateWatchlistRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { VoiceIDClient, DeleteDomainCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DeleteDomainCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteDomainRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteDomainCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { VoiceIDClient, DeleteFraudsterCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DeleteFraudsterCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteFraudsterRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* FraudsterId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { VoiceIDClient, DeleteSpeakerCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DeleteSpeakerCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteSpeakerRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* SpeakerId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DeleteWatchlistCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { VoiceIDClient, DeleteWatchlistCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
29
29
|
* // const { VoiceIDClient, DeleteWatchlistCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
30
30
|
* const client = new VoiceIDClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteWatchlistRequest
|
|
32
32
|
* DomainId: "STRING_VALUE", // required
|
|
33
33
|
* WatchlistId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
|
|
|
26
26
|
* import { VoiceIDClient, DescribeDomainCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DescribeDomainCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeDomainRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeDomainCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeFraudsterCommandOutput extends DescribeFraudsterRespons
|
|
|
26
26
|
* import { VoiceIDClient, DescribeFraudsterCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DescribeFraudsterCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeFraudsterRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* FraudsterId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeF
|
|
|
26
26
|
* import { VoiceIDClient, DescribeFraudsterRegistrationJobCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DescribeFraudsterRegistrationJobCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeFraudsterRegistrationJobRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* JobId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _
|
|
|
26
26
|
* import { VoiceIDClient, DescribeSpeakerCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DescribeSpeakerCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeSpeakerRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* SpeakerId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeak
|
|
|
26
26
|
* import { VoiceIDClient, DescribeSpeakerEnrollmentJobCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DescribeSpeakerEnrollmentJobCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeSpeakerEnrollmentJobRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* JobId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeWatchlistCommandOutput extends DescribeWatchlistRespons
|
|
|
26
26
|
* import { VoiceIDClient, DescribeWatchlistCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, DescribeWatchlistCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeWatchlistRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* WatchlistId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -29,7 +29,7 @@ export interface DisassociateFraudsterCommandOutput extends DisassociateFraudste
|
|
|
29
29
|
* import { VoiceIDClient, DisassociateFraudsterCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
30
30
|
* // const { VoiceIDClient, DisassociateFraudsterCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
31
31
|
* const client = new VoiceIDClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DisassociateFraudsterRequest
|
|
33
33
|
* DomainId: "STRING_VALUE", // required
|
|
34
34
|
* WatchlistId: "STRING_VALUE", // required
|
|
35
35
|
* FraudsterId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _
|
|
|
27
27
|
* import { VoiceIDClient, EvaluateSessionCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
28
28
|
* // const { VoiceIDClient, EvaluateSessionCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
29
29
|
* const client = new VoiceIDClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // EvaluateSessionRequest
|
|
31
31
|
* DomainId: "STRING_VALUE", // required
|
|
32
32
|
* SessionNameOrId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
26
26
|
* import { VoiceIDClient, ListDomainsCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, ListDomainsCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDomainsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -28,7 +28,7 @@ export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudste
|
|
|
28
28
|
* import { VoiceIDClient, ListFraudsterRegistrationJobsCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
29
29
|
* // const { VoiceIDClient, ListFraudsterRegistrationJobsCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
30
30
|
* const client = new VoiceIDClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListFraudsterRegistrationJobsRequest
|
|
32
32
|
* DomainId: "STRING_VALUE", // required
|
|
33
33
|
* JobStatus: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListFraudstersCommandOutput extends ListFraudstersResponse, __M
|
|
|
26
26
|
* import { VoiceIDClient, ListFraudstersCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, ListFraudstersCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListFraudstersRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* WatchlistId: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|