aws-sdk-bedrockagentcorecontrol 1.25.0 → 1.26.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: 535aa558578e5bf5eba66cb3dacc184bb491a95afdb9caf7d9582dd2dfa53bf1
4
- data.tar.gz: 51eaaf8992eefdc63dc206d36e2f241aaf3e3aac66bf083351f5f78cb56a4b46
3
+ metadata.gz: 7cfe8ac00cdd47ad0c7a1dfc42b6a0fa7453b9fb32709210fd3a5eac1598a6ea
4
+ data.tar.gz: 85208fc15cfc5e0b2cfb3f5861d80e553467cb11112b013460fe64ccce4310ca
5
5
  SHA512:
6
- metadata.gz: 79305777422d28a8c86be4db14c47e00e10d1bd525dc3932f74911e49a98e932366316a97081556dc0208f6864b230f2bcd4a20602e52275009fc1f81eb598d2
7
- data.tar.gz: 54d70c7cf84a22722fb7961fe37981d7d504ed5512e22785d5eeebcf609e9dcb6e3648322af1669f69d23089aee2c1674b994cc7532fbc31f50f7ac086eb2ec5
6
+ metadata.gz: e9f3593bb1d2ab80e47479c740d70e875a7a46f2f9493327e6a4d82aaf601f169091a4a71364cf8b31d28f351038cb3996c3f171a41ffa6b67f76876284b9406
7
+ data.tar.gz: 0d035d4b40854b48eaca6b0515dea9265f80bef7d34f8393bbb26c732a2b8e157d3d778186c7d136da181b4a8d1bbfb3dcad93bc54109e7e1272bc255cb1a503
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2026-03-06)
5
+ ------------------
6
+
7
+ * Feature - Adds support for streaming memory records in AgentCore Memory
8
+
4
9
  1.25.0 (2026-03-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -1570,6 +1570,9 @@ module Aws::BedrockAgentCoreControl
1570
1570
  # The memory strategies to use for this memory. Strategies define how
1571
1571
  # information is extracted, processed, and consolidated.
1572
1572
  #
1573
+ # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
1574
+ # Configuration for streaming memory record data to external resources.
1575
+ #
1573
1576
  # @option params [Hash<String,String>] :tags
1574
1577
  # A map of tag keys and values to assign to an AgentCore Memory. Tags
1575
1578
  # enable you to categorize your resources in different ways, for
@@ -1683,6 +1686,21 @@ module Aws::BedrockAgentCoreControl
1683
1686
  # },
1684
1687
  # },
1685
1688
  # ],
1689
+ # stream_delivery_resources: {
1690
+ # resources: [ # required
1691
+ # {
1692
+ # kinesis: {
1693
+ # data_stream_arn: "Arn", # required
1694
+ # content_configurations: [ # required
1695
+ # {
1696
+ # type: "MEMORY_RECORDS", # required, accepts MEMORY_RECORDS
1697
+ # level: "METADATA_ONLY", # accepts METADATA_ONLY, FULL_CONTENT
1698
+ # },
1699
+ # ],
1700
+ # },
1701
+ # },
1702
+ # ],
1703
+ # },
1686
1704
  # tags: {
1687
1705
  # "TagKey" => "TagValue",
1688
1706
  # },
@@ -1739,6 +1757,11 @@ module Aws::BedrockAgentCoreControl
1739
1757
  # resp.memory.strategies[0].created_at #=> Time
1740
1758
  # resp.memory.strategies[0].updated_at #=> Time
1741
1759
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
1760
+ # resp.memory.stream_delivery_resources.resources #=> Array
1761
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
1762
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
1763
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
1764
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].level #=> String, one of "METADATA_ONLY", "FULL_CONTENT"
1742
1765
  #
1743
1766
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateMemory AWS API Documentation
1744
1767
  #
@@ -3575,6 +3598,11 @@ module Aws::BedrockAgentCoreControl
3575
3598
  # resp.memory.strategies[0].created_at #=> Time
