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.
data/sig/client.rbs CHANGED
@@ -330,6 +330,32 @@ module Aws
330
330
  ) -> _CreateCodeInterpreterResponseSuccess
331
331
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCodeInterpreterResponseSuccess
332
332
 
333
+ interface _CreateConfigurationBundleResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationBundleResponse]
335
+ def bundle_arn: () -> ::String
336
+ def bundle_id: () -> ::String
337
+ def version_id: () -> ::String
338
+ def created_at: () -> ::Time
339
+ end
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_configuration_bundle-instance_method
341
+ def create_configuration_bundle: (
342
+ ?client_token: ::String,
343
+ bundle_name: ::String,
344
+ ?description: ::String,
345
+ components: Hash[::String, {
346
+ configuration: {
347
+ }
348
+ }],
349
+ ?branch_name: ::String,
350
+ ?commit_message: ::String,
351
+ ?created_by: {
352
+ name: ::String,
353
+ arn: ::String?
354
+ },
355
+ ?tags: Hash[::String, ::String]
356
+ ) -> _CreateConfigurationBundleResponseSuccess
357
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
358
+
333
359
  interface _CreateEvaluatorResponseSuccess
334
360
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluatorResponse]
335
361
  def evaluator_arn: () -> ::String
@@ -382,6 +408,7 @@ module Aws
382
408
  }?
383
409
  },
384
410
  level: ("TOOL_CALL" | "TRACE" | "SESSION"),
411
+ ?kms_key_arn: ::String,
385
412
  ?tags: Hash[::String, ::String]
386
413
  ) -> _CreateEvaluatorResponseSuccess
387
414
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEvaluatorResponseSuccess
@@ -400,7 +427,7 @@ module Aws
400
427
  def role_arn: () -> ::String
401
428
  def protocol_type: () -> ("MCP")
402
429
  def protocol_configuration: () -> Types::GatewayProtocolConfiguration
403
- def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
430
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
404
431
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
405
432
  def kms_key_arn: () -> ::String
406
433
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
@@ -414,7 +441,7 @@ module Aws
414
441
  ?description: ::String,
415
442
  ?client_token: ::String,
416
443
  role_arn: ::String,
417
- protocol_type: ("MCP"),
444
+ ?protocol_type: ("MCP"),
418
445
  ?protocol_configuration: {
419
446
  mcp: {
420
447
  supported_versions: Array[::String]?,
@@ -422,7 +449,7 @@ module Aws
422
449
  search_type: ("SEMANTIC")?
423
450
  }?
424
451
  },
425
- authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE"),
452
+ authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
426
453
  ?authorizer_configuration: {
427
454
  custom_jwt_authorizer: {
428
455
  discovery_url: ::String,
@@ -498,6 +525,84 @@ module Aws
498
525
  ) -> _CreateGatewayResponseSuccess
499
526
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
500
527
 
528
+ interface _CreateGatewayRuleResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayRuleResponse]
530
+ def rule_id: () -> ::String
531
+ def gateway_arn: () -> ::String
532
+ def priority: () -> ::Integer
533
+ def conditions: () -> ::Array[Types::Condition]
534
+ def actions: () -> ::Array[Types::Action]
535
+ def description: () -> ::String
536
+ def created_at: () -> ::Time
537
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
538
+ def system: () -> Types::SystemManagedBlock
539
+ end
540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_rule-instance_method
541
+ def create_gateway_rule: (
542
+ gateway_identifier: ::String,
543
+ ?client_token: ::String,
544
+ priority: ::Integer,
545
+ ?conditions: Array[
546
+ {
547
+ match_principals: {
548
+ any_of: Array[
549
+ {
550
+ iam_principal: {
551
+ arn: ::String,
552
+ operator: ("StringEquals" | "StringLike")?
553
+ }?
554
+ },
555
+ ]
556
+ }?,
557
+ match_paths: {
558
+ any_of: Array[::String]
559
+ }?
560
+ },
561
+ ],
562
+ actions: Array[
563
+ {
564
+ configuration_bundle: {
565
+ static_override: {
566
+ bundle_arn: ::String,
567
+ bundle_version: ::String
568
+ }?,
569
+ weighted_override: {
570
+ traffic_split: Array[
571
+ {
572
+ name: ::String,
573
+ weight: ::Integer,
574
+ configuration_bundle: {
575
+ bundle_arn: ::String,
576
+ bundle_version: ::String
577
+ },
578
+ description: ::String?,
579
+ metadata: Hash[::String, ::String]?
580
+ },
581
+ ]
582
+ }?
583
+ }?,
584
+ route_to_target: {
585
+ static_route: {
586
+ target_name: ::String
587
+ }?,
588
+ weighted_route: {
589
+ traffic_split: Array[
590
+ {
591
+ name: ::String,
592
+ weight: ::Integer,
593
+ target_name: ::String,
594
+ description: ::String?,
595
+ metadata: Hash[::String, ::String]?
596
+ },
597
+ ]
598
+ }?
599
+ }?
600
+ },
601
+ ],
602
+ ?description: ::String
603
+ ) -> _CreateGatewayRuleResponseSuccess
604
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayRuleResponseSuccess
605
+
501
606
  interface _CreateGatewayTargetResponseSuccess
502
607
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayTargetResponse]
503
608
  def gateway_arn: () -> ::String
@@ -515,6 +620,7 @@ module Aws
515
620
  def private_endpoint: () -> Types::PrivateEndpoint
516
621
  def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
517
622
  def authorization_data: () -> Types::AuthorizationData
623
+ def protocol_type: () -> ("MCP" | "HTTP")
518
624
  end
519
625
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
520
626
  def create_gateway_target: (
@@ -576,8 +682,8 @@ module Aws
576
682
  }?,
577
683
  inline_payload: ::String?
