@aws-sdk/client-voice-id 3.325.0 → 3.327.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.
Files changed (30) hide show
  1. package/dist-types/commands/AssociateFraudsterCommand.d.ts +13 -0
  2. package/dist-types/commands/CreateDomainCommand.d.ts +25 -0
  3. package/dist-types/commands/CreateWatchlistCommand.d.ts +14 -0
  4. package/dist-types/commands/DeleteDomainCommand.d.ts +4 -0
  5. package/dist-types/commands/DeleteFraudsterCommand.d.ts +4 -0
  6. package/dist-types/commands/DeleteSpeakerCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteWatchlistCommand.d.ts +4 -0
  8. package/dist-types/commands/DescribeDomainCommand.d.ts +25 -0
  9. package/dist-types/commands/DescribeFraudsterCommand.d.ts +13 -0
  10. package/dist-types/commands/DescribeFraudsterRegistrationJobCommand.d.ts +35 -0
  11. package/dist-types/commands/DescribeSpeakerCommand.d.ts +14 -0
  12. package/dist-types/commands/DescribeSpeakerEnrollmentJobCommand.d.ts +38 -0
  13. package/dist-types/commands/DescribeWatchlistCommand.d.ts +14 -0
  14. package/dist-types/commands/DisassociateFraudsterCommand.d.ts +13 -0
  15. package/dist-types/commands/EvaluateSessionCommand.d.ts +43 -0
  16. package/dist-types/commands/ListDomainsCommand.d.ts +28 -0
  17. package/dist-types/commands/ListFraudsterRegistrationJobsCommand.d.ts +23 -0
  18. package/dist-types/commands/ListFraudstersCommand.d.ts +16 -0
  19. package/dist-types/commands/ListSpeakerEnrollmentJobsCommand.d.ts +23 -0
  20. package/dist-types/commands/ListSpeakersCommand.d.ts +17 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  22. package/dist-types/commands/ListWatchlistsCommand.d.ts +17 -0
  23. package/dist-types/commands/OptOutSpeakerCommand.d.ts +14 -0
  24. package/dist-types/commands/StartFraudsterRegistrationJobCommand.d.ts +35 -0
  25. package/dist-types/commands/StartSpeakerEnrollmentJobCommand.d.ts +38 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  28. package/dist-types/commands/UpdateDomainCommand.d.ts +25 -0
  29. package/dist-types/commands/UpdateWatchlistCommand.d.ts +14 -0
  30. package/package.json +7 -7
@@ -33,6 +33,17 @@ export interface AssociateFraudsterCommandOutput extends AssociateFraudsterRespo
33
33
  * };
34
34
  * const command = new AssociateFraudsterCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // AssociateFraudsterResponse
37
+ * // Fraudster: { // Fraudster
38
+ * // DomainId: "STRING_VALUE",
39
+ * // GeneratedFraudsterId: "STRING_VALUE",
40
+ * // CreatedAt: new Date("TIMESTAMP"),
41
+ * // WatchlistIds: [ // ResponseWatchlistIds
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // },
45
+ * // };
46
+ *
36
47
  * ```
37
48
  *
38
49
  * @param AssociateFraudsterCommandInput - {@link AssociateFraudsterCommandInput}
@@ -69,6 +80,8 @@ export interface AssociateFraudsterCommandOutput extends AssociateFraudsterRespo
69
80
  * <p>The request failed one or more validations; check the error message for more
70
81
  * details.</p>
71
82
  *
83
+ * @throws {@link VoiceIDServiceException}
84
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
72
85
  *
73
86
  */
74
87
  export declare class AssociateFraudsterCommand extends $Command<AssociateFraudsterCommandInput, AssociateFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
@@ -43,6 +43,29 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
43
43
  * };
44
44
  * const command = new CreateDomainCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // CreateDomainResponse
47
+ * // Domain: { // Domain
48
+ * // DomainId: "STRING_VALUE",
49
+ * // Arn: "STRING_VALUE",
50
+ * // Name: "STRING_VALUE",
51
+ * // Description: "STRING_VALUE",
52
+ * // DomainStatus: "STRING_VALUE",
53
+ * // ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
54
+ * // KmsKeyId: "STRING_VALUE", // required
55
+ * // },
56
+ * // CreatedAt: new Date("TIMESTAMP"),
57
+ * // UpdatedAt: new Date("TIMESTAMP"),
58
+ * // ServerSideEncryptionUpdateDetails: { // ServerSideEncryptionUpdateDetails
59
+ * // OldKmsKeyId: "STRING_VALUE",
60
+ * // UpdateStatus: "STRING_VALUE",
61
+ * // Message: "STRING_VALUE",
62
+ * // },
63
+ * // WatchlistDetails: { // WatchlistDetails
64
+ * // DefaultWatchlistId: "STRING_VALUE", // required
65
+ * // },
66
+ * // },
67
+ * // };
68
+ *
46
69
  * ```
47
70
  *
48
71
  * @param CreateDomainCommandInput - {@link CreateDomainCommandInput}
@@ -79,6 +102,8 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
79
102
  * <p>The request failed one or more validations; check the error message for more
80
103
  * details.</p>
81
104
  *
105
+ * @throws {@link VoiceIDServiceException}
106
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
82
107
  *
83
108
  */
