@aws-sdk/client-transcribe 3.296.0 → 3.297.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 (53) hide show
  1. package/dist-types/Transcribe.d.ts +40 -0
  2. package/dist-types/TranscribeClient.d.ts +24 -4
  3. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateLanguageModelCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateVocabularyCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVocabularyCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +16 -0
  17. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +16 -0
  18. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +16 -0
  19. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +16 -0
  20. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +16 -0
  21. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +16 -0
  22. package/dist-types/commands/GetVocabularyCommand.d.ts +16 -0
  23. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +16 -0
  24. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +16 -0
  25. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListLanguageModelsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListVocabulariesCommand.d.ts +16 -0
  32. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +16 -0
  33. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +16 -0
  34. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +16 -0
  35. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateVocabularyCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +16 -0
  42. package/dist-types/models/TranscribeServiceException.d.ts +2 -0
  43. package/dist-types/models/models_0.d.ts +320 -0
  44. package/dist-types/pagination/Interfaces.d.ts +3 -0
  45. package/dist-types/pagination/ListCallAnalyticsCategoriesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListCallAnalyticsJobsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListLanguageModelsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListMedicalTranscriptionJobsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListMedicalVocabulariesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListTranscriptionJobsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListVocabulariesPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListVocabularyFiltersPaginator.d.ts +3 -0
  53. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListVocabularyFiltersRequest, ListVocabularyFiltersResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVocabularyFiltersCommand}.
8
10
  */
9
11
  export interface ListVocabularyFiltersCommandInput extends ListVocabularyFiltersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVocabularyFiltersCommand}.
13
17
  */
14
18
  export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFiltersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Provides a list of custom vocabulary filters that match the specified criteria. If no
18
23
  * criteria are specified, all custom vocabularies are returned.</p>
19
24
  * <p>To get detailed information about a specific custom vocabulary filter, use the operation.</p>
@@ -27,6 +32,8 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListVocabularyFiltersCommandInput - {@link ListVocabularyFiltersCommandInput}
36
+ * @returns {@link ListVocabularyFiltersCommandOutput}
30
37
  * @see {@link ListVocabularyFiltersCommandInput} for command's `input` shape.
31
38
  * @see {@link ListVocabularyFiltersCommandOutput} for command's `response` shape.
32
39
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
50
57
  export declare class ListVocabularyFiltersCommand extends $Command<ListVocabularyFiltersCommandInput, ListVocabularyFiltersCommandOutput, TranscribeClientResolvedConfig> {
51
58
  readonly input: ListVocabularyFiltersCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListVocabularyFiltersCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVocabularyFiltersCommandInput, ListVocabularyFiltersCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StartCallAnalyticsJobRequest, StartCallAnalyticsJobResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartCallAnalyticsJobCommand}.
8
10
  */
9
11
  export interface StartCallAnalyticsJobCommandInput extends StartCallAnalyticsJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartCallAnalyticsJobCommand}.
13
17
  */
14
18
  export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Transcribes the audio from a customer service call and applies any additional Request
18
23
  * Parameters you choose to include in your request.</p>
19
24
  * <p>In addition to many standard transcription features, Call Analytics provides you with
@@ -75,6 +80,8 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
75
80
  * const response = await client.send(command);
76
81
  * ```
77
82
  *
83
+ * @param StartCallAnalyticsJobCommandInput - {@link StartCallAnalyticsJobCommandInput}
84
+ * @returns {@link StartCallAnalyticsJobCommandOutput}
78
85
  * @see {@link StartCallAnalyticsJobCommandInput} for command's `input` shape.
79
86
  * @see {@link StartCallAnalyticsJobCommandOutput} for command's `response` shape.
80
87
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -102,11 +109,20 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
102
109
  export declare class StartCallAnalyticsJobCommand extends $Command<StartCallAnalyticsJobCommandInput, StartCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
103
110
  readonly input: StartCallAnalyticsJobCommandInput;
104
111
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
112
+ /**
113
+ * @public
114
+ */
105
115
  constructor(input: StartCallAnalyticsJobCommandInput);
106
116
  /**
107
117
  * @internal
108
118
  */
109
119
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartCallAnalyticsJobCommandInput, StartCallAnalyticsJobCommandOutput>;
120
+ /**
121
+ * @internal
122
+ */
110
123
  private serialize;
124
+ /**
125
+ * @internal
126
+ */
111
127
  private deserialize;
112
128
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StartMedicalTranscriptionJobRequest, StartMedicalTranscriptionJobResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartMedicalTranscriptionJobCommand}.
8
10
  */
9
11
  export interface StartMedicalTranscriptionJobCommandInput extends StartMedicalTranscriptionJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartMedicalTranscriptionJobCommand}.
13
17
  */
14
18
  export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalTranscriptionJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Transcribes the audio from a medical dictation or conversation and applies any
18
23
  * additional Request Parameters you choose to include in your request.</p>
19
24
  * <p>In addition to many standard transcription features, Amazon Transcribe Medical
@@ -73,6 +78,8 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
73
78
  * const response = await client.send(command);
74
79
  * ```