578
684
  }?,
579
- resource_priority: ::Integer?,
580
- listing_mode: ("DEFAULT" | "DYNAMIC")?
685
+ listing_mode: ("DEFAULT" | "DYNAMIC")?,
686
+ resource_priority: ::Integer?
581
687
  }?,
582
688
  api_gateway: {
583
689
  rest_api_id: ::String,
@@ -599,17 +705,23 @@ module Aws
599
705
  ]
600
706
  }
601
707
  }?
708
+ }?,
709
+ http: {
710
+ agentcore_runtime: {
711
+ arn: ::String,
712
+ qualifier: ::String?
713
+ }?
602
714
  }?
603
715
  },
604
716
  ?credential_provider_configurations: Array[
605
717
  {
606
- credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
718
+ credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH"),
607
719
  credential_provider: {
608
720
  oauth_credential_provider: {
609
721
  provider_arn: ::String,
610
722
  scopes: Array[::String],
611
723
  custom_parameters: Hash[::String, ::String]?,
612
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
724
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
613
725
  default_return_url: ::String?
614
726
  }?,
615
727
  api_key_credential_provider: {
@@ -786,7 +898,7 @@ module Aws
786
898
  provider_arn: ::String,
787
899
  scopes: Array[::String],
788
900
  custom_parameters: Hash[::String, ::String]?,
789
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
901
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
790
902
  default_return_url: ::String?
791
903
  }?
792
904
  }?
@@ -858,19 +970,100 @@ module Aws
858
970
  name: ::String,
859
971
  description: ::String?,
860
972
  namespaces: Array[::String]?,
861
- namespace_templates: Array[::String]?
973
+ namespace_templates: Array[::String]?,
974
+ memory_record_schema: {
975
+ metadata_schema: Array[
976
+ {
977
+ key: ::String,
978
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
979
+ extraction_config: {
980
+ llm_extraction_config: {
981
+ llm_extraction_instruction: ::String?,
982
+ definition: ::String,
983
+ validation: {
984
+ string_validation: {
985
+ allowed_values: Array[::String]
986
+ }?,
987
+ string_list_validation: {
988
+ allowed_values: Array[::String]?,
989
+ max_items: ::Integer?
990
+ }?,
991
+ number_validation: {
992
+ min_value: ::Float?,
993
+ max_value: ::Float?
994
+ }?
995
+ }?
996
+ }?
997
+ }?
998
+ },
999
+ ]?
1000
+ }?
862
1001
  }?,
863
1002
  summary_memory_strategy: {
864
1003
  name: ::String,
865
1004
  description: ::String?,
866
1005
  namespaces: Array[::String]?,
867
- namespace_templates: Array[::String]?
1006
+ namespace_templates: Array[::String]?,
1007
+ memory_record_schema: {
1008
+ metadata_schema: Array[
1009
+ {
1010
+ key: ::String,
1011
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1012
+ extraction_config: {
1013
+ llm_extraction_config: {
1014
+ llm_extraction_instruction: ::String?,
1015
+ definition: ::String,
1016
+ validation: {
1017
+ string_validation: {
1018
+ allowed_values: Array[::String]
1019
+ }?,
1020
+ string_list_validation: {
1021
+ allowed_values: Array[::String]?,
1022
+ max_items: ::Integer?
1023
+ }?,
1024
+ number_validation: {
1025
+ min_value: ::Float?,
1026
+ max_value: ::Float?
1027
+ }?
1028
+ }?
1029
+ }?
1030
+ }?
1031
+ },
1032
+ ]?
1033
+ }?
868
1034
  }?,
869
1035
  user_preference_memory_strategy: {
870
1036
  name: ::String,
871
1037
  description: ::String?,
872
1038
  namespaces: Array[::String]?,
873
- namespace_templates: Array[::String]?
1039
+ namespace_templates: Array[::String]?,
1040
+ memory_record_schema: {
1041
+ metadata_schema: Array[
1042
+ {
1043
+ key: ::String,
1044
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1045
+ extraction_config: {
1046
+ llm_extraction_config: {
1047
+ llm_extraction_instruction: ::String?,
1048
+ definition: ::String,
1049
+ validation: {
1050
+ string_validation: {
1051
+ allowed_values: Array[::String]
1052
+ }?,
1053
+ string_list_validation: {
1054
+ allowed_values: Array[::String]?,
1055
+ max_items: ::Integer?
1056
+ }?,
1057
+ number_validation: {
1058
+ min_value: ::Float?,
1059
+ max_value: ::Float?
1060
+ }?
1061
+ }?
1062
+ }?
1063
+ }?
1064
+ },
1065
+ ]?
1066
+ }?
874
1067
  }?,
875
1068
  custom_memory_strategy: {
876
1069
  name: ::String,
@@ -917,7 +1110,34 @@ module Aws
917
1110
  append_to_prompt: ::String,
918
1111
  model_id: ::String,
919
1112
  namespaces: Array[::String]?,
920
- namespace_templates: Array[::String]?
1113
+ namespace_templates: Array[::String]?,
1114
+ memory_record_schema: {
1115
+ metadata_schema: Array[
1116
+ {
1117
+ key: ::String,
1118
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1119
+ extraction_config: {
1120
+ llm_extraction_config: {
1121
+ llm_extraction_instruction: ::String?,
1122
+ definition: ::String,
1123
+ validation: {
1124
+ string_validation: {
1125
+ allowed_values: Array[::String]
1126
+ }?,
1127
+ string_list_validation: {
1128
+ allowed_values: Array[::String]?,
1129
+ max_items: ::Integer?
1130
+ }?,
1131
+ number_validation: {
1132
+ min_value: ::Float?,
1133
+ max_value: ::Float?
1134
+ }?
1135
+ }?
1136
+ }?
1137
+ }?
1138
+ },
1139
+ ]?
1140
+ }?
921
1141
  }?
922
1142
  }?,
