aws-sdk-bedrockdataautomationruntime 1.21.0 → 1.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ed2879458ed8723a4af0519884d161dc0f2de4d7b2c6e68af3adf2acbc14a5f
4
- data.tar.gz: 3fc50e417dee6bbabde682f9e8a7d68cfe73cc5b3ec0ec5eb8457297bc4b14e9
3
+ metadata.gz: 35c7f45793d2b156dba8481ea5e77cb5a535e22d4b17fd35abd4ab6b19d8673f
4
+ data.tar.gz: 44f6f304771d3d566efdf9fadd6f212ccc033225a8a9f45c55598f953296cfcf
5
5
  SHA512:
6
- metadata.gz: c9545859943abcd8927390320abd826164c5a5e8e4dc14eaa57a786a6ac1a71f42b93d4d267c53e5735812adb97fd685ca71526343a1a44ef30a007bb169e503
7
- data.tar.gz: f17811b60a6e62520672261965f1e37f8996d4d57193b4c1aa3558ab018bc0b85bc63558031486e548edf8d1e2c4d632a9e9f9c20071926eb73e8d12c8e6b4d7
6
+ metadata.gz: 9496ff560d0fbe11d6d3050298b4fe0dae1070611ca6e67b896587b95307bce74a357d59b8bddeccba8898c15f86bd0f698534477390c8a3abe5725f9d6ce98e
7
+ data.tar.gz: 5aef3fe1cfb631005e169f5ccd70a81ed1b3e54006332a157372b1ace34b77ed972d72009ce6308afe591b9a4c5b2838af32483f4bcc61a376d62d14a94f27e7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2026-02-06)
5
+ ------------------
6
+
7
+ * Feature - Add OutputConfiguration to InvokeDataAutomation input and output to support S3 output
8
+
4
9
  1.21.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -540,8 +540,12 @@ module Aws::BedrockDataAutomationRuntime
540
540
  # @option params [Types::EncryptionConfiguration] :encryption_configuration
541
541
  # Encryption configuration.
542
542
  #
543
+ # @option params [Types::OutputConfiguration] :output_configuration
544
+ # Output configuration.
545
+ #
543
546
  # @return [Types::InvokeDataAutomationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
544
547
  #
548
+ # * {Types::InvokeDataAutomationResponse#output_configuration #output_configuration} => Types::OutputConfiguration
545
549
  # * {Types::InvokeDataAutomationResponse#semantic_modality #semantic_modality} => String
546
550
  # * {Types::InvokeDataAutomationResponse#output_segments #output_segments} => Array<Types::OutputSegment>
547
551
  #
@@ -570,10 +574,14 @@ module Aws::BedrockDataAutomationRuntime
570
574
  # "EncryptionContextKey" => "EncryptionContextValue",
571
575
  # },
572
576
  # },
577
+ # output_configuration: {
578
+ # s3_uri: "S3Uri", # required
579
+ # },
573
580
  # })
574
581
  #
575
582
  # @example Response structure
576
583
  #
584
+ # resp.output_configuration.s3_uri #=> String
577
585
  # resp.semantic_modality #=> String, one of "DOCUMENT", "IMAGE", "AUDIO", "VIDEO"
578
586
  # resp.output_segments #=> Array
579
587
  # resp.output_segments[0].custom_output_status #=> String, one of "MATCH", "NO_MATCH"
@@ -794,7 +802,7 @@ module Aws::BedrockDataAutomationRuntime
794
802
  tracer: tracer
795
803
  )
796
804
  context[:gem_name] = 'aws-sdk-bedrockdataautomationruntime'
797
- context[:gem_version] = '1.21.0'
805
+ context[:gem_version] = '1.22.0'
798
806
  Seahorse::Client::Request.new(handlers, context)
799
807
  end
800
808
 
@@ -144,10 +144,12 @@ module Aws::BedrockDataAutomationRuntime
144
144
  InvokeDataAutomationRequest.add_member(:blueprints, Shapes::ShapeRef.new(shape: BlueprintList, location_name: "blueprints"))
145
145
  InvokeDataAutomationRequest.add_member(:data_automation_profile_arn, Shapes::ShapeRef.new(shape: DataAutomationProfileArn, required: true, location_name: "dataAutomationProfileArn"))
146
146
  InvokeDataAutomationRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
147
+ InvokeDataAutomationRequest.add_member(:output_configuration, Shapes::ShapeRef.new(shape: OutputConfiguration, location_name: "outputConfiguration"))
147
148
  InvokeDataAutomationRequest.struct_class = Types::InvokeDataAutomationRequest
148
149
 