3576
3599
  # resp.memory.strategies[0].updated_at #=> Time
3577
3600
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
3601
+ # resp.memory.stream_delivery_resources.resources #=> Array
3602
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
3603
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
3604
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
3605
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].level #=> String, one of "METADATA_ONLY", "FULL_CONTENT"
3578
3606
  #
3579
3607
  #
3580
3608
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6145,6 +6173,9 @@ module Aws::BedrockAgentCoreControl
6145
6173
  # @option params [Types::ModifyMemoryStrategies] :memory_strategies
6146
6174
  # The memory strategies to add, modify, or delete.
6147
6175
  #
6176
+ # @option params [Types::StreamDeliveryResources] :stream_delivery_resources
6177
+ # Configuration for streaming memory record data to external resources.
6178
+ #
6148
6179
  # @return [Types::UpdateMemoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6149
6180
  #
6150
6181
  # * {Types::UpdateMemoryOutput#memory #memory} => Types::Memory
@@ -6336,6 +6367,21 @@ module Aws::BedrockAgentCoreControl
6336
6367
  # },
6337
6368
  # ],
6338
6369
  # },
6370
+ # stream_delivery_resources: {
6371
+ # resources: [ # required
6372
+ # {
6373
+ # kinesis: {
6374
+ # data_stream_arn: "Arn", # required
6375
+ # content_configurations: [ # required
6376
+ # {
6377
+ # type: "MEMORY_RECORDS", # required, accepts MEMORY_RECORDS
6378
+ # level: "METADATA_ONLY", # accepts METADATA_ONLY, FULL_CONTENT
6379
+ # },
6380
+ # ],
6381
+ # },
6382
+ # },
6383
+ # ],
6384
+ # },
6339
6385
  # })
6340
6386
  #
6341
6387
  # @example Response structure
@@ -6389,6 +6435,11 @@ module Aws::BedrockAgentCoreControl
6389
6435
  # resp.memory.strategies[0].created_at #=> Time
6390
6436
  # resp.memory.strategies[0].updated_at #=> Time
6391
6437
  # resp.memory.strategies[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
6438
+ # resp.memory.stream_delivery_resources.resources #=> Array
6439
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.data_stream_arn #=> String
6440
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations #=> Array
6441
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].type #=> String, one of "MEMORY_RECORDS"
6442
+ # resp.memory.stream_delivery_resources.resources[0].kinesis.content_configurations[0].level #=> String, one of "METADATA_ONLY", "FULL_CONTENT"
6392
6443
  #
6393
6444
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateMemory AWS API Documentation
6394
6445
  #
@@ -6900,7 +6951,7 @@ module Aws::BedrockAgentCoreControl
6900
6951
  tracer: tracer
6901
6952
  )
6902
6953
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
6903
- context[:gem_version] = '1.25.0'
6954
+ context[:gem_version] = '1.26.0'
6904
6955
  Seahorse::Client::Request.new(handlers, context)
6905
6956
  end
6906
6957
 
@@ -111,6 +111,9 @@ module Aws::BedrockAgentCoreControl
111
111
  ConsolidationConfiguration = Shapes::UnionShape.new(name: 'ConsolidationConfiguration')
112
112
  ContainerConfiguration = Shapes::StructureShape.new(name: 'ContainerConfiguration')
113
113
  Content = Shapes::UnionShape.new(name: 'Content')
114
+ ContentConfiguration = Shapes::StructureShape.new(name: 'ContentConfiguration')
115
+ ContentLevel = Shapes::StringShape.new(name: 'ContentLevel')
116
+ ContentType = Shapes::StringShape.new(name: 'ContentType')
114
117
  CreateAgentRuntimeEndpointRequest = Shapes::StructureShape.new(name: 'CreateAgentRuntimeEndpointRequest')
115
118
  CreateAgentRuntimeEndpointResponse = Shapes::StructureShape.new(name: 'CreateAgentRuntimeEndpointResponse')
