@aws-sdk/client-voice-id 3.300.0 → 3.301.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-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/package.json +3 -3
|
@@ -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"),
|
|
@@ -28,7 +28,7 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol
|
|
|
28
28
|
* import { VoiceIDClient, ListSpeakerEnrollmentJobsCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
29
29
|
* // const { VoiceIDClient, ListSpeakerEnrollmentJobsCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
30
30
|
* const client = new VoiceIDClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListSpeakerEnrollmentJobsRequest
|
|
32
32
|
* DomainId: "STRING_VALUE", // required
|
|
33
33
|
* JobStatus: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad
|
|
|
26
26
|
* import { VoiceIDClient, ListSpeakersCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, ListSpeakersCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSpeakersRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { VoiceIDClient, ListTagsForResourceCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, ListTagsForResourceCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListWatchlistsCommandOutput extends ListWatchlistsResponse, __M
|
|
|
26
26
|
* import { VoiceIDClient, ListWatchlistsCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, ListWatchlistsCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListWatchlistsRequest
|
|
30
30
|
* DomainId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met
|
|
|
31
31
|
* import { VoiceIDClient, OptOutSpeakerCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
32
32
|
* // const { VoiceIDClient, OptOutSpeakerCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
33
33
|
* const client = new VoiceIDClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // OptOutSpeakerRequest
|
|
35
35
|
* DomainId: "STRING_VALUE", // required
|
|
36
36
|
* SpeakerId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
@@ -26,22 +26,22 @@ export interface StartFraudsterRegistrationJobCommandOutput extends StartFraudst
|
|
|
26
26
|
* import { VoiceIDClient, StartFraudsterRegistrationJobCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, StartFraudsterRegistrationJobCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartFraudsterRegistrationJobRequest
|
|
30
30
|
* ClientToken: "STRING_VALUE",
|
|
31
31
|
* JobName: "STRING_VALUE",
|
|
32
32
|
* DomainId: "STRING_VALUE", // required
|
|
33
33
|
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
34
|
-
* RegistrationConfig: {
|
|
34
|
+
* RegistrationConfig: { // RegistrationConfig
|
|
35
35
|
* DuplicateRegistrationAction: "STRING_VALUE",
|
|
36
36
|
* FraudsterSimilarityThreshold: Number("int"),
|
|
37
|
-
* WatchlistIds: [
|
|
37
|
+
* WatchlistIds: [ // RegistrationConfigWatchlistIds
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* },
|
|
41
|
-
* InputDataConfig: {
|
|
41
|
+
* InputDataConfig: { // InputDataConfig
|
|
42
42
|
* S3Uri: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
44
|
-
* OutputDataConfig: {
|
|
44
|
+
* OutputDataConfig: { // OutputDataConfig
|
|
45
45
|
* S3Uri: "STRING_VALUE", // required
|
|
46
46
|
* KmsKeyId: "STRING_VALUE",
|
|
47
47
|
* },
|
|
@@ -26,25 +26,25 @@ export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro
|
|
|
26
26
|
* import { VoiceIDClient, StartSpeakerEnrollmentJobCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, StartSpeakerEnrollmentJobCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // StartSpeakerEnrollmentJobRequest
|
|
30
30
|
* ClientToken: "STRING_VALUE",
|
|
31
31
|
* JobName: "STRING_VALUE",
|
|
32
32
|
* DomainId: "STRING_VALUE", // required
|
|
33
33
|
* DataAccessRoleArn: "STRING_VALUE", // required
|
|
34
|
-
* EnrollmentConfig: {
|
|
34
|
+
* EnrollmentConfig: { // EnrollmentConfig
|
|
35
35
|
* ExistingEnrollmentAction: "STRING_VALUE",
|
|
36
|
-
* FraudDetectionConfig: {
|
|
36
|
+
* FraudDetectionConfig: { // EnrollmentJobFraudDetectionConfig
|
|
37
37
|
* FraudDetectionAction: "STRING_VALUE",
|
|
38
38
|
* RiskThreshold: Number("int"),
|
|
39
|
-
* WatchlistIds: [
|
|
39
|
+
* WatchlistIds: [ // EnrollmentJobFraudDetectionConfigWatchlistIds
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
44
|
-
* InputDataConfig: {
|
|
44
|
+
* InputDataConfig: { // InputDataConfig
|
|
45
45
|
* S3Uri: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
47
|
-
* OutputDataConfig: {
|
|
47
|
+
* OutputDataConfig: { // OutputDataConfig
|
|
48
48
|
* S3Uri: "STRING_VALUE", // required
|
|
49
49
|
* KmsKeyId: "STRING_VALUE",
|
|
50
50
|
* },
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { VoiceIDClient, TagResourceCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, TagResourceCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { VoiceIDClient, UntagResourceCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
27
27
|
* // const { VoiceIDClient, UntagResourceCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
28
28
|
* const client = new VoiceIDClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -28,11 +28,11 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
|
|
|
28
28
|
* import { VoiceIDClient, UpdateDomainCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
29
29
|
* // const { VoiceIDClient, UpdateDomainCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
30
30
|
* const client = new VoiceIDClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateDomainRequest
|
|
32
32
|
* DomainId: "STRING_VALUE", // required
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* ServerSideEncryptionConfiguration: {
|
|
35
|
+
* ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
|
|
36
36
|
* KmsKeyId: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
38
38
|
* };
|
|
@@ -27,7 +27,7 @@ export interface UpdateWatchlistCommandOutput extends UpdateWatchlistResponse, _
|
|
|
27
27
|
* import { VoiceIDClient, UpdateWatchlistCommand } from "@aws-sdk/client-voice-id"; // ES Modules import
|
|
28
28
|
* // const { VoiceIDClient, UpdateWatchlistCommand } = require("@aws-sdk/client-voice-id"); // CommonJS import
|
|
29
29
|
* const client = new VoiceIDClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateWatchlistRequest
|
|
31
31
|
* DomainId: "STRING_VALUE", // required
|
|
32
32
|
* WatchlistId: "STRING_VALUE", // required
|
|
33
33
|
* Name: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-voice-id",
|
|
3
3
|
"description": "AWS SDK for JavaScript Voice Id Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|