923
1143
  self_managed_configuration: {
@@ -940,6 +1160,33 @@ module Aws
940
1160
  },
941
1161
  historical_context_window_size: ::Integer?
942
1162
  }?
1163
+ }?,
1164
+ memory_record_schema: {
1165
+ metadata_schema: Array[
1166
+ {
1167
+ key: ::String,
1168
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1169
+ extraction_config: {
1170
+ llm_extraction_config: {
1171
+ llm_extraction_instruction: ::String?,
1172
+ definition: ::String,
1173
+ validation: {
1174
+ string_validation: {
1175
+ allowed_values: Array[::String]
1176
+ }?,
1177
+ string_list_validation: {
1178
+ allowed_values: Array[::String]?,
1179
+ max_items: ::Integer?
1180
+ }?,
1181
+ number_validation: {
1182
+ min_value: ::Float?,
1183
+ max_value: ::Float?
1184
+ }?
1185
+ }?
1186
+ }?
1187
+ }?
1188
+ },
1189
+ ]?
943
1190
  }?
944
1191
  }?,
945
1192
  episodic_memory_strategy: {
@@ -949,11 +1196,71 @@ module Aws
949
1196
  namespace_templates: Array[::String]?,
950
1197
  reflection_configuration: {
951
1198
  namespaces: Array[::String]?,
952
- namespace_templates: Array[::String]?
1199
+ namespace_templates: Array[::String]?,
1200
+ memory_record_schema: {
1201
+ metadata_schema: Array[
1202
+ {
1203
+ key: ::String,
1204
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1205
+ extraction_config: {
1206
+ llm_extraction_config: {
1207
+ llm_extraction_instruction: ::String?,
1208
+ definition: ::String,
1209
+ validation: {
1210
+ string_validation: {
1211
+ allowed_values: Array[::String]
1212
+ }?,
1213
+ string_list_validation: {
1214
+ allowed_values: Array[::String]?,
1215
+ max_items: ::Integer?
1216
+ }?,
1217
+ number_validation: {
1218
+ min_value: ::Float?,
1219
+ max_value: ::Float?
1220
+ }?
1221
+ }?
1222
+ }?
1223
+ }?
1224
+ },
1225
+ ]?
1226
+ }?
1227
+ }?,
1228
+ memory_record_schema: {
1229
+ metadata_schema: Array[
1230
+ {
1231
+ key: ::String,
1232
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1233
+ extraction_config: {
1234
+ llm_extraction_config: {
1235
+ llm_extraction_instruction: ::String?,
1236
+ definition: ::String,
1237
+ validation: {
1238
+ string_validation: {
1239
+ allowed_values: Array[::String]
1240
+ }?,
1241
+ string_list_validation: {
1242
+ allowed_values: Array[::String]?,
1243
+ max_items: ::Integer?
1244
+ }?,
1245
+ number_validation: {
1246
+ min_value: ::Float?,
1247
+ max_value: ::Float?
1248
+ }?
1249
+ }?
1250
+ }?
1251
+ }?
1252
+ },
1253
+ ]?
953
1254
  }?
954
1255
  }?
955
1256
  },
956
1257
  ],
1258
+ ?indexed_keys: Array[
1259
+ {
1260
+ key: ::String,
1261
+ type: ("STRING" | "STRINGLIST" | "NUMBER")
1262
+ },
1263
+ ],
957
1264
  ?stream_delivery_resources: {
958
1265
  resources: Array[
959
1266
  {
@@ -998,8 +1305,8 @@ module Aws
998
1305
  token_endpoint_auth_methods: Array[::String]?
999
1306
  }?
1000
1307
  },
1001
- client_id: ::String,
1002
- client_secret: ::String,
1308
+ client_id: ::String?,
1309
+ client_secret: ::String?,
1003
1310
  private_endpoint: {
1004
1311
  self_managed_lattice_resource: {
1005
1312
  resource_configuration_identifier: ::String?
@@ -1030,7 +1337,15 @@ module Aws
1030
1337
  }?
1031
1338
  }
1032
1339
  },
1033
- ]?
1340
+ ]?,
1341
+ on_behalf_of_token_exchange_config: {
1342
+ grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
1343
+ token_exchange_grant_type_config: {
1344
+ actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT"),
1345
+ actor_token_scopes: Array[::String]?
1346
+ }?
1347
+ }?,
1348
+ client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?
1034
1349
  }?,
1035
1350
  google_oauth_2_provider_config: {
1036
1351
  client_id: ::String,
@@ -1406,6 +1721,17 @@ module Aws
1406
1721
  ) -> _DeleteCodeInterpreterResponseSuccess
1407
1722
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCodeInterpreterResponseSuccess
1408
1723
 
1724
+ interface _DeleteConfigurationBundleResponseSuccess
1725
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationBundleResponse]
1726
+ def bundle_id: () -> ::String
1727
+ def status: () -> ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "DELETE_FAILED")
1728
+ end
1729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_configuration_bundle-instance_method
1730
+ def delete_configuration_bundle: (
1731
+ bundle_id: ::String
1732
+ ) -> _DeleteConfigurationBundleResponseSuccess
1733
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationBundleResponseSuccess
1734
+
1409
1735
  interface _DeleteEvaluatorResponseSuccess
1410
1736
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEvaluatorResponse]
1411
1737
  def evaluator_arn: () -> ::String
@@ -1430,6 +1756,18 @@ module Aws
1430
1756
  ) -> _DeleteGatewayResponseSuccess
1431
1757
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayResponseSuccess
1432
1758
 