116
119
  CreateAgentRuntimeRequest = Shapes::StructureShape.new(name: 'CreateAgentRuntimeRequest')
@@ -333,6 +336,8 @@ module Aws::BedrockAgentCoreControl
333
336
  InvocationConfigurationInputPayloadDeliveryBucketNameString = Shapes::StringShape.new(name: 'InvocationConfigurationInputPayloadDeliveryBucketNameString')
334
337
  IssuerUrlType = Shapes::StringShape.new(name: 'IssuerUrlType')
335
338
  KeyType = Shapes::StringShape.new(name: 'KeyType')
339
+ KinesisResource = Shapes::StructureShape.new(name: 'KinesisResource')
340
+ KinesisResourceContentConfigurationsList = Shapes::ListShape.new(name: 'KinesisResourceContentConfigurationsList')
336
341
  KmsConfiguration = Shapes::StructureShape.new(name: 'KmsConfiguration')
337
342
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
338
343
  LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
@@ -558,6 +563,9 @@ module Aws::BedrockAgentCoreControl
558
563
  StatusReason = Shapes::StringShape.new(name: 'StatusReason')
559
564
  StatusReasons = Shapes::ListShape.new(name: 'StatusReasons')
560
565
  StrategyConfiguration = Shapes::StructureShape.new(name: 'StrategyConfiguration')
566
+ StreamDeliveryResource = Shapes::UnionShape.new(name: 'StreamDeliveryResource')
567
+ StreamDeliveryResources = Shapes::StructureShape.new(name: 'StreamDeliveryResources')
568
+ StreamDeliveryResourcesList = Shapes::ListShape.new(name: 'StreamDeliveryResourcesList')
561
569
  String = Shapes::StringShape.new(name: 'String')
562
570
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
563
571
  Subnets = Shapes::ListShape.new(name: 'Subnets')
@@ -882,6 +890,10 @@ module Aws::BedrockAgentCoreControl
882
890
  Content.add_member_subclass(:unknown, Types::Content::Unknown)
883
891
  Content.struct_class = Types::Content
884
892
 
893
+ ContentConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: ContentType, required: true, location_name: "type"))
894
+ ContentConfiguration.add_member(:level, Shapes::ShapeRef.new(shape: ContentLevel, location_name: "level"))
895
+ ContentConfiguration.struct_class = Types::ContentConfiguration
896
+
885
897
  CreateAgentRuntimeEndpointRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
886
898
  CreateAgentRuntimeEndpointRequest.add_member(:name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "name"))
887
899
  CreateAgentRuntimeEndpointRequest.add_member(:agent_runtime_version, Shapes::ShapeRef.new(shape: AgentRuntimeVersion, location_name: "agentRuntimeVersion"))
@@ -1053,6 +1065,7 @@ module Aws::BedrockAgentCoreControl
1053
1065
  CreateMemoryInput.add_member(:memory_execution_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "memoryExecutionRoleArn"))
1054
1066
  CreateMemoryInput.add_member(:event_expiry_duration, Shapes::ShapeRef.new(shape: CreateMemoryInputEventExpiryDurationInteger, required: true, location_name: "eventExpiryDuration"))
1055
1067
  CreateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: MemoryStrategyInputList, location_name: "memoryStrategies"))
1068
+ CreateMemoryInput.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
1056
1069
  CreateMemoryInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
1057
1070
  CreateMemoryInput.struct_class = Types::CreateMemoryInput
1058
1071
 
@@ -1885,6 +1898,12 @@ module Aws::BedrockAgentCoreControl
1885
1898
  InvocationConfigurationInput.add_member(:payload_delivery_bucket_name, Shapes::ShapeRef.new(shape: InvocationConfigurationInputPayloadDeliveryBucketNameString, required: true, location_name: "payloadDeliveryBucketName"))
1886
1899
  InvocationConfigurationInput.struct_class = Types::InvocationConfigurationInput