75
80
  *
81
+ * @param StartMedicalTranscriptionJobCommandInput - {@link StartMedicalTranscriptionJobCommandInput}
82
+ * @returns {@link StartMedicalTranscriptionJobCommandOutput}
76
83
  * @see {@link StartMedicalTranscriptionJobCommandInput} for command's `input` shape.
77
84
  * @see {@link StartMedicalTranscriptionJobCommandOutput} for command's `response` shape.
78
85
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -100,11 +107,20 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
100
107
  export declare class StartMedicalTranscriptionJobCommand extends $Command<StartMedicalTranscriptionJobCommandInput, StartMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
101
108
  readonly input: StartMedicalTranscriptionJobCommandInput;
102
109
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
110
+ /**
111
+ * @public
112
+ */
103
113
  constructor(input: StartMedicalTranscriptionJobCommandInput);
104
114
  /**
105
115
  * @internal
106
116
  */
107
117
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMedicalTranscriptionJobCommandInput, StartMedicalTranscriptionJobCommandOutput>;
118
+ /**
119
+ * @internal
120
+ */
108
121
  private serialize;
122
+ /**
123
+ * @internal
124
+ */
109
125
  private deserialize;
110
126
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StartTranscriptionJobRequest, StartTranscriptionJobResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartTranscriptionJobCommand}.
8
10
  */
9
11
  export interface StartTranscriptionJobCommandInput extends StartTranscriptionJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartTranscriptionJobCommand}.
13
17
  */
14
18
  export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Transcribes the audio from a media file and applies any additional Request Parameters
18
23
  * you choose to include in your request.</p>
19
24
  * <p>To make a <code>StartTranscriptionJob</code> request, you must first upload your media
@@ -59,6 +64,8 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
59
64
  * const response = await client.send(command);