1759
+ interface _DeleteGatewayRuleResponseSuccess
1760
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayRuleResponse]
1761
+ def rule_id: () -> ::String
1762
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
1763
+ end
1764
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_gateway_rule-instance_method
1765
+ def delete_gateway_rule: (
1766
+ gateway_identifier: ::String,
1767
+ rule_id: ::String
1768
+ ) -> _DeleteGatewayRuleResponseSuccess
1769
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayRuleResponseSuccess
1770
+
1433
1771
  interface _DeleteGatewayTargetResponseSuccess
1434
1772
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayTargetResponse]
1435
1773
  def gateway_arn: () -> ::String
@@ -1691,6 +2029,44 @@ module Aws
1691
2029
  ) -> _GetCodeInterpreterResponseSuccess
1692
2030
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCodeInterpreterResponseSuccess
1693
2031
 
2032
+ interface _GetConfigurationBundleResponseSuccess
2033
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationBundleResponse]
2034
+ def bundle_arn: () -> ::String
2035
+ def bundle_id: () -> ::String
2036
+ def bundle_name: () -> ::String
2037
+ def description: () -> ::String
2038
+ def version_id: () -> ::String
2039
+ def components: () -> ::Hash[::String, Types::ComponentConfiguration]
2040
+ def lineage_metadata: () -> Types::VersionLineageMetadata
2041
+ def created_at: () -> ::Time
2042
+ def updated_at: () -> ::Time
2043
+ end
2044
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle-instance_method
2045
+ def get_configuration_bundle: (
2046
+ bundle_id: ::String,
2047
+ ?branch_name: ::String
2048
+ ) -> _GetConfigurationBundleResponseSuccess
2049
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleResponseSuccess
2050
+
2051
+ interface _GetConfigurationBundleVersionResponseSuccess
2052
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationBundleVersionResponse]
2053
+ def bundle_arn: () -> ::String
2054
+ def bundle_id: () -> ::String
2055
+ def bundle_name: () -> ::String
2056
+ def description: () -> ::String
2057
+ def version_id: () -> ::String
2058
+ def components: () -> ::Hash[::String, Types::ComponentConfiguration]
2059
+ def lineage_metadata: () -> Types::VersionLineageMetadata
2060
+ def created_at: () -> ::Time
2061
+ def version_created_at: () -> ::Time
2062
+ end
2063
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle_version-instance_method
2064
+ def get_configuration_bundle_version: (
2065
+ bundle_id: ::String,
2066
+ version_id: ::String
2067
+ ) -> _GetConfigurationBundleVersionResponseSuccess
2068
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleVersionResponseSuccess
2069
+
1694
2070
  interface _GetEvaluatorResponseSuccess
1695
2071
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEvaluatorResponse]
1696
2072
  def evaluator_arn: () -> ::String
@@ -1703,10 +2079,12 @@ module Aws
1703
2079
  def created_at: () -> ::Time
1704
2080
  def updated_at: () -> ::Time
1705
2081
  def locked_for_modification: () -> bool
2082
+ def kms_key_arn: () -> ::String
1706
2083
  end
1707
2084
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_evaluator-instance_method
1708
2085
  def get_evaluator: (
1709
- evaluator_id: ::String
2086
+ evaluator_id: ::String,
2087
+ ?included_data: ("ALL_DATA" | "METADATA_ONLY")
1710
2088
  ) -> _GetEvaluatorResponseSuccess
1711
2089
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEvaluatorResponseSuccess
1712
2090
 
@@ -1724,7 +2102,7 @@ module Aws
1724
2102
  def role_arn: () -> ::String
1725
2103
  def protocol_type: () -> ("MCP")
1726
2104
  def protocol_configuration: () -> Types::GatewayProtocolConfiguration
1727
- def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
2105
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
1728
2106
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
1729
2107
  def kms_key_arn: () -> ::String
1730
2108
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
@@ -1738,6 +2116,26 @@ module Aws
1738
2116
  ) -> _GetGatewayResponseSuccess
1739
2117
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayResponseSuccess
1740
2118
 
2119
+ interface _GetGatewayRuleResponseSuccess
2120
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayRuleResponse]
2121
+ def rule_id: () -> ::String
2122
+ def gateway_arn: () -> ::String
2123
+ def priority: () -> ::Integer
2124
+ def conditions: () -> ::Array[Types::Condition]
2125
+ def actions: () -> ::Array[Types::Action]
2126
+ def description: () -> ::String
2127
+ def created_at: () -> ::Time
2128
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
2129
+ def system: () -> Types::SystemManagedBlock
2130
+ def updated_at: () -> ::Time
2131
+ end
2132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_rule-instance_method
2133
+ def get_gateway_rule: (
2134
+ gateway_identifier: ::String,
2135
+ rule_id: ::String
2136
+ ) -> _GetGatewayRuleResponseSuccess
2137
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayRuleResponseSuccess
2138
+
1741
2139
  interface _GetGatewayTargetResponseSuccess
1742
2140
  include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayTargetResponse]
1743
2141
  def gateway_arn: () -> ::String
@@ -1755,6 +2153,7 @@ module Aws
1755
2153
  def private_endpoint: () -> Types::PrivateEndpoint
1756
2154
  def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
1757
2155
  def authorization_data: () -> Types::AuthorizationData
2156
+ def protocol_type: () -> ("MCP" | "HTTP")
1758
2157
  end
1759
2158
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_target-instance_method
1760
2159
  def get_gateway_target: (
@@ -2053,6 +2452,36 @@ module Aws
2053
2452
  ) -> _ListCodeInterpretersResponseSuccess
2054
2453
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCodeInterpretersResponseSuccess
2055
2454
 