1887
1900
 
1901
+ KinesisResource.add_member(:data_stream_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "dataStreamArn"))
1902
+ KinesisResource.add_member(:content_configurations, Shapes::ShapeRef.new(shape: KinesisResourceContentConfigurationsList, required: true, location_name: "contentConfigurations"))
1903
+ KinesisResource.struct_class = Types::KinesisResource
1904
+
1905
+ KinesisResourceContentConfigurationsList.member = Shapes::ShapeRef.new(shape: ContentConfiguration)
1906
+
1888
1907
  KmsConfiguration.add_member(:key_type, Shapes::ShapeRef.new(shape: KeyType, required: true, location_name: "keyType"))
1889
1908
  KmsConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
1890
1909
  KmsConfiguration.struct_class = Types::KmsConfiguration
@@ -2111,6 +2130,7 @@ module Aws::BedrockAgentCoreControl
2111
2130
  Memory.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
2112
2131
  Memory.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
2113
2132
  Memory.add_member(:strategies, Shapes::ShapeRef.new(shape: MemoryStrategyList, location_name: "strategies"))
2133
+ Memory.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
2114
2134
  Memory.struct_class = Types::Memory
2115
2135
 
2116
2136
  MemoryStrategy.add_member(:strategy_id, Shapes::ShapeRef.new(shape: MemoryStrategyId, required: true, location_name: "strategyId"))
@@ -2581,6 +2601,17 @@ module Aws::BedrockAgentCoreControl
2581
2601
  StrategyConfiguration.add_member(:self_managed_configuration, Shapes::ShapeRef.new(shape: SelfManagedConfiguration, location_name: "selfManagedConfiguration"))
2582
2602
  StrategyConfiguration.struct_class = Types::StrategyConfiguration
2583
2603
 
2604
+ StreamDeliveryResource.add_member(:kinesis, Shapes::ShapeRef.new(shape: KinesisResource, location_name: "kinesis"))
2605
+ StreamDeliveryResource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2606
+ StreamDeliveryResource.add_member_subclass(:kinesis, Types::StreamDeliveryResource::Kinesis)
2607
+ StreamDeliveryResource.add_member_subclass(:unknown, Types::StreamDeliveryResource::Unknown)
2608
+ StreamDeliveryResource.struct_class = Types::StreamDeliveryResource
2609
+
2610
+ StreamDeliveryResources.add_member(:resources, Shapes::ShapeRef.new(shape: StreamDeliveryResourcesList, required: true, location_name: "resources"))
2611
+ StreamDeliveryResources.struct_class = Types::StreamDeliveryResources
2612
+
2613
+ StreamDeliveryResourcesList.member = Shapes::ShapeRef.new(shape: StreamDeliveryResource)
2614
+
2584
2615
  Subnets.member = Shapes::ShapeRef.new(shape: SubnetId)
2585
2616
 
2586
2617
  SummaryConsolidationOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
@@ -2831,6 +2862,7 @@ module Aws::BedrockAgentCoreControl
2831
2862
  UpdateMemoryInput.add_member(:event_expiry_duration, Shapes::ShapeRef.new(shape: UpdateMemoryInputEventExpiryDurationInteger, location_name: "eventExpiryDuration"))
2832
2863
  UpdateMemoryInput.add_member(:memory_execution_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "memoryExecutionRoleArn"))
2833
2864
  UpdateMemoryInput.add_member(:memory_strategies, Shapes::ShapeRef.new(shape: ModifyMemoryStrategies, location_name: "memoryStrategies"))
2865
+ UpdateMemoryInput.add_member(:stream_delivery_resources, Shapes::ShapeRef.new(shape: StreamDeliveryResources, location_name: "streamDeliveryResources"))
2834
2866
  UpdateMemoryInput.struct_class = Types::UpdateMemoryInput
2835
2867
 
2836
2868
  UpdateMemoryOutput.add_member(:memory, Shapes::ShapeRef.new(shape: Memory, location_name: "memory"))
