aws-sdk-bedrockdataautomation 1.32.0 → 1.33.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 +23 -1
- data/lib/aws-sdk-bedrockdataautomation/client_api.rb +8 -0
- data/lib/aws-sdk-bedrockdataautomation/types.rb +20 -1
- data/lib/aws-sdk-bedrockdataautomation.rb +1 -1
- data/sig/client.rbs +2 -18
- data/sig/params.rbs +19 -0
- data/sig/types.rbs +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e99ecaccd0be670b1691ca4e83a5fbfad63bf4e36bc37994e9690729447e4efb
|
|
4
|
+
data.tar.gz: 23eb3fa008e9ea3a0e6f3b923fd373d3a4057b0b759c4255e36016f9091d6143
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 725c20c34bcf1acb068cf4b0c985b17d2e421d60d4e8a38900e6a3f9bb45a13e41554fa5dc4679d564e80a1564f13bcb85a38e5f6f93124d99facf6dea9e2534
|
|
7
|
+
data.tar.gz: 50d41cda765915960de35c924a4317002f01cd9bbf7a123a695645fec236988a49d0d6b2f2b149bb3df41ce12a6e22a92ebcec43c2a83b878b444e62f946817c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.33.0 (2026-05-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Matcher Fallback extends the CustomOutputConfiguration for the Document modality in DataAutomationProjects, enabling a fallback blueprint when no match is found. A FALLBACK match status is returned, improving the matching experience and guaranteeing customers always receive CustomOutputResults.
|
|
8
|
+
|
|
4
9
|
1.32.0 (2026-05-26)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.33.0
|
|
@@ -837,6 +837,15 @@ module Aws::BedrockDataAutomation
|
|
|
837
837
|
# blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
838
838
|
# },
|
|
839
839
|
# ],
|
|
840
|
+
# document: {
|
|
841
|
+
# fallback_blueprints: [
|
|
842
|
+
# {
|
|
843
|
+
# blueprint_arn: "BlueprintArn", # required
|
|
844
|
+
# blueprint_version: "BlueprintVersion",
|
|
845
|
+
# blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
846
|
+
# },
|
|
847
|
+
# ],
|
|
848
|
+
# },
|
|
840
849
|
# },
|
|
841
850
|
# override_configuration: {
|
|
842
851
|
# document: {
|
|
@@ -1303,6 +1312,10 @@ module Aws::BedrockDataAutomation
|
|
|
1303
1312
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_arn #=> String
|
|
1304
1313
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_version #=> String
|
|
1305
1314
|
# resp.project.custom_output_configuration.blueprints[0].blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
|
1315
|
+
# resp.project.custom_output_configuration.document.fallback_blueprints #=> Array
|
|
1316
|
+
# resp.project.custom_output_configuration.document.fallback_blueprints[0].blueprint_arn #=> String
|
|
1317
|
+
# resp.project.custom_output_configuration.document.fallback_blueprints[0].blueprint_version #=> String
|
|
1318
|
+
# resp.project.custom_output_configuration.document.fallback_blueprints[0].blueprint_stage #=> String, one of "DEVELOPMENT", "LIVE"
|
|
1306
1319
|
# resp.project.override_configuration.document.splitter.state #=> String, one of "ENABLED", "DISABLED"
|
|
1307
1320
|
# resp.project.override_configuration.document.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
|
1308
1321
|
# resp.project.override_configuration.document.sensitive_data_configuration.detection_mode #=> String, one of "DETECTION", "DETECTION_AND_REDACTION"
|
|
@@ -2109,6 +2122,15 @@ module Aws::BedrockDataAutomation
|
|
|
2109
2122
|
# blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
2110
2123
|
# },
|
|
2111
2124
|
# ],
|
|
2125
|
+
# document: {
|
|
2126
|
+
# fallback_blueprints: [
|
|
2127
|
+
# {
|
|
2128
|
+
# blueprint_arn: "BlueprintArn", # required
|
|
2129
|
+
# blueprint_version: "BlueprintVersion",
|
|
2130
|
+
# blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
|
2131
|
+
# },
|
|
2132
|
+
# ],
|
|
2133
|
+
# },
|
|
2112
2134
|
# },
|
|
2113
2135
|
# override_configuration: {
|
|
2114
2136
|
# document: {
|
|
@@ -2226,7 +2248,7 @@ module Aws::BedrockDataAutomation
|
|
|
2226
2248
|
tracer: tracer
|
|
2227
2249
|
)
|
|
2228
2250
|
context[:gem_name] = 'aws-sdk-bedrockdataautomation'
|
|
2229
|
-
context[:gem_version] = '1.
|
|
2251
|
+
context[:gem_version] = '1.33.0'
|
|
2230
2252
|
Seahorse::Client::Request.new(handlers, context)
|
|
2231
2253
|
end
|
|
2232
2254
|
|
|
@@ -100,6 +100,7 @@ module Aws::BedrockDataAutomation
|
|
|
100
100
|
DeleteEntitiesInfo = Shapes::StructureShape.new(name: 'DeleteEntitiesInfo')
|
|
101
101
|
DesiredModality = Shapes::StringShape.new(name: 'DesiredModality')
|
|
102
102
|
DocumentBoundingBox = Shapes::StructureShape.new(name: 'DocumentBoundingBox')
|
|
103
|
+
DocumentCustomOutputConfiguration = Shapes::StructureShape.new(name: 'DocumentCustomOutputConfiguration')
|
|
103
104
|
DocumentExtractionGranularity = Shapes::StructureShape.new(name: 'DocumentExtractionGranularity')
|
|
104
105
|
DocumentExtractionGranularityType = Shapes::StringShape.new(name: 'DocumentExtractionGranularityType')
|
|
105
106
|
DocumentExtractionGranularityTypes = Shapes::ListShape.new(name: 'DocumentExtractionGranularityTypes')
|
|
@@ -124,6 +125,7 @@ module Aws::BedrockDataAutomation
|
|
|
124
125
|
EntityTypeInfo = Shapes::StructureShape.new(name: 'EntityTypeInfo')
|
|
125
126
|
EntityTypeInfoList = Shapes::ListShape.new(name: 'EntityTypeInfoList')
|
|
126
127
|
EventBridgeConfiguration = Shapes::StructureShape.new(name: 'EventBridgeConfiguration')
|
|
128
|
+
FallbackBlueprintItems = Shapes::ListShape.new(name: 'FallbackBlueprintItems')
|
|
127
129
|
GetBlueprintOptimizationStatusRequest = Shapes::StructureShape.new(name: 'GetBlueprintOptimizationStatusRequest')
|
|
128
130
|
GetBlueprintOptimizationStatusResponse = Shapes::StructureShape.new(name: 'GetBlueprintOptimizationStatusResponse')
|
|
129
131
|
GetBlueprintRequest = Shapes::StructureShape.new(name: 'GetBlueprintRequest')
|
|
@@ -390,6 +392,7 @@ module Aws::BedrockDataAutomation
|
|
|
390
392
|
CreateDataAutomationProjectResponse.struct_class = Types::CreateDataAutomationProjectResponse
|
|
391
393
|
|
|
392
394
|
CustomOutputConfiguration.add_member(:blueprints, Shapes::ShapeRef.new(shape: BlueprintItems, location_name: "blueprints"))
|
|
395
|
+
CustomOutputConfiguration.add_member(:document, Shapes::ShapeRef.new(shape: DocumentCustomOutputConfiguration, location_name: "document"))
|
|
393
396
|
CustomOutputConfiguration.struct_class = Types::CustomOutputConfiguration
|
|
394
397
|
|
|
395
398
|
DataAutomationLibrary.add_member(:library_arn, Shapes::ShapeRef.new(shape: DataAutomationLibraryArn, required: true, location_name: "libraryArn"))
|
|
@@ -504,6 +507,9 @@ module Aws::BedrockDataAutomation
|
|
|
504
507
|
DocumentBoundingBox.add_member(:state, Shapes::ShapeRef.new(shape: State, required: true, location_name: "state"))
|
|
505
508
|
DocumentBoundingBox.struct_class = Types::DocumentBoundingBox
|
|
506
509
|
|
|
510
|
+
DocumentCustomOutputConfiguration.add_member(:fallback_blueprints, Shapes::ShapeRef.new(shape: FallbackBlueprintItems, location_name: "fallbackBlueprints"))
|
|
511
|
+
DocumentCustomOutputConfiguration.struct_class = Types::DocumentCustomOutputConfiguration
|
|
512
|
+
|
|
507
513
|
DocumentExtractionGranularity.add_member(:types, Shapes::ShapeRef.new(shape: DocumentExtractionGranularityTypes, location_name: "types"))
|
|
508
514
|
DocumentExtractionGranularity.struct_class = Types::DocumentExtractionGranularity
|
|
509
515
|
|
|
@@ -559,6 +565,8 @@ module Aws::BedrockDataAutomation
|
|
|
559
565
|
EventBridgeConfiguration.add_member(:event_bridge_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "eventBridgeEnabled"))
|
|
560
566
|
EventBridgeConfiguration.struct_class = Types::EventBridgeConfiguration
|
|
561
567
|
|
|
568
|
+
FallbackBlueprintItems.member = Shapes::ShapeRef.new(shape: BlueprintItem)
|
|
569
|
+
|
|
562
570
|
GetBlueprintOptimizationStatusRequest.add_member(:invocation_arn, Shapes::ShapeRef.new(shape: BlueprintOptimizationInvocationArn, required: true, location: "uri", location_name: "invocationArn"))
|
|
563
571
|
GetBlueprintOptimizationStatusRequest.struct_class = Types::GetBlueprintOptimizationStatusRequest
|
|
564
572
|
|
|
@@ -689,10 +689,15 @@ module Aws::BedrockDataAutomation
|
|
|
689
689
|
# List of Blueprint Item
|
|
690
690
|
# @return [Array<Types::BlueprintItem>]
|
|
691
691
|
#
|
|
692
|
+
# @!attribute [rw] document
|
|
693
|
+
# Custom Configuration of Document
|
|
694
|
+
# @return [Types::DocumentCustomOutputConfiguration]
|
|
695
|
+
#
|
|
692
696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/CustomOutputConfiguration AWS API Documentation
|
|
693
697
|
#
|
|
694
698
|
class CustomOutputConfiguration < Struct.new(
|
|
695
|
-
:blueprints
|
|
699
|
+
:blueprints,
|
|
700
|
+
:document)
|
|
696
701
|
SENSITIVE = []
|
|
697
702
|
include Aws::Structure
|
|
698
703
|
end
|
|
@@ -1184,6 +1189,20 @@ module Aws::BedrockDataAutomation
|
|
|
1184
1189
|
include Aws::Structure
|
|
1185
1190
|
end
|
|
1186
1191
|
|
|
1192
|
+
# Custom Configuration of Document
|
|
1193
|
+
#
|
|
1194
|
+
# @!attribute [rw] fallback_blueprints
|
|
1195
|
+
# List of Fallback Blueprint Items
|
|
1196
|
+
# @return [Array<Types::BlueprintItem>]
|
|
1197
|
+
#
|
|
1198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/DocumentCustomOutputConfiguration AWS API Documentation
|
|
1199
|
+
#
|
|
1200
|
+
class DocumentCustomOutputConfiguration < Struct.new(
|
|
1201
|
+
:fallback_blueprints)
|
|
1202
|
+
SENSITIVE = []
|
|
1203
|
+
include Aws::Structure
|
|
1204
|
+
end
|
|
1205
|
+
|
|
1187
1206
|
# Granularity of Document Extraction
|
|
1188
1207
|
#
|
|
1189
1208
|
# @!attribute [rw] types
|
data/sig/client.rbs
CHANGED
|
@@ -161,15 +161,7 @@ module Aws
|
|
|
161
161
|
?project_stage: ("DEVELOPMENT" | "LIVE"),
|
|
162
162
|
?project_type: ("ASYNC" | "SYNC"),
|
|
163
163
|
standard_output_configuration: Params::standard_output_configuration,
|
|
164
|
-
?custom_output_configuration:
|
|
165
|
-
blueprints: Array[
|
|
166
|
-
{
|
|
167
|
-
blueprint_arn: ::String,
|
|
168
|
-
blueprint_version: ::String?,
|
|
169
|
-
blueprint_stage: ("DEVELOPMENT" | "LIVE")?
|
|
170
|
-
}
|
|
171
|
-
]?
|
|
172
|
-
},
|
|
164
|
+
?custom_output_configuration: Params::custom_output_configuration,
|
|
173
165
|
?override_configuration: Params::override_configuration,
|
|
174
166
|
?data_automation_library_configuration: {
|
|
175
167
|
libraries: Array[
|
|
@@ -548,15 +540,7 @@ module Aws
|
|
|
548
540
|
?project_stage: ("DEVELOPMENT" | "LIVE"),
|
|
549
541
|
?project_description: ::String,
|
|
550
542
|
standard_output_configuration: Params::standard_output_configuration,
|
|
551
|
-
?custom_output_configuration:
|
|
552
|
-
blueprints: Array[
|
|
553
|
-
{
|
|
554
|
-
blueprint_arn: ::String,
|
|
555
|
-
blueprint_version: ::String?,
|
|
556
|
-
blueprint_stage: ("DEVELOPMENT" | "LIVE")?
|
|
557
|
-
}
|
|
558
|
-
]?
|
|
559
|
-
},
|
|
543
|
+
?custom_output_configuration: Params::custom_output_configuration,
|
|
560
544
|
?override_configuration: Params::override_configuration,
|
|
561
545
|
?data_automation_library_configuration: {
|
|
562
546
|
libraries: Array[
|
data/sig/params.rbs
CHANGED
|
@@ -108,6 +108,25 @@ module Aws
|
|
|
108
108
|
audio: Params::audio_standard_output_configuration?
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
+
type custom_output_configuration = {
|
|
112
|
+
blueprints: Array[
|
|
113
|
+
{
|
|
114
|
+
blueprint_arn: ::String,
|
|
115
|
+
blueprint_version: ::String?,
|
|
116
|
+
blueprint_stage: ("DEVELOPMENT" | "LIVE")?
|
|
117
|
+
}
|
|
118
|
+
]?,
|
|
119
|
+
document: {
|
|
120
|
+
fallback_blueprints: Array[
|
|
121
|
+
{
|
|
122
|
+
blueprint_arn: ::String,
|
|
123
|
+
blueprint_version: ::String?,
|
|
124
|
+
blueprint_stage: ("DEVELOPMENT" | "LIVE")?
|
|
125
|
+
}
|
|
126
|
+
]?
|
|
127
|
+
}?
|
|
128
|
+
}
|
|
129
|
+
|
|
111
130
|
type sensitive_data_configuration = {
|
|
112
131
|
detection_mode: ("DETECTION" | "DETECTION_AND_REDACTION"),
|
|
113
132
|
detection_scope: Array[("STANDARD" | "CUSTOM")]?,
|
data/sig/types.rbs
CHANGED
|
@@ -200,6 +200,7 @@ module Aws::BedrockDataAutomation
|
|
|
200
200
|
|
|
201
201
|
class CustomOutputConfiguration
|
|
202
202
|
attr_accessor blueprints: ::Array[Types::BlueprintItem]
|
|
203
|
+
attr_accessor document: Types::DocumentCustomOutputConfiguration
|
|
203
204
|
SENSITIVE: []
|
|
204
205
|
end
|
|
205
206
|
|
|
@@ -345,6 +346,11 @@ module Aws::BedrockDataAutomation
|
|
|
345
346
|
SENSITIVE: []
|
|
346
347
|
end
|
|
347
348
|
|
|
349
|
+
class DocumentCustomOutputConfiguration
|
|
350
|
+
attr_accessor fallback_blueprints: ::Array[Types::BlueprintItem]
|
|
351
|
+
SENSITIVE: []
|
|
352
|
+
end
|
|
353
|
+
|
|
348
354
|
class DocumentExtractionGranularity
|
|
349
355
|
attr_accessor types: ::Array[("DOCUMENT" | "PAGE" | "ELEMENT" | "WORD" | "LINE")]
|
|
350
356
|
SENSITIVE: []
|