aws-sdk-bedrockagentcorecontrol 1.41.0 → 1.43.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +662 -17
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +122 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +401 -17
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +523 -24
- data/sig/types.rbs +113 -1
- metadata +1 -1
|
@@ -2709,6 +2709,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
2709
2709
|
# information is extracted, processed, and consolidated.
|
|
2710
2710
|
# @return [Array<Types::MemoryStrategyInput>]
|
|
2711
2711
|
#
|
|
2712
|
+
# @!attribute [rw] indexed_keys
|
|
2713
|
+
# Metadata keys to index for filtering. Once declared, indexed keys
|
|
2714
|
+
# cannot be removed.
|
|
2715
|
+
# @return [Array<Types::IndexedKey>]
|
|
2716
|
+
#
|
|
2712
2717
|
# @!attribute [rw] stream_delivery_resources
|
|
2713
2718
|
# Configuration for streaming memory record data to external
|
|
2714
2719
|
# resources.
|
|
@@ -2730,6 +2735,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2730
2735
|
:memory_execution_role_arn,
|
|
2731
2736
|
:event_expiry_duration,
|
|
2732
2737
|
:memory_strategies,
|
|
2738
|
+
:indexed_keys,
|
|
2733
2739
|
:stream_delivery_resources,
|
|
2734
2740
|
:tags)
|
|
2735
2741
|
SENSITIVE = [:description]
|
|
@@ -3815,6 +3821,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
3815
3821
|
# The configuration for the custom memory strategy.
|
|
3816
3822
|
# @return [Types::CustomConfigurationInput]
|
|
3817
3823
|
#
|
|
3824
|
+
# @!attribute [rw] memory_record_schema
|
|
3825
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
3826
|
+
# @return [Types::MemoryRecordSchema]
|
|
3827
|
+
#
|
|
3818
3828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomMemoryStrategyInput AWS API Documentation
|
|
3819
3829
|
#
|
|
3820
3830
|
class CustomMemoryStrategyInput < Struct.new(
|
|
@@ -3822,7 +3832,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3822
3832
|
:description,
|
|
3823
3833
|
:namespaces,
|
|
3824
3834
|
:namespace_templates,
|
|
3825
|
-
:configuration
|
|
3835
|
+
:configuration,
|
|
3836
|
+
:memory_record_schema)
|
|
3826
3837
|
SENSITIVE = [:description]
|
|
3827
3838
|
include Aws::Structure
|
|
3828
3839
|
end
|
|
@@ -3854,6 +3865,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3854
3865
|
# configurations.
|
|
3855
3866
|
# @return [Array<Types::PrivateEndpointOverride>]
|
|
3856
3867
|
#
|
|
3868
|
+
# @!attribute [rw] on_behalf_of_token_exchange_config
|
|
3869
|
+
# The configuration for on-behalf-of token exchange. This enables
|
|
3870
|
+
# authentication flows that use RFC 8693 token exchange or RFC 7523
|
|
3871
|
+
# JWT authorization grants.
|
|
3872
|
+
# @return [Types::OnBehalfOfTokenExchangeConfigType]
|
|
3873
|
+
#
|
|
3874
|
+
# @!attribute [rw] client_authentication_method
|
|
3875
|
+
# The client authentication method to use when authenticating with the
|
|
3876
|
+
# token endpoint.
|
|
3877
|
+
# @return [String]
|
|
3878
|
+
#
|
|
3857
3879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigInput AWS API Documentation
|
|
3858
3880
|
#
|
|
3859
3881
|
class CustomOauth2ProviderConfigInput < Struct.new(
|
|
@@ -3861,7 +3883,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
3861
3883
|
:client_id,
|
|
3862
3884
|
:client_secret,
|
|
3863
3885
|
:private_endpoint,
|
|
3864
|
-
:private_endpoint_overrides
|
|
3886
|
+
:private_endpoint_overrides,
|
|
3887
|
+
:on_behalf_of_token_exchange_config,
|
|
3888
|
+
:client_authentication_method)
|
|
3865
3889
|
SENSITIVE = [:client_secret]
|
|
3866
3890
|
include Aws::Structure
|
|
3867
3891
|
end
|
|
@@ -3889,13 +3913,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
3889
3913
|
# configurations.
|
|
3890
3914
|
# @return [Array<Types::PrivateEndpointOverride>]
|
|
3891
3915
|
#
|
|
3916
|
+
# @!attribute [rw] on_behalf_of_token_exchange_config
|
|
3917
|
+
# The configuration for on-behalf-of token exchange.
|
|
3918
|
+
# @return [Types::OnBehalfOfTokenExchangeConfigType]
|
|
3919
|
+
#
|
|
3920
|
+
# @!attribute [rw] client_authentication_method
|
|
3921
|
+
# The client authentication method used when authenticating with the
|
|
3922
|
+
# token endpoint.
|
|
3923
|
+
# @return [String]
|
|
3924
|
+
#
|
|
3892
3925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomOauth2ProviderConfigOutput AWS API Documentation
|
|
3893
3926
|
#
|
|
3894
3927
|
class CustomOauth2ProviderConfigOutput < Struct.new(
|
|
3895
3928
|
:oauth_discovery,
|
|
3896
3929
|
:client_id,
|
|
3897
3930
|
:private_endpoint,
|
|
3898
|
-
:private_endpoint_overrides
|
|
3931
|
+
:private_endpoint_overrides,
|
|
3932
|
+
:on_behalf_of_token_exchange_config,
|
|
3933
|
+
:client_authentication_method)
|
|
3899
3934
|
SENSITIVE = []
|
|
3900
3935
|
include Aws::Structure
|
|
3901
3936
|
end
|
|
@@ -4907,6 +4942,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
4907
4942
|
# memory strategy.
|
|
4908
4943
|
# @return [Types::EpisodicReflectionConfigurationInput]
|
|
4909
4944
|
#
|
|
4945
|
+
# @!attribute [rw] memory_record_schema
|
|
4946
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
4947
|
+
# @return [Types::MemoryRecordSchema]
|
|
4948
|
+
#
|
|
4910
4949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicMemoryStrategyInput AWS API Documentation
|
|
4911
4950
|
#
|
|
4912
4951
|
class EpisodicMemoryStrategyInput < Struct.new(
|
|
@@ -4914,7 +4953,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4914
4953
|
:description,
|
|
4915
4954
|
:namespaces,
|
|
4916
4955
|
:namespace_templates,
|
|
4917
|
-
:reflection_configuration
|
|
4956
|
+
:reflection_configuration,
|
|
4957
|
+
:memory_record_schema)
|
|
4918
4958
|
SENSITIVE = [:description]
|
|
4919
4959
|
include Aws::Structure
|
|
4920
4960
|
end
|
|
@@ -5013,13 +5053,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
5013
5053
|
# nested than the episodic namespaces.
|
|
5014
5054
|
# @return [Array<String>]
|
|
5015
5055
|
#
|
|
5056
|
+
# @!attribute [rw] memory_record_schema
|
|
5057
|
+
# Schema for metadata fields on records generated by this reflection
|
|
5058
|
+
# override.
|
|
5059
|
+
# @return [Types::MemoryRecordSchema]
|
|
5060
|
+
#
|
|
5016
5061
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicOverrideReflectionConfigurationInput AWS API Documentation
|
|
5017
5062
|
#
|
|
5018
5063
|
class EpisodicOverrideReflectionConfigurationInput < Struct.new(
|
|
5019
5064
|
:append_to_prompt,
|
|
5020
5065
|
:model_id,
|
|
5021
5066
|
:namespaces,
|
|
5022
|
-
:namespace_templates
|
|
5067
|
+
:namespace_templates,
|
|
5068
|
+
:memory_record_schema)
|
|
5023
5069
|
SENSITIVE = [:append_to_prompt]
|
|
5024
5070
|
include Aws::Structure
|
|
5025
5071
|
end
|
|
@@ -5037,11 +5083,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
5037
5083
|
# nested than the episodic namespaces.
|
|
5038
5084
|
# @return [Array<String>]
|
|
5039
5085
|
#
|
|
5086
|
+
# @!attribute [rw] memory_record_schema
|
|
5087
|
+
# "Schema for metadata fields on records generated by reflections.
|
|
5088
|
+
# @return [Types::MemoryRecordSchema]
|
|
5089
|
+
#
|
|
5040
5090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionConfiguration AWS API Documentation
|
|
5041
5091
|
#
|
|
5042
5092
|
class EpisodicReflectionConfiguration < Struct.new(
|
|
5043
5093
|
:namespaces,
|
|
5044
|
-
:namespace_templates
|
|
5094
|
+
:namespace_templates,
|
|
5095
|
+
:memory_record_schema)
|
|
5045
5096
|
SENSITIVE = []
|
|
5046
5097
|
include Aws::Structure
|
|
5047
5098
|
end
|
|
@@ -5058,11 +5109,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
5058
5109
|
# nested than episode namespaces.
|
|
5059
5110
|
# @return [Array<String>]
|
|
5060
5111
|
#
|
|
5112
|
+
# @!attribute [rw] memory_record_schema
|
|
5113
|
+
# Schema for metadata fields on records generated by reflections.
|
|
5114
|
+
# @return [Types::MemoryRecordSchema]
|
|
5115
|
+
#
|
|
5061
5116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionConfigurationInput AWS API Documentation
|
|
5062
5117
|
#
|
|
5063
5118
|
class EpisodicReflectionConfigurationInput < Struct.new(
|
|
5064
5119
|
:namespaces,
|
|
5065
|
-
:namespace_templates
|
|
5120
|
+
:namespace_templates,
|
|
5121
|
+
:memory_record_schema)
|
|
5066
5122
|
SENSITIVE = []
|
|
5067
5123
|
include Aws::Structure
|
|
5068
5124
|
end
|
|
@@ -5090,13 +5146,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
5090
5146
|
# less nested than the episodic namespaces.
|
|
5091
5147
|
# @return [Array<String>]
|
|
5092
5148
|
#
|
|
5149
|
+
# @!attribute [rw] memory_record_schema
|
|
5150
|
+
# Schema for metadata fields on records generated by this reflection
|
|
5151
|
+
# override.
|
|
5152
|
+
# @return [Types::MemoryRecordSchema]
|
|
5153
|
+
#
|
|
5093
5154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EpisodicReflectionOverride AWS API Documentation
|
|
5094
5155
|
#
|
|
5095
5156
|
class EpisodicReflectionOverride < Struct.new(
|
|
5096
5157
|
:append_to_prompt,
|
|
5097
5158
|
:model_id,
|
|
5098
5159
|
:namespaces,
|
|
5099
|
-
:namespace_templates
|
|
5160
|
+
:namespace_templates,
|
|
5161
|
+
:memory_record_schema)
|
|
5100
5162
|
SENSITIVE = [:append_to_prompt]
|
|
5101
5163
|
include Aws::Structure
|
|
5102
5164
|
end
|
|
@@ -5254,6 +5316,29 @@ module Aws::BedrockAgentCoreControl
|
|
|
5254
5316
|
include Aws::Structure
|
|
5255
5317
|
end
|
|
5256
5318
|
|
|
5319
|
+
# Configuration for metadata extraction from conversational content.
|
|
5320
|
+
#
|
|
5321
|
+
# @note ExtractionConfig is a union - when making an API calls you must set exactly one of the members.
|
|
5322
|
+
#
|
|
5323
|
+
# @note ExtractionConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionConfig corresponding to the set member.
|
|
5324
|
+
#
|
|
5325
|
+
# @!attribute [rw] llm_extraction_config
|
|
5326
|
+
# Model-based extraction using a definition and instructions.
|
|
5327
|
+
# @return [Types::LlmExtractionConfig]
|
|
5328
|
+
#
|
|
5329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ExtractionConfig AWS API Documentation
|
|
5330
|
+
#
|
|
5331
|
+
class ExtractionConfig < Struct.new(
|
|
5332
|
+
:llm_extraction_config,
|
|
5333
|
+
:unknown)
|
|
5334
|
+
SENSITIVE = []
|
|
5335
|
+
include Aws::Structure
|
|
5336
|
+
include Aws::Structure::Union
|
|
5337
|
+
|
|
5338
|
+
class LlmExtractionConfig < ExtractionConfig; end
|
|
5339
|
+
class Unknown < ExtractionConfig; end
|
|
5340
|
+
end
|
|
5341
|
+
|
|
5257
5342
|
# Contains extraction configuration information for a memory strategy.
|
|
5258
5343
|
#
|
|
5259
5344
|
# @note ExtractionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExtractionConfiguration corresponding to the set member.
|
|
@@ -8606,6 +8691,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
8606
8691
|
include Aws::Structure
|
|
8607
8692
|
end
|
|
8608
8693
|
|
|
8694
|
+
# A metadata key indexed for filtering.
|
|
8695
|
+
#
|
|
8696
|
+
# @!attribute [rw] key
|
|
8697
|
+
# The metadata key name to index.
|
|
8698
|
+
# @return [String]
|
|
8699
|
+
#
|
|
8700
|
+
# @!attribute [rw] type
|
|
8701
|
+
# The data type of the indexed key.
|
|
8702
|
+
# @return [String]
|
|
8703
|
+
#
|
|
8704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IndexedKey AWS API Documentation
|
|
8705
|
+
#
|
|
8706
|
+
class IndexedKey < Struct.new(
|
|
8707
|
+
:key,
|
|
8708
|
+
:type)
|
|
8709
|
+
SENSITIVE = []
|
|
8710
|
+
include Aws::Structure
|
|
8711
|
+
end
|
|
8712
|
+
|
|
8609
8713
|
# The configuration parameters that control how the foundation model
|
|
8610
8714
|
# behaves during evaluation, including response generation settings.
|
|
8611
8715
|
#
|
|
@@ -9994,6 +10098,31 @@ module Aws::BedrockAgentCoreControl
|
|
|
9994
10098
|
include Aws::Structure
|
|
9995
10099
|
end
|
|
9996
10100
|
|
|
10101
|
+
# Model-based metadata extraction configuration.
|
|
10102
|
+
#
|
|
10103
|
+
# @!attribute [rw] llm_extraction_instruction
|
|
10104
|
+
# Instructions for extraction. Supports built-in operators like
|
|
10105
|
+
# LATEST\_VALUE or custom natural-language instructions.
|
|
10106
|
+
# @return [String]
|
|
10107
|
+
#
|
|
10108
|
+
# @!attribute [rw] definition
|
|
10109
|
+
# Description of what this metadata field represents.
|
|
10110
|
+
# @return [String]
|
|
10111
|
+
#
|
|
10112
|
+
# @!attribute [rw] validation
|
|
10113
|
+
# Validation rules to constrain extracted values.
|
|
10114
|
+
# @return [Types::Validation]
|
|
10115
|
+
#
|
|
10116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LlmExtractionConfig AWS API Documentation
|
|
10117
|
+
#
|
|
10118
|
+
class LlmExtractionConfig < Struct.new(
|
|
10119
|
+
:llm_extraction_instruction,
|
|
10120
|
+
:definition,
|
|
10121
|
+
:validation)
|
|
10122
|
+
SENSITIVE = [:llm_extraction_instruction, :definition]
|
|
10123
|
+
include Aws::Structure
|
|
10124
|
+
end
|
|
10125
|
+
|
|
9997
10126
|
# The configuration for a Model Context Protocol (MCP) gateway. This
|
|
9998
10127
|
# structure defines how the gateway implements the MCP protocol.
|
|
9999
10128
|
#
|
|
@@ -10012,12 +10141,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
10012
10141
|
# specifies how the gateway handles search operations.
|
|
10013
10142
|
# @return [String]
|
|
10014
10143
|
#
|
|
10144
|
+
# @!attribute [rw] session_configuration
|
|
10145
|
+
# The session configuration for the MCP gateway. This configuration
|
|
10146
|
+
# controls session behavior, including session timeout settings.
|
|
10147
|
+
# @return [Types::SessionConfiguration]
|
|
10148
|
+
#
|
|
10149
|
+
# @!attribute [rw] streaming_configuration
|
|
10150
|
+
# The streaming configuration for the MCP gateway. This configuration
|
|
10151
|
+
# controls whether response streaming is enabled for the gateway.
|
|
10152
|
+
# @return [Types::StreamingConfiguration]
|
|
10153
|
+
#
|
|
10015
10154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MCPGatewayConfiguration AWS API Documentation
|
|
10016
10155
|
#
|
|
10017
10156
|
class MCPGatewayConfiguration < Struct.new(
|
|
10018
10157
|
:supported_versions,
|
|
10019
10158
|
:instructions,
|
|
10020
|
-
:search_type
|
|
10159
|
+
:search_type,
|
|
10160
|
+
:session_configuration,
|
|
10161
|
+
:streaming_configuration)
|
|
10021
10162
|
SENSITIVE = []
|
|
10022
10163
|
include Aws::Structure
|
|
10023
10164
|
end
|
|
@@ -10075,9 +10216,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
10075
10216
|
# @return [Hash<String,String>]
|
|
10076
10217
|
#
|
|
10077
10218
|
# @!attribute [rw] routing_domain
|
|
10078
|
-
# An intermediate
|
|
10079
|
-
#
|
|
10080
|
-
#
|
|
10219
|
+
# An intermediate domain to use as the resource configuration endpoint
|
|
10220
|
+
# instead of the actual target domain. Use this when you want to route
|
|
10221
|
+
# traffic through an intermediate component such as a VPC endpoint or
|
|
10222
|
+
# internal load balancer. For more information, see
|
|
10223
|
+
# xref:lattice-vpc-egress-routing-domain\[Route traffic through an
|
|
10224
|
+
# intermediate domain\].
|
|
10081
10225
|
# @return [String]
|
|
10082
10226
|
#
|
|
10083
10227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ManagedVpcResource AWS API Documentation
|
|
@@ -10367,6 +10511,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10367
10511
|
# The list of memory strategies associated with this memory.
|
|
10368
10512
|
# @return [Array<Types::MemoryStrategy>]
|
|
10369
10513
|
#
|
|
10514
|
+
# @!attribute [rw] indexed_keys
|
|
10515
|
+
# The indexed metadata keys for this memory. Only indexed keys can be
|
|
10516
|
+
# used in metadata filters.
|
|
10517
|
+
# @return [Array<Types::IndexedKey>]
|
|
10518
|
+
#
|
|
10370
10519
|
# @!attribute [rw] stream_delivery_resources
|
|
10371
10520
|
# Configuration for streaming memory record data to external
|
|
10372
10521
|
# resources.
|
|
@@ -10387,11 +10536,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
10387
10536
|
:created_at,
|
|
10388
10537
|
:updated_at,
|
|
10389
10538
|
:strategies,
|
|
10539
|
+
:indexed_keys,
|
|
10390
10540
|
:stream_delivery_resources)
|
|
10391
10541
|
SENSITIVE = [:description]
|
|
10392
10542
|
include Aws::Structure
|
|
10393
10543
|
end
|
|
10394
10544
|
|
|
10545
|
+
# Schema for metadata on memory records generated by a strategy.
|
|
10546
|
+
#
|
|
10547
|
+
# @!attribute [rw] metadata_schema
|
|
10548
|
+
# The metadata field definitions for this strategy.
|
|
10549
|
+
# @return [Array<Types::MetadataSchemaEntry>]
|
|
10550
|
+
#
|
|
10551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemoryRecordSchema AWS API Documentation
|
|
10552
|
+
#
|
|
10553
|
+
class MemoryRecordSchema < Struct.new(
|
|
10554
|
+
:metadata_schema)
|
|
10555
|
+
SENSITIVE = []
|
|
10556
|
+
include Aws::Structure
|
|
10557
|
+
end
|
|
10558
|
+
|
|
10395
10559
|
# Contains information about a memory strategy.
|
|
10396
10560
|
#
|
|
10397
10561
|
# @!attribute [rw] strategy_id
|
|
@@ -10434,6 +10598,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10434
10598
|
# The current status of the memory strategy.
|
|
10435
10599
|
# @return [String]
|
|
10436
10600
|
#
|
|
10601
|
+
# @!attribute [rw] memory_record_schema
|
|
10602
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
10603
|
+
# @return [Types::MemoryRecordSchema]
|
|
10604
|
+
#
|
|
10437
10605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemoryStrategy AWS API Documentation
|
|
10438
10606
|
#
|
|
10439
10607
|
class MemoryStrategy < Struct.new(
|
|
@@ -10446,7 +10614,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10446
10614
|
:namespace_templates,
|
|
10447
10615
|
:created_at,
|
|
10448
10616
|
:updated_at,
|
|
10449
|
-
:status
|
|
10617
|
+
:status,
|
|
10618
|
+
:memory_record_schema)
|
|
10450
10619
|
SENSITIVE = [:description]
|
|
10451
10620
|
include Aws::Structure
|
|
10452
10621
|
end
|
|
@@ -10586,6 +10755,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
10586
10755
|
include Aws::Structure
|
|
10587
10756
|
end
|
|
10588
10757
|
|
|
10758
|
+
# A metadata field definition within a strategy's schema.
|
|
10759
|
+
#
|
|
10760
|
+
# @!attribute [rw] key
|
|
10761
|
+
# The metadata field name. Must match an indexed key to be queryable
|
|
10762
|
+
# via metadata filters.
|
|
10763
|
+
# @return [String]
|
|
10764
|
+
#
|
|
10765
|
+
# @!attribute [rw] type
|
|
10766
|
+
# The MetadataValueType.
|
|
10767
|
+
# @return [String]
|
|
10768
|
+
#
|
|
10769
|
+
# @!attribute [rw] extraction_config
|
|
10770
|
+
# Configuration for extracting this metadata value from conversational
|
|
10771
|
+
# content.
|
|
10772
|
+
# @return [Types::ExtractionConfig]
|
|
10773
|
+
#
|
|
10774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MetadataSchemaEntry AWS API Documentation
|
|
10775
|
+
#
|
|
10776
|
+
class MetadataSchemaEntry < Struct.new(
|
|
10777
|
+
:key,
|
|
10778
|
+
:type,
|
|
10779
|
+
:extraction_config)
|
|
10780
|
+
SENSITIVE = []
|
|
10781
|
+
include Aws::Structure
|
|
10782
|
+
end
|
|
10783
|
+
|
|
10589
10784
|
# Input configuration for a Microsoft OAuth2 provider.
|
|
10590
10785
|
#
|
|
10591
10786
|
# @!attribute [rw] client_id
|
|
@@ -10738,6 +10933,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10738
10933
|
# The updated configuration for the memory strategy.
|
|
10739
10934
|
# @return [Types::ModifyStrategyConfiguration]
|
|
10740
10935
|
#
|
|
10936
|
+
# @!attribute [rw] memory_record_schema
|
|
10937
|
+
# Updated metadata schema for records generated by this strategy.
|
|
10938
|
+
# @return [Types::MemoryRecordSchema]
|
|
10939
|
+
#
|
|
10741
10940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyMemoryStrategyInput AWS API Documentation
|
|
10742
10941
|
#
|
|
10743
10942
|
class ModifyMemoryStrategyInput < Struct.new(
|
|
@@ -10745,7 +10944,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10745
10944
|
:description,
|
|
10746
10945
|
:namespaces,
|
|
10747
10946
|
:namespace_templates,
|
|
10748
|
-
:configuration
|
|
10947
|
+
:configuration,
|
|
10948
|
+
:memory_record_schema)
|
|
10749
10949
|
SENSITIVE = [:description]
|
|
10750
10950
|
include Aws::Structure
|
|
10751
10951
|
end
|
|
@@ -10851,6 +11051,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
10851
11051
|
include Aws::Structure
|
|
10852
11052
|
end
|
|
10853
11053
|
|
|
11054
|
+
# Validation for NUMBER fields.
|
|
11055
|
+
#
|
|
11056
|
+
# @!attribute [rw] min_value
|
|
11057
|
+
# Minimum allowed value.
|
|
11058
|
+
# @return [Float]
|
|
11059
|
+
#
|
|
11060
|
+
# @!attribute [rw] max_value
|
|
11061
|
+
# Maximum allowed value.
|
|
11062
|
+
# @return [Float]
|
|
11063
|
+
#
|
|
11064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NumberValidation AWS API Documentation
|
|
11065
|
+
#
|
|
11066
|
+
class NumberValidation < Struct.new(
|
|
11067
|
+
:min_value,
|
|
11068
|
+
:max_value)
|
|
11069
|
+
SENSITIVE = []
|
|
11070
|
+
include Aws::Structure
|
|
11071
|
+
end
|
|
11072
|
+
|
|
10854
11073
|
# The definition of a numerical rating scale option that provides a
|
|
10855
11074
|
# numeric value with its description for evaluation scoring.
|
|
10856
11075
|
#
|
|
@@ -11187,6 +11406,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
11187
11406
|
class Unknown < Oauth2ProviderConfigOutput; end
|
|
11188
11407
|
end
|
|
11189
11408
|
|
|
11409
|
+
# Configuration for on-behalf-of token exchange.
|
|
11410
|
+
#
|
|
11411
|
+
# @!attribute [rw] grant_type
|
|
11412
|
+
# The grant type for the on-behalf-of token exchange.
|
|
11413
|
+
# @return [String]
|
|
11414
|
+
#
|
|
11415
|
+
# @!attribute [rw] token_exchange_grant_type_config
|
|
11416
|
+
# Configuration specific to the TOKEN\_EXCHANGE grant type (RFC 8693).
|
|
11417
|
+
# @return [Types::TokenExchangeGrantTypeConfigType]
|
|
11418
|
+
#
|
|
11419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnBehalfOfTokenExchangeConfigType AWS API Documentation
|
|
11420
|
+
#
|
|
11421
|
+
class OnBehalfOfTokenExchangeConfigType < Struct.new(
|
|
11422
|
+
:grant_type,
|
|
11423
|
+
:token_exchange_grant_type_config)
|
|
11424
|
+
SENSITIVE = []
|
|
11425
|
+
include Aws::Structure
|
|
11426
|
+
end
|
|
11427
|
+
|
|
11190
11428
|
# The summary information about an online evaluation configuration,
|
|
11191
11429
|
# including basic metadata and execution status.
|
|
11192
11430
|
#
|
|
@@ -12553,13 +12791,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
12553
12791
|
# The namespaceTemplates associated with the semantic memory strategy.
|
|
12554
12792
|
# @return [Array<String>]
|
|
12555
12793
|
#
|
|
12794
|
+
# @!attribute [rw] memory_record_schema
|
|
12795
|
+
# Schema for metadata on memory records generated by a strategy.
|
|
12796
|
+
# @return [Types::MemoryRecordSchema]
|
|
12797
|
+
#
|
|
12556
12798
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SemanticMemoryStrategyInput AWS API Documentation
|
|
12557
12799
|
#
|
|
12558
12800
|
class SemanticMemoryStrategyInput < Struct.new(
|
|
12559
12801
|
:name,
|
|
12560
12802
|
:description,
|
|
12561
12803
|
:namespaces,
|
|
12562
|
-
:namespace_templates
|
|
12804
|
+
:namespace_templates,
|
|
12805
|
+
:memory_record_schema)
|
|
12563
12806
|
SENSITIVE = [:description]
|
|
12564
12807
|
include Aws::Structure
|
|
12565
12808
|
end
|
|
@@ -12689,6 +12932,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
12689
12932
|
include Aws::Structure
|
|
12690
12933
|
end
|
|
12691
12934
|
|
|
12935
|
+
# The session configuration for an MCP gateway. This structure defines
|
|
12936
|
+
# settings that control session behavior.
|
|
12937
|
+
#
|
|
12938
|
+
# @!attribute [rw] session_timeout_in_seconds
|
|
12939
|
+
# The session timeout in seconds. After this timeout, the session
|
|
12940
|
+
# expires and subsequent requests to this session will receive an
|
|
12941
|
+
# error. The minimum value is 900 seconds (15 minutes), the maximum
|
|
12942
|
+
# value is 28800 seconds (8 hours), and the default value is 3600
|
|
12943
|
+
# seconds (1 hour).
|
|
12944
|
+
# @return [Integer]
|
|
12945
|
+
#
|
|
12946
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SessionConfiguration AWS API Documentation
|
|
12947
|
+
#
|
|
12948
|
+
class SessionConfiguration < Struct.new(
|
|
12949
|
+
:session_timeout_in_seconds)
|
|
12950
|
+
SENSITIVE = []
|
|
12951
|
+
include Aws::Structure
|
|
12952
|
+
end
|
|
12953
|
+
|
|
12692
12954
|
# Configuration for a session storage filesystem mounted into the
|
|
12693
12955
|
# AgentCore Runtime. Session storage provides persistent storage that is
|
|
12694
12956
|
# preserved across AgentCore Runtime session invocations.
|
|
@@ -13030,6 +13292,56 @@ module Aws::BedrockAgentCoreControl
|
|
|
13030
13292
|
include Aws::Structure
|
|
13031
13293
|
end
|
|
13032
13294
|
|
|
13295
|
+
# The streaming configuration for an MCP gateway. This structure defines
|
|
13296
|
+
# settings that control response streaming behavior.
|
|
13297
|
+
#
|
|
13298
|
+
# @!attribute [rw] enable_response_streaming
|
|
13299
|
+
# Indicates whether response streaming is enabled for the gateway.
|
|
13300
|
+
# When set to `true`, the gateway streams responses from targets back
|
|
13301
|
+
# to the client.
|
|
13302
|
+
# @return [Boolean]
|
|
13303
|
+
#
|
|
13304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StreamingConfiguration AWS API Documentation
|
|
13305
|
+
#
|
|
13306
|
+
class StreamingConfiguration < Struct.new(
|
|
13307
|
+
:enable_response_streaming)
|
|
13308
|
+
SENSITIVE = []
|
|
13309
|
+
include Aws::Structure
|
|
13310
|
+
end
|
|
13311
|
+
|
|
13312
|
+
# Validation for STRINGLIST fields.
|
|
13313
|
+
#
|
|
13314
|
+
# @!attribute [rw] allowed_values
|
|
13315
|
+
# Allowed values for items in this STRINGLIST field.
|
|
13316
|
+
# @return [Array<String>]
|
|
13317
|
+
#
|
|
13318
|
+
# @!attribute [rw] max_items
|
|
13319
|
+
# Maximum number of items in the string list.
|
|
13320
|
+
# @return [Integer]
|
|
13321
|
+
#
|
|
13322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StringListValidation AWS API Documentation
|
|
13323
|
+
#
|
|
13324
|
+
class StringListValidation < Struct.new(
|
|
13325
|
+
:allowed_values,
|
|
13326
|
+
:max_items)
|
|
13327
|
+
SENSITIVE = []
|
|
13328
|
+
include Aws::Structure
|
|
13329
|
+
end
|
|
13330
|
+
|
|
13331
|
+
# Validation for STRING fields.
|
|
13332
|
+
#
|
|
13333
|
+
# @!attribute [rw] allowed_values
|
|
13334
|
+
# Allowed values for this STRING field.
|
|
13335
|
+
# @return [Array<String>]
|
|
13336
|
+
#
|
|
13337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StringValidation AWS API Documentation
|
|
13338
|
+
#
|
|
13339
|
+
class StringValidation < Struct.new(
|
|
13340
|
+
:allowed_values)
|
|
13341
|
+
SENSITIVE = []
|
|
13342
|
+
include Aws::Structure
|
|
13343
|
+
end
|
|
13344
|
+
|
|
13033
13345
|
# @!attribute [rw] registry_id
|
|
13034
13346
|
# The identifier of the registry containing the record. You can
|
|
13035
13347
|
# specify either the Amazon Resource Name (ARN) or the ID of the
|
|
@@ -13121,13 +13433,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
13121
13433
|
# The namespaceTemplates associated with the summary memory strategy.
|
|
13122
13434
|
# @return [Array<String>]
|
|
13123
13435
|
#
|
|
13436
|
+
# @!attribute [rw] memory_record_schema
|
|
13437
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
13438
|
+
# @return [Types::MemoryRecordSchema]
|
|
13439
|
+
#
|
|
13124
13440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SummaryMemoryStrategyInput AWS API Documentation
|
|
13125
13441
|
#
|
|
13126
13442
|
class SummaryMemoryStrategyInput < Struct.new(
|
|
13127
13443
|
:name,
|
|
13128
13444
|
:description,
|
|
13129
13445
|
:namespaces,
|
|
13130
|
-
:namespace_templates
|
|
13446
|
+
:namespace_templates,
|
|
13447
|
+
:memory_record_schema)
|
|
13131
13448
|
SENSITIVE = [:description]
|
|
13132
13449
|
include Aws::Structure
|
|
13133
13450
|
end
|
|
@@ -13441,6 +13758,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
13441
13758
|
include Aws::Structure
|
|
13442
13759
|
end
|
|
13443
13760
|
|
|
13761
|
+
# Configuration for RFC 8693 token exchange.
|
|
13762
|
+
#
|
|
13763
|
+
# @!attribute [rw] actor_token_content
|
|
13764
|
+
# The content type for the actor token in the token exchange.
|
|
13765
|
+
# @return [String]
|
|
13766
|
+
#
|
|
13767
|
+
# @!attribute [rw] actor_token_scopes
|
|
13768
|
+
# The scopes for the actor token. Only valid when actorTokenContent is
|
|
13769
|
+
# M2M.
|
|
13770
|
+
# @return [Array<String>]
|
|
13771
|
+
#
|
|
13772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenExchangeGrantTypeConfigType AWS API Documentation
|
|
13773
|
+
#
|
|
13774
|
+
class TokenExchangeGrantTypeConfigType < Struct.new(
|
|
13775
|
+
:actor_token_content,
|
|
13776
|
+
:actor_token_scopes)
|
|
13777
|
+
SENSITIVE = []
|
|
13778
|
+
include Aws::Structure
|
|
13779
|
+
end
|
|
13780
|
+
|
|
13444
13781
|
# A tool definition for a gateway target. This structure defines a tool
|
|
13445
13782
|
# that the target exposes through the Model Context Protocol.
|
|
13446
13783
|
#
|
|
@@ -14712,6 +15049,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
14712
15049
|
# The memory strategies to add, modify, or delete.
|
|
14713
15050
|
# @return [Types::ModifyMemoryStrategies]
|
|
14714
15051
|
#
|
|
15052
|
+
# @!attribute [rw] add_indexed_keys
|
|
15053
|
+
# Additional metadata keys to index. Previously indexed keys cannot be
|
|
15054
|
+
# removed.
|
|
15055
|
+
# @return [Array<Types::IndexedKey>]
|
|
15056
|
+
#
|
|
14715
15057
|
# @!attribute [rw] stream_delivery_resources
|
|
14716
15058
|
# Configuration for streaming memory record data to external
|
|
14717
15059
|
# resources.
|
|
@@ -14726,6 +15068,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14726
15068
|
:event_expiry_duration,
|
|
14727
15069
|
:memory_execution_role_arn,
|
|
14728
15070
|
:memory_strategies,
|
|
15071
|
+
:add_indexed_keys,
|
|
14729
15072
|
:stream_delivery_resources)
|
|
14730
15073
|
SENSITIVE = [:description]
|
|
14731
15074
|
include Aws::Structure
|
|
@@ -15880,13 +16223,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
15880
16223
|
# strategy.
|
|
15881
16224
|
# @return [Array<String>]
|
|
15882
16225
|
#
|
|
16226
|
+
# @!attribute [rw] memory_record_schema
|
|
16227
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
16228
|
+
# @return [Types::MemoryRecordSchema]
|
|
16229
|
+
#
|
|
15883
16230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UserPreferenceMemoryStrategyInput AWS API Documentation
|
|
15884
16231
|
#
|
|
15885
16232
|
class UserPreferenceMemoryStrategyInput < Struct.new(
|
|
15886
16233
|
:name,
|
|
15887
16234
|
:description,
|
|
15888
16235
|
:namespaces,
|
|
15889
|
-
:namespace_templates
|
|
16236
|
+
:namespace_templates,
|
|
16237
|
+
:memory_record_schema)
|
|
15890
16238
|
SENSITIVE = [:description]
|
|
15891
16239
|
include Aws::Structure
|
|
15892
16240
|
end
|
|
@@ -15950,6 +16298,42 @@ module Aws::BedrockAgentCoreControl
|
|
|
15950
16298
|
include Aws::Structure
|
|
15951
16299
|
end
|
|
15952
16300
|
|
|
16301
|
+
# Validation rules for extracted metadata values. Only one type can be
|
|
16302
|
+
# specified, matching the field's data type.
|
|
16303
|
+
#
|
|
16304
|
+
# @note Validation is a union - when making an API calls you must set exactly one of the members.
|
|
16305
|
+
#
|
|
16306
|
+
# @note Validation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Validation corresponding to the set member.
|
|
16307
|
+
#
|
|
16308
|
+
# @!attribute [rw] string_validation
|
|
16309
|
+
# Validation for STRING fields.
|
|
16310
|
+
# @return [Types::StringValidation]
|
|
16311
|
+
#
|
|
16312
|
+
# @!attribute [rw] string_list_validation
|
|
16313
|
+
# Validation for STRINGLIST fields.
|
|
16314
|
+
# @return [Types::StringListValidation]
|
|
16315
|
+
#
|
|
16316
|
+
# @!attribute [rw] number_validation
|
|
16317
|
+
# Validation for NUMBER fields.
|
|
16318
|
+
# @return [Types::NumberValidation]
|
|
16319
|
+
#
|
|
16320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Validation AWS API Documentation
|
|
16321
|
+
#
|
|
16322
|
+
class Validation < Struct.new(
|
|
16323
|
+
:string_validation,
|
|
16324
|
+
:string_list_validation,
|
|
16325
|
+
:number_validation,
|
|
16326
|
+
:unknown)
|
|
16327
|
+
SENSITIVE = []
|
|
16328
|
+
include Aws::Structure
|
|
16329
|
+
include Aws::Structure::Union
|
|
16330
|
+
|
|
16331
|
+
class StringValidation < Validation; end
|
|
16332
|
+
class StringListValidation < Validation; end
|
|
16333
|
+
class NumberValidation < Validation; end
|
|
16334
|
+
class Unknown < Validation; end
|
|
16335
|
+
end
|
|
16336
|
+
|
|
15953
16337
|
# The input fails to satisfy the constraints specified by the service.
|
|
15954
16338
|
#
|
|
15955
16339
|
# @!attribute [rw] message
|