@@ -972,6 +972,25 @@ module Aws::BedrockAgentCoreControl
972
972
  class Unknown < Content; end
973
973
  end
974
974
 
975
+ # Defines what content to stream and at what level of detail.
976
+ #
977
+ # @!attribute [rw] type
978
+ # Type of content to stream.
979
+ # @return [String]
980
+ #
981
+ # @!attribute [rw] level
982
+ # Level of detail for streamed content.
983
+ # @return [String]
984
+ #
985
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ContentConfiguration AWS API Documentation
986
+ #
987
+ class ContentConfiguration < Struct.new(
988
+ :type,
989
+ :level)
990
+ SENSITIVE = []
991
+ include Aws::Structure
992
+ end
993
+
975
994
  # @!attribute [rw] agent_runtime_id
976
995
  # The unique identifier of the AgentCore Runtime to create an endpoint
977
996
  # for.
@@ -1918,6 +1937,11 @@ module Aws::BedrockAgentCoreControl
1918
1937
  # information is extracted, processed, and consolidated.
1919
1938
  # @return [Array<Types::MemoryStrategyInput>]
1920
1939
  #
1940
+ # @!attribute [rw] stream_delivery_resources
1941
+ # Configuration for streaming memory record data to external
1942
+ # resources.
1943
+ # @return [Types::StreamDeliveryResources]
1944
+ #
1921
1945
  # @!attribute [rw] tags
1922
1946
  # A map of tag keys and values to assign to an AgentCore Memory. Tags
1923
1947
  # enable you to categorize your resources in different ways, for
@@ -1934,6 +1958,7 @@ module Aws::BedrockAgentCoreControl
1934
1958
  :memory_execution_role_arn,
1935
1959
  :event_expiry_duration,
1936
1960
  :memory_strategies,
1961
+ :stream_delivery_resources,
1937
1962
  :tags)
1938
1963
  SENSITIVE = [:description]
1939
1964
  include Aws::Structure
@@ -5881,6 +5906,25 @@ module Aws::BedrockAgentCoreControl
5881
5906
  include Aws::Structure
5882
5907
  end
5883
5908
 
5909
+ # Configuration for Kinesis Data Stream delivery.
5910
+ #
5911
+ # @!attribute [rw] data_stream_arn
5912
+ # ARN of the Kinesis Data Stream.
5913
+ # @return [String]
5914
+ #
5915
+ # @!attribute [rw] content_configurations
5916
+ # Content configurations for stream delivery.
5917
+ # @return [Array<Types::ContentConfiguration>]
5918
+ #
5919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/KinesisResource AWS API Documentation
5920
+ #
5921
+ class KinesisResource < Struct.new(
5922
+ :data_stream_arn,
5923
+ :content_configurations)
5924
+ SENSITIVE = []
5925
+ include Aws::Structure
5926
+ end
5927
+
5884
5928
  # Contains the KMS configuration for a resource.
5885
5929
  #
5886
5930
  # @!attribute [rw] key_type
@@ -6971,6 +7015,11 @@ module Aws::BedrockAgentCoreControl
6971
7015
  # The list of memory strategies associated with this memory.
6972
7016
  # @return [Array<Types::MemoryStrategy>]
6973
7017
  #
7018
+ # @!attribute [rw] stream_delivery_resources
7019
+ # Configuration for streaming memory record data to external
7020
+ # resources.
7021
+ # @return [Types::StreamDeliveryResources]
7022
+ #
6974
7023
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Memory AWS API Documentation
6975
7024
  #
6976
7025
  class Memory < Struct.new(
@@ -6985,7 +7034,8 @@ module Aws::BedrockAgentCoreControl
6985
7034
  :failure_reason,
6986
7035
  :created_at,
6987
7036
  :updated_at,
6988
- :strategies)
7037
+ :strategies,
7038
+ :stream_delivery_resources)
6989
7039
  SENSITIVE = [:description]
