aws-sdk-bedrockagentcorecontrol 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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +644 -17
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +111 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +345 -13
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +509 -22
- data/sig/types.rbs +101 -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
|
#
|
|
@@ -10367,6 +10496,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10367
10496
|
# The list of memory strategies associated with this memory.
|
|
10368
10497
|
# @return [Array<Types::MemoryStrategy>]
|
|
10369
10498
|
#
|
|
10499
|
+
# @!attribute [rw] indexed_keys
|
|
10500
|
+
# The indexed metadata keys for this memory. Only indexed keys can be
|
|
10501
|
+
# used in metadata filters.
|
|
10502
|
+
# @return [Array<Types::IndexedKey>]
|
|
10503
|
+
#
|
|
10370
10504
|
# @!attribute [rw] stream_delivery_resources
|
|
10371
10505
|
# Configuration for streaming memory record data to external
|
|
10372
10506
|
# resources.
|
|
@@ -10387,11 +10521,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
10387
10521
|
:created_at,
|
|
10388
10522
|
:updated_at,
|
|
10389
10523
|
:strategies,
|
|
10524
|
+
:indexed_keys,
|
|
10390
10525
|
:stream_delivery_resources)
|
|
10391
10526
|
SENSITIVE = [:description]
|
|
10392
10527
|
include Aws::Structure
|
|
10393
10528
|
end
|
|
10394
10529
|
|
|
10530
|
+
# Schema for metadata on memory records generated by a strategy.
|
|
10531
|
+
#
|
|
10532
|
+
# @!attribute [rw] metadata_schema
|
|
10533
|
+
# The metadata field definitions for this strategy.
|
|
10534
|
+
# @return [Array<Types::MetadataSchemaEntry>]
|
|
10535
|
+
#
|
|
10536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemoryRecordSchema AWS API Documentation
|
|
10537
|
+
#
|
|
10538
|
+
class MemoryRecordSchema < Struct.new(
|
|
10539
|
+
:metadata_schema)
|
|
10540
|
+
SENSITIVE = []
|
|
10541
|
+
include Aws::Structure
|
|
10542
|
+
end
|
|
10543
|
+
|
|
10395
10544
|
# Contains information about a memory strategy.
|
|
10396
10545
|
#
|
|
10397
10546
|
# @!attribute [rw] strategy_id
|
|
@@ -10434,6 +10583,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10434
10583
|
# The current status of the memory strategy.
|
|
10435
10584
|
# @return [String]
|
|
10436
10585
|
#
|
|
10586
|
+
# @!attribute [rw] memory_record_schema
|
|
10587
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
10588
|
+
# @return [Types::MemoryRecordSchema]
|
|
10589
|
+
#
|
|
10437
10590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemoryStrategy AWS API Documentation
|
|
10438
10591
|
#
|
|
10439
10592
|
class MemoryStrategy < Struct.new(
|
|
@@ -10446,7 +10599,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10446
10599
|
:namespace_templates,
|
|
10447
10600
|
:created_at,
|
|
10448
10601
|
:updated_at,
|
|
10449
|
-
:status
|
|
10602
|
+
:status,
|
|
10603
|
+
:memory_record_schema)
|
|
10450
10604
|
SENSITIVE = [:description]
|
|
10451
10605
|
include Aws::Structure
|
|
10452
10606
|
end
|
|
@@ -10586,6 +10740,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
10586
10740
|
include Aws::Structure
|
|
10587
10741
|
end
|
|
10588
10742
|
|
|
10743
|
+
# A metadata field definition within a strategy's schema.
|
|
10744
|
+
#
|
|
10745
|
+
# @!attribute [rw] key
|
|
10746
|
+
# The metadata field name. Must match an indexed key to be queryable
|
|
10747
|
+
# via metadata filters.
|
|
10748
|
+
# @return [String]
|
|
10749
|
+
#
|
|
10750
|
+
# @!attribute [rw] type
|
|
10751
|
+
# The MetadataValueType.
|
|
10752
|
+
# @return [String]
|
|
10753
|
+
#
|
|
10754
|
+
# @!attribute [rw] extraction_config
|
|
10755
|
+
# Configuration for extracting this metadata value from conversational
|
|
10756
|
+
# content.
|
|
10757
|
+
# @return [Types::ExtractionConfig]
|
|
10758
|
+
#
|
|
10759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MetadataSchemaEntry AWS API Documentation
|
|
10760
|
+
#
|
|
10761
|
+
class MetadataSchemaEntry < Struct.new(
|
|
10762
|
+
:key,
|
|
10763
|
+
:type,
|
|
10764
|
+
:extraction_config)
|
|
10765
|
+
SENSITIVE = []
|
|
10766
|
+
include Aws::Structure
|
|
10767
|
+
end
|
|
10768
|
+
|
|
10589
10769
|
# Input configuration for a Microsoft OAuth2 provider.
|
|
10590
10770
|
#
|
|
10591
10771
|
# @!attribute [rw] client_id
|
|
@@ -10738,6 +10918,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10738
10918
|
# The updated configuration for the memory strategy.
|
|
10739
10919
|
# @return [Types::ModifyStrategyConfiguration]
|
|
10740
10920
|
#
|
|
10921
|
+
# @!attribute [rw] memory_record_schema
|
|
10922
|
+
# Updated metadata schema for records generated by this strategy.
|
|
10923
|
+
# @return [Types::MemoryRecordSchema]
|
|
10924
|
+
#
|
|
10741
10925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModifyMemoryStrategyInput AWS API Documentation
|
|
10742
10926
|
#
|
|
10743
10927
|
class ModifyMemoryStrategyInput < Struct.new(
|
|
@@ -10745,7 +10929,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10745
10929
|
:description,
|
|
10746
10930
|
:namespaces,
|
|
10747
10931
|
:namespace_templates,
|
|
10748
|
-
:configuration
|
|
10932
|
+
:configuration,
|
|
10933
|
+
:memory_record_schema)
|
|
10749
10934
|
SENSITIVE = [:description]
|
|
10750
10935
|
include Aws::Structure
|
|
10751
10936
|
end
|
|
@@ -10851,6 +11036,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
10851
11036
|
include Aws::Structure
|
|
10852
11037
|
end
|
|
10853
11038
|
|
|
11039
|
+
# Validation for NUMBER fields.
|
|
11040
|
+
#
|
|
11041
|
+
# @!attribute [rw] min_value
|
|
11042
|
+
# Minimum allowed value.
|
|
11043
|
+
# @return [Float]
|
|
11044
|
+
#
|
|
11045
|
+
# @!attribute [rw] max_value
|
|
11046
|
+
# Maximum allowed value.
|
|
11047
|
+
# @return [Float]
|
|
11048
|
+
#
|
|
11049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NumberValidation AWS API Documentation
|
|
11050
|
+
#
|
|
11051
|
+
class NumberValidation < Struct.new(
|
|
11052
|
+
:min_value,
|
|
11053
|
+
:max_value)
|
|
11054
|
+
SENSITIVE = []
|
|
11055
|
+
include Aws::Structure
|
|
11056
|
+
end
|
|
11057
|
+
|
|
10854
11058
|
# The definition of a numerical rating scale option that provides a
|
|
10855
11059
|
# numeric value with its description for evaluation scoring.
|
|
10856
11060
|
#
|
|
@@ -11187,6 +11391,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
11187
11391
|
class Unknown < Oauth2ProviderConfigOutput; end
|
|
11188
11392
|
end
|
|
11189
11393
|
|
|
11394
|
+
# Configuration for on-behalf-of token exchange
|
|
11395
|
+
#
|
|
11396
|
+
# @!attribute [rw] grant_type
|
|
11397
|
+
# The grant type for the on-behalf-of token exchange.
|
|
11398
|
+
# @return [String]
|
|
11399
|
+
#
|
|
11400
|
+
# @!attribute [rw] token_exchange_grant_type_config
|
|
11401
|
+
# Configuration specific to TOKEN\_EXCHANGE grant type (RFC 8693)
|
|
11402
|
+
# @return [Types::TokenExchangeGrantTypeConfigType]
|
|
11403
|
+
#
|
|
11404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnBehalfOfTokenExchangeConfigType AWS API Documentation
|
|
11405
|
+
#
|
|
11406
|
+
class OnBehalfOfTokenExchangeConfigType < Struct.new(
|
|
11407
|
+
:grant_type,
|
|
11408
|
+
:token_exchange_grant_type_config)
|
|
11409
|
+
SENSITIVE = []
|
|
11410
|
+
include Aws::Structure
|
|
11411
|
+
end
|
|
11412
|
+
|
|
11190
11413
|
# The summary information about an online evaluation configuration,
|
|
11191
11414
|
# including basic metadata and execution status.
|
|
11192
11415
|
#
|
|
@@ -12553,13 +12776,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
12553
12776
|
# The namespaceTemplates associated with the semantic memory strategy.
|
|
12554
12777
|
# @return [Array<String>]
|
|
12555
12778
|
#
|
|
12779
|
+
# @!attribute [rw] memory_record_schema
|
|
12780
|
+
# Schema for metadata on memory records generated by a strategy.
|
|
12781
|
+
# @return [Types::MemoryRecordSchema]
|
|
12782
|
+
#
|
|
12556
12783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SemanticMemoryStrategyInput AWS API Documentation
|
|
12557
12784
|
#
|
|
12558
12785
|
class SemanticMemoryStrategyInput < Struct.new(
|
|
12559
12786
|
:name,
|
|
12560
12787
|
:description,
|
|
12561
12788
|
:namespaces,
|
|
12562
|
-
:namespace_templates
|
|
12789
|
+
:namespace_templates,
|
|
12790
|
+
:memory_record_schema)
|
|
12563
12791
|
SENSITIVE = [:description]
|
|
12564
12792
|
include Aws::Structure
|
|
12565
12793
|
end
|
|
@@ -13030,6 +13258,39 @@ module Aws::BedrockAgentCoreControl
|
|
|
13030
13258
|
include Aws::Structure
|
|
13031
13259
|
end
|
|
13032
13260
|
|
|
13261
|
+
# Validation for STRINGLIST fields.
|
|
13262
|
+
#
|
|
13263
|
+
# @!attribute [rw] allowed_values
|
|
13264
|
+
# Allowed values for items in this STRINGLIST field.
|
|
13265
|
+
# @return [Array<String>]
|
|
13266
|
+
#
|
|
13267
|
+
# @!attribute [rw] max_items
|
|
13268
|
+
# Maximum number of items in the string list.
|
|
13269
|
+
# @return [Integer]
|
|
13270
|
+
#
|
|
13271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StringListValidation AWS API Documentation
|
|
13272
|
+
#
|
|
13273
|
+
class StringListValidation < Struct.new(
|
|
13274
|
+
:allowed_values,
|
|
13275
|
+
:max_items)
|
|
13276
|
+
SENSITIVE = []
|
|
13277
|
+
include Aws::Structure
|
|
13278
|
+
end
|
|
13279
|
+
|
|
13280
|
+
# Validation for STRING fields.
|
|
13281
|
+
#
|
|
13282
|
+
# @!attribute [rw] allowed_values
|
|
13283
|
+
# Allowed values for this STRING field.
|
|
13284
|
+
# @return [Array<String>]
|
|
13285
|
+
#
|
|
13286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StringValidation AWS API Documentation
|
|
13287
|
+
#
|
|
13288
|
+
class StringValidation < Struct.new(
|
|
13289
|
+
:allowed_values)
|
|
13290
|
+
SENSITIVE = []
|
|
13291
|
+
include Aws::Structure
|
|
13292
|
+
end
|
|
13293
|
+
|
|
13033
13294
|
# @!attribute [rw] registry_id
|
|
13034
13295
|
# The identifier of the registry containing the record. You can
|
|
13035
13296
|
# specify either the Amazon Resource Name (ARN) or the ID of the
|
|
@@ -13121,13 +13382,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
13121
13382
|
# The namespaceTemplates associated with the summary memory strategy.
|
|
13122
13383
|
# @return [Array<String>]
|
|
13123
13384
|
#
|
|
13385
|
+
# @!attribute [rw] memory_record_schema
|
|
13386
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
13387
|
+
# @return [Types::MemoryRecordSchema]
|
|
13388
|
+
#
|
|
13124
13389
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SummaryMemoryStrategyInput AWS API Documentation
|
|
13125
13390
|
#
|
|
13126
13391
|
class SummaryMemoryStrategyInput < Struct.new(
|
|
13127
13392
|
:name,
|
|
13128
13393
|
:description,
|
|
13129
13394
|
:namespaces,
|
|
13130
|
-
:namespace_templates
|
|
13395
|
+
:namespace_templates,
|
|
13396
|
+
:memory_record_schema)
|
|
13131
13397
|
SENSITIVE = [:description]
|
|
13132
13398
|
include Aws::Structure
|
|
13133
13399
|
end
|
|
@@ -13441,6 +13707,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
13441
13707
|
include Aws::Structure
|
|
13442
13708
|
end
|
|
13443
13709
|
|
|
13710
|
+
# Configuration for RFC 8693 Token Exchange
|
|
13711
|
+
#
|
|
13712
|
+
# @!attribute [rw] actor_token_content
|
|
13713
|
+
# The content type for the actor token in the token exchange.
|
|
13714
|
+
# @return [String]
|
|
13715
|
+
#
|
|
13716
|
+
# @!attribute [rw] actor_token_scopes
|
|
13717
|
+
# Only valid when actorTokenContent is M2M
|
|
13718
|
+
# @return [Array<String>]
|
|
13719
|
+
#
|
|
13720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TokenExchangeGrantTypeConfigType AWS API Documentation
|
|
13721
|
+
#
|
|
13722
|
+
class TokenExchangeGrantTypeConfigType < Struct.new(
|
|
13723
|
+
:actor_token_content,
|
|
13724
|
+
:actor_token_scopes)
|
|
13725
|
+
SENSITIVE = []
|
|
13726
|
+
include Aws::Structure
|
|
13727
|
+
end
|
|
13728
|
+
|
|
13444
13729
|
# A tool definition for a gateway target. This structure defines a tool
|
|
13445
13730
|
# that the target exposes through the Model Context Protocol.
|
|
13446
13731
|
#
|
|
@@ -14712,6 +14997,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
14712
14997
|
# The memory strategies to add, modify, or delete.
|
|
14713
14998
|
# @return [Types::ModifyMemoryStrategies]
|
|
14714
14999
|
#
|
|
15000
|
+
# @!attribute [rw] add_indexed_keys
|
|
15001
|
+
# Additional metadata keys to index. Previously indexed keys cannot be
|
|
15002
|
+
# removed.
|
|
15003
|
+
# @return [Array<Types::IndexedKey>]
|
|
15004
|
+
#
|
|
14715
15005
|
# @!attribute [rw] stream_delivery_resources
|
|
14716
15006
|
# Configuration for streaming memory record data to external
|
|
14717
15007
|
# resources.
|
|
@@ -14726,6 +15016,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14726
15016
|
:event_expiry_duration,
|
|
14727
15017
|
:memory_execution_role_arn,
|
|
14728
15018
|
:memory_strategies,
|
|
15019
|
+
:add_indexed_keys,
|
|
14729
15020
|
:stream_delivery_resources)
|
|
14730
15021
|
SENSITIVE = [:description]
|
|
14731
15022
|
include Aws::Structure
|
|
@@ -15880,13 +16171,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
15880
16171
|
# strategy.
|
|
15881
16172
|
# @return [Array<String>]
|
|
15882
16173
|
#
|
|
16174
|
+
# @!attribute [rw] memory_record_schema
|
|
16175
|
+
# Schema for metadata fields on records generated by this strategy.
|
|
16176
|
+
# @return [Types::MemoryRecordSchema]
|
|
16177
|
+
#
|
|
15883
16178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UserPreferenceMemoryStrategyInput AWS API Documentation
|
|
15884
16179
|
#
|
|
15885
16180
|
class UserPreferenceMemoryStrategyInput < Struct.new(
|
|
15886
16181
|
:name,
|
|
15887
16182
|
:description,
|
|
15888
16183
|
:namespaces,
|
|
15889
|
-
:namespace_templates
|
|
16184
|
+
:namespace_templates,
|
|
16185
|
+
:memory_record_schema)
|
|
15890
16186
|
SENSITIVE = [:description]
|
|
15891
16187
|
include Aws::Structure
|
|
15892
16188
|
end
|
|
@@ -15950,6 +16246,42 @@ module Aws::BedrockAgentCoreControl
|
|
|
15950
16246
|
include Aws::Structure
|
|
15951
16247
|
end
|
|
15952
16248
|
|
|
16249
|
+
# Validation rules for extracted metadata values. Only one type can be
|
|
16250
|
+
# specified, matching the field's data type.
|
|
16251
|
+
#
|
|
16252
|
+
# @note Validation is a union - when making an API calls you must set exactly one of the members.
|
|
16253
|
+
#
|
|
16254
|
+
# @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.
|
|
16255
|
+
#
|
|
16256
|
+
# @!attribute [rw] string_validation
|
|
16257
|
+
# Validation for STRING fields.
|
|
16258
|
+
# @return [Types::StringValidation]
|
|
16259
|
+
#
|
|
16260
|
+
# @!attribute [rw] string_list_validation
|
|
16261
|
+
# Validation for STRINGLIST fields.
|
|
16262
|
+
# @return [Types::StringListValidation]
|
|
16263
|
+
#
|
|
16264
|
+
# @!attribute [rw] number_validation
|
|
16265
|
+
# Validation for NUMBER fields.
|
|
16266
|
+
# @return [Types::NumberValidation]
|
|
16267
|
+
#
|
|
16268
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Validation AWS API Documentation
|
|
16269
|
+
#
|
|
16270
|
+
class Validation < Struct.new(
|
|
16271
|
+
:string_validation,
|
|
16272
|
+
:string_list_validation,
|
|
16273
|
+
:number_validation,
|
|
16274
|
+
:unknown)
|
|
16275
|
+
SENSITIVE = []
|
|
16276
|
+
include Aws::Structure
|
|
16277
|
+
include Aws::Structure::Union
|
|
16278
|
+
|
|
16279
|
+
class StringValidation < Validation; end
|
|
16280
|
+
class StringListValidation < Validation; end
|
|
16281
|
+
class NumberValidation < Validation; end
|
|
16282
|
+
class Unknown < Validation; end
|
|
16283
|
+
end
|
|
16284
|
+
|
|
15953
16285
|
# The input fails to satisfy the constraints specified by the service.
|
|
15954
16286
|
#
|
|
15955
16287
|
# @!attribute [rw] message
|