aws-sdk-bedrockdataautomation 1.5.0 → 1.6.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockdataautomation/client.rb +57 -1
- data/lib/aws-sdk-bedrockdataautomation/client_api.rb +29 -0
- data/lib/aws-sdk-bedrockdataautomation/types.rb +112 -2
- data/lib/aws-sdk-bedrockdataautomation.rb +1 -1
- data/sig/client.rbs +48 -0
- data/sig/types.rbs +33 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c924e97e8184208e40f207c0706450dced26fa1988f4704cd42cbdaba9a0fb3
|
4
|
+
data.tar.gz: f50a666fecbec76c6523b626b79a0d54cb95d5164cd7e317655957d9c20aab53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 544313f4badd0fe341f417aab7296ab8432603916a7bd2c3bca2b94df968161cfc7e1bff0135c42d23e5a5b8cba0121c997b2deac0c75732ac264273a2f1c5b5
|
7
|
+
data.tar.gz: c0c2ff726c03cffb9e00b58440e6ed467f039699e1ddedc08d719c720aa6110771ce7818ee65227c0aef1a43d57653e47c045a77e99ea0ef17f3cd9360fc1aa0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.6.0 (2025-04-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for modality routing and modality enablement on CreateDataAutomationProject and UpdateDataAutomationProject APIs
|
8
|
+
|
4
9
|
1.5.0 (2025-02-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -714,6 +714,30 @@ module Aws::BedrockDataAutomation
|
|
714
714
|
# splitter: {
|
715
715
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
716
716
|
# },
|
717
|
+
# modality_processing: {
|
718
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
719
|
+
# },
|
720
|
+
# },
|
721
|
+
# image: {
|
722
|
+
# modality_processing: {
|
723
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
724
|
+
# },
|
725
|
+
# },
|
726
|
+
# video: {
|
727
|
+
# modality_processing: {
|
728
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
729
|
+
# },
|
730
|
+
# },
|
731
|
+
# audio: {
|
732
|
+
# modality_processing: {
|
733
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
734
|
+
# },
|
735
|
+
# },
|
736
|
+
# modality_routing: {
|
737
|
+
# jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
738
|
+
# png: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
739
|
+
# mp4: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
740
|
+
# mov: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
717
741
|
# },
|
718
742
|
# },
|
719
743
|
# client_token: "ClientToken",
|
@@ -909,6 +933,14 @@ module Aws::BedrockDataAutomation
|
|
909
933
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_version #=> String
|
910
934
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
911
935
|
# resp.project.override_configuration.document.splitter.state #=> String, one of "ENABLED", "DISABLED"
|
936
|
+
# resp.project.override_configuration.document.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
937
|
+
# resp.project.override_configuration.image.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
938
|
+
# resp.project.override_configuration.video.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
939
|
+
# resp.project.override_configuration.audio.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
940
|
+
# resp.project.override_configuration.modality_routing.jpeg #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
941
|
+
# resp.project.override_configuration.modality_routing.png #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
942
|
+
# resp.project.override_configuration.modality_routing.mp4 #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
943
|
+
# resp.project.override_configuration.modality_routing.mov #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
912
944
|
# resp.project.status #=> String, one of "COMPLETED", "IN_PROGRESS", "FAILED"
|
913
945
|
# resp.project.kms_key_id #=> String
|
914
946
|
# resp.project.kms_encryption_context #=> Hash
|
@@ -1297,6 +1329,30 @@ module Aws::BedrockDataAutomation
|
|
1297
1329
|
# splitter: {
|
1298
1330
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1299
1331
|
# },
|
1332
|
+
# modality_processing: {
|
1333
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1334
|
+
# },
|
1335
|
+
# },
|
1336
|
+
# image: {
|
1337
|
+
# modality_processing: {
|
1338
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1339
|
+
# },
|
1340
|
+
# },
|
1341
|
+
# video: {
|
1342
|
+
# modality_processing: {
|
1343
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1344
|
+
# },
|
1345
|
+
# },
|
1346
|
+
# audio: {
|
1347
|
+
# modality_processing: {
|
1348
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1349
|
+
# },
|
1350
|
+
# },
|
1351
|
+
# modality_routing: {
|
1352
|
+
# jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1353
|
+
# png: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1354
|
+
# mp4: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1355
|
+
# mov: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
1300
1356
|
# },
|
1301
1357
|
# },
|
1302
1358
|
# encryption_configuration: {
|
@@ -1340,7 +1396,7 @@ module Aws::BedrockDataAutomation
|
|
1340
1396
|
tracer: tracer
|
1341
1397
|
)
|
1342
1398
|
context[:gem_name] = 'aws-sdk-bedrockdataautomation'
|
1343
|
-
context[:gem_version] = '1.
|
1399
|
+
context[:gem_version] = '1.6.0'
|
1344
1400
|
Seahorse::Client::Request.new(handlers, context)
|
1345
1401
|
end
|
1346
1402
|
|
@@ -18,6 +18,7 @@ module Aws::BedrockDataAutomation
|
|
18
18
|
AudioExtractionCategory = Shapes::StructureShape.new(name: 'AudioExtractionCategory')
|
19
19
|
AudioExtractionCategoryType = Shapes::StringShape.new(name: 'AudioExtractionCategoryType')
|
20
20
|
AudioExtractionCategoryTypes = Shapes::ListShape.new(name: 'AudioExtractionCategoryTypes')
|
21
|
+
AudioOverrideConfiguration = Shapes::StructureShape.new(name: 'AudioOverrideConfiguration')
|
21
22
|
AudioStandardExtraction = Shapes::StructureShape.new(name: 'AudioStandardExtraction')
|
22
23
|
AudioStandardGenerativeField = Shapes::StructureShape.new(name: 'AudioStandardGenerativeField')
|
23
24
|
AudioStandardGenerativeFieldType = Shapes::StringShape.new(name: 'AudioStandardGenerativeFieldType')
|
@@ -59,6 +60,7 @@ module Aws::BedrockDataAutomation
|
|
59
60
|
DeleteBlueprintResponse = Shapes::StructureShape.new(name: 'DeleteBlueprintResponse')
|
60
61
|
DeleteDataAutomationProjectRequest = Shapes::StructureShape.new(name: 'DeleteDataAutomationProjectRequest')
|
61
62
|
DeleteDataAutomationProjectResponse = Shapes::StructureShape.new(name: 'DeleteDataAutomationProjectResponse')
|
63
|
+
DesiredModality = Shapes::StringShape.new(name: 'DesiredModality')
|
62
64
|
DocumentBoundingBox = Shapes::StructureShape.new(name: 'DocumentBoundingBox')
|
63
65
|
DocumentExtractionGranularity = Shapes::StructureShape.new(name: 'DocumentExtractionGranularity')
|
64
66
|
DocumentExtractionGranularityType = Shapes::StringShape.new(name: 'DocumentExtractionGranularityType')
|
@@ -83,6 +85,7 @@ module Aws::BedrockDataAutomation
|
|
83
85
|
ImageExtractionCategory = Shapes::StructureShape.new(name: 'ImageExtractionCategory')
|
84
86
|
ImageExtractionCategoryType = Shapes::StringShape.new(name: 'ImageExtractionCategoryType')
|
85
87
|
ImageExtractionCategoryTypes = Shapes::ListShape.new(name: 'ImageExtractionCategoryTypes')
|
88
|
+
ImageOverrideConfiguration = Shapes::StructureShape.new(name: 'ImageOverrideConfiguration')
|
86
89
|
ImageStandardExtraction = Shapes::StructureShape.new(name: 'ImageStandardExtraction')
|
87
90
|
ImageStandardGenerativeField = Shapes::StructureShape.new(name: 'ImageStandardGenerativeField')
|
88
91
|
ImageStandardGenerativeFieldType = Shapes::StringShape.new(name: 'ImageStandardGenerativeFieldType')
|
@@ -98,6 +101,8 @@ module Aws::BedrockDataAutomation
|
|
98
101
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
99
102
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
100
103
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
104
|
+
ModalityProcessingConfiguration = Shapes::StructureShape.new(name: 'ModalityProcessingConfiguration')
|
105
|
+
ModalityRoutingConfiguration = Shapes::StructureShape.new(name: 'ModalityRoutingConfiguration')
|
101
106
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
102
107
|
NonBlankString = Shapes::StringShape.new(name: 'NonBlankString')
|
103
108
|
OverrideConfiguration = Shapes::StructureShape.new(name: 'OverrideConfiguration')
|
@@ -130,6 +135,7 @@ module Aws::BedrockDataAutomation
|
|
130
135
|
VideoExtractionCategory = Shapes::StructureShape.new(name: 'VideoExtractionCategory')
|
131
136
|
VideoExtractionCategoryType = Shapes::StringShape.new(name: 'VideoExtractionCategoryType')
|
132
137
|
VideoExtractionCategoryTypes = Shapes::ListShape.new(name: 'VideoExtractionCategoryTypes')
|
138
|
+
VideoOverrideConfiguration = Shapes::StructureShape.new(name: 'VideoOverrideConfiguration')
|
133
139
|
VideoStandardExtraction = Shapes::StructureShape.new(name: 'VideoStandardExtraction')
|
134
140
|
VideoStandardGenerativeField = Shapes::StructureShape.new(name: 'VideoStandardGenerativeField')
|
135
141
|
VideoStandardGenerativeFieldType = Shapes::StringShape.new(name: 'VideoStandardGenerativeFieldType')
|
@@ -145,6 +151,9 @@ module Aws::BedrockDataAutomation
|
|
145
151
|
|
146
152
|
AudioExtractionCategoryTypes.member = Shapes::ShapeRef.new(shape: AudioExtractionCategoryType)
|
147
153
|
|
154
|
+
AudioOverrideConfiguration.add_member(:modality_processing, Shapes::ShapeRef.new(shape: ModalityProcessingConfiguration, location_name: "modalityProcessing"))
|
155
|
+
AudioOverrideConfiguration.struct_class = Types::AudioOverrideConfiguration
|
156
|
+
|
148
157
|
AudioStandardExtraction.add_member(:category, Shapes::ShapeRef.new(shape: AudioExtractionCategory, required: true, location_name: "category"))
|
149
158
|
AudioStandardExtraction.struct_class = Types::AudioStandardExtraction
|
150
159
|
|
@@ -293,6 +302,7 @@ module Aws::BedrockDataAutomation
|
|
293
302
|
DocumentOutputTextFormatTypes.member = Shapes::ShapeRef.new(shape: DocumentOutputTextFormatType)
|
294
303
|
|
295
304
|
DocumentOverrideConfiguration.add_member(:splitter, Shapes::ShapeRef.new(shape: SplitterConfiguration, location_name: "splitter"))
|
305
|
+
DocumentOverrideConfiguration.add_member(:modality_processing, Shapes::ShapeRef.new(shape: ModalityProcessingConfiguration, location_name: "modalityProcessing"))
|
296
306
|
DocumentOverrideConfiguration.struct_class = Types::DocumentOverrideConfiguration
|
297
307
|
|
298
308
|
DocumentStandardExtraction.add_member(:granularity, Shapes::ShapeRef.new(shape: DocumentExtractionGranularity, required: true, location_name: "granularity"))
|
@@ -335,6 +345,9 @@ module Aws::BedrockDataAutomation
|
|
335
345
|
|
336
346
|
ImageExtractionCategoryTypes.member = Shapes::ShapeRef.new(shape: ImageExtractionCategoryType)
|
337
347
|
|
348
|
+
ImageOverrideConfiguration.add_member(:modality_processing, Shapes::ShapeRef.new(shape: ModalityProcessingConfiguration, location_name: "modalityProcessing"))
|
349
|
+
ImageOverrideConfiguration.struct_class = Types::ImageOverrideConfiguration
|
350
|
+
|
338
351
|
ImageStandardExtraction.add_member(:category, Shapes::ShapeRef.new(shape: ImageExtractionCategory, required: true, location_name: "category"))
|
339
352
|
ImageStandardExtraction.add_member(:bounding_box, Shapes::ShapeRef.new(shape: ImageBoundingBox, required: true, location_name: "boundingBox"))
|
340
353
|
ImageStandardExtraction.struct_class = Types::ImageStandardExtraction
|
@@ -384,7 +397,20 @@ module Aws::BedrockDataAutomation
|
|
384
397
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
385
398
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
386
399
|
|
400
|
+
ModalityProcessingConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: State, location_name: "state"))
|
401
|
+
ModalityProcessingConfiguration.struct_class = Types::ModalityProcessingConfiguration
|
402
|
+
|
403
|
+
ModalityRoutingConfiguration.add_member(:jpeg, Shapes::ShapeRef.new(shape: DesiredModality, location_name: "jpeg"))
|
404
|
+
ModalityRoutingConfiguration.add_member(:png, Shapes::ShapeRef.new(shape: DesiredModality, location_name: "png"))
|
405
|
+
ModalityRoutingConfiguration.add_member(:mp4, Shapes::ShapeRef.new(shape: DesiredModality, location_name: "mp4"))
|
406
|
+
ModalityRoutingConfiguration.add_member(:mov, Shapes::ShapeRef.new(shape: DesiredModality, location_name: "mov"))
|
407
|
+
ModalityRoutingConfiguration.struct_class = Types::ModalityRoutingConfiguration
|
408
|
+
|
387
409
|
OverrideConfiguration.add_member(:document, Shapes::ShapeRef.new(shape: DocumentOverrideConfiguration, location_name: "document"))
|
410
|
+
OverrideConfiguration.add_member(:image, Shapes::ShapeRef.new(shape: ImageOverrideConfiguration, location_name: "image"))
|
411
|
+
OverrideConfiguration.add_member(:video, Shapes::ShapeRef.new(shape: VideoOverrideConfiguration, location_name: "video"))
|
412
|
+
OverrideConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioOverrideConfiguration, location_name: "audio"))
|
413
|
+
OverrideConfiguration.add_member(:modality_routing, Shapes::ShapeRef.new(shape: ModalityRoutingConfiguration, location_name: "modalityRouting"))
|
388
414
|
OverrideConfiguration.struct_class = Types::OverrideConfiguration
|
389
415
|
|
390
416
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
|
@@ -467,6 +493,9 @@ module Aws::BedrockDataAutomation
|
|
467
493
|
|
468
494
|
VideoExtractionCategoryTypes.member = Shapes::ShapeRef.new(shape: VideoExtractionCategoryType)
|
469
495
|
|
496
|
+
VideoOverrideConfiguration.add_member(:modality_processing, Shapes::ShapeRef.new(shape: ModalityProcessingConfiguration, location_name: "modalityProcessing"))
|
497
|
+
VideoOverrideConfiguration.struct_class = Types::VideoOverrideConfiguration
|
498
|
+
|
470
499
|
VideoStandardExtraction.add_member(:category, Shapes::ShapeRef.new(shape: VideoExtractionCategory, required: true, location_name: "category"))
|
471
500
|
VideoStandardExtraction.add_member(:bounding_box, Shapes::ShapeRef.new(shape: VideoBoundingBox, required: true, location_name: "boundingBox"))
|
472
501
|
VideoStandardExtraction.struct_class = Types::VideoStandardExtraction
|
@@ -44,6 +44,20 @@ module Aws::BedrockDataAutomation
|
|
44
44
|
include Aws::Structure
|
45
45
|
end
|
46
46
|
|
47
|
+
# Override Configuration of Audio
|
48
|
+
#
|
49
|
+
# @!attribute [rw] modality_processing
|
50
|
+
# Configuration to enable/disable processing of modality
|
51
|
+
# @return [Types::ModalityProcessingConfiguration]
|
52
|
+
#
|
53
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/AudioOverrideConfiguration AWS API Documentation
|
54
|
+
#
|
55
|
+
class AudioOverrideConfiguration < Struct.new(
|
56
|
+
:modality_processing)
|
57
|
+
SENSITIVE = []
|
58
|
+
include Aws::Structure
|
59
|
+
end
|
60
|
+
|
47
61
|
# Standard Extraction Configuration of Audio
|
48
62
|
#
|
49
63
|
# @!attribute [rw] category
|
@@ -706,10 +720,15 @@ module Aws::BedrockDataAutomation
|
|
706
720
|
# Configuration of Splitter
|
707
721
|
# @return [Types::SplitterConfiguration]
|
708
722
|
#
|
723
|
+
# @!attribute [rw] modality_processing
|
724
|
+
# Configuration to enable/disable processing of modality
|
725
|
+
# @return [Types::ModalityProcessingConfiguration]
|
726
|
+
#
|
709
727
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/DocumentOverrideConfiguration AWS API Documentation
|
710
728
|
#
|
711
729
|
class DocumentOverrideConfiguration < Struct.new(
|
712
|
-
:splitter
|
730
|
+
:splitter,
|
731
|
+
:modality_processing)
|
713
732
|
SENSITIVE = []
|
714
733
|
include Aws::Structure
|
715
734
|
end
|
@@ -895,6 +914,20 @@ module Aws::BedrockDataAutomation
|
|
895
914
|
include Aws::Structure
|
896
915
|
end
|
897
916
|
|
917
|
+
# Override Configuration of Image
|
918
|
+
#
|
919
|
+
# @!attribute [rw] modality_processing
|
920
|
+
# Configuration to enable/disable processing of modality
|
921
|
+
# @return [Types::ModalityProcessingConfiguration]
|
922
|
+
#
|
923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ImageOverrideConfiguration AWS API Documentation
|
924
|
+
#
|
925
|
+
class ImageOverrideConfiguration < Struct.new(
|
926
|
+
:modality_processing)
|
927
|
+
SENSITIVE = []
|
928
|
+
include Aws::Structure
|
929
|
+
end
|
930
|
+
|
898
931
|
# Standard Extraction Configuration of Image
|
899
932
|
#
|
900
933
|
# @!attribute [rw] category
|
@@ -1102,16 +1135,79 @@ module Aws::BedrockDataAutomation
|
|
1102
1135
|
include Aws::Structure
|
1103
1136
|
end
|
1104
1137
|
|
1138
|
+
# Configuration to enable/disable processing of modality
|
1139
|
+
#
|
1140
|
+
# @!attribute [rw] state
|
1141
|
+
# State
|
1142
|
+
# @return [String]
|
1143
|
+
#
|
1144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ModalityProcessingConfiguration AWS API Documentation
|
1145
|
+
#
|
1146
|
+
class ModalityProcessingConfiguration < Struct.new(
|
1147
|
+
:state)
|
1148
|
+
SENSITIVE = []
|
1149
|
+
include Aws::Structure
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
# Configuration for routing file type to desired modality
|
1153
|
+
#
|
1154
|
+
# @!attribute [rw] jpeg
|
1155
|
+
# Desired Modality types
|
1156
|
+
# @return [String]
|
1157
|
+
#
|
1158
|
+
# @!attribute [rw] png
|
1159
|
+
# Desired Modality types
|
1160
|
+
# @return [String]
|
1161
|
+
#
|
1162
|
+
# @!attribute [rw] mp4
|
1163
|
+
# Desired Modality types
|
1164
|
+
# @return [String]
|
1165
|
+
#
|
1166
|
+
# @!attribute [rw] mov
|
1167
|
+
# Desired Modality types
|
1168
|
+
# @return [String]
|
1169
|
+
#
|
1170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/ModalityRoutingConfiguration AWS API Documentation
|
1171
|
+
#
|
1172
|
+
class ModalityRoutingConfiguration < Struct.new(
|
1173
|
+
:jpeg,
|
1174
|
+
:png,
|
1175
|
+
:mp4,
|
1176
|
+
:mov)
|
1177
|
+
SENSITIVE = []
|
1178
|
+
include Aws::Structure
|
1179
|
+
end
|
1180
|
+
|
1105
1181
|
# Override configuration
|
1106
1182
|
#
|
1107
1183
|
# @!attribute [rw] document
|
1108
1184
|
# Override Configuration of Document
|
1109
1185
|
# @return [Types::DocumentOverrideConfiguration]
|
1110
1186
|
#
|
1187
|
+
# @!attribute [rw] image
|
1188
|
+
# Override Configuration of Image
|
1189
|
+
# @return [Types::ImageOverrideConfiguration]
|
1190
|
+
#
|
1191
|
+
# @!attribute [rw] video
|
1192
|
+
# Override Configuration of Video
|
1193
|
+
# @return [Types::VideoOverrideConfiguration]
|
1194
|
+
#
|
1195
|
+
# @!attribute [rw] audio
|
1196
|
+
# Override Configuration of Audio
|
1197
|
+
# @return [Types::AudioOverrideConfiguration]
|
1198
|
+
#
|
1199
|
+
# @!attribute [rw] modality_routing
|
1200
|
+
# Configuration for routing file type to desired modality
|
1201
|
+
# @return [Types::ModalityRoutingConfiguration]
|
1202
|
+
#
|
1111
1203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/OverrideConfiguration AWS API Documentation
|
1112
1204
|
#
|
1113
1205
|
class OverrideConfiguration < Struct.new(
|
1114
|
-
:document
|
1206
|
+
:document,
|
1207
|
+
:image,
|
1208
|
+
:video,
|
1209
|
+
:audio,
|
1210
|
+
:modality_routing)
|
1115
1211
|
SENSITIVE = []
|
1116
1212
|
include Aws::Structure
|
1117
1213
|
end
|
@@ -1449,6 +1545,20 @@ module Aws::BedrockDataAutomation
|
|
1449
1545
|
include Aws::Structure
|
1450
1546
|
end
|
1451
1547
|
|
1548
|
+
# Override Configuration of Video
|
1549
|
+
#
|
1550
|
+
# @!attribute [rw] modality_processing
|
1551
|
+
# Configuration to enable/disable processing of modality
|
1552
|
+
# @return [Types::ModalityProcessingConfiguration]
|
1553
|
+
#
|
1554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/VideoOverrideConfiguration AWS API Documentation
|
1555
|
+
#
|
1556
|
+
class VideoOverrideConfiguration < Struct.new(
|
1557
|
+
:modality_processing)
|
1558
|
+
SENSITIVE = []
|
1559
|
+
include Aws::Structure
|
1560
|
+
end
|
1561
|
+
|
1452
1562
|
# Standard Extraction Configuration of Video
|
1453
1563
|
#
|
1454
1564
|
# @!attribute [rw] category
|
data/sig/client.rbs
CHANGED
@@ -201,7 +201,31 @@ module Aws
|
|
201
201
|
document: {
|
202
202
|
splitter: {
|
203
203
|
state: ("ENABLED" | "DISABLED")?
|
204
|
+
}?,
|
205
|
+
modality_processing: {
|
206
|
+
state: ("ENABLED" | "DISABLED")?
|
207
|
+
}?
|
208
|
+
}?,
|
209
|
+
image: {
|
210
|
+
modality_processing: {
|
211
|
+
state: ("ENABLED" | "DISABLED")?
|
204
212
|
}?
|
213
|
+
}?,
|
214
|
+
video: {
|
215
|
+
modality_processing: {
|
216
|
+
state: ("ENABLED" | "DISABLED")?
|
217
|
+
}?
|
218
|
+
}?,
|
219
|
+
audio: {
|
220
|
+
modality_processing: {
|
221
|
+
state: ("ENABLED" | "DISABLED")?
|
222
|
+
}?
|
223
|
+
}?,
|
224
|
+
modality_routing: {
|
225
|
+
jpeg: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
|
226
|
+
png: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
|
227
|
+
mp4: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
|
228
|
+
mov: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?
|
205
229
|
}?
|
206
230
|
},
|
207
231
|
?client_token: ::String,
|
@@ -440,7 +464,31 @@ module Aws
|
|
440
464
|
document: {
|
441
465
|
splitter: {
|
442
466
|
state: ("ENABLED" | "DISABLED")?
|
467
|
+
}?,
|
468
|
+
modality_processing: {
|
469
|
+
state: ("ENABLED" | "DISABLED")?
|
470
|
+
}?
|
471
|
+
}?,
|
472
|
+
image: {
|
473
|
+
modality_processing: {
|
474
|
+
state: ("ENABLED" | "DISABLED")?
|
443
475
|
}?
|
476
|
+
}?,
|
477
|
+
video: {
|
478
|
+
modality_processing: {
|
479
|
+
state: ("ENABLED" | "DISABLED")?
|
480
|
+
}?
|
481
|
+
}?,
|
482
|
+
audio: {
|
483
|
+
modality_processing: {
|
484
|
+
state: ("ENABLED" | "DISABLED")?
|
485
|
+
}?
|
486
|
+
}?,
|
487
|
+
modality_routing: {
|
488
|
+
jpeg: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
|
489
|
+
png: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
|
490
|
+
mp4: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
|
491
|
+
mov: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?
|
444
492
|
}?
|
445
493
|
},
|
446
494
|
?encryption_configuration: {
|
data/sig/types.rbs
CHANGED
@@ -19,6 +19,11 @@ module Aws::BedrockDataAutomation
|
|
19
19
|
SENSITIVE: []
|
20
20
|
end
|
21
21
|
|
22
|
+
class AudioOverrideConfiguration
|
23
|
+
attr_accessor modality_processing: Types::ModalityProcessingConfiguration
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
22
27
|
class AudioStandardExtraction
|
23
28
|
attr_accessor category: Types::AudioExtractionCategory
|
24
29
|
SENSITIVE: []
|
@@ -209,6 +214,7 @@ module Aws::BedrockDataAutomation
|
|
209
214
|
|
210
215
|
class DocumentOverrideConfiguration
|
211
216
|
attr_accessor splitter: Types::SplitterConfiguration
|
217
|
+
attr_accessor modality_processing: Types::ModalityProcessingConfiguration
|
212
218
|
SENSITIVE: []
|
213
219
|
end
|
214
220
|
|
@@ -270,6 +276,11 @@ module Aws::BedrockDataAutomation
|
|
270
276
|
SENSITIVE: []
|
271
277
|
end
|
272
278
|
|
279
|
+
class ImageOverrideConfiguration
|
280
|
+
attr_accessor modality_processing: Types::ModalityProcessingConfiguration
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
273
284
|
class ImageStandardExtraction
|
274
285
|
attr_accessor category: Types::ImageExtractionCategory
|
275
286
|
attr_accessor bounding_box: Types::ImageBoundingBox
|
@@ -334,8 +345,25 @@ module Aws::BedrockDataAutomation
|
|
334
345
|
SENSITIVE: []
|
335
346
|
end
|
336
347
|
|
348
|
+
class ModalityProcessingConfiguration
|
349
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class ModalityRoutingConfiguration
|
354
|
+
attr_accessor jpeg: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
|
355
|
+
attr_accessor png: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
|
356
|
+
attr_accessor mp4: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
|
357
|
+
attr_accessor mov: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
337
361
|
class OverrideConfiguration
|
338
362
|
attr_accessor document: Types::DocumentOverrideConfiguration
|
363
|
+
attr_accessor image: Types::ImageOverrideConfiguration
|
364
|
+
attr_accessor video: Types::VideoOverrideConfiguration
|
365
|
+
attr_accessor audio: Types::AudioOverrideConfiguration
|
366
|
+
attr_accessor modality_routing: Types::ModalityRoutingConfiguration
|
339
367
|
SENSITIVE: []
|
340
368
|
end
|
341
369
|
|
@@ -445,6 +473,11 @@ module Aws::BedrockDataAutomation
|
|
445
473
|
SENSITIVE: []
|
446
474
|
end
|
447
475
|
|
476
|
+
class VideoOverrideConfiguration
|
477
|
+
attr_accessor modality_processing: Types::ModalityProcessingConfiguration
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
448
481
|
class VideoStandardExtraction
|
449
482
|
attr_accessor category: Types::VideoExtractionCategory
|
450
483
|
attr_accessor bounding_box: Types::VideoBoundingBox
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockdataautomation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|