6990
7040
  include Aws::Structure
6991
7041
  end
@@ -9031,6 +9081,43 @@ module Aws::BedrockAgentCoreControl
9031
9081
  include Aws::Structure
9032
9082
  end
9033
9083
 
9084
+ # Supported stream delivery resource types.
9085
+ #
9086
+ # @note StreamDeliveryResource is a union - when making an API calls you must set exactly one of the members.
9087
+ #
9088
+ # @note StreamDeliveryResource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StreamDeliveryResource corresponding to the set member.
9089
+ #
9090
+ # @!attribute [rw] kinesis
9091
+ # Kinesis Data Stream configuration.
9092
+ # @return [Types::KinesisResource]
9093
+ #
9094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StreamDeliveryResource AWS API Documentation
9095
+ #
9096
+ class StreamDeliveryResource < Struct.new(
9097
+ :kinesis,
9098
+ :unknown)
9099
+ SENSITIVE = []
9100
+ include Aws::Structure
9101
+ include Aws::Structure::Union
9102
+
9103
+ class Kinesis < StreamDeliveryResource; end
9104
+ class Unknown < StreamDeliveryResource; end
9105
+ end
9106
+
9107
+ # Configuration for streaming memory record data to external resources.
9108
+ #
9109
+ # @!attribute [rw] resources
9110
+ # List of stream delivery resource configurations.
9111
+ # @return [Array<Types::StreamDeliveryResource>]
9112
+ #
9113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StreamDeliveryResources AWS API Documentation
9114
+ #
9115
+ class StreamDeliveryResources < Struct.new(
9116
+ :resources)
9117
+ SENSITIVE = []
9118
+ include Aws::Structure
9119
+ end
9120
+
9034
9121
  # Contains summary consolidation override configuration.
9035
9122
  #
9036
9123
  # @!attribute [rw] append_to_prompt
@@ -10132,6 +10219,11 @@ module Aws::BedrockAgentCoreControl
10132
10219
  # The memory strategies to add, modify, or delete.
10133
10220
  # @return [Types::ModifyMemoryStrategies]
10134
10221
  #
10222
+ # @!attribute [rw] stream_delivery_resources
10223
+ # Configuration for streaming memory record data to external
10224
+ # resources.
10225
+ # @return [Types::StreamDeliveryResources]
10226
+ #
10135
10227
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateMemoryInput AWS API Documentation
10136
10228
  #
10137
10229
  class UpdateMemoryInput < Struct.new(
@@ -10140,7 +10232,8 @@ module Aws::BedrockAgentCoreControl
10140
10232
  :description,
10141
10233
  :event_expiry_duration,
10142
10234
  :memory_execution_role_arn,
10143
- :memory_strategies)
10235
+ :memory_strategies,
10236
+ :stream_delivery_resources)
10144
10237
  SENSITIVE = [:description]
10145
10238
  include Aws::Structure
10146
10239
  end
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.25.0'
58
+ GEM_VERSION = '1.26.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -619,6 +619,21 @@ module Aws
619
619
  }?
620
620
  },
621
621
  ],
622
+ ?stream_delivery_resources: {
623
+ resources: Array[
624
+ {
625
+ kinesis: {
626
+ data_stream_arn: ::String,
627
+ content_configurations: Array[
628
+ {
629
+ type: ("MEMORY_RECORDS"),
630
+ level: ("METADATA_ONLY" | "FULL_CONTENT")?
631
+ },
632
+ ]
633
+ }?
634
+ },
635
+ ]
636
+ },
622
637
  ?tags: Hash[::String, ::String]
623
638
  ) -> _CreateMemoryResponseSuccess
624
639
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemoryResponseSuccess
@@ -2220,6 +2235,21 @@ module Aws
2220
2235
  memory_strategy_id: ::String
2221
2236
  },
2222
2237
  ]?
