aws-sdk-bedrockagentcore 1.41.0 → 1.42.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: 044ec81afe6730941e647120f5a6738a075bcabfbf8653cd11b06a5584e6283c
4
- data.tar.gz: 8ac07b9552d67a47b2f22fc525ba1fdcde89aafb2a3d3fbad5d6213a1fdebb0f
3
+ metadata.gz: cc21592e86fb5ec60e6f1133ce1d2e219d8d0a03e627e23782d3f7112e60c935
4
+ data.tar.gz: 85d9c0b53ed126574e30a107557200269a2dcf50e1f61943d4e32b873fe9f5b7
5
5
  SHA512:
6
- metadata.gz: 932bcbcf525d9a97a097bed90c143f5a3f448e230e4494c70d1d9314178b0b77fcd9d3f462ca020aa9bd98f663ca58396138e45dbbcbb0745609df63f35cdbbc
7
- data.tar.gz: 9de3cc48449b0bc9c031f066bd743217860fc82854b9d88b5a47fc6f9060a3a5b9dd465264b6b854492e07831c7314e5fe3f7217c9f17e85fe08021581048349
6
+ metadata.gz: 607c7672dfe741e7046b88c92a790612b56177ee6c395a51796e79c015cef70d631a1eb2740ddb8e0fe70195877a3b81edc9bb7e51b3a6502fba8a841f505c8c
7
+ data.tar.gz: f1fa0fe39bd5ed468e97f1c960e6dc2baab43643a361f216d8938023885a64235ad13128072cae6ee23f49f90330305f43306cc1804dc0babbd7bcacb5b69610
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2026-06-22)
5
+ ------------------
6
+
7
+ * Feature - Adds an optional extractionMode field to CreateEvent. SKIP retains the event in short-term memory but excludes it from long-term memory extraction.
8
+
4
9
  1.41.0 (2026-06-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -867,6 +867,12 @@ module Aws::BedrockAgentCore
867
867
  # @option params [Hash<String,Types::MetadataValue>] :metadata
868
868
  # The key-value metadata to attach to the event.
869
869
  #
870
+ # @option params [String] :extraction_mode
871
+ # Controls long-term memory extraction for this event. When set to
872
+ # `SKIP`, the event is stored in short-term memory but is excluded from
873
+ # long-term memory extraction. If not specified, the event is processed
874
+ # for extraction as usual.
875
+ #
870
876
  # @return [Types::CreateEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
871
877
  #
872
878
  # * {Types::CreateEventOutput#event #event} => Types::Event
@@ -900,6 +906,7 @@ module Aws::BedrockAgentCore
900
906
  # string_value: "MetadataValueStringValueString",
901
907
  # },
902
908
  # },
909
+ # extraction_mode: "SKIP", # accepts SKIP
903
910
  # })
904
911
  #
905
912
  # @example Response structure
@@ -6240,7 +6247,7 @@ module Aws::BedrockAgentCore
6240
6247
  tracer: tracer
6241
6248
  )
6242
6249
  context[:gem_name] = 'aws-sdk-bedrockagentcore'
6243
- context[:gem_version] = '1.41.0'
6250
+ context[:gem_version] = '1.42.0'
6244
6251
  Seahorse::Client::Request.new(handlers, context)
6245
6252
  end
6246
6253
 
@@ -230,6 +230,7 @@ module Aws::BedrockAgentCore
230
230
  ExtractionJobMetadata = Shapes::StructureShape.new(name: 'ExtractionJobMetadata')
231
231
  ExtractionJobMetadataList = Shapes::ListShape.new(name: 'ExtractionJobMetadataList')
232
232
  ExtractionJobStatus = Shapes::StringShape.new(name: 'ExtractionJobStatus')
233
+ ExtractionMode = Shapes::StringShape.new(name: 'ExtractionMode')
233
234
  FailureAnalysisResultContent = Shapes::StructureShape.new(name: 'FailureAnalysisResultContent')
234
235
  FailureCategoryCluster = Shapes::StructureShape.new(name: 'FailureCategoryCluster')
235
236
  FailureCategoryClusterList = Shapes::ListShape.new(name: 'FailureCategoryClusterList')
@@ -1163,6 +1164,7 @@ module Aws::BedrockAgentCore
1163
1164
  CreateEventInput.add_member(:branch, Shapes::ShapeRef.new(shape: Branch, location_name: "branch"))
1164
1165
  CreateEventInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1165
1166
  CreateEventInput.add_member(:metadata, Shapes::ShapeRef.new(shape: MetadataMap, location_name: "metadata"))
1167
+ CreateEventInput.add_member(:extraction_mode, Shapes::ShapeRef.new(shape: ExtractionMode, location_name: "extractionMode"))
1166
1168
  CreateEventInput.struct_class = Types::CreateEventInput
1167
1169
 
1168
1170
  CreateEventOutput.add_member(:event, Shapes::ShapeRef.new(shape: Event, required: true, location_name: "event"))
@@ -1665,6 +1665,13 @@ module Aws::BedrockAgentCore
1665
1665
  # The key-value metadata to attach to the event.
1666
1666
  # @return [Hash<String,Types::MetadataValue>]
1667
1667
  #
1668
+ # @!attribute [rw] extraction_mode
1669
+ # Controls long-term memory extraction for this event. When set to
1670
+ # `SKIP`, the event is stored in short-term memory but is excluded
1671
+ # from long-term memory extraction. If not specified, the event is
1672
+ # processed for extraction as usual.
1673
+ # @return [String]
1674
+ #
1668
1675
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-2024-02-28/CreateEventInput AWS API Documentation
1669
1676
  #
1670
1677
  class CreateEventInput < Struct.new(
@@ -1675,7 +1682,8 @@ module Aws::BedrockAgentCore
1675
1682
  :payload,
1676
1683
  :branch,
1677
1684
  :client_token,
1678
- :metadata)
1685
+ :metadata,
1686
+ :extraction_mode)
1679
1687
  SENSITIVE = []
1680
1688
  include Aws::Structure
1681
1689
  end
@@ -56,7 +56,7 @@ module Aws::BedrockAgentCore
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcore/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-bedrockagentcore/event_streams'
58
58
 
59
- GEM_VERSION = '1.41.0'
59
+ GEM_VERSION = '1.42.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -232,7 +232,8 @@ module Aws
232
232
  ?client_token: ::String,
233
233
  ?metadata: Hash[::String, {
234
234
  string_value: ::String?
235
- }]
235
+ }],
236
+ ?extraction_mode: ("SKIP")
236
237
  ) -> _CreateEventResponseSuccess
237
238
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventResponseSuccess
238
239
 
data/sig/types.rbs CHANGED
@@ -507,6 +507,7 @@ module Aws::BedrockAgentCore
507
507
  attr_accessor branch: Types::Branch
508
508
  attr_accessor client_token: ::String
509
509
  attr_accessor metadata: ::Hash[::String, Types::MetadataValue]
510
+ attr_accessor extraction_mode: ("SKIP")
510
511
  SENSITIVE: []
511
512
  end
512
513
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services