aws-sdk-bedrockagentcorecontrol 1.60.0 → 1.62.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 +53 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +35 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +108 -0
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/params.rbs +19 -2
- data/sig/types.rbs +32 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 41f6f451b010ea40361b5de95ff46e81764a71976a73e1fd77f34909e9f3a715
|
|
4
|
+
data.tar.gz: d0f7f5198a2735c546fa274b258d1be00f58b1eb178796c7ec6507636c2f7ef8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29b68cfce15504a993fbc258df2c4ed12305ab6e913afbf314531253d5a997486675fececdc213714cb82f78ad634fd0a6d3e99bd1ec0e31906e1315d23d9f33
|
|
7
|
+
data.tar.gz: 31b2471a1b2ffc1bab7d72e4806b092d466bfa73b72aaab16248e712be45019b981b3769966745569af88c2b2dce2dc355ce74dacdb9ae3134c680dbb8cbc460
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.0 (2026-08-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding support for fine-grained access control for AgentCore Memory through managed AgentCore Gateway HTTP Connectors.
|
|
8
|
+
|
|
9
|
+
1.61.0 (2026-07-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for configuring models through the OpenResponses API for custom evaluators. CreateEvaluator and UpdateEvaluator now accept an OpenResponses model configuration for LLM-as-a-Judge evaluations.
|
|
13
|
+
|
|
4
14
|
1.60.0 (2026-07-28)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
|
@@ -1535,6 +1535,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
1535
1535
|
# additional_model_request_fields: {
|
|
1536
1536
|
# },
|
|
1537
1537
|
# },
|
|
1538
|
+
# responses_evaluator_model_config: {
|
|
1539
|
+
# model_id: "ModelId", # required
|
|
1540
|
+
# max_output_tokens: 1,
|
|
1541
|
+
# temperature: 1.0,
|
|
1542
|
+
# top_p: 1.0,
|
|
1543
|
+
# reasoning: {
|
|
1544
|
+
# effort: "ReasoningConfigurationEffortString",
|
|
1545
|
+
# },
|
|
1546
|
+
# },
|
|
1538
1547
|
# },
|
|
1539
1548
|
# },
|
|
1540
1549
|
# code_based: {
|
|
@@ -2255,6 +2264,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2255
2264
|
# timeout: 1,
|
|
2256
2265
|
# },
|
|
2257
2266
|
# },
|
|
2267
|
+
# connector: {
|
|
2268
|
+
# source: { # required
|
|
2269
|
+
# connector_id: "ConnectorId", # required
|
|
2270
|
+
# },
|
|
2271
|
+
# parameters: {
|
|
2272
|
+
# "ConnectorParameterName" => "ConnectorParameterValue",
|
|
2273
|
+
# },
|
|
2274
|
+
# },
|
|
2258
2275
|
# },
|
|
2259
2276
|
# inference: {
|
|
2260
2277
|
# connector: {
|
|
@@ -2409,6 +2426,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
2409
2426
|
# resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
2410
2427
|
# resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
2411
2428
|
# resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
2429
|
+
# resp.target_configuration.http.connector.source.connector_id #=> String
|
|
2430
|
+
# resp.target_configuration.http.connector.parameters #=> Hash
|
|
2431
|
+
# resp.target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
|
|
2412
2432
|
# resp.target_configuration.inference.connector.source.connector_id #=> String
|
|
2413
2433
|
# resp.target_configuration.inference.provider.endpoint #=> String
|
|
2414
2434
|
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
@@ -6784,6 +6804,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
6784
6804
|
# resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.top_p #=> Float
|
|
6785
6805
|
# resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences #=> Array
|
|
6786
6806
|
# resp.evaluator_config.llm_as_a_judge.model_config.bedrock_evaluator_model_config.inference_config.stop_sequences[0] #=> String
|
|
6807
|
+
# resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.model_id #=> String
|
|
6808
|
+
# resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.max_output_tokens #=> Integer
|
|
6809
|
+
# resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.temperature #=> Float
|
|
6810
|
+
# resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.top_p #=> Float
|
|
6811
|
+
# resp.evaluator_config.llm_as_a_judge.model_config.responses_evaluator_model_config.reasoning.effort #=> String
|
|
6787
6812
|
# resp.evaluator_config.code_based.lambda_config.lambda_arn #=> String
|
|
6788
6813
|
# resp.evaluator_config.code_based.lambda_config.lambda_timeout_in_seconds #=> Integer
|
|
6789
6814
|
# resp.level #=> String, one of "TOOL_CALL", "TRACE", "SESSION"
|
|
@@ -7110,6 +7135,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
7110
7135
|
# resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
7111
7136
|
# resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
7112
7137
|
# resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
7138
|
+
# resp.target_configuration.http.connector.source.connector_id #=> String
|
|
7139
|
+
# resp.target_configuration.http.connector.parameters #=> Hash
|
|
7140
|
+
# resp.target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
|
|
7113
7141
|
# resp.target_configuration.inference.connector.source.connector_id #=> String
|
|
7114
7142
|
# resp.target_configuration.inference.provider.endpoint #=> String
|
|
7115
7143
|
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
@@ -9337,7 +9365,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9337
9365
|
# resp.items[0].last_synchronized_at #=> Time
|
|
9338
9366
|
# resp.items[0].authorization_data.oauth2.authorization_url #=> String
|
|
9339
9367
|
# resp.items[0].authorization_data.oauth2.user_id #=> String
|
|
9340
|
-
# resp.items[0].target_type #=> String, one of "OPEN_API_SCHEMA", "SMITHY_MODEL", "MCP_SERVER", "LAMBDA", "API_GATEWAY", "CONNECTOR", "AGENTCORE_RUNTIME", "PASSTHROUGH", "PROVIDER"
|
|
9368
|
+
# resp.items[0].target_type #=> String, one of "OPEN_API_SCHEMA", "SMITHY_MODEL", "MCP_SERVER", "LAMBDA", "API_GATEWAY", "CONNECTOR", "AGENTCORE_RUNTIME", "PASSTHROUGH", "PROVIDER", "HTTP_CONNECTOR"
|
|
9341
9369
|
# resp.items[0].listing_mode #=> String, one of "DEFAULT", "DYNAMIC"
|
|
9342
9370
|
# resp.next_token #=> String
|
|
9343
9371
|
#
|
|
@@ -10816,6 +10844,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
10816
10844
|
# resp.targets[0].target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
10817
10845
|
# resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
10818
10846
|
# resp.targets[0].target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
10847
|
+
# resp.targets[0].target_configuration.http.connector.source.connector_id #=> String
|
|
10848
|
+
# resp.targets[0].target_configuration.http.connector.parameters #=> Hash
|
|
10849
|
+
# resp.targets[0].target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
|
|
10819
10850
|
# resp.targets[0].target_configuration.inference.connector.source.connector_id #=> String
|
|
10820
10851
|
# resp.targets[0].target_configuration.inference.provider.endpoint #=> String
|
|
10821
10852
|
# resp.targets[0].target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
@@ -11582,6 +11613,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
11582
11613
|
# additional_model_request_fields: {
|
|
11583
11614
|
# },
|
|
11584
11615
|
# },
|
|
11616
|
+
# responses_evaluator_model_config: {
|
|
11617
|
+
# model_id: "ModelId", # required
|
|
11618
|
+
# max_output_tokens: 1,
|
|
11619
|
+
# temperature: 1.0,
|
|
11620
|
+
# top_p: 1.0,
|
|
11621
|
+
# reasoning: {
|
|
11622
|
+
# effort: "ReasoningConfigurationEffortString",
|
|
11623
|
+
# },
|
|
11624
|
+
# },
|
|
11585
11625
|
# },
|
|
11586
11626
|
# },
|
|
11587
11627
|
# code_based: {
|
|
@@ -12260,6 +12300,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
12260
12300
|
# timeout: 1,
|
|
12261
12301
|
# },
|
|
12262
12302
|
# },
|
|
12303
|
+
# connector: {
|
|
12304
|
+
# source: { # required
|
|
12305
|
+
# connector_id: "ConnectorId", # required
|
|
12306
|
+
# },
|
|
12307
|
+
# parameters: {
|
|
12308
|
+
# "ConnectorParameterName" => "ConnectorParameterValue",
|
|
12309
|
+
# },
|
|
12310
|
+
# },
|
|
12263
12311
|
# },
|
|
12264
12312
|
# inference: {
|
|
12265
12313
|
# connector: {
|
|
@@ -12414,6 +12462,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
12414
12462
|
# resp.target_configuration.http.passthrough.schema.source.inline_payload #=> String
|
|
12415
12463
|
# resp.target_configuration.http.passthrough.stickiness_configuration.identifier #=> String
|
|
12416
12464
|
# resp.target_configuration.http.passthrough.stickiness_configuration.timeout #=> Integer
|
|
12465
|
+
# resp.target_configuration.http.connector.source.connector_id #=> String
|
|
12466
|
+
# resp.target_configuration.http.connector.parameters #=> Hash
|
|
12467
|
+
# resp.target_configuration.http.connector.parameters["ConnectorParameterName"] #=> String
|
|
12417
12468
|
# resp.target_configuration.inference.connector.source.connector_id #=> String
|
|
12418
12469
|
# resp.target_configuration.inference.provider.endpoint #=> String
|
|
12419
12470
|
# resp.target_configuration.inference.provider.model_mapping.provider_prefix.strip #=> Boolean
|
|
@@ -15125,7 +15176,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
15125
15176
|
tracer: tracer
|
|
15126
15177
|
)
|
|
15127
15178
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
15128
|
-
context[:gem_version] = '1.
|
|
15179
|
+
context[:gem_version] = '1.62.0'
|
|
15129
15180
|
Seahorse::Client::Request.new(handlers, context)
|
|
15130
15181
|
end
|
|
15131
15182
|
|
|
@@ -165,8 +165,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
165
165
|
ConnectorConfigurationNameString = Shapes::StringShape.new(name: 'ConnectorConfigurationNameString')
|
|
166
166
|
ConnectorConfigurations = Shapes::ListShape.new(name: 'ConnectorConfigurations')
|
|
167
167
|
ConnectorId = Shapes::StringShape.new(name: 'ConnectorId')
|
|
168
|
+
ConnectorParameterName = Shapes::StringShape.new(name: 'ConnectorParameterName')
|
|
168
169
|
ConnectorParameterOverride = Shapes::StructureShape.new(name: 'ConnectorParameterOverride')
|
|
169
170
|
ConnectorParameterOverrides = Shapes::ListShape.new(name: 'ConnectorParameterOverrides')
|
|
171
|
+
ConnectorParameterValue = Shapes::StringShape.new(name: 'ConnectorParameterValue')
|
|
170
172
|
ConnectorSource = Shapes::StructureShape.new(name: 'ConnectorSource')
|
|
171
173
|
ConnectorTargetConfiguration = Shapes::StructureShape.new(name: 'ConnectorTargetConfiguration')
|
|
172
174
|
ConnectorVersion = Shapes::StringShape.new(name: 'ConnectorVersion')
|
|
@@ -584,6 +586,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
584
586
|
HostingEnvironment = Shapes::StructureShape.new(name: 'HostingEnvironment')
|
|
585
587
|
HostingEnvironmentListType = Shapes::ListShape.new(name: 'HostingEnvironmentListType')
|
|
586
588
|
HttpApiSchemaConfiguration = Shapes::StructureShape.new(name: 'HttpApiSchemaConfiguration')
|
|
589
|
+
HttpConnectorParameters = Shapes::MapShape.new(name: 'HttpConnectorParameters')
|
|
590
|
+
HttpConnectorSource = Shapes::StructureShape.new(name: 'HttpConnectorSource')
|
|
591
|
+
HttpConnectorTargetConfiguration = Shapes::StructureShape.new(name: 'HttpConnectorTargetConfiguration')
|
|
587
592
|
HttpHeaderKey = Shapes::StringShape.new(name: 'HttpHeaderKey')
|
|
588
593
|
HttpHeaderName = Shapes::StringShape.new(name: 'HttpHeaderName')
|
|
589
594
|
HttpHeaderValue = Shapes::StringShape.new(name: 'HttpHeaderValue')
|
|
@@ -851,6 +856,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
851
856
|
OnlineEvaluationConfigSummary = Shapes::StructureShape.new(name: 'OnlineEvaluationConfigSummary')
|
|
852
857
|
OnlineEvaluationConfigSummaryList = Shapes::ListShape.new(name: 'OnlineEvaluationConfigSummaryList')
|
|
853
858
|
OnlineEvaluationExecutionStatus = Shapes::StringShape.new(name: 'OnlineEvaluationExecutionStatus')
|
|
859
|
+
OpenResponsesEvaluatorModelConfig = Shapes::StructureShape.new(name: 'OpenResponsesEvaluatorModelConfig')
|
|
860
|
+
OpenResponsesEvaluatorModelConfigMaxOutputTokensInteger = Shapes::IntegerShape.new(name: 'OpenResponsesEvaluatorModelConfigMaxOutputTokensInteger')
|
|
861
|
+
OpenResponsesEvaluatorModelConfigTemperatureFloat = Shapes::FloatShape.new(name: 'OpenResponsesEvaluatorModelConfigTemperatureFloat')
|
|
862
|
+
OpenResponsesEvaluatorModelConfigTopPFloat = Shapes::FloatShape.new(name: 'OpenResponsesEvaluatorModelConfigTopPFloat')
|
|
854
863
|
OutputConfig = Shapes::StructureShape.new(name: 'OutputConfig')
|
|
855
864
|
OverrideType = Shapes::StringShape.new(name: 'OverrideType')
|
|
856
865
|
PassthroughEndpoint = Shapes::StringShape.new(name: 'PassthroughEndpoint')
|
|
@@ -921,6 +930,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
921
930
|
PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
|
|
922
931
|
PutResourcePolicyResponse = Shapes::StructureShape.new(name: 'PutResourcePolicyResponse')
|
|
923
932
|
RatingScale = Shapes::UnionShape.new(name: 'RatingScale')
|
|
933
|
+
ReasoningConfiguration = Shapes::StructureShape.new(name: 'ReasoningConfiguration')
|
|
934
|
+
ReasoningConfigurationEffortString = Shapes::StringShape.new(name: 'ReasoningConfigurationEffortString')
|
|
924
935
|
RecordIdentifier = Shapes::StringShape.new(name: 'RecordIdentifier')
|
|
925
936
|
RecordingConfig = Shapes::StructureShape.new(name: 'RecordingConfig')
|
|
926
937
|
ReflectionConfiguration = Shapes::UnionShape.new(name: 'ReflectionConfiguration')
|
|
@@ -2629,8 +2640,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
2629
2640
|
EvaluatorList.member = Shapes::ShapeRef.new(shape: EvaluatorReference)
|
|
2630
2641
|
|
|
2631
2642
|
EvaluatorModelConfig.add_member(:bedrock_evaluator_model_config, Shapes::ShapeRef.new(shape: BedrockEvaluatorModelConfig, location_name: "bedrockEvaluatorModelConfig"))
|
|
2643
|
+
EvaluatorModelConfig.add_member(:responses_evaluator_model_config, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfig, location_name: "responsesEvaluatorModelConfig"))
|
|
2632
2644
|
EvaluatorModelConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2633
2645
|
EvaluatorModelConfig.add_member_subclass(:bedrock_evaluator_model_config, Types::EvaluatorModelConfig::BedrockEvaluatorModelConfig)
|
|
2646
|
+
EvaluatorModelConfig.add_member_subclass(:responses_evaluator_model_config, Types::EvaluatorModelConfig::ResponsesEvaluatorModelConfig)
|
|
2634
2647
|
EvaluatorModelConfig.add_member_subclass(:unknown, Types::EvaluatorModelConfig::Unknown)
|
|
2635
2648
|
EvaluatorModelConfig.struct_class = Types::EvaluatorModelConfig
|
|
2636
2649
|
|
|
@@ -3579,14 +3592,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
3579
3592
|
HttpApiSchemaConfiguration.add_member(:source, Shapes::ShapeRef.new(shape: ApiSchemaConfiguration, required: true, location_name: "source"))
|
|
3580
3593
|
HttpApiSchemaConfiguration.struct_class = Types::HttpApiSchemaConfiguration
|
|
3581
3594
|
|
|
3595
|
+
HttpConnectorParameters.key = Shapes::ShapeRef.new(shape: ConnectorParameterName)
|
|
3596
|
+
HttpConnectorParameters.value = Shapes::ShapeRef.new(shape: ConnectorParameterValue)
|
|
3597
|
+
|
|
3598
|
+
HttpConnectorSource.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "connectorId"))
|
|
3599
|
+
HttpConnectorSource.struct_class = Types::HttpConnectorSource
|
|
3600
|
+
|
|
3601
|
+
HttpConnectorTargetConfiguration.add_member(:source, Shapes::ShapeRef.new(shape: HttpConnectorSource, required: true, location_name: "source"))
|
|
3602
|
+
HttpConnectorTargetConfiguration.add_member(:parameters, Shapes::ShapeRef.new(shape: HttpConnectorParameters, location_name: "parameters"))
|
|
3603
|
+
HttpConnectorTargetConfiguration.struct_class = Types::HttpConnectorTargetConfiguration
|
|
3604
|
+
|
|
3582
3605
|
HttpHeadersMap.key = Shapes::ShapeRef.new(shape: HttpHeaderKey)
|
|
3583
3606
|
HttpHeadersMap.value = Shapes::ShapeRef.new(shape: HttpHeaderValue)
|
|
3584
3607
|
|
|
3585
3608
|
HttpTargetConfiguration.add_member(:agentcore_runtime, Shapes::ShapeRef.new(shape: RuntimeTargetConfiguration, location_name: "agentcoreRuntime"))
|
|
3586
3609
|
HttpTargetConfiguration.add_member(:passthrough, Shapes::ShapeRef.new(shape: PassthroughTargetConfiguration, location_name: "passthrough"))
|
|
3610
|
+
HttpTargetConfiguration.add_member(:connector, Shapes::ShapeRef.new(shape: HttpConnectorTargetConfiguration, location_name: "connector"))
|
|
3587
3611
|
HttpTargetConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
3588
3612
|
HttpTargetConfiguration.add_member_subclass(:agentcore_runtime, Types::HttpTargetConfiguration::AgentcoreRuntime)
|
|
3589
3613
|
HttpTargetConfiguration.add_member_subclass(:passthrough, Types::HttpTargetConfiguration::Passthrough)
|
|
3614
|
+
HttpTargetConfiguration.add_member_subclass(:connector, Types::HttpTargetConfiguration::Connector)
|
|
3590
3615
|
HttpTargetConfiguration.add_member_subclass(:unknown, Types::HttpTargetConfiguration::Unknown)
|
|
3591
3616
|
HttpTargetConfiguration.struct_class = Types::HttpTargetConfiguration
|
|
3592
3617
|
|
|
@@ -4405,6 +4430,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
4405
4430
|
|
|
4406
4431
|
OnlineEvaluationConfigSummaryList.member = Shapes::ShapeRef.new(shape: OnlineEvaluationConfigSummary)
|
|
4407
4432
|
|
|
4433
|
+
OpenResponsesEvaluatorModelConfig.add_member(:model_id, Shapes::ShapeRef.new(shape: ModelId, required: true, location_name: "modelId"))
|
|
4434
|
+
OpenResponsesEvaluatorModelConfig.add_member(:max_output_tokens, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfigMaxOutputTokensInteger, location_name: "maxOutputTokens"))
|
|
4435
|
+
OpenResponsesEvaluatorModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfigTemperatureFloat, location_name: "temperature"))
|
|
4436
|
+
OpenResponsesEvaluatorModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: OpenResponsesEvaluatorModelConfigTopPFloat, location_name: "topP"))
|
|
4437
|
+
OpenResponsesEvaluatorModelConfig.add_member(:reasoning, Shapes::ShapeRef.new(shape: ReasoningConfiguration, location_name: "reasoning"))
|
|
4438
|
+
OpenResponsesEvaluatorModelConfig.struct_class = Types::OpenResponsesEvaluatorModelConfig
|
|
4439
|
+
|
|
4408
4440
|
OutputConfig.add_member(:cloud_watch_config, Shapes::ShapeRef.new(shape: CloudWatchOutputConfig, required: true, location_name: "cloudWatchConfig"))
|
|
4409
4441
|
OutputConfig.struct_class = Types::OutputConfig
|
|
4410
4442
|
|
|
@@ -4619,6 +4651,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4619
4651
|
RatingScale.add_member_subclass(:unknown, Types::RatingScale::Unknown)
|
|
4620
4652
|
RatingScale.struct_class = Types::RatingScale
|
|
4621
4653
|
|
|
4654
|
+
ReasoningConfiguration.add_member(:effort, Shapes::ShapeRef.new(shape: ReasoningConfigurationEffortString, location_name: "effort"))
|
|
4655
|
+
ReasoningConfiguration.struct_class = Types::ReasoningConfiguration
|
|
4656
|
+
|
|
4622
4657
|
RecordingConfig.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
4623
4658
|
RecordingConfig.add_member(:s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3Location"))
|
|
4624
4659
|
RecordingConfig.struct_class = Types::RecordingConfig
|
|
@@ -6698,16 +6698,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
6698
6698
|
# The Amazon Bedrock model configuration for evaluation.
|
|
6699
6699
|
# @return [Types::BedrockEvaluatorModelConfig]
|
|
6700
6700
|
#
|
|
6701
|
+
# @!attribute [rw] responses_evaluator_model_config
|
|
6702
|
+
# The OpenResponses model configuration for evaluation.
|
|
6703
|
+
# @return [Types::OpenResponsesEvaluatorModelConfig]
|
|
6704
|
+
#
|
|
6701
6705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EvaluatorModelConfig AWS API Documentation
|
|
6702
6706
|
#
|
|
6703
6707
|
class EvaluatorModelConfig < Struct.new(
|
|
6704
6708
|
:bedrock_evaluator_model_config,
|
|
6709
|
+
:responses_evaluator_model_config,
|
|
6705
6710
|
:unknown)
|
|
6706
6711
|
SENSITIVE = []
|
|
6707
6712
|
include Aws::Structure
|
|
6708
6713
|
include Aws::Structure::Union
|
|
6709
6714
|
|
|
6710
6715
|
class BedrockEvaluatorModelConfig < EvaluatorModelConfig; end
|
|
6716
|
+
class ResponsesEvaluatorModelConfig < EvaluatorModelConfig; end
|
|
6711
6717
|
class Unknown < EvaluatorModelConfig; end
|
|
6712
6718
|
end
|
|
6713
6719
|
|
|
@@ -11113,6 +11119,42 @@ module Aws::BedrockAgentCoreControl
|
|
|
11113
11119
|
include Aws::Structure
|
|
11114
11120
|
end
|
|
11115
11121
|
|
|
11122
|
+
# The source identifying the HTTP connector integration.
|
|
11123
|
+
#
|
|
11124
|
+
# @!attribute [rw] connector_id
|
|
11125
|
+
# The identifier for the HTTP connector integration.
|
|
11126
|
+
# @return [String]
|
|
11127
|
+
#
|
|
11128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpConnectorSource AWS API Documentation
|
|
11129
|
+
#
|
|
11130
|
+
class HttpConnectorSource < Struct.new(
|
|
11131
|
+
:connector_id)
|
|
11132
|
+
SENSITIVE = []
|
|
11133
|
+
include Aws::Structure
|
|
11134
|
+
end
|
|
11135
|
+
|
|
11136
|
+
# The configuration for an HTTP connector target. Use this configuration
|
|
11137
|
+
# when you want to route HTTP requests through a managed connector.
|
|
11138
|
+
#
|
|
11139
|
+
# @!attribute [rw] source
|
|
11140
|
+
# The source configuration identifying which HTTP connector to use.
|
|
11141
|
+
# @return [Types::HttpConnectorSource]
|
|
11142
|
+
#
|
|
11143
|
+
# @!attribute [rw] parameters
|
|
11144
|
+
# The resource parameters for this connector (for example,
|
|
11145
|
+
# `memoryId`). The service validates these parameters against the
|
|
11146
|
+
# request path at runtime.
|
|
11147
|
+
# @return [Hash<String,String>]
|
|
11148
|
+
#
|
|
11149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpConnectorTargetConfiguration AWS API Documentation
|
|
11150
|
+
#
|
|
11151
|
+
class HttpConnectorTargetConfiguration < Struct.new(
|
|
11152
|
+
:source,
|
|
11153
|
+
:parameters)
|
|
11154
|
+
SENSITIVE = []
|
|
11155
|
+
include Aws::Structure
|
|
11156
|
+
end
|
|
11157
|
+
|
|
11116
11158
|
# The HTTP target configuration for a gateway target. Contains the
|
|
11117
11159
|
# configuration for HTTP-based target endpoints.
|
|
11118
11160
|
#
|
|
@@ -11130,11 +11172,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
11130
11172
|
# target forwards requests directly to an external HTTP endpoint.
|
|
11131
11173
|
# @return [Types::PassthroughTargetConfiguration]
|
|
11132
11174
|
#
|
|
11175
|
+
# @!attribute [rw] connector
|
|
11176
|
+
# The connector-based configuration for the HTTP target. Use this
|
|
11177
|
+
# configuration when you want to route HTTP requests through a managed
|
|
11178
|
+
# connector.
|
|
11179
|
+
# @return [Types::HttpConnectorTargetConfiguration]
|
|
11180
|
+
#
|
|
11133
11181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpTargetConfiguration AWS API Documentation
|
|
11134
11182
|
#
|
|
11135
11183
|
class HttpTargetConfiguration < Struct.new(
|
|
11136
11184
|
:agentcore_runtime,
|
|
11137
11185
|
:passthrough,
|
|
11186
|
+
:connector,
|
|
11138
11187
|
:unknown)
|
|
11139
11188
|
SENSITIVE = []
|
|
11140
11189
|
include Aws::Structure
|
|
@@ -11142,6 +11191,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
11142
11191
|
|
|
11143
11192
|
class AgentcoreRuntime < HttpTargetConfiguration; end
|
|
11144
11193
|
class Passthrough < HttpTargetConfiguration; end
|
|
11194
|
+
class Connector < HttpTargetConfiguration; end
|
|
11145
11195
|
class Unknown < HttpTargetConfiguration; end
|
|
11146
11196
|
end
|
|
11147
11197
|
|
|
@@ -14923,6 +14973,47 @@ module Aws::BedrockAgentCoreControl
|
|
|
14923
14973
|
include Aws::Structure
|
|
14924
14974
|
end
|
|
14925
14975
|
|
|
14976
|
+
# The configuration for using models served through the OpenResponses
|
|
14977
|
+
# API in evaluator assessments, including model selection and inference
|
|
14978
|
+
# parameters.
|
|
14979
|
+
#
|
|
14980
|
+
# @!attribute [rw] model_id
|
|
14981
|
+
# The identifier of the model to use for evaluation.
|
|
14982
|
+
# @return [String]
|
|
14983
|
+
#
|
|
14984
|
+
# @!attribute [rw] max_output_tokens
|
|
14985
|
+
# The maximum number of tokens to generate in the model response,
|
|
14986
|
+
# including visible output and reasoning tokens.
|
|
14987
|
+
# @return [Integer]
|
|
14988
|
+
#
|
|
14989
|
+
# @!attribute [rw] temperature
|
|
14990
|
+
# The temperature value that controls randomness in the model's
|
|
14991
|
+
# responses. Lower values produce more deterministic outputs.
|
|
14992
|
+
# @return [Float]
|
|
14993
|
+
#
|
|
14994
|
+
# @!attribute [rw] top_p
|
|
14995
|
+
# The top-p sampling parameter that controls the diversity of the
|
|
14996
|
+
# model's responses by limiting the cumulative probability of token
|
|
14997
|
+
# choices.
|
|
14998
|
+
# @return [Float]
|
|
14999
|
+
#
|
|
15000
|
+
# @!attribute [rw] reasoning
|
|
15001
|
+
# The reasoning configuration for reasoning models. Non-reasoning
|
|
15002
|
+
# models ignore this configuration.
|
|
15003
|
+
# @return [Types::ReasoningConfiguration]
|
|
15004
|
+
#
|
|
15005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OpenResponsesEvaluatorModelConfig AWS API Documentation
|
|
15006
|
+
#
|
|
15007
|
+
class OpenResponsesEvaluatorModelConfig < Struct.new(
|
|
15008
|
+
:model_id,
|
|
15009
|
+
:max_output_tokens,
|
|
15010
|
+
:temperature,
|
|
15011
|
+
:top_p,
|
|
15012
|
+
:reasoning)
|
|
15013
|
+
SENSITIVE = []
|
|
15014
|
+
include Aws::Structure
|
|
15015
|
+
end
|
|
15016
|
+
|
|
14926
15017
|
# The configuration that specifies where evaluation results should be
|
|
14927
15018
|
# written for monitoring and analysis.
|
|
14928
15019
|
#
|
|
@@ -15956,6 +16047,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
15956
16047
|
class Unknown < RatingScale; end
|
|
15957
16048
|
end
|
|
15958
16049
|
|
|
16050
|
+
# The reasoning configuration that controls how a reasoning model
|
|
16051
|
+
# allocates effort during evaluation.
|
|
16052
|
+
#
|
|
16053
|
+
# @!attribute [rw] effort
|
|
16054
|
+
# The level of reasoning effort the model applies when generating a
|
|
16055
|
+
# response. For supported values, see the model provider's
|
|
16056
|
+
# documentation.
|
|
16057
|
+
# @return [String]
|
|
16058
|
+
#
|
|
16059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ReasoningConfiguration AWS API Documentation
|
|
16060
|
+
#
|
|
16061
|
+
class ReasoningConfiguration < Struct.new(
|
|
16062
|
+
:effort)
|
|
16063
|
+
SENSITIVE = []
|
|
16064
|
+
include Aws::Structure
|
|
16065
|
+
end
|
|
16066
|
+
|
|
15959
16067
|
# The recording configuration for a browser. This structure defines how
|
|
15960
16068
|
# browser sessions are recorded.
|
|
15961
16069
|
#
|
data/sig/params.rbs
CHANGED
|
@@ -163,8 +163,19 @@ module Aws
|
|
|
163
163
|
}?
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
type open_responses_evaluator_model_config = {
|
|
167
|
+
model_id: ::String,
|
|
168
|
+
max_output_tokens: ::Integer?,
|
|
169
|
+
temperature: ::Float?,
|
|
170
|
+
top_p: ::Float?,
|
|
171
|
+
reasoning: {
|
|
172
|
+
effort: ::String?
|
|
173
|
+
}?
|
|
174
|
+
}
|
|
175
|
+
|
|
166
176
|
type evaluator_model_config = {
|
|
167
|
-
bedrock_evaluator_model_config: Params::bedrock_evaluator_model_config
|
|
177
|
+
bedrock_evaluator_model_config: Params::bedrock_evaluator_model_config?,
|
|
178
|
+
responses_evaluator_model_config: Params::open_responses_evaluator_model_config?
|
|
168
179
|
}
|
|
169
180
|
|
|
170
181
|
type llm_as_a_judge_evaluator_config = {
|
|
@@ -398,7 +409,13 @@ module Aws
|
|
|
398
409
|
|
|
399
410
|
type http_target_configuration = {
|
|
400
411
|
agentcore_runtime: Params::runtime_target_configuration?,
|
|
401
|
-
passthrough: Params::passthrough_target_configuration
|
|
412
|
+
passthrough: Params::passthrough_target_configuration?,
|
|
413
|
+
connector: {
|
|
414
|
+
source: {
|
|
415
|
+
connector_id: ::String
|
|
416
|
+
},
|
|
417
|
+
parameters: Hash[::String, ::String]?
|
|
418
|
+
}?
|
|
402
419
|
}
|
|
403
420
|
|
|
404
421
|
type inference_provider_target_configuration = {
|
data/sig/types.rbs
CHANGED
|
@@ -1801,11 +1801,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1801
1801
|
|
|
1802
1802
|
class EvaluatorModelConfig
|
|
1803
1803
|
attr_accessor bedrock_evaluator_model_config: Types::BedrockEvaluatorModelConfig
|
|
1804
|
+
attr_accessor responses_evaluator_model_config: Types::OpenResponsesEvaluatorModelConfig
|
|
1804
1805
|
attr_accessor unknown: untyped
|
|
1805
1806
|
SENSITIVE: []
|
|
1806
1807
|
|
|
1807
1808
|
class BedrockEvaluatorModelConfig < EvaluatorModelConfig
|
|
1808
1809
|
end
|
|
1810
|
+
class ResponsesEvaluatorModelConfig < EvaluatorModelConfig
|
|
1811
|
+
end
|
|
1809
1812
|
class Unknown < EvaluatorModelConfig
|
|
1810
1813
|
end
|
|
1811
1814
|
end
|
|
@@ -3022,9 +3025,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
3022
3025
|
SENSITIVE: []
|
|
3023
3026
|
end
|
|
3024
3027
|
|
|
3028
|
+
class HttpConnectorSource
|
|
3029
|
+
attr_accessor connector_id: ::String
|
|
3030
|
+
SENSITIVE: []
|
|
3031
|
+
end
|
|
3032
|
+
|
|
3033
|
+
class HttpConnectorTargetConfiguration
|
|
3034
|
+
attr_accessor source: Types::HttpConnectorSource
|
|
3035
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
3036
|
+
SENSITIVE: []
|
|
3037
|
+
end
|
|
3038
|
+
|
|
3025
3039
|
class HttpTargetConfiguration
|
|
3026
3040
|
attr_accessor agentcore_runtime: Types::RuntimeTargetConfiguration
|
|
3027
3041
|
attr_accessor passthrough: Types::PassthroughTargetConfiguration
|
|
3042
|
+
attr_accessor connector: Types::HttpConnectorTargetConfiguration
|
|
3028
3043
|
attr_accessor unknown: untyped
|
|
3029
3044
|
SENSITIVE: []
|
|
3030
3045
|
|
|
@@ -3032,6 +3047,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
3032
3047
|
end
|
|
3033
3048
|
class Passthrough < HttpTargetConfiguration
|
|
3034
3049
|
end
|
|
3050
|
+
class Connector < HttpTargetConfiguration
|
|
3051
|
+
end
|
|
3035
3052
|
class Unknown < HttpTargetConfiguration
|
|
3036
3053
|
end
|
|
3037
3054
|
end
|
|
@@ -4166,6 +4183,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
4166
4183
|
SENSITIVE: [:description]
|
|
4167
4184
|
end
|
|
4168
4185
|
|
|
4186
|
+
class OpenResponsesEvaluatorModelConfig
|
|
4187
|
+
attr_accessor model_id: ::String
|
|
4188
|
+
attr_accessor max_output_tokens: ::Integer
|
|
4189
|
+
attr_accessor temperature: ::Float
|
|
4190
|
+
attr_accessor top_p: ::Float
|
|
4191
|
+
attr_accessor reasoning: Types::ReasoningConfiguration
|
|
4192
|
+
SENSITIVE: []
|
|
4193
|
+
end
|
|
4194
|
+
|
|
4169
4195
|
class OutputConfig
|
|
4170
4196
|
attr_accessor cloud_watch_config: Types::CloudWatchOutputConfig
|
|
4171
4197
|
SENSITIVE: []
|
|
@@ -4432,6 +4458,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
4432
4458
|
end
|
|
4433
4459
|
end
|
|
4434
4460
|
|
|
4461
|
+
class ReasoningConfiguration
|
|
4462
|
+
attr_accessor effort: ::String
|
|
4463
|
+
SENSITIVE: []
|
|
4464
|
+
end
|
|
4465
|
+
|
|
4435
4466
|
class RecordingConfig
|
|
4436
4467
|
attr_accessor enabled: bool
|
|
4437
4468
|
attr_accessor s3_location: Types::S3Location
|
|
@@ -5001,7 +5032,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5001
5032
|
attr_accessor resource_priority: ::Integer
|
|
5002
5033
|
attr_accessor last_synchronized_at: ::Time
|
|
5003
5034
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
5004
|
-
attr_accessor target_type: ("OPEN_API_SCHEMA" | "SMITHY_MODEL" | "MCP_SERVER" | "LAMBDA" | "API_GATEWAY" | "CONNECTOR" | "AGENTCORE_RUNTIME" | "PASSTHROUGH" | "PROVIDER")
|
|
5035
|
+
attr_accessor target_type: ("OPEN_API_SCHEMA" | "SMITHY_MODEL" | "MCP_SERVER" | "LAMBDA" | "API_GATEWAY" | "CONNECTOR" | "AGENTCORE_RUNTIME" | "PASSTHROUGH" | "PROVIDER" | "HTTP_CONNECTOR")
|
|
5005
5036
|
attr_accessor listing_mode: ("DEFAULT" | "DYNAMIC")
|
|
5006
5037
|
SENSITIVE: [:name, :description]
|
|
5007
5038
|
end
|