2238
+ },
2239
+ ?stream_delivery_resources: {
2240
+ resources: Array[
2241
+ {
2242
+ kinesis: {
2243
+ data_stream_arn: ::String,
2244
+ content_configurations: Array[
2245
+ {
2246
+ type: ("MEMORY_RECORDS"),
2247
+ level: ("METADATA_ONLY" | "FULL_CONTENT")?
2248
+ },
2249
+ ]
2250
+ }?
2251
+ },
2252
+ ]
2223
2253
  }
2224
2254
  ) -> _UpdateMemoryResponseSuccess
2225
2255
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemoryResponseSuccess
data/sig/types.rbs CHANGED
@@ -294,6 +294,12 @@ module Aws::BedrockAgentCoreControl
294
294
  end
295
295
  end
296
296
 
297
+ class ContentConfiguration
298
+ attr_accessor type: ("MEMORY_RECORDS")
299
+ attr_accessor level: ("METADATA_ONLY" | "FULL_CONTENT")
300
+ SENSITIVE: []
301
+ end
302
+
297
303
  class CreateAgentRuntimeEndpointRequest
298
304
  attr_accessor agent_runtime_id: ::String
299
305
  attr_accessor name: ::String
@@ -502,6 +508,7 @@ module Aws::BedrockAgentCoreControl
502
508
  attr_accessor memory_execution_role_arn: ::String
503
509
  attr_accessor event_expiry_duration: ::Integer
504
510
  attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
511
+ attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
505
512
  attr_accessor tags: ::Hash[::String, ::String]
506
513
  SENSITIVE: [:description]
507
514
  end
@@ -1633,6 +1640,12 @@ module Aws::BedrockAgentCoreControl
1633
1640
  SENSITIVE: []
1634
1641
  end
1635
1642
 
1643
+ class KinesisResource
1644
+ attr_accessor data_stream_arn: ::String
1645
+ attr_accessor content_configurations: ::Array[Types::ContentConfiguration]
1646
+ SENSITIVE: []
1647
+ end
1648
+
1636
1649
  class KmsConfiguration
1637
1650
  attr_accessor key_type: ("CustomerManagedKey" | "ServiceManagedKey")
1638
1651
  attr_accessor kms_key_arn: ::String
@@ -1959,6 +1972,7 @@ module Aws::BedrockAgentCoreControl
1959
1972
  attr_accessor created_at: ::Time
1960
1973
  attr_accessor updated_at: ::Time
1961
1974
  attr_accessor strategies: ::Array[Types::MemoryStrategy]
1975
+ attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
1962
1976
  SENSITIVE: [:description]
1963
1977
  end
1964
1978
 
@@ -2581,6 +2595,22 @@ module Aws::BedrockAgentCoreControl
2581
2595
  SENSITIVE: []
2582
2596
  end
2583
2597
 
2598
+ class StreamDeliveryResource
2599
+ attr_accessor kinesis: Types::KinesisResource
2600
+ attr_accessor unknown: untyped
2601
+ SENSITIVE: []
2602
+
2603
+ class Kinesis < StreamDeliveryResource
2604
+ end
2605
+ class Unknown < StreamDeliveryResource
2606
+ end
2607
+ end
2608
+
2609
+ class StreamDeliveryResources
2610
+ attr_accessor resources: ::Array[Types::StreamDeliveryResource]
2611
+ SENSITIVE: []
2612
+ end
2613
+
2584
2614
  class SummaryConsolidationOverride
2585
2615
  attr_accessor append_to_prompt: ::String
2586
2616
  attr_accessor model_id: ::String
@@ -2898,6 +2928,7 @@ module Aws::BedrockAgentCoreControl
2898
2928
  attr_accessor event_expiry_duration: ::Integer
2899
2929
  attr_accessor memory_execution_role_arn: ::String
2900
2930
  attr_accessor memory_strategies: Types::ModifyMemoryStrategies
2931
+ attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
2901
2932
  SENSITIVE: [:description]
2902
2933
  end
2903
2934
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services