60
65
  * ```
61
66
  *
67
+ * @param StartTranscriptionJobCommandInput - {@link StartTranscriptionJobCommandInput}
68
+ * @returns {@link StartTranscriptionJobCommandOutput}
62
69
  * @see {@link StartTranscriptionJobCommandInput} for command's `input` shape.
63
70
  * @see {@link StartTranscriptionJobCommandOutput} for command's `response` shape.
64
71
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -86,11 +93,20 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
86
93
  export declare class StartTranscriptionJobCommand extends $Command<StartTranscriptionJobCommandInput, StartTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
87
94
  readonly input: StartTranscriptionJobCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: StartTranscriptionJobCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartTranscriptionJobCommandInput, StartTranscriptionJobCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more custom tags, each in the form of a key:value pair, to the specified
18
23
  * resource.</p>
19
24
  * <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging
@@ -28,6 +33,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
37
+ * @returns {@link TagResourceCommandOutput}
31
38
  * @see {@link TagResourceCommandInput} for command's `input` shape.
32
39
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -59,11 +66,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
59
66
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TranscribeClientResolvedConfig> {
60
67
  readonly input: TagResourceCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: TagResourceCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes the specified tags from the specified Amazon Transcribe resource.</p>
18
23
  * <p>If you include <code>UntagResource</code> in your request, you must also include
19
24
  * <code>ResourceArn</code> and <code>TagKeys</code>.</p>
@@ -27,6 +32,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
36
+ * @returns {@link UntagResourceCommandOutput}
30
37
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -58,11 +65,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
58
65
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TranscribeClientResolvedConfig> {
59
66
  readonly input: UntagResourceCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UntagResourceCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateCallAnalyticsCategoryRequest, UpdateCallAnalyticsCategoryResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateCallAnalyticsCategoryCommand}.
8
10
  */
9
11
  export interface UpdateCallAnalyticsCategoryCommandInput extends UpdateCallAnalyticsCategoryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateCallAnalyticsCategoryCommand}.
13
17
  */
14
18
  export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnalyticsCategoryResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the specified Call Analytics category with new rules. Note that the
18
23
  * <code>UpdateCallAnalyticsCategory</code> operation overwrites all existing rules
19
24
  * contained in the specified category. You cannot append additional rules onto an existing
@@ -29,6 +34,8 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param UpdateCallAnalyticsCategoryCommandInput - {@link UpdateCallAnalyticsCategoryCommandInput}
38
+ * @returns {@link UpdateCallAnalyticsCategoryCommandOutput}
32
39
  * @see {@link UpdateCallAnalyticsCategoryCommandInput} for command's `input` shape.
33
40
  * @see {@link UpdateCallAnalyticsCategoryCommandOutput} for command's `response` shape.
34
41
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -60,11 +67,20 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
60
67
  export declare class UpdateCallAnalyticsCategoryCommand extends $Command<UpdateCallAnalyticsCategoryCommandInput, UpdateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
61
68
  readonly input: UpdateCallAnalyticsCategoryCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: UpdateCallAnalyticsCategoryCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCallAnalyticsCategoryCommandInput, UpdateCallAnalyticsCategoryCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateMedicalVocabularyRequest, UpdateMedicalVocabularyResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateMedicalVocabularyCommand}.
8
10
  */
9
11
  export interface UpdateMedicalVocabularyCommandInput extends UpdateMedicalVocabularyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateMedicalVocabularyCommand}.
13
17
  */
14
18
  export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocabularyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing custom medical vocabulary with new values. This operation
18
23
  * overwrites all existing information with your new values; you cannot append new terms
19
24
  * onto an existing custom vocabulary.</p>
@@ -27,6 +32,8 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateMedicalVocabularyCommandInput - {@link UpdateMedicalVocabularyCommandInput}
36
+ * @returns {@link UpdateMedicalVocabularyCommandOutput}
30
37
  * @see {@link UpdateMedicalVocabularyCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateMedicalVocabularyCommandOutput} for command's `response` shape.
32
39
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -58,11 +65,20 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
58
65
  export declare class UpdateMedicalVocabularyCommand extends $Command<UpdateMedicalVocabularyCommandInput, UpdateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
59
66
  readonly input: UpdateMedicalVocabularyCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UpdateMedicalVocabularyCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMedicalVocabularyCommandInput, UpdateMedicalVocabularyCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateVocabularyRequest, UpdateVocabularyResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVocabularyCommand}.
8
10
  */
9
11
  export interface UpdateVocabularyCommandInput extends UpdateVocabularyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVocabularyCommand}.
13
17
  */
14
18
  export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing custom vocabulary with new values. This operation overwrites all
18
23
  * existing information with your new values; you cannot append new terms onto an existing
19
24
  * custom vocabulary.</p>
@@ -27,6 +32,8 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateVocabularyCommandInput - {@link UpdateVocabularyCommandInput}
36
+ * @returns {@link UpdateVocabularyCommandOutput}
30
37
  * @see {@link UpdateVocabularyCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateVocabularyCommandOutput} for command's `response` shape.
32
39
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -58,11 +65,20 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
58
65
  export declare class UpdateVocabularyCommand extends $Command<UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
59
66
  readonly input: UpdateVocabularyCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: UpdateVocabularyCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateVocabularyFilterRequest, UpdateVocabularyFilterResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateVocabularyFilterCommand}.
8
10
  */
9
11
  export interface UpdateVocabularyFilterCommandInput extends UpdateVocabularyFilterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateVocabularyFilterCommand}.
13
17
  */
14
18
  export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFilterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing custom vocabulary filter with a new list of words. The new list
18
23
  * you provide overwrites all previous entries; you cannot append new terms onto an
19
24
  * existing custom vocabulary filter.</p>
@@ -27,6 +32,8 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateVocabularyFilterCommandInput - {@link UpdateVocabularyFilterCommandInput}
36
+ * @returns {@link UpdateVocabularyFilterCommandOutput}
30
37
  * @see {@link UpdateVocabularyFilterCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateVocabularyFilterCommandOutput} for command's `response` shape.
32
39
  * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
@@ -54,11 +61,20 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
54
61
  export declare class UpdateVocabularyFilterCommand extends $Command<UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
55
62
  readonly input: UpdateVocabularyFilterCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: UpdateVocabularyFilterCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from Transcribe service.
4
6
  */
5
7
  export declare class TranscribeServiceException extends __ServiceException {