2455
+ interface _ListConfigurationBundleVersionsResponseSuccess
2456
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationBundleVersionsResponse]
2457
+ def versions: () -> ::Array[Types::ConfigurationBundleVersionSummary]
2458
+ def next_token: () -> ::String
2459
+ end
2460
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_configuration_bundle_versions-instance_method
2461
+ def list_configuration_bundle_versions: (
2462
+ bundle_id: ::String,
2463
+ ?next_token: ::String,
2464
+ ?max_results: ::Integer,
2465
+ ?filter: {
2466
+ branch_name: ::String?,
2467
+ created_by_name: ::String?,
2468
+ latest_per_branch: bool?
2469
+ }
2470
+ ) -> _ListConfigurationBundleVersionsResponseSuccess
2471
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundleVersionsResponseSuccess
2472
+
2473
+ interface _ListConfigurationBundlesResponseSuccess
2474
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationBundlesResponse]
2475
+ def bundles: () -> ::Array[Types::ConfigurationBundleSummary]
2476
+ def next_token: () -> ::String
2477
+ end
2478
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_configuration_bundles-instance_method
2479
+ def list_configuration_bundles: (
2480
+ ?next_token: ::String,
2481
+ ?max_results: ::Integer
2482
+ ) -> _ListConfigurationBundlesResponseSuccess
2483
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundlesResponseSuccess
2484
+
2056
2485
  interface _ListEvaluatorsResponseSuccess
2057
2486
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluatorsResponse]
2058
2487
  def evaluators: () -> ::Array[Types::EvaluatorSummary]
@@ -2065,6 +2494,19 @@ module Aws
2065
2494
  ) -> _ListEvaluatorsResponseSuccess
2066
2495
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEvaluatorsResponseSuccess
2067
2496
 
2497
+ interface _ListGatewayRulesResponseSuccess
2498
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewayRulesResponse]
2499
+ def gateway_rules: () -> ::Array[Types::GatewayRuleDetail]
2500
+ def next_token: () -> ::String
2501
+ end
2502
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_gateway_rules-instance_method
2503
+ def list_gateway_rules: (
2504
+ gateway_identifier: ::String,
2505
+ ?max_results: ::Integer,
2506
+ ?next_token: ::String
2507
+ ) -> _ListGatewayRulesResponseSuccess
2508
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewayRulesResponseSuccess
2509
+
2068
2510
  interface _ListGatewayTargetsResponseSuccess
2069
2511
  include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewayTargetsResponse]
2070
2512
  def items: () -> ::Array[Types::TargetSummary]
@@ -2492,6 +2934,33 @@ module Aws
2492
2934
  ) -> _UpdateApiKeyCredentialProviderResponseSuccess
2493
2935
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyCredentialProviderResponseSuccess
2494
2936
 
2937
+ interface _UpdateConfigurationBundleResponseSuccess
2938
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationBundleResponse]
2939
+ def bundle_arn: () -> ::String
2940
+ def bundle_id: () -> ::String
2941
+ def version_id: () -> ::String
2942
+ def updated_at: () -> ::Time
2943
+ end
2944
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_configuration_bundle-instance_method
2945
+ def update_configuration_bundle: (
2946
+ ?client_token: ::String,
2947
+ bundle_id: ::String,
2948
+ ?bundle_name: ::String,
2949
+ ?description: ::String,
2950
+ ?components: Hash[::String, {
2951
+ configuration: {
2952
+ }
2953
+ }],
2954
+ ?parent_version_ids: Array[::String],
2955
+ ?branch_name: ::String,
2956
+ ?commit_message: ::String,
2957
+ ?created_by: {
2958
+ name: ::String,
2959
+ arn: ::String?
2960
+ }
2961
+ ) -> _UpdateConfigurationBundleResponseSuccess
2962
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
2963
+
2495
2964
  interface _UpdateEvaluatorResponseSuccess
2496
2965
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEvaluatorResponse]
2497
2966
  def evaluator_arn: () -> ::String
@@ -2543,7 +3012,8 @@ module Aws
2543
3012
  }?
2544
3013
  }?
2545
3014
  },
2546
- ?level: ("TOOL_CALL" | "TRACE" | "SESSION")
3015
+ ?level: ("TOOL_CALL" | "TRACE" | "SESSION"),
3016
+ ?kms_key_arn: ::String
2547
3017
  ) -> _UpdateEvaluatorResponseSuccess
2548
3018
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEvaluatorResponseSuccess
2549
3019
 
@@ -2561,7 +3031,7 @@ module Aws
2561
3031
  def role_arn: () -> ::String
2562
3032
  def protocol_type: () -> ("MCP")
2563
3033
  def protocol_configuration: () -> Types::GatewayProtocolConfiguration
2564
- def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
3034
+ def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
2565
3035
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
2566
3036
  def kms_key_arn: () -> ::String
2567
3037
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
@@ -2575,7 +3045,7 @@ module Aws
2575
3045
  name: ::String,
2576
3046
  ?description: ::String,
2577
3047
  role_arn: ::String,
2578
- protocol_type: ("MCP"),
3048
+ ?protocol_type: ("MCP"),
2579
3049
  ?protocol_configuration: {
2580
3050
  mcp: {
2581
3051
  supported_versions: Array[::String]?,
@@ -2583,7 +3053,7 @@ module Aws
2583
3053
  search_type: ("SEMANTIC")?
2584
3054
  }?
2585
3055
  },
