@aws-sdk/client-bedrock-data-automation 3.896.0 → 3.898.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/CreateDataAutomationProjectCommand.d.ts +10 -0
- package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +54 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -0
- package/package.json +1 -1
|
@@ -111,6 +111,16 @@ declare const CreateDataAutomationProjectCommand_base: {
|
|
|
111
111
|
* types: [ // AudioExtractionCategoryTypes
|
|
112
112
|
* "AUDIO_CONTENT_MODERATION" || "TRANSCRIPT" || "TOPIC_CONTENT_MODERATION",
|
|
113
113
|
* ],
|
|
114
|
+
* typeConfiguration: { // AudioExtractionCategoryTypeConfiguration
|
|
115
|
+
* transcript: { // TranscriptConfiguration
|
|
116
|
+
* speakerLabeling: { // SpeakerLabelingConfiguration
|
|
117
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
118
|
+
* },
|
|
119
|
+
* channelLabeling: { // ChannelLabelingConfiguration
|
|
120
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
121
|
+
* },
|
|
122
|
+
* },
|
|
123
|
+
* },
|
|
114
124
|
* },
|
|
115
125
|
* },
|
|
116
126
|
* generativeField: { // AudioStandardGenerativeField
|
|
@@ -121,6 +121,16 @@ declare const GetDataAutomationProjectCommand_base: {
|
|
|
121
121
|
* // types: [ // AudioExtractionCategoryTypes
|
|
122
122
|
* // "AUDIO_CONTENT_MODERATION" || "TRANSCRIPT" || "TOPIC_CONTENT_MODERATION",
|
|
123
123
|
* // ],
|
|
124
|
+
* // typeConfiguration: { // AudioExtractionCategoryTypeConfiguration
|
|
125
|
+
* // transcript: { // TranscriptConfiguration
|
|
126
|
+
* // speakerLabeling: { // SpeakerLabelingConfiguration
|
|
127
|
+
* // state: "ENABLED" || "DISABLED", // required
|
|
128
|
+
* // },
|
|
129
|
+
* // channelLabeling: { // ChannelLabelingConfiguration
|
|
130
|
+
* // state: "ENABLED" || "DISABLED", // required
|
|
131
|
+
* // },
|
|
132
|
+
* // },
|
|
133
|
+
* // },
|
|
124
134
|
* // },
|
|
125
135
|
* // },
|
|
126
136
|
* // generativeField: { // AudioStandardGenerativeField
|
|
@@ -111,6 +111,16 @@ declare const UpdateDataAutomationProjectCommand_base: {
|
|
|
111
111
|
* types: [ // AudioExtractionCategoryTypes
|
|
112
112
|
* "AUDIO_CONTENT_MODERATION" || "TRANSCRIPT" || "TOPIC_CONTENT_MODERATION",
|
|
113
113
|
* ],
|
|
114
|
+
* typeConfiguration: { // AudioExtractionCategoryTypeConfiguration
|
|
115
|
+
* transcript: { // TranscriptConfiguration
|
|
116
|
+
* speakerLabeling: { // SpeakerLabelingConfiguration
|
|
117
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
118
|
+
* },
|
|
119
|
+
* channelLabeling: { // ChannelLabelingConfiguration
|
|
120
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
121
|
+
* },
|
|
122
|
+
* },
|
|
123
|
+
* },
|
|
114
124
|
* },
|
|
115
125
|
* },
|
|
116
126
|
* generativeField: { // AudioStandardGenerativeField
|
|
@@ -716,6 +716,55 @@ export interface OverrideConfiguration {
|
|
|
716
716
|
*/
|
|
717
717
|
modalityRouting?: ModalityRoutingConfiguration | undefined;
|
|
718
718
|
}
|
|
719
|
+
/**
|
|
720
|
+
* Channel labeling configuration
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
export interface ChannelLabelingConfiguration {
|
|
724
|
+
/**
|
|
725
|
+
* State
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
728
|
+
state: State | undefined;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* Speaker labeling configuration
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
734
|
+
export interface SpeakerLabelingConfiguration {
|
|
735
|
+
/**
|
|
736
|
+
* State
|
|
737
|
+
* @public
|
|
738
|
+
*/
|
|
739
|
+
state: State | undefined;
|
|
740
|
+
}
|
|
741
|
+
/**
|
|
742
|
+
* Configuration for transcript related features
|
|
743
|
+
* @public
|
|
744
|
+
*/
|
|
745
|
+
export interface TranscriptConfiguration {
|
|
746
|
+
/**
|
|
747
|
+
* Speaker labeling configuration
|
|
748
|
+
* @public
|
|
749
|
+
*/
|
|
750
|
+
speakerLabeling?: SpeakerLabelingConfiguration | undefined;
|
|
751
|
+
/**
|
|
752
|
+
* Channel labeling configuration
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
755
|
+
channelLabeling?: ChannelLabelingConfiguration | undefined;
|
|
756
|
+
}
|
|
757
|
+
/**
|
|
758
|
+
* Configuration for different audio extraction category types
|
|
759
|
+
* @public
|
|
760
|
+
*/
|
|
761
|
+
export interface AudioExtractionCategoryTypeConfiguration {
|
|
762
|
+
/**
|
|
763
|
+
* Configuration for transcript related features
|
|
764
|
+
* @public
|
|
765
|
+
*/
|
|
766
|
+
transcript?: TranscriptConfiguration | undefined;
|
|
767
|
+
}
|
|
719
768
|
/**
|
|
720
769
|
* @public
|
|
721
770
|
* @enum
|
|
@@ -744,6 +793,11 @@ export interface AudioExtractionCategory {
|
|
|
744
793
|
* @public
|
|
745
794
|
*/
|
|
746
795
|
types?: AudioExtractionCategoryType[] | undefined;
|
|
796
|
+
/**
|
|
797
|
+
* Configuration for different audio extraction category types
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
800
|
+
typeConfiguration?: AudioExtractionCategoryTypeConfiguration | undefined;
|
|
747
801
|
}
|
|
748
802
|
/**
|
|
749
803
|
* Standard Extraction Configuration of Audio
|
|
@@ -221,6 +221,19 @@ export interface OverrideConfiguration {
|
|
|
221
221
|
audio?: AudioOverrideConfiguration | undefined;
|
|
222
222
|
modalityRouting?: ModalityRoutingConfiguration | undefined;
|
|
223
223
|
}
|
|
224
|
+
export interface ChannelLabelingConfiguration {
|
|
225
|
+
state: State | undefined;
|
|
226
|
+
}
|
|
227
|
+
export interface SpeakerLabelingConfiguration {
|
|
228
|
+
state: State | undefined;
|
|
229
|
+
}
|
|
230
|
+
export interface TranscriptConfiguration {
|
|
231
|
+
speakerLabeling?: SpeakerLabelingConfiguration | undefined;
|
|
232
|
+
channelLabeling?: ChannelLabelingConfiguration | undefined;
|
|
233
|
+
}
|
|
234
|
+
export interface AudioExtractionCategoryTypeConfiguration {
|
|
235
|
+
transcript?: TranscriptConfiguration | undefined;
|
|
236
|
+
}
|
|
224
237
|
export declare const AudioExtractionCategoryType: {
|
|
225
238
|
readonly AUDIO_CONTENT_MODERATION: "AUDIO_CONTENT_MODERATION";
|
|
226
239
|
readonly TOPIC_CONTENT_MODERATION: "TOPIC_CONTENT_MODERATION";
|
|
@@ -231,6 +244,7 @@ export type AudioExtractionCategoryType =
|
|
|
231
244
|
export interface AudioExtractionCategory {
|
|
232
245
|
state: State | undefined;
|
|
233
246
|
types?: AudioExtractionCategoryType[] | undefined;
|
|
247
|
+
typeConfiguration?: AudioExtractionCategoryTypeConfiguration | undefined;
|
|
234
248
|
}
|
|
235
249
|
export interface AudioStandardExtraction {
|
|
236
250
|
category: AudioExtractionCategory | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-data-automation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Data Automation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.898.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-data-automation",
|