150
+ InvokeDataAutomationResponse.add_member(:output_configuration, Shapes::ShapeRef.new(shape: OutputConfiguration, location_name: "outputConfiguration"))
149
151
  InvokeDataAutomationResponse.add_member(:semantic_modality, Shapes::ShapeRef.new(shape: SemanticModality, required: true, location_name: "semanticModality"))
150
- InvokeDataAutomationResponse.add_member(:output_segments, Shapes::ShapeRef.new(shape: OutputSegmentList, required: true, location_name: "outputSegments"))
152
+ InvokeDataAutomationResponse.add_member(:output_segments, Shapes::ShapeRef.new(shape: OutputSegmentList, location_name: "outputSegments"))
151
153
  InvokeDataAutomationResponse.struct_class = Types::InvokeDataAutomationResponse
152
154
 
153
155
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TaggableResourceArn, required: true, location_name: "resourceARN"))
@@ -297,6 +297,10 @@ module Aws::BedrockDataAutomationRuntime
297
297
  # Encryption configuration.
298
298
  # @return [Types::EncryptionConfiguration]
299
299
  #
300
+ # @!attribute [rw] output_configuration
301
+ # Output configuration.
302
+ # @return [Types::OutputConfiguration]
303
+ #
300
304
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-runtime-2024-06-13/InvokeDataAutomationRequest AWS API Documentation
301
305
  #
302
306
  class InvokeDataAutomationRequest < Struct.new(
@@ -304,13 +308,18 @@ module Aws::BedrockDataAutomationRuntime
304
308
  :data_automation_configuration,
305
309
  :blueprints,
306
310
  :data_automation_profile_arn,
307
- :encryption_configuration)
311
+ :encryption_configuration,
312
+ :output_configuration)
308
313
  SENSITIVE = []
309
314
  include Aws::Structure
310
315
  end
311
316
 
312
317
  # Invoke Data Automation Response
313
318
  #
319
+ # @!attribute [rw] output_configuration
320
+ # Output configuration
321
+ # @return [Types::OutputConfiguration]
322
+ #
314
323
  # @!attribute [rw] semantic_modality
315
324
  # Detected semantic modality
316
325
  # @return [String]
@@ -322,6 +331,7 @@ module Aws::BedrockDataAutomationRuntime
322
331
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-runtime-2024-06-13/InvokeDataAutomationResponse AWS API Documentation
323
332
  #
324
333
  class InvokeDataAutomationResponse < Struct.new(
334
+ :output_configuration,
325
335
  :semantic_modality,
326
336
  :output_segments)
327
337
  SENSITIVE = []
@@ -54,7 +54,7 @@ module Aws::BedrockDataAutomationRuntime
54
54
  autoload :EndpointProvider, 'aws-sdk-bedrockdataautomationruntime/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bedrockdataautomationruntime/endpoints'
56
56
 
57
- GEM_VERSION = '1.21.0'
57
+ GEM_VERSION = '1.22.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -97,6 +97,7 @@ module Aws
97
97
 
98
98
  interface _InvokeDataAutomationResponseSuccess
99
99
  include ::Seahorse::Client::_ResponseSuccess[Types::InvokeDataAutomationResponse]
100
+ def output_configuration: () -> Types::OutputConfiguration
100
101
  def semantic_modality: () -> ("DOCUMENT" | "IMAGE" | "AUDIO" | "VIDEO")
101
102
  def output_segments: () -> ::Array[Types::OutputSegment]
102
103
  end
@@ -121,6 +122,9 @@ module Aws
121
122
  ?encryption_configuration: {
122
123
  kms_key_id: ::String,
123
124
  kms_encryption_context: Hash[::String, ::String]?
125
+ },
126
+ ?output_configuration: {
127
+ s3_uri: ::String
124
128
  }
125
129
  ) -> _InvokeDataAutomationResponseSuccess
126
130
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InvokeDataAutomationResponseSuccess
data/sig/types.rbs CHANGED
@@ -93,10 +93,12 @@ module Aws::BedrockDataAutomationRuntime
93
93
  attr_accessor blueprints: ::Array[Types::Blueprint]
94
94
  attr_accessor data_automation_profile_arn: ::String
95
95
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
96
+ attr_accessor output_configuration: Types::OutputConfiguration
96
97
  SENSITIVE: []
97
98
  end
98
99
 
99
100
  class InvokeDataAutomationResponse
101
+ attr_accessor output_configuration: Types::OutputConfiguration
100
102
  attr_accessor semantic_modality: ("DOCUMENT" | "IMAGE" | "AUDIO" | "VIDEO")
101
103
  attr_accessor output_segments: ::Array[Types::OutputSegment]
102
104
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockdataautomationruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services