2586
- authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE"),
3056
+ authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
2587
3057
  ?authorizer_configuration: {
2588
3058
  custom_jwt_authorizer: {
2589
3059
  discovery_url: ::String,
@@ -2658,6 +3128,85 @@ module Aws
2658
3128
  ) -> _UpdateGatewayResponseSuccess
2659
3129
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayResponseSuccess
2660
3130
 
3131
+ interface _UpdateGatewayRuleResponseSuccess
3132
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayRuleResponse]
3133
+ def rule_id: () -> ::String
3134
+ def gateway_arn: () -> ::String
3135
+ def priority: () -> ::Integer
3136
+ def conditions: () -> ::Array[Types::Condition]
3137
+ def actions: () -> ::Array[Types::Action]
3138
+ def description: () -> ::String
3139
+ def created_at: () -> ::Time
3140
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
3141
+ def system: () -> Types::SystemManagedBlock
3142
+ def updated_at: () -> ::Time
3143
+ end
3144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_rule-instance_method
3145
+ def update_gateway_rule: (
3146
+ gateway_identifier: ::String,
3147
+ rule_id: ::String,
3148
+ ?priority: ::Integer,
3149
+ ?conditions: Array[
3150
+ {
3151
+ match_principals: {
3152
+ any_of: Array[
3153
+ {
3154
+ iam_principal: {
3155
+ arn: ::String,
3156
+ operator: ("StringEquals" | "StringLike")?
3157
+ }?
3158
+ },
3159
+ ]
3160
+ }?,
3161
+ match_paths: {
3162
+ any_of: Array[::String]
3163
+ }?
3164
+ },
3165
+ ],
3166
+ ?actions: Array[
3167
+ {
3168
+ configuration_bundle: {
3169
+ static_override: {
3170
+ bundle_arn: ::String,
3171
+ bundle_version: ::String
3172
+ }?,
3173
+ weighted_override: {
3174
+ traffic_split: Array[
3175
+ {
3176
+ name: ::String,
3177
+ weight: ::Integer,
3178
+ configuration_bundle: {
3179
+ bundle_arn: ::String,
3180
+ bundle_version: ::String
3181
+ },
3182
+ description: ::String?,
3183
+ metadata: Hash[::String, ::String]?
3184
+ },
3185
+ ]
3186
+ }?
3187
+ }?,
3188
+ route_to_target: {
3189
+ static_route: {
3190
+ target_name: ::String
3191
+ }?,
3192
+ weighted_route: {
3193
+ traffic_split: Array[
3194
+ {
3195
+ name: ::String,
3196
+ weight: ::Integer,
3197
+ target_name: ::String,
3198
+ description: ::String?,
3199
+ metadata: Hash[::String, ::String]?
3200
+ },
3201
+ ]
3202
+ }?
3203
+ }?
3204
+ },
3205
+ ],
3206
+ ?description: ::String
3207
+ ) -> _UpdateGatewayRuleResponseSuccess
3208
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayRuleResponseSuccess
3209
+
2661
3210
  interface _UpdateGatewayTargetResponseSuccess
2662
3211
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayTargetResponse]
2663
3212
  def gateway_arn: () -> ::String
@@ -2675,6 +3224,7 @@ module Aws
2675
3224
  def private_endpoint: () -> Types::PrivateEndpoint
2676
3225
  def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
2677
3226
  def authorization_data: () -> Types::AuthorizationData
3227
+ def protocol_type: () -> ("MCP" | "HTTP")
2678
3228
  end
2679
3229
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_target-instance_method
2680
3230
  def update_gateway_target: (
@@ -2736,8 +3286,8 @@ module Aws
2736
3286
  }?,
2737
3287
  inline_payload: ::String?
2738
3288
  }?,
2739
- resource_priority: ::Integer?,
2740
- listing_mode: ("DEFAULT" | "DYNAMIC")?
3289
+ listing_mode: ("DEFAULT" | "DYNAMIC")?,
3290
+ resource_priority: ::Integer?
2741
3291
  }?,
2742
3292
  api_gateway: {
2743
3293
  rest_api_id: ::String,
@@ -2759,17 +3309,23 @@ module Aws
2759
3309
  ]
2760
3310
  }
2761
3311
  }?
3312
+ }?,
3313
+ http: {
3314
+ agentcore_runtime: {
3315
+ arn: ::String,
3316
+ qualifier: ::String?
3317
+ }?
2762
3318
  }?
2763
3319
  },