84
109
  export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, VoiceIDClientResolvedConfig> {
@@ -34,6 +34,18 @@ export interface CreateWatchlistCommandOutput extends CreateWatchlistResponse, _
34
34
  * };
35
35
  * const command = new CreateWatchlistCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // CreateWatchlistResponse
38
+ * // Watchlist: { // Watchlist
39
+ * // DomainId: "STRING_VALUE",
40
+ * // WatchlistId: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // Description: "STRING_VALUE",
43
+ * // DefaultWatchlist: true || false,
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // UpdatedAt: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // };
48
+ *
37
49
  * ```
38
50
  *
39
51
  * @param CreateWatchlistCommandInput - {@link CreateWatchlistCommandInput}
@@ -70,6 +82,8 @@ export interface CreateWatchlistCommandOutput extends CreateWatchlistResponse, _
70
82
  * <p>The request failed one or more validations; check the error message for more
71
83
  * details.</p>
72
84
  *
85
+ * @throws {@link VoiceIDServiceException}
86
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
73
87
  *
74
88
  */
75
89
  export declare class CreateWatchlistCommand extends $Command<CreateWatchlistCommandInput, CreateWatchlistCommandOutput, VoiceIDClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
31
31
  * };
32
32
  * const command = new DeleteDomainCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteDomainCommandInput - {@link DeleteDomainCommandInput}
@@ -64,6 +66,8 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
64
66
  * <p>The request failed one or more validations; check the error message for more
65
67
  * details.</p>
66
68
  *
69
+ * @throws {@link VoiceIDServiceException}
70
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
67
71
  *
68
72
  */
69
73
  export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
32
32
  * };
33
33
  * const command = new DeleteFraudsterCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteFraudsterCommandInput - {@link DeleteFraudsterCommandInput}
@@ -65,6 +67,8 @@ export interface DeleteFraudsterCommandOutput extends __MetadataBearer {
65
67
  * <p>The request failed one or more validations; check the error message for more
66
68
  * details.</p>
67
69
  *
70
+ * @throws {@link VoiceIDServiceException}
71
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
68
72
  *
69
73
  */
70
74
  export declare class DeleteFraudsterCommand extends $Command<DeleteFraudsterCommandInput, DeleteFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
32
32
  * };
33
33
  * const command = new DeleteSpeakerCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteSpeakerCommandInput - {@link DeleteSpeakerCommandInput}
@@ -65,6 +67,8 @@ export interface DeleteSpeakerCommandOutput extends __MetadataBearer {
65
67
  * <p>The request failed one or more validations; check the error message for more
66
68
  * details.</p>
67
69
  *
70
+ * @throws {@link VoiceIDServiceException}
71
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
68
72
  *
69
73
  */
70
74
  export declare class DeleteSpeakerCommand extends $Command<DeleteSpeakerCommandInput, DeleteSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteWatchlistCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new DeleteWatchlistCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteWatchlistCommandInput - {@link DeleteWatchlistCommandInput}
@@ -67,6 +69,8 @@ export interface DeleteWatchlistCommandOutput extends __MetadataBearer {
67
69
  * <p>The request failed one or more validations; check the error message for more
68
70
  * details.</p>
69
71
  *
72
+ * @throws {@link VoiceIDServiceException}
73
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
70
74
  *
71
75
  */
72
76
  export declare class DeleteWatchlistCommand extends $Command<DeleteWatchlistCommandInput, DeleteWatchlistCommandOutput, VoiceIDClientResolvedConfig> {
@@ -31,6 +31,29 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
31
31
  * };
32
32
  * const command = new DescribeDomainCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeDomainResponse
35
+ * // Domain: { // Domain
36
+ * // DomainId: "STRING_VALUE",
37
+ * // Arn: "STRING_VALUE",
38
+ * // Name: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // DomainStatus: "STRING_VALUE",
41
+ * // ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
42
+ * // KmsKeyId: "STRING_VALUE", // required
43
+ * // },
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // UpdatedAt: new Date("TIMESTAMP"),
46
+ * // ServerSideEncryptionUpdateDetails: { // ServerSideEncryptionUpdateDetails
47
+ * // OldKmsKeyId: "STRING_VALUE",
48
+ * // UpdateStatus: "STRING_VALUE",
49
+ * // Message: "STRING_VALUE",
50
+ * // },
51
+ * // WatchlistDetails: { // WatchlistDetails
52
+ * // DefaultWatchlistId: "STRING_VALUE", // required
53
+ * // },
54
+ * // },
55
+ * // };
56
+ *
34
57
  * ```
35
58
  *
36
59
  * @param DescribeDomainCommandInput - {@link DescribeDomainCommandInput}
@@ -60,6 +83,8 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
60
83
  * <p>The request failed one or more validations; check the error message for more
61
84
  * details.</p>
62
85
  *
86
+ * @throws {@link VoiceIDServiceException}
87
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
63
88
  *
64
89
  */
65
90
  export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface DescribeFraudsterCommandOutput extends DescribeFraudsterRespons
32
32
  * };
33
33
  * const command = new DescribeFraudsterCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeFraudsterResponse
36
+ * // Fraudster: { // Fraudster
37
+ * // DomainId: "STRING_VALUE",
38
+ * // GeneratedFraudsterId: "STRING_VALUE",
39
+ * // CreatedAt: new Date("TIMESTAMP"),
40
+ * // WatchlistIds: [ // ResponseWatchlistIds
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // },
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param DescribeFraudsterCommandInput - {@link DescribeFraudsterCommandInput}
@@ -61,6 +72,8 @@ export interface DescribeFraudsterCommandOutput extends DescribeFraudsterRespons
61
72
  * <p>The request failed one or more validations; check the error message for more
62
73
  * details.</p>
63
74
  *
75
+ * @throws {@link VoiceIDServiceException}
76
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
64
77
  *
65
78
  */
66
79
  export declare class DescribeFraudsterCommand extends $Command<DescribeFraudsterCommandInput, DescribeFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,39 @@ export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeF
32
32
  * };
33
33
  * const command = new DescribeFraudsterRegistrationJobCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeFraudsterRegistrationJobResponse
36
+ * // Job: { // FraudsterRegistrationJob
37
+ * // JobName: "STRING_VALUE",
38
+ * // JobId: "STRING_VALUE",
39
+ * // JobStatus: "STRING_VALUE",
40
+ * // DomainId: "STRING_VALUE",
41
+ * // DataAccessRoleArn: "STRING_VALUE",
42
+ * // RegistrationConfig: { // RegistrationConfig
43
+ * // DuplicateRegistrationAction: "STRING_VALUE",
44
+ * // FraudsterSimilarityThreshold: Number("int"),
45
+ * // WatchlistIds: [ // RegistrationConfigWatchlistIds
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // },
49
+ * // InputDataConfig: { // InputDataConfig
50
+ * // S3Uri: "STRING_VALUE", // required
51
+ * // },
52
+ * // OutputDataConfig: { // OutputDataConfig
53
+ * // S3Uri: "STRING_VALUE", // required
54
+ * // KmsKeyId: "STRING_VALUE",
55
+ * // },
56
+ * // CreatedAt: new Date("TIMESTAMP"),
57
+ * // EndedAt: new Date("TIMESTAMP"),
58
+ * // FailureDetails: { // FailureDetails
59
+ * // StatusCode: Number("int"),
60
+ * // Message: "STRING_VALUE",
61
+ * // },
62
+ * // JobProgress: { // JobProgress
63
+ * // PercentComplete: Number("int"),
64
+ * // },
65
+ * // },
66
+ * // };
67
+ *
35
68
  * ```
36
69
  *
37
70
  * @param DescribeFraudsterRegistrationJobCommandInput - {@link DescribeFraudsterRegistrationJobCommandInput}
@@ -61,6 +94,8 @@ export interface DescribeFraudsterRegistrationJobCommandOutput extends DescribeF
61
94
  * <p>The request failed one or more validations; check the error message for more
62
95
  * details.</p>
63
96
  *
97
+ * @throws {@link VoiceIDServiceException}
98
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
64
99
  *
65
100
  */
66
101
  export declare class DescribeFraudsterRegistrationJobCommand extends $Command<DescribeFraudsterRegistrationJobCommandInput, DescribeFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,18 @@ export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _
32
32
  * };
33
33
  * const command = new DescribeSpeakerCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeSpeakerResponse
36
+ * // Speaker: { // Speaker
37
+ * // DomainId: "STRING_VALUE",
38
+ * // CustomerSpeakerId: "STRING_VALUE",
39
+ * // GeneratedSpeakerId: "STRING_VALUE",
40
+ * // Status: "STRING_VALUE",
41
+ * // CreatedAt: new Date("TIMESTAMP"),
42
+ * // UpdatedAt: new Date("TIMESTAMP"),
43
+ * // LastAccessedAt: new Date("TIMESTAMP"),
44
+ * // },
45
+ * // };
46
+ *
35
47
  * ```
36
48
  *
37
49
  * @param DescribeSpeakerCommandInput - {@link DescribeSpeakerCommandInput}
@@ -61,6 +73,8 @@ export interface DescribeSpeakerCommandOutput extends DescribeSpeakerResponse, _
61
73
  * <p>The request failed one or more validations; check the error message for more
62
74
  * details.</p>
63
75
  *
76
+ * @throws {@link VoiceIDServiceException}
77
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
64
78
  *
65
79
  */
66
80
  export declare class DescribeSpeakerCommand extends $Command<DescribeSpeakerCommandInput, DescribeSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,42 @@ export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeak
32
32
  * };
33
33
  * const command = new DescribeSpeakerEnrollmentJobCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeSpeakerEnrollmentJobResponse
36
+ * // Job: { // SpeakerEnrollmentJob
37
+ * // JobName: "STRING_VALUE",
38
+ * // JobId: "STRING_VALUE",
39
+ * // JobStatus: "STRING_VALUE",
40
+ * // DomainId: "STRING_VALUE",
41
+ * // DataAccessRoleArn: "STRING_VALUE",
42
+ * // EnrollmentConfig: { // EnrollmentConfig
43
+ * // ExistingEnrollmentAction: "STRING_VALUE",
44
+ * // FraudDetectionConfig: { // EnrollmentJobFraudDetectionConfig
45
+ * // FraudDetectionAction: "STRING_VALUE",
46
+ * // RiskThreshold: Number("int"),
47
+ * // WatchlistIds: [ // EnrollmentJobFraudDetectionConfigWatchlistIds
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // },
51
+ * // },
52
+ * // InputDataConfig: { // InputDataConfig
53
+ * // S3Uri: "STRING_VALUE", // required
54
+ * // },
55
+ * // OutputDataConfig: { // OutputDataConfig
56
+ * // S3Uri: "STRING_VALUE", // required
57
+ * // KmsKeyId: "STRING_VALUE",
58
+ * // },
59
+ * // CreatedAt: new Date("TIMESTAMP"),
60
+ * // EndedAt: new Date("TIMESTAMP"),
61
+ * // FailureDetails: { // FailureDetails
62
+ * // StatusCode: Number("int"),
63
+ * // Message: "STRING_VALUE",
64
+ * // },
65
+ * // JobProgress: { // JobProgress
66
+ * // PercentComplete: Number("int"),
67
+ * // },
68
+ * // },
69
+ * // };
70
+ *
35
71
  * ```
36
72
  *
37
73
  * @param DescribeSpeakerEnrollmentJobCommandInput - {@link DescribeSpeakerEnrollmentJobCommandInput}
@@ -61,6 +97,8 @@ export interface DescribeSpeakerEnrollmentJobCommandOutput extends DescribeSpeak
61
97
  * <p>The request failed one or more validations; check the error message for more
62
98
  * details.</p>
63
99
  *
100
+ * @throws {@link VoiceIDServiceException}
101
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
64
102
  *
65
103
  */
66
104
  export declare class DescribeSpeakerEnrollmentJobCommand extends $Command<DescribeSpeakerEnrollmentJobCommandInput, DescribeSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,18 @@ export interface DescribeWatchlistCommandOutput extends DescribeWatchlistRespons
32
32
  * };
33
33
  * const command = new DescribeWatchlistCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeWatchlistResponse
36
+ * // Watchlist: { // Watchlist
37
+ * // DomainId: "STRING_VALUE",
38
+ * // WatchlistId: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // Description: "STRING_VALUE",
41
+ * // DefaultWatchlist: true || false,
42
+ * // CreatedAt: new Date("TIMESTAMP"),
43
+ * // UpdatedAt: new Date("TIMESTAMP"),
44
+ * // },
45
+ * // };
46
+ *
35
47
  * ```
36
48
  *
37
49
  * @param DescribeWatchlistCommandInput - {@link DescribeWatchlistCommandInput}
@@ -61,6 +73,8 @@ export interface DescribeWatchlistCommandOutput extends DescribeWatchlistRespons
61
73
  * <p>The request failed one or more validations; check the error message for more
62
74
  * details.</p>
63
75
  *
76
+ * @throws {@link VoiceIDServiceException}
77
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
64
78
  *
65
79
  */
66
80
  export declare class DescribeWatchlistCommand extends $Command<DescribeWatchlistCommandInput, DescribeWatchlistCommandOutput, VoiceIDClientResolvedConfig> {
@@ -36,6 +36,17 @@ export interface DisassociateFraudsterCommandOutput extends DisassociateFraudste
36
36
  * };
37
37
  * const command = new DisassociateFraudsterCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DisassociateFraudsterResponse
40
+ * // Fraudster: { // Fraudster
41
+ * // DomainId: "STRING_VALUE",
42
+ * // GeneratedFraudsterId: "STRING_VALUE",
43
+ * // CreatedAt: new Date("TIMESTAMP"),
44
+ * // WatchlistIds: [ // ResponseWatchlistIds
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // },
48
+ * // };
49
+ *
39
50
  * ```
40
51
  *
41
52
  * @param DisassociateFraudsterCommandInput - {@link DisassociateFraudsterCommandInput}
@@ -69,6 +80,8 @@ export interface DisassociateFraudsterCommandOutput extends DisassociateFraudste
69
80
  * <p>The request failed one or more validations; check the error message for more
70
81
  * details.</p>
71
82
  *
83
+ * @throws {@link VoiceIDServiceException}
84
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
72
85
  *
73
86
  */
74
87
  export declare class DisassociateFraudsterCommand extends $Command<DisassociateFraudsterCommandInput, DisassociateFraudsterCommandOutput, VoiceIDClientResolvedConfig> {
@@ -33,6 +33,47 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _
33
33
  * };
34
34
  * const command = new EvaluateSessionCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // EvaluateSessionResponse
37
+ * // DomainId: "STRING_VALUE",
38
+ * // SessionId: "STRING_VALUE",
39
+ * // SessionName: "STRING_VALUE",
40
+ * // StreamingStatus: "STRING_VALUE",
41
+ * // AuthenticationResult: { // AuthenticationResult
42
+ * // AuthenticationResultId: "STRING_VALUE",
43
+ * // AudioAggregationStartedAt: new Date("TIMESTAMP"),
44
+ * // AudioAggregationEndedAt: new Date("TIMESTAMP"),
45
+ * // CustomerSpeakerId: "STRING_VALUE",
46
+ * // GeneratedSpeakerId: "STRING_VALUE",
47
+ * // Decision: "STRING_VALUE",
48
+ * // Score: Number("int"),
49
+ * // Configuration: { // AuthenticationConfiguration
50
+ * // AcceptanceThreshold: Number("int"), // required
51
+ * // },
52
+ * // },
53
+ * // FraudDetectionResult: { // FraudDetectionResult
54
+ * // FraudDetectionResultId: "STRING_VALUE",
55
+ * // AudioAggregationStartedAt: new Date("TIMESTAMP"),
56
+ * // AudioAggregationEndedAt: new Date("TIMESTAMP"),
57
+ * // Configuration: { // FraudDetectionConfiguration
58
+ * // RiskThreshold: Number("int"),
59
+ * // WatchlistId: "STRING_VALUE",
60
+ * // },
61
+ * // Decision: "STRING_VALUE",
62
+ * // Reasons: [ // FraudDetectionReasons
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // RiskDetails: { // FraudRiskDetails
66
+ * // KnownFraudsterRisk: { // KnownFraudsterRisk
67
+ * // RiskScore: Number("int"), // required
68
+ * // GeneratedFraudsterId: "STRING_VALUE",
69
+ * // },
70
+ * // VoiceSpoofingRisk: { // VoiceSpoofingRisk
71
+ * // RiskScore: Number("int"), // required
72
+ * // },
73
+ * // },
74
+ * // },
75
+ * // };
76
+ *
36
77
  * ```
