@aws-sdk/client-bedrock-data-automation 3.896.0 → 3.899.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.
@@ -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.896.0",
4
+ "version": "3.899.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",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.896.0",
24
- "@aws-sdk/credential-provider-node": "3.896.0",
23
+ "@aws-sdk/core": "3.899.0",
24
+ "@aws-sdk/credential-provider-node": "3.899.0",
25
25
  "@aws-sdk/middleware-host-header": "3.893.0",
26
26
  "@aws-sdk/middleware-logger": "3.893.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
- "@aws-sdk/middleware-user-agent": "3.896.0",
28
+ "@aws-sdk/middleware-user-agent": "3.899.0",
29
29
  "@aws-sdk/region-config-resolver": "3.893.0",
30
30
  "@aws-sdk/types": "3.893.0",
31
31
  "@aws-sdk/util-endpoints": "3.895.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.893.0",
33
- "@aws-sdk/util-user-agent-node": "3.896.0",
33
+ "@aws-sdk/util-user-agent-node": "3.899.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.12.0",
35
+ "@smithy/core": "^3.13.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.4",
41
- "@smithy/middleware-retry": "^4.3.0",
40
+ "@smithy/middleware-endpoint": "^4.2.5",
41
+ "@smithy/middleware-retry": "^4.3.1",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.4",
47
+ "@smithy/smithy-client": "^4.6.5",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.4",
54
- "@smithy/util-defaults-mode-node": "^4.1.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.5",
54
+ "@smithy/util-defaults-mode-node": "^4.1.5",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
57
  "@smithy/util-retry": "^4.1.2",