2764
3320
  ?credential_provider_configurations: Array[
2765
3321
  {
2766
- credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
3322
+ credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH"),
2767
3323
  credential_provider: {
2768
3324
  oauth_credential_provider: {
2769
3325
  provider_arn: ::String,
2770
3326
  scopes: Array[::String],
2771
3327
  custom_parameters: Hash[::String, ::String]?,
2772
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
3328
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
2773
3329
  default_return_url: ::String?
2774
3330
  }?,
2775
3331
  api_key_credential_provider: {
@@ -2950,7 +3506,7 @@ module Aws
2950
3506
  provider_arn: ::String,
2951
3507
  scopes: Array[::String],
2952
3508
  custom_parameters: Hash[::String, ::String]?,
2953
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")?,
3509
+ grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
2954
3510
  default_return_url: ::String?
2955
3511
  }?
2956
3512
  }?
@@ -3023,19 +3579,100 @@ module Aws
3023
3579
  name: ::String,
3024
3580
  description: ::String?,
3025
3581
  namespaces: Array[::String]?,
3026
- namespace_templates: Array[::String]?
3582
+ namespace_templates: Array[::String]?,
3583
+ memory_record_schema: {
3584
+ metadata_schema: Array[
3585
+ {
3586
+ key: ::String,
3587
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3588
+ extraction_config: {
3589
+ llm_extraction_config: {
3590
+ llm_extraction_instruction: ::String?,
3591
+ definition: ::String,
3592
+ validation: {
3593
+ string_validation: {
3594
+ allowed_values: Array[::String]
3595
+ }?,
3596
+ string_list_validation: {
3597
+ allowed_values: Array[::String]?,
3598
+ max_items: ::Integer?
3599
+ }?,
3600
+ number_validation: {
3601
+ min_value: ::Float?,
3602
+ max_value: ::Float?
3603
+ }?
3604
+ }?
3605
+ }?
3606
+ }?
3607
+ },
3608
+ ]?
3609
+ }?
3027
3610
  }?,
3028
3611
  summary_memory_strategy: {
3029
3612
  name: ::String,
3030
3613
  description: ::String?,
3031
3614
  namespaces: Array[::String]?,
3032
- namespace_templates: Array[::String]?
3615
+ namespace_templates: Array[::String]?,
3616
+ memory_record_schema: {
3617
+ metadata_schema: Array[
3618
+ {
3619
+ key: ::String,
3620
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3621
+ extraction_config: {
3622
+ llm_extraction_config: {
3623
+ llm_extraction_instruction: ::String?,
3624
+ definition: ::String,
3625
+ validation: {
3626
+ string_validation: {
3627
+ allowed_values: Array[::String]
3628
+ }?,
3629
+ string_list_validation: {
3630
+ allowed_values: Array[::String]?,
3631
+ max_items: ::Integer?
3632
+ }?,
3633
+ number_validation: {
3634
+ min_value: ::Float?,
3635
+ max_value: ::Float?
3636
+ }?
3637
+ }?
3638
+ }?
3639
+ }?
3640
+ },
3641
+ ]?
3642
+ }?
3033
3643
  }?,
3034
3644
  user_preference_memory_strategy: {
3035
3645
  name: ::String,
3036
3646
  description: ::String?,
3037
3647
  namespaces: Array[::String]?,
3038
- namespace_templates: Array[::String]?
3648
+ namespace_templates: Array[::String]?,
3649
+ memory_record_schema: {
3650
+ metadata_schema: Array[
3651
+ {
3652
+ key: ::String,
3653
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3654
+ extraction_config: {
3655
+ llm_extraction_config: {
3656
+ llm_extraction_instruction: ::String?,
3657
+ definition: ::String,
3658
+ validation: {
3659
+ string_validation: {
3660
+ allowed_values: Array[::String]
3661
+ }?,
3662
+ string_list_validation: {
3663
+ allowed_values: Array[::String]?,
3664
+ max_items: ::Integer?
3665
+ }?,
3666
+ number_validation: {
3667
+ min_value: ::Float?,
3668
+ max_value: ::Float?
3669
+ }?
3670
+ }?
3671
+ }?
3672
+ }?
3673
+ },
3674
+ ]?
3675
+ }?
3039
3676
  }?,
3040
3677
  custom_memory_strategy: {
3041
3678
  name: ::String,
@@ -3082,7 +3719,34 @@ module Aws
3082
3719
  append_to_prompt: ::String,
3083
3720
  model_id: ::String,
3084
3721
  namespaces: Array[::String]?,
3085
- namespace_templates: Array[::String]?
3722
+ namespace_templates: Array[::String]?,
3723
+ memory_record_schema: {
3724
+ metadata_schema: Array[
3725
+ {
3726
+ key: ::String,
3727
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3728
+ extraction_config: {
3729
+ llm_extraction_config: {
3730
+ llm_extraction_instruction: ::String?,
3731
+ definition: ::String,
3732
+ validation: {
3733
+ string_validation: {
3734
+ allowed_values: Array[::String]
3735
+ }?,
3736
+ string_list_validation: {
3737
+ allowed_values: Array[::String]?,
3738
+ max_items: ::Integer?
3739
+ }?,
3740
+ number_validation: {
3741
+ min_value: ::Float?,
3742
+ max_value: ::Float?
3743
+ }?
3744
+ }?
3745
+ }?
3746
+ }?
3747
+ },
3748
+ ]?
3749
+ }?
3086
3750
  }?
3087
3751
  }?,
3088
3752
  self_managed_configuration: {
@@ -3105,6 +3769,33 @@ module Aws
3105
3769
  },
3106
3770
  historical_context_window_size: ::Integer?
3107
3771
  }?
3772
+ }?,
3773
+ memory_record_schema: {
3774
+ metadata_schema: Array[
3775
+ {
3776
+ key: ::String,
3777
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3778
+ extraction_config: {
3779
+ llm_extraction_config: {
3780
+ llm_extraction_instruction: ::String?,
3781
+ definition: ::String,
3782
+ validation: {
3783
+ string_validation: {
3784
+ allowed_values: Array[::String]
3785
+ }?,
3786
+ string_list_validation: {
3787
+ allowed_values: Array[::String]?,
3788
+ max_items: ::Integer?
3789
+ }?,
3790
+ number_validation: {
3791
+ min_value: ::Float?,
3792
+ max_value: ::Float?
3793
+ }?
3794
+ }?
3795
+ }?
3796
+ }?
3797
+ },
3798
+ ]?
3108
3799
  }?
3109
3800
  }?,
3110
3801
  episodic_memory_strategy: {
@@ -3114,7 +3805,61 @@ module Aws
3114
3805
  namespace_templates: Array[::String]?,
3115
3806
  reflection_configuration: {
3116
3807
  namespaces: Array[::String]?,
3117
- namespace_templates: Array[::String]?
3808
+ namespace_templates: Array[::String]?,
3809
+ memory_record_schema: {
3810
+ metadata_schema: Array[
3811
+ {
3812
+ key: ::String,
3813
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3814
+ extraction_config: {
3815
+ llm_extraction_config: {
3816
+ llm_extraction_instruction: ::String?,
3817
+ definition: ::String,
3818
+ validation: {
3819
+ string_validation: {
3820
+ allowed_values: Array[::String]
3821
+ }?,
3822
+ string_list_validation: {
3823
+ allowed_values: Array[::String]?,
3824
+ max_items: ::Integer?
3825
+ }?,
3826
+ number_validation: {
3827
+ min_value: ::Float?,
3828
+ max_value: ::Float?
3829
+ }?
3830
+ }?
3831
+ }?
3832
+ }?
3833
+ },
3834
+ ]?
3835
+ }?
3836
+ }?,
3837
+ memory_record_schema: {
3838
+ metadata_schema: Array[
3839
+ {
3840
+ key: ::String,
3841
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3842
+ extraction_config: {
3843
+ llm_extraction_config: {
3844
+ llm_extraction_instruction: ::String?,
3845
+ definition: ::String,
3846
+ validation: {
3847
+ string_validation: {
3848
+ allowed_values: Array[::String]
3849
+ }?,
3850
+ string_list_validation: {
3851
+ allowed_values: Array[::String]?,
3852
+ max_items: ::Integer?
3853
+ }?,
3854
+ number_validation: {
3855
+ min_value: ::Float?,
3856
+ max_value: ::Float?
3857
+ }?
3858
+ }?
3859
+ }?
3860
+ }?
3861
+ },
3862
+ ]?
3118
3863
  }?
3119
3864
  }?
