@aws-sdk/client-transcribe 3.288.0 → 3.290.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/CreateCallAnalyticsCategoryCommand.d.ts +19 -0
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +19 -0
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +19 -0
- package/dist-types/commands/CreateVocabularyCommand.d.ts +19 -0
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +19 -0
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +19 -0
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +15 -0
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +15 -0
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +15 -0
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +19 -0
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +15 -0
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +19 -0
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +19 -0
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +19 -0
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +19 -0
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +19 -0
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +19 -0
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +19 -0
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +19 -0
- package/dist-types/commands/GetVocabularyCommand.d.ts +19 -0
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +19 -0
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +15 -0
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +15 -0
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +15 -0
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +15 -0
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +15 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +19 -0
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +15 -0
- package/dist-types/commands/ListVocabulariesCommand.d.ts +15 -0
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +15 -0
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +19 -0
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +19 -0
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +19 -0
- package/dist-types/commands/TagResourceCommand.d.ts +23 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +23 -0
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +23 -0
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +23 -0
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +23 -0
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +19 -0
- package/package.json +29 -29
|
@@ -44,6 +44,25 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
|
|
|
44
44
|
* @see {@link CreateCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
45
45
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
46
46
|
*
|
|
47
|
+
* @throws {@link BadRequestException} (client fault)
|
|
48
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
49
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
50
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
51
|
+
* information.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ConflictException} (client fault)
|
|
54
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
55
|
+
* Amazon Web Services account.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
58
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
59
|
+
* request again.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
62
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
63
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
47
66
|
*/
|
|
48
67
|
export declare class CreateCallAnalyticsCategoryCommand extends $Command<CreateCallAnalyticsCategoryCommandInput, CreateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
49
68
|
readonly input: CreateCallAnalyticsCategoryCommandInput;
|
|
@@ -45,6 +45,25 @@ export interface CreateLanguageModelCommandOutput extends CreateLanguageModelRes
|
|
|
45
45
|
* @see {@link CreateLanguageModelCommandOutput} for command's `response` shape.
|
|
46
46
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
47
47
|
*
|
|
48
|
+
* @throws {@link BadRequestException} (client fault)
|
|
49
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
50
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
51
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
52
|
+
* information.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ConflictException} (client fault)
|
|
55
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
56
|
+
* Amazon Web Services account.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
59
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
60
|
+
* request again.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
63
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
64
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
48
67
|
*/
|
|
49
68
|
export declare class CreateLanguageModelCommand extends $Command<CreateLanguageModelCommandInput, CreateLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
50
69
|
readonly input: CreateLanguageModelCommandInput;
|
|
@@ -41,6 +41,25 @@ export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocab
|
|
|
41
41
|
* @see {@link CreateMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link BadRequestException} (client fault)
|
|
45
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
46
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
47
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
48
|
+
* information.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ConflictException} (client fault)
|
|
51
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
52
|
+
* Amazon Web Services account.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
55
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
56
|
+
* request again.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
59
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
60
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
44
63
|
*/
|
|
45
64
|
export declare class CreateMedicalVocabularyCommand extends $Command<CreateMedicalVocabularyCommandInput, CreateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
46
65
|
readonly input: CreateMedicalVocabularyCommandInput;
|
|
@@ -39,6 +39,25 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse,
|
|
|
39
39
|
* @see {@link CreateVocabularyCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link BadRequestException} (client fault)
|
|
43
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
44
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
45
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
46
|
+
* information.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ConflictException} (client fault)
|
|
49
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
50
|
+
* Amazon Web Services account.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
53
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
54
|
+
* request again.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
57
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
58
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
42
61
|
*/
|
|
43
62
|
export declare class CreateVocabularyCommand extends $Command<CreateVocabularyCommandInput, CreateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
44
63
|
readonly input: CreateVocabularyCommandInput;
|
|
@@ -38,6 +38,25 @@ export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFil
|
|
|
38
38
|
* @see {@link CreateVocabularyFilterCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
43
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
44
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
45
|
+
* information.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ConflictException} (client fault)
|
|
48
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
49
|
+
* Amazon Web Services account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
52
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
53
|
+
* request again.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
56
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
57
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
41
60
|
*/
|
|
42
61
|
export declare class CreateVocabularyFilterCommand extends $Command<CreateVocabularyFilterCommandInput, CreateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
43
62
|
readonly input: CreateVocabularyFilterCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
|
|
|
31
31
|
* @see {@link DeleteCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
50
|
+
* your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class DeleteCallAnalyticsCategoryCommand extends $Command<DeleteCallAnalyticsCategoryCommandInput, DeleteCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
55
|
readonly input: DeleteCallAnalyticsCategoryCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
|
|
|
31
31
|
* @see {@link DeleteCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class DeleteCallAnalyticsJobCommand extends $Command<DeleteCallAnalyticsJobCommandInput, DeleteCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: DeleteCallAnalyticsJobCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteLanguageModelCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class DeleteLanguageModelCommand extends $Command<DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: DeleteLanguageModelCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
|
|
|
31
31
|
* @see {@link DeleteMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class DeleteMedicalTranscriptionJobCommand extends $Command<DeleteMedicalTranscriptionJobCommandInput, DeleteMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: DeleteMedicalTranscriptionJobCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
50
|
+
* your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class DeleteMedicalVocabularyCommand extends $Command<DeleteMedicalVocabularyCommandInput, DeleteMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
55
|
readonly input: DeleteMedicalVocabularyCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteTranscriptionJobCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class DeleteTranscriptionJobCommand extends $Command<DeleteTranscriptionJobCommandInput, DeleteTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: DeleteTranscriptionJobCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteVocabularyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
50
|
+
* your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class DeleteVocabularyCommand extends $Command<DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
55
|
readonly input: DeleteVocabularyCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link DeleteVocabularyFilterCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
50
|
+
* your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class DeleteVocabularyFilterCommand extends $Command<DeleteVocabularyFilterCommandInput, DeleteVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
55
|
readonly input: DeleteVocabularyFilterCommandInput;
|
|
@@ -35,6 +35,25 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
|
|
|
35
35
|
* @see {@link DescribeLanguageModelCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
40
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
41
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
42
|
+
* information.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
46
|
+
* request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
50
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotFoundException} (client fault)
|
|
53
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
54
|
+
* your request again.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
38
57
|
*/
|
|
39
58
|
export declare class DescribeLanguageModelCommand extends $Command<DescribeLanguageModelCommandInput, DescribeLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
40
59
|
readonly input: DescribeLanguageModelCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
|
|
|
30
30
|
* @see {@link GetCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
35
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
36
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
37
|
+
* information.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
40
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
41
|
+
* request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
44
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
45
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
49
|
+
* your request again.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class GetCallAnalyticsCategoryCommand extends $Command<GetCallAnalyticsCategoryCommandInput, GetCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
35
54
|
readonly input: GetCallAnalyticsCategoryCommandInput;
|
|
@@ -40,6 +40,25 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
|
|
|
40
40
|
* @see {@link GetCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequestException} (client fault)
|
|
44
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
45
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
46
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
47
|
+
* information.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
50
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
51
|
+
* request again.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
54
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
55
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link NotFoundException} (client fault)
|
|
58
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
59
|
+
* your request again.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
43
62
|
*/
|
|
44
63
|
export declare class GetCallAnalyticsJobCommand extends $Command<GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
45
64
|
readonly input: GetCallAnalyticsJobCommandInput;
|
|
@@ -36,6 +36,25 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
|
|
|
36
36
|
* @see {@link GetMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
41
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
42
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
43
|
+
* information.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
46
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
47
|
+
* request again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
50
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
51
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link NotFoundException} (client fault)
|
|
54
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
55
|
+
* your request again.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
39
58
|
*/
|
|
40
59
|
export declare class GetMedicalTranscriptionJobCommand extends $Command<GetMedicalTranscriptionJobCommandInput, GetMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
41
60
|
readonly input: GetMedicalTranscriptionJobCommandInput;
|
|
@@ -34,6 +34,25 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
|
|
|
34
34
|
* @see {@link GetMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
39
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
40
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
41
|
+
* information.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
45
|
+
* request again.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
49
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link NotFoundException} (client fault)
|
|
52
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
53
|
+
* your request again.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
37
56
|
*/
|
|
38
57
|
export declare class GetMedicalVocabularyCommand extends $Command<GetMedicalVocabularyCommandInput, GetMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
39
58
|
readonly input: GetMedicalVocabularyCommandInput;
|
|
@@ -38,6 +38,25 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
|
|
|
38
38
|
* @see {@link GetTranscriptionJobCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link BadRequestException} (client fault)
|
|
42
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
43
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
44
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
45
|
+
* information.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
48
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
49
|
+
* request again.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
53
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link NotFoundException} (client fault)
|
|
56
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
57
|
+
* your request again.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
41
60
|
*/
|
|
42
61
|
export declare class GetTranscriptionJobCommand extends $Command<GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
43
62
|
readonly input: GetTranscriptionJobCommandInput;
|
|
@@ -35,6 +35,25 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
|
|
|
35
35
|
* @see {@link GetVocabularyCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
40
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
41
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
42
|
+
* information.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
46
|
+
* request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
50
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotFoundException} (client fault)
|
|
53
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
54
|
+
* your request again.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
38
57
|
*/
|
|
39
58
|
export declare class GetVocabularyCommand extends $Command<GetVocabularyCommandInput, GetVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
40
59
|
readonly input: GetVocabularyCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
|
|
|
30
30
|
* @see {@link GetVocabularyFilterCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
35
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
36
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
37
|
+
* information.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
40
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
41
|
+
* request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
44
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
45
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
49
|
+
* your request again.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class GetVocabularyFilterCommand extends $Command<GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
35
54
|
readonly input: GetVocabularyFilterCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
31
31
|
* @see {@link ListCallAnalyticsCategoriesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListCallAnalyticsCategoriesCommand extends $Command<ListCallAnalyticsCategoriesCommandInput, ListCallAnalyticsCategoriesCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListCallAnalyticsCategoriesCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
|
|
|
31
31
|
* @see {@link ListCallAnalyticsJobsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListCallAnalyticsJobsCommand extends $Command<ListCallAnalyticsJobsCommandInput, ListCallAnalyticsJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListCallAnalyticsJobsCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
|
|
|
31
31
|
* @see {@link ListLanguageModelsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListLanguageModelsCommand extends $Command<ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListLanguageModelsCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
|
|
|
31
31
|
* @see {@link ListMedicalTranscriptionJobsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListMedicalTranscriptionJobsCommand extends $Command<ListMedicalTranscriptionJobsCommandInput, ListMedicalTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListMedicalTranscriptionJobsCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
|
|
|
31
31
|
* @see {@link ListMedicalVocabulariesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListMedicalVocabulariesCommand extends $Command<ListMedicalVocabulariesCommandInput, ListMedicalVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListMedicalVocabulariesCommandInput;
|
|
@@ -32,6 +32,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
32
32
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
37
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
38
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
39
|
+
* information.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
42
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
43
|
+
* request again.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
46
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
47
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link NotFoundException} (client fault)
|
|
50
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
51
|
+
* your request again.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
35
54
|
*/
|
|
36
55
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
37
56
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
|
|
|
31
31
|
* @see {@link ListTranscriptionJobsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListTranscriptionJobsCommand extends $Command<ListTranscriptionJobsCommandInput, ListTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListTranscriptionJobsCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
|
|
|
31
31
|
* @see {@link ListVocabulariesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListVocabulariesCommand extends $Command<ListVocabulariesCommandInput, ListVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListVocabulariesCommandInput;
|
|
@@ -31,6 +31,21 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
|
|
|
31
31
|
* @see {@link ListVocabularyFiltersCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
34
49
|
*/
|
|
35
50
|
export declare class ListVocabularyFiltersCommand extends $Command<ListVocabularyFiltersCommandInput, ListVocabularyFiltersCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
51
|
readonly input: ListVocabularyFiltersCommandInput;
|
|
@@ -79,6 +79,25 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
|
|
|
79
79
|
* @see {@link StartCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
80
80
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
81
81
|
*
|
|
82
|
+
* @throws {@link BadRequestException} (client fault)
|
|
83
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
84
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
85
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
86
|
+
* information.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ConflictException} (client fault)
|
|
89
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
90
|
+
* Amazon Web Services account.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
93
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
94
|
+
* request again.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
97
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
98
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
82
101
|
*/
|
|
83
102
|
export declare class StartCallAnalyticsJobCommand extends $Command<StartCallAnalyticsJobCommandInput, StartCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
84
103
|
readonly input: StartCallAnalyticsJobCommandInput;
|
|
@@ -77,6 +77,25 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
|
|
|
77
77
|
* @see {@link StartMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
78
78
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
79
79
|
*
|
|
80
|
+
* @throws {@link BadRequestException} (client fault)
|
|
81
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
82
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
83
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
84
|
+
* information.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ConflictException} (client fault)
|
|
87
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
88
|
+
* Amazon Web Services account.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
91
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
92
|
+
* request again.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
95
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
96
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
97
|
+
*
|
|
98
|
+
*
|
|
80
99
|
*/
|
|
81
100
|
export declare class StartMedicalTranscriptionJobCommand extends $Command<StartMedicalTranscriptionJobCommandInput, StartMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
82
101
|
readonly input: StartMedicalTranscriptionJobCommandInput;
|
|
@@ -63,6 +63,25 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
|
|
|
63
63
|
* @see {@link StartTranscriptionJobCommandOutput} for command's `response` shape.
|
|
64
64
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
65
65
|
*
|
|
66
|
+
* @throws {@link BadRequestException} (client fault)
|
|
67
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
68
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
69
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
70
|
+
* information.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ConflictException} (client fault)
|
|
73
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
74
|
+
* Amazon Web Services account.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
77
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
78
|
+
* request again.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
81
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
82
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
83
|
+
*
|
|
84
|
+
*
|
|
66
85
|
*/
|
|
67
86
|
export declare class StartTranscriptionJobCommand extends $Command<StartTranscriptionJobCommandInput, StartTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
68
87
|
readonly input: StartTranscriptionJobCommandInput;
|
|
@@ -32,6 +32,29 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
32
32
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
37
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
38
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
39
|
+
* information.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ConflictException} (client fault)
|
|
42
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
43
|
+
* Amazon Web Services account.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
46
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
47
|
+
* request again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
50
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
51
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link NotFoundException} (client fault)
|
|
54
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
55
|
+
* your request again.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
37
60
|
readonly input: TagResourceCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
31
31
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
42
|
+
* Amazon Web Services account.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
46
|
+
* request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
50
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotFoundException} (client fault)
|
|
53
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
54
|
+
* your request again.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
59
|
readonly input: UntagResourceCommandInput;
|
|
@@ -33,6 +33,29 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
|
|
|
33
33
|
* @see {@link UpdateCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link BadRequestException} (client fault)
|
|
37
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
38
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
39
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
40
|
+
* information.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ConflictException} (client fault)
|
|
43
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
44
|
+
* Amazon Web Services account.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
47
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
48
|
+
* request again.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
51
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
52
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link NotFoundException} (client fault)
|
|
55
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
56
|
+
* your request again.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
36
59
|
*/
|
|
37
60
|
export declare class UpdateCallAnalyticsCategoryCommand extends $Command<UpdateCallAnalyticsCategoryCommandInput, UpdateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
38
61
|
readonly input: UpdateCallAnalyticsCategoryCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
|
|
|
31
31
|
* @see {@link UpdateMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
42
|
+
* Amazon Web Services account.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
46
|
+
* request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
50
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotFoundException} (client fault)
|
|
53
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
54
|
+
* your request again.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class UpdateMedicalVocabularyCommand extends $Command<UpdateMedicalVocabularyCommandInput, UpdateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
59
|
readonly input: UpdateMedicalVocabularyCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
|
|
|
31
31
|
* @see {@link UpdateVocabularyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ConflictException} (client fault)
|
|
41
|
+
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
42
|
+
* Amazon Web Services account.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
46
|
+
* request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
50
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotFoundException} (client fault)
|
|
53
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
54
|
+
* your request again.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class UpdateVocabularyCommand extends $Command<UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
59
|
readonly input: UpdateVocabularyCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
|
|
|
31
31
|
* @see {@link UpdateVocabularyFilterCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
36
|
+
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
37
|
+
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
38
|
+
* information.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
42
|
+
* request again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
46
|
+
* retrying your request, or use a smaller file and try your request again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link NotFoundException} (client fault)
|
|
49
|
+
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
50
|
+
* your request again.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class UpdateVocabularyFilterCommand extends $Command<UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
36
55
|
readonly input: UpdateVocabularyFilterCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transcribe",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|