aws-sdk-bedrockagentcorecontrol 1.40.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +1719 -79
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +729 -9
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1931 -46
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +877 -37
- data/sig/types.rbs +536 -9
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -18,6 +18,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
18
18
|
SENSITIVE: []
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
+
class Action
|
|
22
|
+
attr_accessor configuration_bundle: Types::ConfigurationBundleAction
|
|
23
|
+
attr_accessor route_to_target: Types::RouteToTargetAction
|
|
24
|
+
attr_accessor unknown: untyped
|
|
25
|
+
SENSITIVE: []
|
|
26
|
+
|
|
27
|
+
class ConfigurationBundle < Action
|
|
28
|
+
end
|
|
29
|
+
class RouteToTarget < Action
|
|
30
|
+
end
|
|
31
|
+
class Unknown < Action
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
21
35
|
class AgentCardDefinition
|
|
22
36
|
attr_accessor schema_version: ::String
|
|
23
37
|
attr_accessor inline_content: ::String
|
|
@@ -323,11 +337,67 @@ module Aws::BedrockAgentCoreControl
|
|
|
323
337
|
SENSITIVE: [:description]
|
|
324
338
|
end
|
|
325
339
|
|
|
340
|
+
class ComponentConfiguration
|
|
341
|
+
attr_accessor configuration: untyped
|
|
342
|
+
SENSITIVE: []
|
|
343
|
+
end
|
|
344
|
+
|
|
326
345
|
class ConcurrentModificationException
|
|
327
346
|
attr_accessor message: ::String
|
|
328
347
|
SENSITIVE: []
|
|
329
348
|
end
|
|
330
349
|
|
|
350
|
+
class Condition
|
|
351
|
+
attr_accessor match_principals: Types::MatchPrincipals
|
|
352
|
+
attr_accessor match_paths: Types::MatchPaths
|
|
353
|
+
attr_accessor unknown: untyped
|
|
354
|
+
SENSITIVE: []
|
|
355
|
+
|
|
356
|
+
class MatchPrincipals < Condition
|
|
357
|
+
end
|
|
358
|
+
class MatchPaths < Condition
|
|
359
|
+
end
|
|
360
|
+
class Unknown < Condition
|
|
361
|
+
end
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
class ConfigurationBundleAction
|
|
365
|
+
attr_accessor static_override: Types::StaticOverride
|
|
366
|
+
attr_accessor weighted_override: Types::WeightedOverride
|
|
367
|
+
attr_accessor unknown: untyped
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
|
|
370
|
+
class StaticOverride < ConfigurationBundleAction
|
|
371
|
+
end
|
|
372
|
+
class WeightedOverride < ConfigurationBundleAction
|
|
373
|
+
end
|
|
374
|
+
class Unknown < ConfigurationBundleAction
|
|
375
|
+
end
|
|
376
|
+
end
|
|
377
|
+
|
|
378
|
+
class ConfigurationBundleReference
|
|
379
|
+
attr_accessor bundle_arn: ::String
|
|
380
|
+
attr_accessor bundle_version: ::String
|
|
381
|
+
SENSITIVE: []
|
|
382
|
+
end
|
|
383
|
+
|
|
384
|
+
class ConfigurationBundleSummary
|
|
385
|
+
attr_accessor bundle_arn: ::String
|
|
386
|
+
attr_accessor bundle_id: ::String
|
|
387
|
+
attr_accessor bundle_name: ::String
|
|
388
|
+
attr_accessor description: ::String
|
|
389
|
+
SENSITIVE: [:description]
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class ConfigurationBundleVersionSummary
|
|
393
|
+
attr_accessor bundle_arn: ::String
|
|
394
|
+
attr_accessor bundle_id: ::String
|
|
395
|
+
attr_accessor version_id: ::String
|
|
396
|
+
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
397
|
+
attr_accessor version_created_at: ::Time
|
|
398
|
+
SENSITIVE: []
|
|
399
|
+
end
|
|
400
|
+
|
|
331
401
|
class ConflictException
|
|
332
402
|
attr_accessor message: ::String
|
|
333
403
|
SENSITIVE: []
|
|
@@ -485,12 +555,33 @@ module Aws::BedrockAgentCoreControl
|
|
|
485
555
|
SENSITIVE: []
|
|
486
556
|
end
|
|
487
557
|
|
|
558
|
+
class CreateConfigurationBundleRequest
|
|
559
|
+
attr_accessor client_token: ::String
|
|
560
|
+
attr_accessor bundle_name: ::String
|
|
561
|
+
attr_accessor description: ::String
|
|
562
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
563
|
+
attr_accessor branch_name: ::String
|
|
564
|
+
attr_accessor commit_message: ::String
|
|
565
|
+
attr_accessor created_by: Types::VersionCreatedBySource
|
|
566
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
567
|
+
SENSITIVE: [:description]
|
|
568
|
+
end
|
|
569
|
+
|
|
570
|
+
class CreateConfigurationBundleResponse
|
|
571
|
+
attr_accessor bundle_arn: ::String
|
|
572
|
+
attr_accessor bundle_id: ::String
|
|
573
|
+
attr_accessor version_id: ::String
|
|
574
|
+
attr_accessor created_at: ::Time
|
|
575
|
+
SENSITIVE: []
|
|
576
|
+
end
|
|
577
|
+
|
|
488
578
|
class CreateEvaluatorRequest
|
|
489
579
|
attr_accessor client_token: ::String
|
|
490
580
|
attr_accessor evaluator_name: ::String
|
|
491
581
|
attr_accessor description: ::String
|
|
492
582
|
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
493
583
|
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
584
|
+
attr_accessor kms_key_arn: ::String
|
|
494
585
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
495
586
|
SENSITIVE: [:description]
|
|
496
587
|
end
|
|
@@ -510,7 +601,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
510
601
|
attr_accessor role_arn: ::String
|
|
511
602
|
attr_accessor protocol_type: ("MCP")
|
|
512
603
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
513
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
604
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
514
605
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
515
606
|
attr_accessor kms_key_arn: ::String
|
|
516
607
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -533,7 +624,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
533
624
|
attr_accessor role_arn: ::String
|
|
534
625
|
attr_accessor protocol_type: ("MCP")
|
|
535
626
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
536
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
627
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
537
628
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
538
629
|
attr_accessor kms_key_arn: ::String
|
|
539
630
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -543,6 +634,29 @@ module Aws::BedrockAgentCoreControl
|
|
|
543
634
|
SENSITIVE: [:name, :description]
|
|
544
635
|
end
|
|
545
636
|
|
|
637
|
+
class CreateGatewayRuleRequest
|
|
638
|
+
attr_accessor gateway_identifier: ::String
|
|
639
|
+
attr_accessor client_token: ::String
|
|
640
|
+
attr_accessor priority: ::Integer
|
|
641
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
642
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
643
|
+
attr_accessor description: ::String
|
|
644
|
+
SENSITIVE: []
|
|
645
|
+
end
|
|
646
|
+
|
|
647
|
+
class CreateGatewayRuleResponse
|
|
648
|
+
attr_accessor rule_id: ::String
|
|
649
|
+
attr_accessor gateway_arn: ::String
|
|
650
|
+
attr_accessor priority: ::Integer
|
|
651
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
652
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
653
|
+
attr_accessor description: ::String
|
|
654
|
+
attr_accessor created_at: ::Time
|
|
655
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
656
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
657
|
+
SENSITIVE: []
|
|
658
|
+
end
|
|
659
|
+
|
|
546
660
|
class CreateGatewayTargetRequest
|
|
547
661
|
attr_accessor gateway_identifier: ::String
|
|
548
662
|
attr_accessor name: ::String
|
|
@@ -571,6 +685,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
571
685
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
572
686
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
573
687
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
688
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
574
689
|
SENSITIVE: [:name, :description]
|
|
575
690
|
end
|
|
576
691
|
|
|
@@ -609,6 +724,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
609
724
|
attr_accessor memory_execution_role_arn: ::String
|
|
610
725
|
attr_accessor event_expiry_duration: ::Integer
|
|
611
726
|
attr_accessor memory_strategies: ::Array[Types::MemoryStrategyInput]
|
|
727
|
+
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
612
728
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
613
729
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
614
730
|
SENSITIVE: [:description]
|
|
@@ -773,7 +889,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
773
889
|
end
|
|
774
890
|
|
|
775
891
|
class CredentialProviderConfiguration
|
|
776
|
-
attr_accessor credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY")
|
|
892
|
+
attr_accessor credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH")
|
|
777
893
|
attr_accessor credential_provider: Types::CredentialProvider
|
|
778
894
|
SENSITIVE: []
|
|
779
895
|
end
|
|
@@ -904,6 +1020,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
904
1020
|
attr_accessor namespaces: ::Array[::String]
|
|
905
1021
|
attr_accessor namespace_templates: ::Array[::String]
|
|
906
1022
|
attr_accessor configuration: Types::CustomConfigurationInput
|
|
1023
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
907
1024
|
SENSITIVE: [:description]
|
|
908
1025
|
end
|
|
909
1026
|
|
|
@@ -913,6 +1030,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
913
1030
|
attr_accessor client_secret: ::String
|
|
914
1031
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
915
1032
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1033
|
+
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1034
|
+
attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
916
1035
|
SENSITIVE: [:client_secret]
|
|
917
1036
|
end
|
|
918
1037
|
|
|
@@ -921,6 +1040,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
921
1040
|
attr_accessor client_id: ::String
|
|
922
1041
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
923
1042
|
attr_accessor private_endpoint_overrides: ::Array[Types::PrivateEndpointOverride]
|
|
1043
|
+
attr_accessor on_behalf_of_token_exchange_config: Types::OnBehalfOfTokenExchangeConfigType
|
|
1044
|
+
attr_accessor client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")
|
|
924
1045
|
SENSITIVE: []
|
|
925
1046
|
end
|
|
926
1047
|
|
|
@@ -1037,6 +1158,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
1037
1158
|
SENSITIVE: []
|
|
1038
1159
|
end
|
|
1039
1160
|
|
|
1161
|
+
class DeleteConfigurationBundleRequest
|
|
1162
|
+
attr_accessor bundle_id: ::String
|
|
1163
|
+
SENSITIVE: []
|
|
1164
|
+
end
|
|
1165
|
+
|
|
1166
|
+
class DeleteConfigurationBundleResponse
|
|
1167
|
+
attr_accessor bundle_id: ::String
|
|
1168
|
+
attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
|
|
1169
|
+
SENSITIVE: []
|
|
1170
|
+
end
|
|
1171
|
+
|
|
1040
1172
|
class DeleteEvaluatorRequest
|
|
1041
1173
|
attr_accessor evaluator_id: ::String
|
|
1042
1174
|
SENSITIVE: []
|
|
@@ -1061,6 +1193,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
1061
1193
|
SENSITIVE: []
|
|
1062
1194
|
end
|
|
1063
1195
|
|
|
1196
|
+
class DeleteGatewayRuleRequest
|
|
1197
|
+
attr_accessor gateway_identifier: ::String
|
|
1198
|
+
attr_accessor rule_id: ::String
|
|
1199
|
+
SENSITIVE: []
|
|
1200
|
+
end
|
|
1201
|
+
|
|
1202
|
+
class DeleteGatewayRuleResponse
|
|
1203
|
+
attr_accessor rule_id: ::String
|
|
1204
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
1205
|
+
SENSITIVE: []
|
|
1206
|
+
end
|
|
1207
|
+
|
|
1064
1208
|
class DeleteGatewayTargetRequest
|
|
1065
1209
|
attr_accessor gateway_identifier: ::String
|
|
1066
1210
|
attr_accessor target_id: ::String
|
|
@@ -1227,6 +1371,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1227
1371
|
attr_accessor namespaces: ::Array[::String]
|
|
1228
1372
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1229
1373
|
attr_accessor reflection_configuration: Types::EpisodicReflectionConfigurationInput
|
|
1374
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1230
1375
|
SENSITIVE: [:description]
|
|
1231
1376
|
end
|
|
1232
1377
|
|
|
@@ -1254,18 +1399,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1254
1399
|
attr_accessor model_id: ::String
|
|
1255
1400
|
attr_accessor namespaces: ::Array[::String]
|
|
1256
1401
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1402
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1257
1403
|
SENSITIVE: [:append_to_prompt]
|
|
1258
1404
|
end
|
|
1259
1405
|
|
|
1260
1406
|
class EpisodicReflectionConfiguration
|
|
1261
1407
|
attr_accessor namespaces: ::Array[::String]
|
|
1262
1408
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1409
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1263
1410
|
SENSITIVE: []
|
|
1264
1411
|
end
|
|
1265
1412
|
|
|
1266
1413
|
class EpisodicReflectionConfigurationInput
|
|
1267
1414
|
attr_accessor namespaces: ::Array[::String]
|
|
1268
1415
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1416
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1269
1417
|
SENSITIVE: []
|
|
1270
1418
|
end
|
|
1271
1419
|
|
|
@@ -1274,6 +1422,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1274
1422
|
attr_accessor model_id: ::String
|
|
1275
1423
|
attr_accessor namespaces: ::Array[::String]
|
|
1276
1424
|
attr_accessor namespace_templates: ::Array[::String]
|
|
1425
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
1277
1426
|
SENSITIVE: [:append_to_prompt]
|
|
1278
1427
|
end
|
|
1279
1428
|
|
|
@@ -1324,9 +1473,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1324
1473
|
attr_accessor created_at: ::Time
|
|
1325
1474
|
attr_accessor updated_at: ::Time
|
|
1326
1475
|
attr_accessor locked_for_modification: bool
|
|
1476
|
+
attr_accessor kms_key_arn: ::String
|
|
1327
1477
|
SENSITIVE: [:description]
|
|
1328
1478
|
end
|
|
1329
1479
|
|
|
1480
|
+
class ExtractionConfig
|
|
1481
|
+
attr_accessor llm_extraction_config: Types::LlmExtractionConfig
|
|
1482
|
+
attr_accessor unknown: untyped
|
|
1483
|
+
SENSITIVE: []
|
|
1484
|
+
|
|
1485
|
+
class LlmExtractionConfig < ExtractionConfig
|
|
1486
|
+
end
|
|
1487
|
+
class Unknown < ExtractionConfig
|
|
1488
|
+
end
|
|
1489
|
+
end
|
|
1490
|
+
|
|
1330
1491
|
class ExtractionConfiguration
|
|
1331
1492
|
attr_accessor custom_extraction_configuration: Types::CustomExtractionConfiguration
|
|
1332
1493
|
attr_accessor unknown: untyped
|
|
@@ -1409,6 +1570,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
1409
1570
|
end
|
|
1410
1571
|
end
|
|
1411
1572
|
|
|
1573
|
+
class GatewayRuleDetail
|
|
1574
|
+
attr_accessor rule_id: ::String
|
|
1575
|
+
attr_accessor gateway_arn: ::String
|
|
1576
|
+
attr_accessor priority: ::Integer
|
|
1577
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
1578
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
1579
|
+
attr_accessor description: ::String
|
|
1580
|
+
attr_accessor created_at: ::Time
|
|
1581
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
1582
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
1583
|
+
attr_accessor updated_at: ::Time
|
|
1584
|
+
SENSITIVE: []
|
|
1585
|
+
end
|
|
1586
|
+
|
|
1412
1587
|
class GatewaySummary
|
|
1413
1588
|
attr_accessor gateway_id: ::String
|
|
1414
1589
|
attr_accessor name: ::String
|
|
@@ -1416,7 +1591,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1416
1591
|
attr_accessor description: ::String
|
|
1417
1592
|
attr_accessor created_at: ::Time
|
|
1418
1593
|
attr_accessor updated_at: ::Time
|
|
1419
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
1594
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1420
1595
|
attr_accessor protocol_type: ("MCP")
|
|
1421
1596
|
SENSITIVE: [:name, :description]
|
|
1422
1597
|
end
|
|
@@ -1437,6 +1612,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1437
1612
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1438
1613
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
1439
1614
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
1615
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
1440
1616
|
SENSITIVE: [:name, :description]
|
|
1441
1617
|
end
|
|
1442
1618
|
|
|
@@ -1567,8 +1743,47 @@ module Aws::BedrockAgentCoreControl
|
|
|
1567
1743
|
SENSITIVE: [:description]
|
|
1568
1744
|
end
|
|
1569
1745
|
|
|
1746
|
+
class GetConfigurationBundleRequest
|
|
1747
|
+
attr_accessor bundle_id: ::String
|
|
1748
|
+
attr_accessor branch_name: ::String
|
|
1749
|
+
SENSITIVE: []
|
|
1750
|
+
end
|
|
1751
|
+
|
|
1752
|
+
class GetConfigurationBundleResponse
|
|
1753
|
+
attr_accessor bundle_arn: ::String
|
|
1754
|
+
attr_accessor bundle_id: ::String
|
|
1755
|
+
attr_accessor bundle_name: ::String
|
|
1756
|
+
attr_accessor description: ::String
|
|
1757
|
+
attr_accessor version_id: ::String
|
|
1758
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
1759
|
+
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
1760
|
+
attr_accessor created_at: ::Time
|
|
1761
|
+
attr_accessor updated_at: ::Time
|
|
1762
|
+
SENSITIVE: [:description]
|
|
1763
|
+
end
|
|
1764
|
+
|
|
1765
|
+
class GetConfigurationBundleVersionRequest
|
|
1766
|
+
attr_accessor bundle_id: ::String
|
|
1767
|
+
attr_accessor version_id: ::String
|
|
1768
|
+
SENSITIVE: []
|
|
1769
|
+
end
|
|
1770
|
+
|
|
1771
|
+
class GetConfigurationBundleVersionResponse
|
|
1772
|
+
attr_accessor bundle_arn: ::String
|
|
1773
|
+
attr_accessor bundle_id: ::String
|
|
1774
|
+
attr_accessor bundle_name: ::String
|
|
1775
|
+
attr_accessor description: ::String
|
|
1776
|
+
attr_accessor version_id: ::String
|
|
1777
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
1778
|
+
attr_accessor lineage_metadata: Types::VersionLineageMetadata
|
|
1779
|
+
attr_accessor created_at: ::Time
|
|
1780
|
+
attr_accessor version_created_at: ::Time
|
|
1781
|
+
SENSITIVE: [:description]
|
|
1782
|
+
end
|
|
1783
|
+
|
|
1570
1784
|
class GetEvaluatorRequest
|
|
1571
1785
|
attr_accessor evaluator_id: ::String
|
|
1786
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
1572
1787
|
SENSITIVE: []
|
|
1573
1788
|
end
|
|
1574
1789
|
|
|
@@ -1583,6 +1798,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1583
1798
|
attr_accessor created_at: ::Time
|
|
1584
1799
|
attr_accessor updated_at: ::Time
|
|
1585
1800
|
attr_accessor locked_for_modification: bool
|
|
1801
|
+
attr_accessor kms_key_arn: ::String
|
|
1586
1802
|
SENSITIVE: [:description]
|
|
1587
1803
|
end
|
|
1588
1804
|
|
|
@@ -1604,7 +1820,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1604
1820
|
attr_accessor role_arn: ::String
|
|
1605
1821
|
attr_accessor protocol_type: ("MCP")
|
|
1606
1822
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
1607
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
1823
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
1608
1824
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
1609
1825
|
attr_accessor kms_key_arn: ::String
|
|
1610
1826
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -1614,6 +1830,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
1614
1830
|
SENSITIVE: [:name, :description]
|
|
1615
1831
|
end
|
|
1616
1832
|
|
|
1833
|
+
class GetGatewayRuleRequest
|
|
1834
|
+
attr_accessor gateway_identifier: ::String
|
|
1835
|
+
attr_accessor rule_id: ::String
|
|
1836
|
+
SENSITIVE: []
|
|
1837
|
+
end
|
|
1838
|
+
|
|
1839
|
+
class GetGatewayRuleResponse
|
|
1840
|
+
attr_accessor rule_id: ::String
|
|
1841
|
+
attr_accessor gateway_arn: ::String
|
|
1842
|
+
attr_accessor priority: ::Integer
|
|
1843
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
1844
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
1845
|
+
attr_accessor description: ::String
|
|
1846
|
+
attr_accessor created_at: ::Time
|
|
1847
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
1848
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
1849
|
+
attr_accessor updated_at: ::Time
|
|
1850
|
+
SENSITIVE: []
|
|
1851
|
+
end
|
|
1852
|
+
|
|
1617
1853
|
class GetGatewayTargetRequest
|
|
1618
1854
|
attr_accessor gateway_identifier: ::String
|
|
1619
1855
|
attr_accessor target_id: ::String
|
|
@@ -1636,6 +1872,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1636
1872
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
1637
1873
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
1638
1874
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
1875
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
1639
1876
|
SENSITIVE: [:name, :description]
|
|
1640
1877
|
end
|
|
1641
1878
|
|
|
@@ -2149,12 +2386,29 @@ module Aws::BedrockAgentCoreControl
|
|
|
2149
2386
|
end
|
|
2150
2387
|
end
|
|
2151
2388
|
|
|
2389
|
+
class HttpTargetConfiguration
|
|
2390
|
+
attr_accessor agentcore_runtime: Types::RuntimeTargetConfiguration
|
|
2391
|
+
attr_accessor unknown: untyped
|
|
2392
|
+
SENSITIVE: []
|
|
2393
|
+
|
|
2394
|
+
class AgentcoreRuntime < HttpTargetConfiguration
|
|
2395
|
+
end
|
|
2396
|
+
class Unknown < HttpTargetConfiguration
|
|
2397
|
+
end
|
|
2398
|
+
end
|
|
2399
|
+
|
|
2152
2400
|
class IamCredentialProvider
|
|
2153
2401
|
attr_accessor service: ::String
|
|
2154
2402
|
attr_accessor region: ::String
|
|
2155
2403
|
SENSITIVE: []
|
|
2156
2404
|
end
|
|
2157
2405
|
|
|
2406
|
+
class IamPrincipal
|
|
2407
|
+
attr_accessor arn: ::String
|
|
2408
|
+
attr_accessor operator: ("StringEquals" | "StringLike")
|
|
2409
|
+
SENSITIVE: []
|
|
2410
|
+
end
|
|
2411
|
+
|
|
2158
2412
|
class IncludedOauth2ProviderConfigInput
|
|
2159
2413
|
attr_accessor client_id: ::String
|
|
2160
2414
|
attr_accessor client_secret: ::String
|
|
@@ -2170,6 +2424,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2170
2424
|
SENSITIVE: []
|
|
2171
2425
|
end
|
|
2172
2426
|
|
|
2427
|
+
class IndexedKey
|
|
2428
|
+
attr_accessor key: ::String
|
|
2429
|
+
attr_accessor type: ("STRING" | "STRINGLIST" | "NUMBER")
|
|
2430
|
+
SENSITIVE: []
|
|
2431
|
+
end
|
|
2432
|
+
|
|
2173
2433
|
class InferenceConfiguration
|
|
2174
2434
|
attr_accessor max_tokens: ::Integer
|
|
2175
2435
|
attr_accessor temperature: ::Float
|
|
@@ -2341,6 +2601,32 @@ module Aws::BedrockAgentCoreControl
|
|
|
2341
2601
|
SENSITIVE: []
|
|
2342
2602
|
end
|
|
2343
2603
|
|
|
2604
|
+
class ListConfigurationBundleVersionsRequest
|
|
2605
|
+
attr_accessor bundle_id: ::String
|
|
2606
|
+
attr_accessor next_token: ::String
|
|
2607
|
+
attr_accessor max_results: ::Integer
|
|
2608
|
+
attr_accessor filter: Types::VersionFilter
|
|
2609
|
+
SENSITIVE: []
|
|
2610
|
+
end
|
|
2611
|
+
|
|
2612
|
+
class ListConfigurationBundleVersionsResponse
|
|
2613
|
+
attr_accessor versions: ::Array[Types::ConfigurationBundleVersionSummary]
|
|
2614
|
+
attr_accessor next_token: ::String
|
|
2615
|
+
SENSITIVE: []
|
|
2616
|
+
end
|
|
2617
|
+
|
|
2618
|
+
class ListConfigurationBundlesRequest
|
|
2619
|
+
attr_accessor next_token: ::String
|
|
2620
|
+
attr_accessor max_results: ::Integer
|
|
2621
|
+
SENSITIVE: []
|
|
2622
|
+
end
|
|
2623
|
+
|
|
2624
|
+
class ListConfigurationBundlesResponse
|
|
2625
|
+
attr_accessor bundles: ::Array[Types::ConfigurationBundleSummary]
|
|
2626
|
+
attr_accessor next_token: ::String
|
|
2627
|
+
SENSITIVE: []
|
|
2628
|
+
end
|
|
2629
|
+
|
|
2344
2630
|
class ListEvaluatorsRequest
|
|
2345
2631
|
attr_accessor next_token: ::String
|
|
2346
2632
|
attr_accessor max_results: ::Integer
|
|
@@ -2353,6 +2639,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
2353
2639
|
SENSITIVE: []
|
|
2354
2640
|
end
|
|
2355
2641
|
|
|
2642
|
+
class ListGatewayRulesRequest
|
|
2643
|
+
attr_accessor gateway_identifier: ::String
|
|
2644
|
+
attr_accessor max_results: ::Integer
|
|
2645
|
+
attr_accessor next_token: ::String
|
|
2646
|
+
SENSITIVE: []
|
|
2647
|
+
end
|
|
2648
|
+
|
|
2649
|
+
class ListGatewayRulesResponse
|
|
2650
|
+
attr_accessor gateway_rules: ::Array[Types::GatewayRuleDetail]
|
|
2651
|
+
attr_accessor next_token: ::String
|
|
2652
|
+
SENSITIVE: []
|
|
2653
|
+
end
|
|
2654
|
+
|
|
2356
2655
|
class ListGatewayTargetsRequest
|
|
2357
2656
|
attr_accessor gateway_identifier: ::String
|
|
2358
2657
|
attr_accessor max_results: ::Integer
|
|
@@ -2537,6 +2836,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
2537
2836
|
SENSITIVE: [:instructions, :rating_scale]
|
|
2538
2837
|
end
|
|
2539
2838
|
|
|
2839
|
+
class LlmExtractionConfig
|
|
2840
|
+
attr_accessor llm_extraction_instruction: ::String
|
|
2841
|
+
attr_accessor definition: ::String
|
|
2842
|
+
attr_accessor validation: Types::Validation
|
|
2843
|
+
SENSITIVE: [:llm_extraction_instruction, :definition]
|
|
2844
|
+
end
|
|
2845
|
+
|
|
2540
2846
|
class MCPGatewayConfiguration
|
|
2541
2847
|
attr_accessor supported_versions: ::Array[::String]
|
|
2542
2848
|
attr_accessor instructions: ::String
|
|
@@ -2561,6 +2867,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
2561
2867
|
SENSITIVE: []
|
|
2562
2868
|
end
|
|
2563
2869
|
|
|
2870
|
+
class MatchPaths
|
|
2871
|
+
attr_accessor any_of: ::Array[::String]
|
|
2872
|
+
SENSITIVE: []
|
|
2873
|
+
end
|
|
2874
|
+
|
|
2875
|
+
class MatchPrincipalEntry
|
|
2876
|
+
attr_accessor iam_principal: Types::IamPrincipal
|
|
2877
|
+
attr_accessor unknown: untyped
|
|
2878
|
+
SENSITIVE: []
|
|
2879
|
+
|
|
2880
|
+
class IamPrincipal < MatchPrincipalEntry
|
|
2881
|
+
end
|
|
2882
|
+
class Unknown < MatchPrincipalEntry
|
|
2883
|
+
end
|
|
2884
|
+
end
|
|
2885
|
+
|
|
2886
|
+
class MatchPrincipals
|
|
2887
|
+
attr_accessor any_of: ::Array[Types::MatchPrincipalEntry]
|
|
2888
|
+
SENSITIVE: []
|
|
2889
|
+
end
|
|
2890
|
+
|
|
2564
2891
|
class McpDescriptor
|
|
2565
2892
|
attr_accessor server: Types::ServerDefinition
|
|
2566
2893
|
attr_accessor tools: Types::ToolsDefinition
|
|
@@ -2576,8 +2903,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2576
2903
|
class McpServerTargetConfiguration
|
|
2577
2904
|
attr_accessor endpoint: ::String
|
|
2578
2905
|
attr_accessor mcp_tool_schema: Types::McpToolSchemaConfiguration
|
|
2579
|
-
attr_accessor resource_priority: ::Integer
|
|
2580
2906
|
attr_accessor listing_mode: ("DEFAULT" | "DYNAMIC")
|
|
2907
|
+
attr_accessor resource_priority: ::Integer
|
|
2581
2908
|
SENSITIVE: []
|
|
2582
2909
|
end
|
|
2583
2910
|
|
|
@@ -2631,10 +2958,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
2631
2958
|
attr_accessor created_at: ::Time
|
|
2632
2959
|
attr_accessor updated_at: ::Time
|
|
2633
2960
|
attr_accessor strategies: ::Array[Types::MemoryStrategy]
|
|
2961
|
+
attr_accessor indexed_keys: ::Array[Types::IndexedKey]
|
|
2634
2962
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
2635
2963
|
SENSITIVE: [:description]
|
|
2636
2964
|
end
|
|
2637
2965
|
|
|
2966
|
+
class MemoryRecordSchema
|
|
2967
|
+
attr_accessor metadata_schema: ::Array[Types::MetadataSchemaEntry]
|
|
2968
|
+
SENSITIVE: []
|
|
2969
|
+
end
|
|
2970
|
+
|
|
2638
2971
|
class MemoryStrategy
|
|
2639
2972
|
attr_accessor strategy_id: ::String
|
|
2640
2973
|
attr_accessor name: ::String
|
|
@@ -2646,6 +2979,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2646
2979
|
attr_accessor created_at: ::Time
|
|
2647
2980
|
attr_accessor updated_at: ::Time
|
|
2648
2981
|
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED")
|
|
2982
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
2649
2983
|
SENSITIVE: [:description]
|
|
2650
2984
|
end
|
|
2651
2985
|
|
|
@@ -2698,6 +3032,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
2698
3032
|
SENSITIVE: []
|
|
2699
3033
|
end
|
|
2700
3034
|
|
|
3035
|
+
class MetadataSchemaEntry
|
|
3036
|
+
attr_accessor key: ::String
|
|
3037
|
+
attr_accessor type: ("STRING" | "STRINGLIST" | "NUMBER")
|
|
3038
|
+
attr_accessor extraction_config: Types::ExtractionConfig
|
|
3039
|
+
SENSITIVE: []
|
|
3040
|
+
end
|
|
3041
|
+
|
|
2701
3042
|
class MicrosoftOauth2ProviderConfigInput
|
|
2702
3043
|
attr_accessor client_id: ::String
|
|
2703
3044
|
attr_accessor client_secret: ::String
|
|
@@ -2752,6 +3093,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2752
3093
|
attr_accessor namespaces: ::Array[::String]
|
|
2753
3094
|
attr_accessor namespace_templates: ::Array[::String]
|
|
2754
3095
|
attr_accessor configuration: Types::ModifyStrategyConfiguration
|
|
3096
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
2755
3097
|
SENSITIVE: [:description]
|
|
2756
3098
|
end
|
|
2757
3099
|
|
|
@@ -2790,6 +3132,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2790
3132
|
SENSITIVE: []
|
|
2791
3133
|
end
|
|
2792
3134
|
|
|
3135
|
+
class NumberValidation
|
|
3136
|
+
attr_accessor min_value: ::Float
|
|
3137
|
+
attr_accessor max_value: ::Float
|
|
3138
|
+
SENSITIVE: []
|
|
3139
|
+
end
|
|
3140
|
+
|
|
2793
3141
|
class NumericalScaleDefinition
|
|
2794
3142
|
attr_accessor definition: ::String
|
|
2795
3143
|
attr_accessor value: ::Float
|
|
@@ -2807,7 +3155,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2807
3155
|
attr_accessor provider_arn: ::String
|
|
2808
3156
|
attr_accessor scopes: ::Array[::String]
|
|
2809
3157
|
attr_accessor custom_parameters: ::Hash[::String, ::String]
|
|
2810
|
-
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")
|
|
3158
|
+
attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")
|
|
2811
3159
|
attr_accessor default_return_url: ::String
|
|
2812
3160
|
SENSITIVE: []
|
|
2813
3161
|
end
|
|
@@ -2914,6 +3262,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2914
3262
|
end
|
|
2915
3263
|
end
|
|
2916
3264
|
|
|
3265
|
+
class OnBehalfOfTokenExchangeConfigType
|
|
3266
|
+
attr_accessor grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT")
|
|
3267
|
+
attr_accessor token_exchange_grant_type_config: Types::TokenExchangeGrantTypeConfigType
|
|
3268
|
+
SENSITIVE: []
|
|
3269
|
+
end
|
|
3270
|
+
|
|
2917
3271
|
class OnlineEvaluationConfigSummary
|
|
2918
3272
|
attr_accessor online_evaluation_config_arn: ::String
|
|
2919
3273
|
attr_accessor online_evaluation_config_id: ::String
|
|
@@ -3176,6 +3530,20 @@ module Aws::BedrockAgentCoreControl
|
|
|
3176
3530
|
SENSITIVE: []
|
|
3177
3531
|
end
|
|
3178
3532
|
|
|
3533
|
+
class RouteToTargetAction
|
|
3534
|
+
attr_accessor static_route: Types::StaticRoute
|
|
3535
|
+
attr_accessor weighted_route: Types::WeightedRoute
|
|
3536
|
+
attr_accessor unknown: untyped
|
|
3537
|
+
SENSITIVE: []
|
|
3538
|
+
|
|
3539
|
+
class StaticRoute < RouteToTargetAction
|
|
3540
|
+
end
|
|
3541
|
+
class WeightedRoute < RouteToTargetAction
|
|
3542
|
+
end
|
|
3543
|
+
class Unknown < RouteToTargetAction
|
|
3544
|
+
end
|
|
3545
|
+
end
|
|
3546
|
+
|
|
3179
3547
|
class Rule
|
|
3180
3548
|
attr_accessor sampling_config: Types::SamplingConfig
|
|
3181
3549
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -3188,6 +3556,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3188
3556
|
SENSITIVE: []
|
|
3189
3557
|
end
|
|
3190
3558
|
|
|
3559
|
+
class RuntimeTargetConfiguration
|
|
3560
|
+
attr_accessor arn: ::String
|
|
3561
|
+
attr_accessor qualifier: ::String
|
|
3562
|
+
SENSITIVE: []
|
|
3563
|
+
end
|
|
3564
|
+
|
|
3191
3565
|
class S3Configuration
|
|
3192
3566
|
attr_accessor uri: ::String
|
|
3193
3567
|
attr_accessor bucket_owner_account_id: ::String
|
|
@@ -3279,6 +3653,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3279
3653
|
attr_accessor description: ::String
|
|
3280
3654
|
attr_accessor namespaces: ::Array[::String]
|
|
3281
3655
|
attr_accessor namespace_templates: ::Array[::String]
|
|
3656
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
3282
3657
|
SENSITIVE: [:description]
|
|
3283
3658
|
end
|
|
3284
3659
|
|
|
@@ -3385,6 +3760,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3385
3760
|
SENSITIVE: []
|
|
3386
3761
|
end
|
|
3387
3762
|
|
|
3763
|
+
class StaticOverride
|
|
3764
|
+
attr_accessor bundle_arn: ::String
|
|
3765
|
+
attr_accessor bundle_version: ::String
|
|
3766
|
+
SENSITIVE: []
|
|
3767
|
+
end
|
|
3768
|
+
|
|
3769
|
+
class StaticRoute
|
|
3770
|
+
attr_accessor target_name: ::String
|
|
3771
|
+
SENSITIVE: [:target_name]
|
|
3772
|
+
end
|
|
3773
|
+
|
|
3388
3774
|
class StrategyConfiguration
|
|
3389
3775
|
attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
|
|
3390
3776
|
attr_accessor extraction: Types::ExtractionConfiguration
|
|
@@ -3410,6 +3796,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
3410
3796
|
SENSITIVE: []
|
|
3411
3797
|
end
|
|
3412
3798
|
|
|
3799
|
+
class StringListValidation
|
|
3800
|
+
attr_accessor allowed_values: ::Array[::String]
|
|
3801
|
+
attr_accessor max_items: ::Integer
|
|
3802
|
+
SENSITIVE: []
|
|
3803
|
+
end
|
|
3804
|
+
|
|
3805
|
+
class StringValidation
|
|
3806
|
+
attr_accessor allowed_values: ::Array[::String]
|
|
3807
|
+
SENSITIVE: []
|
|
3808
|
+
end
|
|
3809
|
+
|
|
3413
3810
|
class SubmitRegistryRecordForApprovalRequest
|
|
3414
3811
|
attr_accessor registry_id: ::String
|
|
3415
3812
|
attr_accessor record_id: ::String
|
|
@@ -3436,6 +3833,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3436
3833
|
attr_accessor description: ::String
|
|
3437
3834
|
attr_accessor namespaces: ::Array[::String]
|
|
3438
3835
|
attr_accessor namespace_templates: ::Array[::String]
|
|
3836
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
3439
3837
|
SENSITIVE: [:description]
|
|
3440
3838
|
end
|
|
3441
3839
|
|
|
@@ -3466,6 +3864,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
3466
3864
|
SENSITIVE: []
|
|
3467
3865
|
end
|
|
3468
3866
|
|
|
3867
|
+
class SystemManagedBlock
|
|
3868
|
+
attr_accessor managed_by: ::String
|
|
3869
|
+
SENSITIVE: []
|
|
3870
|
+
end
|
|
3871
|
+
|
|
3469
3872
|
class TagResourceRequest
|
|
3470
3873
|
attr_accessor resource_arn: ::String
|
|
3471
3874
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -3477,11 +3880,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
3477
3880
|
|
|
3478
3881
|
class TargetConfiguration
|
|
3479
3882
|
attr_accessor mcp: Types::McpTargetConfiguration
|
|
3883
|
+
attr_accessor http: Types::HttpTargetConfiguration
|
|
3480
3884
|
attr_accessor unknown: untyped
|
|
3481
3885
|
SENSITIVE: []
|
|
3482
3886
|
|
|
3483
3887
|
class Mcp < TargetConfiguration
|
|
3484
3888
|
end
|
|
3889
|
+
class Http < TargetConfiguration
|
|
3890
|
+
end
|
|
3485
3891
|
class Unknown < TargetConfiguration
|
|
3486
3892
|
end
|
|
3487
3893
|
end
|
|
@@ -3497,6 +3903,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3497
3903
|
SENSITIVE: [:name, :description]
|
|
3498
3904
|
end
|
|
3499
3905
|
|
|
3906
|
+
class TargetTrafficSplitEntry
|
|
3907
|
+
attr_accessor name: ::String
|
|
3908
|
+
attr_accessor weight: ::Integer
|
|
3909
|
+
attr_accessor target_name: ::String
|
|
3910
|
+
attr_accessor description: ::String
|
|
3911
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
3912
|
+
SENSITIVE: [:target_name]
|
|
3913
|
+
end
|
|
3914
|
+
|
|
3500
3915
|
class ThrottledException
|
|
3501
3916
|
attr_accessor message: ::String
|
|
3502
3917
|
SENSITIVE: []
|
|
@@ -3527,6 +3942,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
3527
3942
|
SENSITIVE: []
|
|
3528
3943
|
end
|
|
3529
3944
|
|
|
3945
|
+
class TokenExchangeGrantTypeConfigType
|
|
3946
|
+
attr_accessor actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT")
|
|
3947
|
+
attr_accessor actor_token_scopes: ::Array[::String]
|
|
3948
|
+
SENSITIVE: []
|
|
3949
|
+
end
|
|
3950
|
+
|
|
3530
3951
|
class ToolDefinition
|
|
3531
3952
|
attr_accessor name: ::String
|
|
3532
3953
|
attr_accessor description: ::String
|
|
@@ -3555,6 +3976,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
3555
3976
|
SENSITIVE: []
|
|
3556
3977
|
end
|
|
3557
3978
|
|
|
3979
|
+
class TrafficSplitEntry
|
|
3980
|
+
attr_accessor name: ::String
|
|
3981
|
+
attr_accessor weight: ::Integer
|
|
3982
|
+
attr_accessor configuration_bundle: Types::ConfigurationBundleReference
|
|
3983
|
+
attr_accessor description: ::String
|
|
3984
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
3985
|
+
SENSITIVE: []
|
|
3986
|
+
end
|
|
3987
|
+
|
|
3558
3988
|
class TriggerCondition
|
|
3559
3989
|
attr_accessor message_based_trigger: Types::MessageBasedTrigger
|
|
3560
3990
|
attr_accessor token_based_trigger: Types::TokenBasedTrigger
|
|
@@ -3669,12 +4099,34 @@ module Aws::BedrockAgentCoreControl
|
|
|
3669
4099
|
SENSITIVE: []
|
|
3670
4100
|
end
|
|
3671
4101
|
|
|
4102
|
+
class UpdateConfigurationBundleRequest
|
|
4103
|
+
attr_accessor client_token: ::String
|
|
4104
|
+
attr_accessor bundle_id: ::String
|
|
4105
|
+
attr_accessor bundle_name: ::String
|
|
4106
|
+
attr_accessor description: ::String
|
|
4107
|
+
attr_accessor components: ::Hash[::String, Types::ComponentConfiguration]
|
|
4108
|
+
attr_accessor parent_version_ids: ::Array[::String]
|
|
4109
|
+
attr_accessor branch_name: ::String
|
|
4110
|
+
attr_accessor commit_message: ::String
|
|
4111
|
+
attr_accessor created_by: Types::VersionCreatedBySource
|
|
4112
|
+
SENSITIVE: [:description]
|
|
4113
|
+
end
|
|
4114
|
+
|
|
4115
|
+
class UpdateConfigurationBundleResponse
|
|
4116
|
+
attr_accessor bundle_arn: ::String
|
|
4117
|
+
attr_accessor bundle_id: ::String
|
|
4118
|
+
attr_accessor version_id: ::String
|
|
4119
|
+
attr_accessor updated_at: ::Time
|
|
4120
|
+
SENSITIVE: []
|
|
4121
|
+
end
|
|
4122
|
+
|
|
3672
4123
|
class UpdateEvaluatorRequest
|
|
3673
4124
|
attr_accessor client_token: ::String
|
|
3674
4125
|
attr_accessor evaluator_id: ::String
|
|
3675
4126
|
attr_accessor description: ::String
|
|
3676
4127
|
attr_accessor evaluator_config: Types::EvaluatorConfig
|
|
3677
4128
|
attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
|
|
4129
|
+
attr_accessor kms_key_arn: ::String
|
|
3678
4130
|
SENSITIVE: [:description]
|
|
3679
4131
|
end
|
|
3680
4132
|
|
|
@@ -3693,7 +4145,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3693
4145
|
attr_accessor role_arn: ::String
|
|
3694
4146
|
attr_accessor protocol_type: ("MCP")
|
|
3695
4147
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
3696
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
4148
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
3697
4149
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
3698
4150
|
attr_accessor kms_key_arn: ::String
|
|
3699
4151
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -3715,7 +4167,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3715
4167
|
attr_accessor role_arn: ::String
|
|
3716
4168
|
attr_accessor protocol_type: ("MCP")
|
|
3717
4169
|
attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
|
|
3718
|
-
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
|
|
4170
|
+
attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
|
|
3719
4171
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
3720
4172
|
attr_accessor kms_key_arn: ::String
|
|
3721
4173
|
attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
|
|
@@ -3725,6 +4177,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
3725
4177
|
SENSITIVE: [:name, :description]
|
|
3726
4178
|
end
|
|
3727
4179
|
|
|
4180
|
+
class UpdateGatewayRuleRequest
|
|
4181
|
+
attr_accessor gateway_identifier: ::String
|
|
4182
|
+
attr_accessor rule_id: ::String
|
|
4183
|
+
attr_accessor priority: ::Integer
|
|
4184
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
4185
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
4186
|
+
attr_accessor description: ::String
|
|
4187
|
+
SENSITIVE: []
|
|
4188
|
+
end
|
|
4189
|
+
|
|
4190
|
+
class UpdateGatewayRuleResponse
|
|
4191
|
+
attr_accessor rule_id: ::String
|
|
4192
|
+
attr_accessor gateway_arn: ::String
|
|
4193
|
+
attr_accessor priority: ::Integer
|
|
4194
|
+
attr_accessor conditions: ::Array[Types::Condition]
|
|
4195
|
+
attr_accessor actions: ::Array[Types::Action]
|
|
4196
|
+
attr_accessor description: ::String
|
|
4197
|
+
attr_accessor created_at: ::Time
|
|
4198
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
|
4199
|
+
attr_accessor system: Types::SystemManagedBlock
|
|
4200
|
+
attr_accessor updated_at: ::Time
|
|
4201
|
+
SENSITIVE: []
|
|
4202
|
+
end
|
|
4203
|
+
|
|
3728
4204
|
class UpdateGatewayTargetRequest
|
|
3729
4205
|
attr_accessor gateway_identifier: ::String
|
|
3730
4206
|
attr_accessor target_id: ::String
|
|
@@ -3753,6 +4229,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3753
4229
|
attr_accessor private_endpoint: Types::PrivateEndpoint
|
|
3754
4230
|
attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
|
|
3755
4231
|
attr_accessor authorization_data: Types::AuthorizationData
|
|
4232
|
+
attr_accessor protocol_type: ("MCP" | "HTTP")
|
|
3756
4233
|
SENSITIVE: [:name, :description]
|
|
3757
4234
|
end
|
|
3758
4235
|
|
|
@@ -3789,6 +4266,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3789
4266
|
attr_accessor event_expiry_duration: ::Integer
|
|
3790
4267
|
attr_accessor memory_execution_role_arn: ::String
|
|
3791
4268
|
attr_accessor memory_strategies: Types::ModifyMemoryStrategies
|
|
4269
|
+
attr_accessor add_indexed_keys: ::Array[Types::IndexedKey]
|
|
3792
4270
|
attr_accessor stream_delivery_resources: Types::StreamDeliveryResources
|
|
3793
4271
|
SENSITIVE: [:description]
|
|
3794
4272
|
end
|
|
@@ -4088,6 +4566,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4088
4566
|
attr_accessor description: ::String
|
|
4089
4567
|
attr_accessor namespaces: ::Array[::String]
|
|
4090
4568
|
attr_accessor namespace_templates: ::Array[::String]
|
|
4569
|
+
attr_accessor memory_record_schema: Types::MemoryRecordSchema
|
|
4091
4570
|
SENSITIVE: [:description]
|
|
4092
4571
|
end
|
|
4093
4572
|
|
|
@@ -4109,6 +4588,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
4109
4588
|
SENSITIVE: [:append_to_prompt]
|
|
4110
4589
|
end
|
|
4111
4590
|
|
|
4591
|
+
class Validation
|
|
4592
|
+
attr_accessor string_validation: Types::StringValidation
|
|
4593
|
+
attr_accessor string_list_validation: Types::StringListValidation
|
|
4594
|
+
attr_accessor number_validation: Types::NumberValidation
|
|
4595
|
+
attr_accessor unknown: untyped
|
|
4596
|
+
SENSITIVE: []
|
|
4597
|
+
|
|
4598
|
+
class StringValidation < Validation
|
|
4599
|
+
end
|
|
4600
|
+
class StringListValidation < Validation
|
|
4601
|
+
end
|
|
4602
|
+
class NumberValidation < Validation
|
|
4603
|
+
end
|
|
4604
|
+
class Unknown < Validation
|
|
4605
|
+
end
|
|
4606
|
+
end
|
|
4607
|
+
|
|
4112
4608
|
class ValidationException
|
|
4113
4609
|
attr_accessor message: ::String
|
|
4114
4610
|
attr_accessor reason: ("CannotParse" | "FieldValidationFailed" | "IdempotentParameterMismatchException" | "EventInOtherSession" | "ResourceConflict")
|
|
@@ -4122,12 +4618,43 @@ module Aws::BedrockAgentCoreControl
|
|
|
4122
4618
|
SENSITIVE: []
|
|
4123
4619
|
end
|
|
4124
4620
|
|
|
4621
|
+
class VersionCreatedBySource
|
|
4622
|
+
attr_accessor name: ::String
|
|
4623
|
+
attr_accessor arn: ::String
|
|
4624
|
+
SENSITIVE: []
|
|
4625
|
+
end
|
|
4626
|
+
|
|
4627
|
+
class VersionFilter
|
|
4628
|
+
attr_accessor branch_name: ::String
|
|
4629
|
+
attr_accessor created_by_name: ::String
|
|
4630
|
+
attr_accessor latest_per_branch: bool
|
|
4631
|
+
SENSITIVE: []
|
|
4632
|
+
end
|
|
4633
|
+
|
|
4634
|
+
class VersionLineageMetadata
|
|
4635
|
+
attr_accessor parent_version_ids: ::Array[::String]
|
|
4636
|
+
attr_accessor branch_name: ::String
|
|
4637
|
+
attr_accessor created_by: Types::VersionCreatedBySource
|
|
4638
|
+
attr_accessor commit_message: ::String
|
|
4639
|
+
SENSITIVE: []
|
|
4640
|
+
end
|
|
4641
|
+
|
|
4125
4642
|
class VpcConfig
|
|
4126
4643
|
attr_accessor security_groups: ::Array[::String]
|
|
4127
4644
|
attr_accessor subnets: ::Array[::String]
|
|
4128
4645
|
SENSITIVE: []
|
|
4129
4646
|
end
|
|
4130
4647
|
|
|
4648
|
+
class WeightedOverride
|
|
4649
|
+
attr_accessor traffic_split: ::Array[Types::TrafficSplitEntry]
|
|
4650
|
+
SENSITIVE: []
|
|
4651
|
+
end
|
|
4652
|
+
|
|
4653
|
+
class WeightedRoute
|
|
4654
|
+
attr_accessor traffic_split: ::Array[Types::TargetTrafficSplitEntry]
|
|
4655
|
+
SENSITIVE: []
|
|
4656
|
+
end
|
|
4657
|
+
|
|
4131
4658
|
class WorkloadIdentityDetails
|
|
4132
4659
|
attr_accessor workload_identity_arn: ::String
|
|
4133
4660
|
SENSITIVE: []
|