37
78
  *
38
79
  * @param EvaluateSessionCommandInput - {@link EvaluateSessionCommandInput}
@@ -66,6 +107,8 @@ export interface EvaluateSessionCommandOutput extends EvaluateSessionResponse, _
66
107
  * <p>The request failed one or more validations; check the error message for more
67
108
  * details.</p>
68
109
  *
110
+ * @throws {@link VoiceIDServiceException}
111
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
69
112
  *
70
113
  */
71
114
  export declare class EvaluateSessionCommand extends $Command<EvaluateSessionCommandInput, EvaluateSessionCommandOutput, VoiceIDClientResolvedConfig> {
@@ -32,6 +32,32 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
32
32
  * };
33
33
  * const command = new ListDomainsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListDomainsResponse
36
+ * // DomainSummaries: [ // DomainSummaries
37
+ * // { // DomainSummary
38
+ * // DomainId: "STRING_VALUE",
39
+ * // Arn: "STRING_VALUE",
40
+ * // Name: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // DomainStatus: "STRING_VALUE",
43
+ * // ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
44
+ * // KmsKeyId: "STRING_VALUE", // required
45
+ * // },
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // ServerSideEncryptionUpdateDetails: { // ServerSideEncryptionUpdateDetails
49
+ * // OldKmsKeyId: "STRING_VALUE",
50
+ * // UpdateStatus: "STRING_VALUE",
51
+ * // Message: "STRING_VALUE",
52
+ * // },
53
+ * // WatchlistDetails: { // WatchlistDetails
54
+ * // DefaultWatchlistId: "STRING_VALUE", // required
55
+ * // },
56
+ * // },
57
+ * // ],
58
+ * // NextToken: "STRING_VALUE",
59
+ * // };
60
+ *
35
61
  * ```
36
62
  *
37
63
  * @param ListDomainsCommandInput - {@link ListDomainsCommandInput}
@@ -57,6 +83,8 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
57
83
  * <p>The request failed one or more validations; check the error message for more
58
84
  * details.</p>
59
85
  *
86
+ * @throws {@link VoiceIDServiceException}
87
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
60
88
  *
61
89
  */
62
90
  export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, VoiceIDClientResolvedConfig> {
@@ -36,6 +36,27 @@ export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudste
36
36
  * };
37
37
  * const command = new ListFraudsterRegistrationJobsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListFraudsterRegistrationJobsResponse
40
+ * // JobSummaries: [ // FraudsterRegistrationJobSummaries
41
+ * // { // FraudsterRegistrationJobSummary
42
+ * // JobName: "STRING_VALUE",
43
+ * // JobId: "STRING_VALUE",
44
+ * // JobStatus: "STRING_VALUE",
45
+ * // DomainId: "STRING_VALUE",
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // EndedAt: new Date("TIMESTAMP"),
48
+ * // FailureDetails: { // FailureDetails
49
+ * // StatusCode: Number("int"),
50
+ * // Message: "STRING_VALUE",
51
+ * // },
52
+ * // JobProgress: { // JobProgress
53
+ * // PercentComplete: Number("int"),
54
+ * // },
55
+ * // },
56
+ * // ],
57
+ * // NextToken: "STRING_VALUE",
58
+ * // };
59
+ *
39
60
  * ```
40
61
  *
41
62
  * @param ListFraudsterRegistrationJobsCommandInput - {@link ListFraudsterRegistrationJobsCommandInput}
@@ -65,6 +86,8 @@ export interface ListFraudsterRegistrationJobsCommandOutput extends ListFraudste
65
86
  * <p>The request failed one or more validations; check the error message for more
66
87
  * details.</p>
67
88
  *
89
+ * @throws {@link VoiceIDServiceException}
90
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
68
91
  *
69
92
  */
70
93
  export declare class ListFraudsterRegistrationJobsCommand extends $Command<ListFraudsterRegistrationJobsCommandInput, ListFraudsterRegistrationJobsCommandOutput, VoiceIDClientResolvedConfig> {
@@ -34,6 +34,20 @@ export interface ListFraudstersCommandOutput extends ListFraudstersResponse, __M
34
34
  * };
35
35
  * const command = new ListFraudstersCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListFraudstersResponse
38
+ * // FraudsterSummaries: [ // FraudsterSummaries
39
+ * // { // FraudsterSummary
40
+ * // DomainId: "STRING_VALUE",
41
+ * // GeneratedFraudsterId: "STRING_VALUE",
42
+ * // CreatedAt: new Date("TIMESTAMP"),
43
+ * // WatchlistIds: [ // ResponseWatchlistIds
44
+ * // "STRING_VALUE",
45
+ * // ],
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
37
51
  * ```
38
52
  *
39
53
  * @param ListFraudstersCommandInput - {@link ListFraudstersCommandInput}
@@ -63,6 +77,8 @@ export interface ListFraudstersCommandOutput extends ListFraudstersResponse, __M
63
77
  * <p>The request failed one or more validations; check the error message for more
64
78
  * details.</p>
65
79
  *
80
+ * @throws {@link VoiceIDServiceException}
81
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
66
82
  *
67
83
  */
68
84
  export declare class ListFraudstersCommand extends $Command<ListFraudstersCommandInput, ListFraudstersCommandOutput, VoiceIDClientResolvedConfig> {
@@ -36,6 +36,27 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol
36
36
  * };
37
37
  * const command = new ListSpeakerEnrollmentJobsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListSpeakerEnrollmentJobsResponse
40
+ * // JobSummaries: [ // SpeakerEnrollmentJobSummaries
41
+ * // { // SpeakerEnrollmentJobSummary
42
+ * // JobName: "STRING_VALUE",
43
+ * // JobId: "STRING_VALUE",
44
+ * // JobStatus: "STRING_VALUE",
45
+ * // DomainId: "STRING_VALUE",
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // EndedAt: new Date("TIMESTAMP"),
48
+ * // FailureDetails: { // FailureDetails
49
+ * // StatusCode: Number("int"),
50
+ * // Message: "STRING_VALUE",
51
+ * // },
52
+ * // JobProgress: { // JobProgress
53
+ * // PercentComplete: Number("int"),
54
+ * // },
55
+ * // },
56
+ * // ],
57
+ * // NextToken: "STRING_VALUE",
58
+ * // };
59
+ *
39
60
  * ```
40
61
  *
41
62
  * @param ListSpeakerEnrollmentJobsCommandInput - {@link ListSpeakerEnrollmentJobsCommandInput}
@@ -65,6 +86,8 @@ export interface ListSpeakerEnrollmentJobsCommandOutput extends ListSpeakerEnrol
65
86
  * <p>The request failed one or more validations; check the error message for more
66
87
  * details.</p>
67
88
  *
89
+ * @throws {@link VoiceIDServiceException}
90
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
68
91
  *
69
92
  */
70
93
  export declare class ListSpeakerEnrollmentJobsCommand extends $Command<ListSpeakerEnrollmentJobsCommandInput, ListSpeakerEnrollmentJobsCommandOutput, VoiceIDClientResolvedConfig> {
@@ -33,6 +33,21 @@ export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad
33
33
  * };
34
34
  * const command = new ListSpeakersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListSpeakersResponse
37
+ * // SpeakerSummaries: [ // SpeakerSummaries
38
+ * // { // SpeakerSummary
39
+ * // DomainId: "STRING_VALUE",
40
+ * // CustomerSpeakerId: "STRING_VALUE",
41
+ * // GeneratedSpeakerId: "STRING_VALUE",
42
+ * // Status: "STRING_VALUE",
43
+ * // CreatedAt: new Date("TIMESTAMP"),
44
+ * // UpdatedAt: new Date("TIMESTAMP"),
45
+ * // LastAccessedAt: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
36
51
  * ```
37
52
  *
38
53
  * @param ListSpeakersCommandInput - {@link ListSpeakersCommandInput}
@@ -62,6 +77,8 @@ export interface ListSpeakersCommandOutput extends ListSpeakersResponse, __Metad
62
77
  * <p>The request failed one or more validations; check the error message for more
63
78
  * details.</p>
64
79
  *
80
+ * @throws {@link VoiceIDServiceException}
81
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
65
82
  *
66
83
  */
67
84
  export declare class ListSpeakersCommand extends $Command<ListSpeakersCommandInput, ListSpeakersCommandOutput, VoiceIDClientResolvedConfig> {
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // Tags: [ // TagList
36
+ * // { // Tag
37
+ * // Key: "STRING_VALUE", // required
38
+ * // Value: "STRING_VALUE", // required
39
+ * // },
40
+ * // ],
41
+ * // };
42
+ *
34
43
  * ```
35
44
  *
36
45
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -60,6 +69,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
60
69
  * <p>The request failed one or more validations; check the error message for more
61
70
  * details.</p>
62
71
  *
72
+ * @throws {@link VoiceIDServiceException}
73
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
63
74
  *
64
75
  */
65
76
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, VoiceIDClientResolvedConfig> {
@@ -33,6 +33,21 @@ export interface ListWatchlistsCommandOutput extends ListWatchlistsResponse, __M
33
33
  * };
34
34
  * const command = new ListWatchlistsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListWatchlistsResponse
37
+ * // WatchlistSummaries: [ // WatchlistSummaries
38
+ * // { // WatchlistSummary
39
+ * // DomainId: "STRING_VALUE",
40
+ * // WatchlistId: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE",
42
+ * // Description: "STRING_VALUE",
43
+ * // DefaultWatchlist: true || false,
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // UpdatedAt: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
36
51
  * ```
37
52
  *
38
53
  * @param ListWatchlistsCommandInput - {@link ListWatchlistsCommandInput}
@@ -62,6 +77,8 @@ export interface ListWatchlistsCommandOutput extends ListWatchlistsResponse, __M
62
77
  * <p>The request failed one or more validations; check the error message for more
63
78
  * details.</p>
64
79
  *
80
+ * @throws {@link VoiceIDServiceException}
81
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
65
82
  *
66
83
  */
67
84
  export declare class ListWatchlistsCommand extends $Command<ListWatchlistsCommandInput, ListWatchlistsCommandOutput, VoiceIDClientResolvedConfig> {
@@ -37,6 +37,18 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met
37
37
  * };
38
38
  * const command = new OptOutSpeakerCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // OptOutSpeakerResponse
41
+ * // Speaker: { // Speaker
42
+ * // DomainId: "STRING_VALUE",
43
+ * // CustomerSpeakerId: "STRING_VALUE",
44
+ * // GeneratedSpeakerId: "STRING_VALUE",
45
+ * // Status: "STRING_VALUE",
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // LastAccessedAt: new Date("TIMESTAMP"),
49
+ * // },
50
+ * // };
51
+ *
40
52
  * ```
41
53
  *
42
54
  * @param OptOutSpeakerCommandInput - {@link OptOutSpeakerCommandInput}
@@ -73,6 +85,8 @@ export interface OptOutSpeakerCommandOutput extends OptOutSpeakerResponse, __Met
73
85
  * <p>The request failed one or more validations; check the error message for more
74
86
  * details.</p>
75
87
  *
88
+ * @throws {@link VoiceIDServiceException}
89
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
76
90
  *
77
91
  */
78
92
  export declare class OptOutSpeakerCommand extends $Command<OptOutSpeakerCommandInput, OptOutSpeakerCommandOutput, VoiceIDClientResolvedConfig> {
@@ -48,6 +48,39 @@ export interface StartFraudsterRegistrationJobCommandOutput extends StartFraudst
48
48
  * };
49
49
  * const command = new StartFraudsterRegistrationJobCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // StartFraudsterRegistrationJobResponse
52
+ * // Job: { // FraudsterRegistrationJob
53
+ * // JobName: "STRING_VALUE",
54
+ * // JobId: "STRING_VALUE",
55
+ * // JobStatus: "STRING_VALUE",
56
+ * // DomainId: "STRING_VALUE",
57
+ * // DataAccessRoleArn: "STRING_VALUE",
58
+ * // RegistrationConfig: { // RegistrationConfig
59
+ * // DuplicateRegistrationAction: "STRING_VALUE",
60
+ * // FraudsterSimilarityThreshold: Number("int"),
61
+ * // WatchlistIds: [ // RegistrationConfigWatchlistIds
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // },
65
+ * // InputDataConfig: { // InputDataConfig
66
+ * // S3Uri: "STRING_VALUE", // required
67
+ * // },
68
+ * // OutputDataConfig: { // OutputDataConfig
69
+ * // S3Uri: "STRING_VALUE", // required
70
+ * // KmsKeyId: "STRING_VALUE",
71
+ * // },
72
+ * // CreatedAt: new Date("TIMESTAMP"),
73
+ * // EndedAt: new Date("TIMESTAMP"),
74
+ * // FailureDetails: { // FailureDetails
75
+ * // StatusCode: Number("int"),
76
+ * // Message: "STRING_VALUE",
77
+ * // },
78
+ * // JobProgress: { // JobProgress
79
+ * // PercentComplete: Number("int"),
80
+ * // },
81
+ * // },
82
+ * // };
83
+ *
51
84
  * ```
52
85
  *
53
86
  * @param StartFraudsterRegistrationJobCommandInput - {@link StartFraudsterRegistrationJobCommandInput}
@@ -84,6 +117,8 @@ export interface StartFraudsterRegistrationJobCommandOutput extends StartFraudst
84
117
  * <p>The request failed one or more validations; check the error message for more
85
118
  * details.</p>
86
119
  *
120
+ * @throws {@link VoiceIDServiceException}
121
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
87
122
  *
88
123
  */
89
124
  export declare class StartFraudsterRegistrationJobCommand extends $Command<StartFraudsterRegistrationJobCommandInput, StartFraudsterRegistrationJobCommandOutput, VoiceIDClientResolvedConfig> {
@@ -51,6 +51,42 @@ export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro
51
51
  * };
52
52
  * const command = new StartSpeakerEnrollmentJobCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // StartSpeakerEnrollmentJobResponse
55
+ * // Job: { // SpeakerEnrollmentJob
56
+ * // JobName: "STRING_VALUE",
57
+ * // JobId: "STRING_VALUE",
58
+ * // JobStatus: "STRING_VALUE",
59
+ * // DomainId: "STRING_VALUE",
60
+ * // DataAccessRoleArn: "STRING_VALUE",
61
+ * // EnrollmentConfig: { // EnrollmentConfig
62
+ * // ExistingEnrollmentAction: "STRING_VALUE",
63
+ * // FraudDetectionConfig: { // EnrollmentJobFraudDetectionConfig
64
+ * // FraudDetectionAction: "STRING_VALUE",
65
+ * // RiskThreshold: Number("int"),
66
+ * // WatchlistIds: [ // EnrollmentJobFraudDetectionConfigWatchlistIds
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // },
70
+ * // },
71
+ * // InputDataConfig: { // InputDataConfig
72
+ * // S3Uri: "STRING_VALUE", // required
73
+ * // },
74
+ * // OutputDataConfig: { // OutputDataConfig
75
+ * // S3Uri: "STRING_VALUE", // required
76
+ * // KmsKeyId: "STRING_VALUE",
77
+ * // },
78
+ * // CreatedAt: new Date("TIMESTAMP"),
79
+ * // EndedAt: new Date("TIMESTAMP"),
80
+ * // FailureDetails: { // FailureDetails
81
+ * // StatusCode: Number("int"),
82
+ * // Message: "STRING_VALUE",
83
+ * // },
84
+ * // JobProgress: { // JobProgress
85
+ * // PercentComplete: Number("int"),
86
+ * // },
87
+ * // },
88
+ * // };
89
+ *
54
90
  * ```