3120
3865
  },
@@ -3165,14 +3910,68 @@ module Aws
3165
3910
  reflection: {
3166
3911
  episodic_reflection_configuration: {
3167
3912
  namespaces: Array[::String]?,
3168
- namespace_templates: Array[::String]?
3913
+ namespace_templates: Array[::String]?,
3914
+ memory_record_schema: {
3915
+ metadata_schema: Array[
3916
+ {
3917
+ key: ::String,
3918
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3919
+ extraction_config: {
3920
+ llm_extraction_config: {
3921
+ llm_extraction_instruction: ::String?,
3922
+ definition: ::String,
3923
+ validation: {
3924
+ string_validation: {
3925
+ allowed_values: Array[::String]
3926
+ }?,
3927
+ string_list_validation: {
3928
+ allowed_values: Array[::String]?,
3929
+ max_items: ::Integer?
3930
+ }?,
3931
+ number_validation: {
3932
+ min_value: ::Float?,
3933
+ max_value: ::Float?
3934
+ }?
3935
+ }?
3936
+ }?
3937
+ }?
3938
+ },
3939
+ ]?
3940
+ }?
3169
3941
  }?,
3170
3942
  custom_reflection_configuration: {
3171
3943
  episodic_reflection_override: {
3172
3944
  append_to_prompt: ::String,
3173
3945
  model_id: ::String,
3174
3946
  namespaces: Array[::String]?,
3175
- namespace_templates: Array[::String]?
3947
+ namespace_templates: Array[::String]?,
3948
+ memory_record_schema: {
3949
+ metadata_schema: Array[
3950
+ {
3951
+ key: ::String,
3952
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3953
+ extraction_config: {
3954
+ llm_extraction_config: {
3955
+ llm_extraction_instruction: ::String?,
3956
+ definition: ::String,
3957
+ validation: {
3958
+ string_validation: {
3959
+ allowed_values: Array[::String]
3960
+ }?,
3961
+ string_list_validation: {
3962
+ allowed_values: Array[::String]?,
3963
+ max_items: ::Integer?
3964
+ }?,
3965
+ number_validation: {
3966
+ min_value: ::Float?,
3967
+ max_value: ::Float?
3968
+ }?
3969
+ }?
3970
+ }?
3971
+ }?
3972
+ },
3973
+ ]?
3974
+ }?
3176
3975
  }?
3177
3976
  }?
3178
3977
  }?,
@@ -3196,6 +3995,33 @@ module Aws
3196
3995
  }?,
3197
3996
  historical_context_window_size: ::Integer?
3198
3997
  }?
3998
+ }?,
3999
+ memory_record_schema: {
4000
+ metadata_schema: Array[
4001
+ {
4002
+ key: ::String,
4003
+ type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4004
+ extraction_config: {
4005
+ llm_extraction_config: {
4006
+ llm_extraction_instruction: ::String?,
4007
+ definition: ::String,
4008
+ validation: {
4009
+ string_validation: {
4010
+ allowed_values: Array[::String]
4011
+ }?,
4012
+ string_list_validation: {
4013
+ allowed_values: Array[::String]?,
4014
+ max_items: ::Integer?
4015
+ }?,
4016
+ number_validation: {
4017
+ min_value: ::Float?,
4018
+ max_value: ::Float?
4019
+ }?
4020
+ }?
4021
+ }?
4022
+ }?
4023
+ },
4024
+ ]?
3199
4025
  }?
3200
4026
  },
3201
4027
  ]?,
@@ -3205,6 +4031,12 @@ module Aws
3205
4031
  },
3206
4032
  ]?
3207
4033
  },
4034
+ ?add_indexed_keys: Array[
4035
+ {
4036
+ key: ::String,
4037
+ type: ("STRING" | "STRINGLIST" | "NUMBER")
4038
+ },
4039
+ ],
3208
4040
  ?stream_delivery_resources: {
3209
4041
  resources: Array[
3210
4042
  {
@@ -3251,8 +4083,8 @@ module Aws
3251
4083
  token_endpoint_auth_methods: Array[::String]?
3252
4084
  }?
3253
4085
  },
3254
- client_id: ::String,
3255
- client_secret: ::String,
4086
+ client_id: ::String?,
4087
+ client_secret: ::String?,
3256
4088
  private_endpoint: {
3257
4089
  self_managed_lattice_resource: {
3258
4090
  resource_configuration_identifier: ::String?
@@ -3283,7 +4115,15 @@ module Aws
3283
4115
  }?
3284
4116
  }
3285
4117
  },
3286
- ]?
4118
+ ]?,
4119
+ on_behalf_of_token_exchange_config: {
4120
+ grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
4121
+ token_exchange_grant_type_config: {
4122
+ actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT"),
4123
+ actor_token_scopes: Array[::String]?
4124
+ }?
4125
+ }?,
4126
+ client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?
3287
4127
  }?,
3288
4128
  google_oauth_2_provider_config: {
3289
4129
  client_id: ::String,