55
91
  *
56
92
  * @param StartSpeakerEnrollmentJobCommandInput - {@link StartSpeakerEnrollmentJobCommandInput}
@@ -87,6 +123,8 @@ export interface StartSpeakerEnrollmentJobCommandOutput extends StartSpeakerEnro
87
123
  * <p>The request failed one or more validations; check the error message for more
88
124
  * details.</p>
89
125
  *
126
+ * @throws {@link VoiceIDServiceException}
127
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
90
128
  *
91
129
  */
92
130
  export declare class StartSpeakerEnrollmentJobCommand extends $Command<StartSpeakerEnrollmentJobCommandInput, StartSpeakerEnrollmentJobCommandOutput, VoiceIDClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
37
37
  * };
38
38
  * const command = new TagResourceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -70,6 +72,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
70
72
  * <p>The request failed one or more validations; check the error message for more
71
73
  * details.</p>
72
74
  *
75
+ * @throws {@link VoiceIDServiceException}
76
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
73
77
  *
74
78
  */
75
79
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, VoiceIDClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -67,6 +69,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
67
69
  * <p>The request failed one or more validations; check the error message for more
68
70
  * details.</p>
69
71
  *
72
+ * @throws {@link VoiceIDServiceException}
73
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
70
74
  *
71
75
  */
72
76
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, VoiceIDClientResolvedConfig> {
@@ -38,6 +38,29 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
38
38
  * };
39
39
  * const command = new UpdateDomainCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateDomainResponse
42
+ * // Domain: { // Domain
43
+ * // DomainId: "STRING_VALUE",
44
+ * // Arn: "STRING_VALUE",
45
+ * // Name: "STRING_VALUE",
46
+ * // Description: "STRING_VALUE",
47
+ * // DomainStatus: "STRING_VALUE",
48
+ * // ServerSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
49
+ * // KmsKeyId: "STRING_VALUE", // required
50
+ * // },
51
+ * // CreatedAt: new Date("TIMESTAMP"),
52
+ * // UpdatedAt: new Date("TIMESTAMP"),
53
+ * // ServerSideEncryptionUpdateDetails: { // ServerSideEncryptionUpdateDetails
54
+ * // OldKmsKeyId: "STRING_VALUE",
55
+ * // UpdateStatus: "STRING_VALUE",
56
+ * // Message: "STRING_VALUE",
57
+ * // },
58
+ * // WatchlistDetails: { // WatchlistDetails
59
+ * // DefaultWatchlistId: "STRING_VALUE", // required
60
+ * // },
61
+ * // },
62
+ * // };
63
+ *
41
64
  * ```
42
65
  *
43
66
  * @param UpdateDomainCommandInput - {@link UpdateDomainCommandInput}
@@ -71,6 +94,8 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
71
94
  * <p>The request failed one or more validations; check the error message for more
72
95
  * details.</p>
73
96
  *
97
+ * @throws {@link VoiceIDServiceException}
98
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
74
99
  *
75
100
  */
76
101
  export declare class UpdateDomainCommand extends $Command<UpdateDomainCommandInput, UpdateDomainCommandOutput, VoiceIDClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface UpdateWatchlistCommandOutput extends UpdateWatchlistResponse, _
35
35
  * };
36
36
  * const command = new UpdateWatchlistCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UpdateWatchlistResponse
39
+ * // Watchlist: { // Watchlist
40
+ * // DomainId: "STRING_VALUE",
41
+ * // WatchlistId: "STRING_VALUE",
42
+ * // Name: "STRING_VALUE",
43
+ * // Description: "STRING_VALUE",
44
+ * // DefaultWatchlist: true || false,
45
+ * // CreatedAt: new Date("TIMESTAMP"),
46
+ * // UpdatedAt: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param UpdateWatchlistCommandInput - {@link UpdateWatchlistCommandInput}
@@ -68,6 +80,8 @@ export interface UpdateWatchlistCommandOutput extends UpdateWatchlistResponse, _
68
80
  * <p>The request failed one or more validations; check the error message for more
69
81
  * details.</p>
70
82
  *
83
+ * @throws {@link VoiceIDServiceException}
84
+ * <p>Base exception class for all service exceptions from VoiceID service.</p>
71
85
  *
72
86
  */
73
87
  export declare class UpdateWatchlistCommand extends $Command<UpdateWatchlistCommandInput, UpdateWatchlistCommandOutput, VoiceIDClientResolvedConfig> {
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.325.0",
4
+ "version": "3.327.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.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",