aws-sdk-bedrockagentcorecontrol 1.14.0 → 1.16.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/types.rbs CHANGED
@@ -52,6 +52,33 @@ module Aws::BedrockAgentCoreControl
52
52
  SENSITIVE: [:name]
53
53
  end
54
54
 
55
+ class ApiGatewayTargetConfiguration
56
+ attr_accessor rest_api_id: ::String
57
+ attr_accessor stage: ::String
58
+ attr_accessor api_gateway_tool_configuration: Types::ApiGatewayToolConfiguration
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class ApiGatewayToolConfiguration
63
+ attr_accessor tool_overrides: ::Array[Types::ApiGatewayToolOverride]
64
+ attr_accessor tool_filters: ::Array[Types::ApiGatewayToolFilter]
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class ApiGatewayToolFilter
69
+ attr_accessor filter_path: ::String
70
+ attr_accessor methods: ::Array[("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")]
71
+ SENSITIVE: []
72
+ end
73
+
74
+ class ApiGatewayToolOverride
75
+ attr_accessor name: ::String
76
+ attr_accessor description: ::String
77
+ attr_accessor path: ::String
78
+ attr_accessor method: ("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")
79
+ SENSITIVE: []
80
+ end
81
+
55
82
  class ApiKeyCredentialProvider
56
83
  attr_accessor provider_arn: ::String
57
84
  attr_accessor credential_parameter_name: ::String
@@ -105,6 +132,19 @@ module Aws::BedrockAgentCoreControl
105
132
  end
106
133
  end
107
134
 
135
+ class AuthorizingClaimMatchValueType
136
+ attr_accessor claim_match_value: Types::ClaimMatchValueType
137
+ attr_accessor claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class BedrockEvaluatorModelConfig
142
+ attr_accessor model_id: ::String
143
+ attr_accessor inference_config: Types::InferenceConfiguration
144
+ attr_accessor additional_model_request_fields: untyped
145
+ SENSITIVE: []
146
+ end
147
+
108
148
  class BrowserNetworkConfiguration
109
149
  attr_accessor network_mode: ("PUBLIC" | "VPC")
110
150
  attr_accessor vpc_config: Types::VpcConfig
@@ -132,6 +172,42 @@ module Aws::BedrockAgentCoreControl
132
172
  SENSITIVE: [:description]
133
173
  end
134
174
 
175
+ class CategoricalScaleDefinition
176
+ attr_accessor definition: ::String
177
+ attr_accessor label: ::String
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class CedarPolicy
182
+ attr_accessor statement: ::String
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class ClaimMatchValueType
187
+ attr_accessor match_value_string: ::String
188
+ attr_accessor match_value_string_list: ::Array[::String]
189
+ attr_accessor unknown: untyped
190
+ SENSITIVE: []
191
+
192
+ class MatchValueString < ClaimMatchValueType
193
+ end
194
+ class MatchValueStringList < ClaimMatchValueType
195
+ end
196
+ class Unknown < ClaimMatchValueType
197
+ end
198
+ end
199
+
200
+ class CloudWatchLogsInputConfig
201
+ attr_accessor log_group_names: ::Array[::String]
202
+ attr_accessor service_names: ::Array[::String]
203
+ SENSITIVE: []
204
+ end
205
+
206
+ class CloudWatchOutputConfig
207
+ attr_accessor log_group_name: ::String
208
+ SENSITIVE: []
209
+ end
210
+
135
211
  class Code
136
212
  attr_accessor s3: Types::S3Location
137
213
  attr_accessor unknown: untyped
@@ -193,6 +269,17 @@ module Aws::BedrockAgentCoreControl
193
269
  SENSITIVE: []
194
270
  end
195
271
 
272
+ class Content
273
+ attr_accessor raw_text: ::String
274
+ attr_accessor unknown: untyped
275
+ SENSITIVE: []
276
+
277
+ class RawText < Content
278
+ end
279
+ class Unknown < Content
280
+ end
281
+ end
282
+
196
283
  class CreateAgentRuntimeEndpointRequest
197
284
  attr_accessor agent_runtime_id: ::String
198
285
  attr_accessor name: ::String
@@ -292,6 +379,23 @@ module Aws::BedrockAgentCoreControl
292
379
  SENSITIVE: []
293
380
  end
294
381
 
382
+ class CreateEvaluatorRequest
383
+ attr_accessor client_token: ::String
384
+ attr_accessor evaluator_name: ::String
385
+ attr_accessor description: ::String
386
+ attr_accessor evaluator_config: Types::EvaluatorConfig
387
+ attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
388
+ SENSITIVE: [:description]
389
+ end
390
+
391
+ class CreateEvaluatorResponse
392
+ attr_accessor evaluator_arn: ::String
393
+ attr_accessor evaluator_id: ::String
394
+ attr_accessor created_at: ::Time
395
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
396
+ SENSITIVE: []
397
+ end
398
+
295
399
  class CreateGatewayRequest
296
400
  attr_accessor name: ::String
297
401
  attr_accessor description: ::String
@@ -299,9 +403,11 @@ module Aws::BedrockAgentCoreControl
299
403
  attr_accessor role_arn: ::String
300
404
  attr_accessor protocol_type: ("MCP")
301
405
  attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
302
- attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
406
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
303
407
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
304
408
  attr_accessor kms_key_arn: ::String
409
+ attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
410
+ attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
305
411
  attr_accessor exception_level: ("DEBUG")
306
412
  attr_accessor tags: ::Hash[::String, ::String]
307
413
  SENSITIVE: [:name, :description]
@@ -320,9 +426,11 @@ module Aws::BedrockAgentCoreControl
320
426
  attr_accessor role_arn: ::String
321
427
  attr_accessor protocol_type: ("MCP")
322
428
  attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
323
- attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
429
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
324
430
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
325
431
  attr_accessor kms_key_arn: ::String
432
+ attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
433
+ attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
326
434
  attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
327
435
  attr_accessor exception_level: ("DEBUG")
328
436
  SENSITIVE: [:name, :description]
@@ -387,6 +495,72 @@ module Aws::BedrockAgentCoreControl
387
495
  SENSITIVE: []
388
496
  end
389
497
 
498
+ class CreateOnlineEvaluationConfigRequest
499
+ attr_accessor client_token: ::String
500
+ attr_accessor online_evaluation_config_name: ::String
501
+ attr_accessor description: ::String
502
+ attr_accessor rule: Types::Rule
503
+ attr_accessor data_source_config: Types::DataSourceConfig
504
+ attr_accessor evaluators: ::Array[Types::EvaluatorReference]
505
+ attr_accessor evaluation_execution_role_arn: ::String
506
+ attr_accessor enable_on_create: bool
507
+ SENSITIVE: [:description]
508
+ end
509
+
510
+ class CreateOnlineEvaluationConfigResponse
511
+ attr_accessor online_evaluation_config_arn: ::String
512
+ attr_accessor online_evaluation_config_id: ::String
513
+ attr_accessor created_at: ::Time
514
+ attr_accessor output_config: Types::OutputConfig
515
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
516
+ attr_accessor execution_status: ("ENABLED" | "DISABLED")
517
+ attr_accessor failure_reason: ::String
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class CreatePolicyEngineRequest
522
+ attr_accessor name: ::String
523
+ attr_accessor description: ::String
524
+ attr_accessor client_token: ::String
525
+ SENSITIVE: [:description]
526
+ end
527
+
528
+ class CreatePolicyEngineResponse
529
+ attr_accessor policy_engine_id: ::String
530
+ attr_accessor name: ::String
531
+ attr_accessor description: ::String
532
+ attr_accessor created_at: ::Time
533
+ attr_accessor updated_at: ::Time
534
+ attr_accessor policy_engine_arn: ::String
535
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
536
+ attr_accessor status_reasons: ::Array[::String]
537
+ SENSITIVE: [:description]
538
+ end
539
+
540
+ class CreatePolicyRequest
541
+ attr_accessor name: ::String
542
+ attr_accessor definition: Types::PolicyDefinition
543
+ attr_accessor description: ::String
544
+ attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
545
+ attr_accessor policy_engine_id: ::String
546
+ attr_accessor client_token: ::String
547
+ SENSITIVE: [:description]
548
+ end
549
+
550
+ class CreatePolicyResponse
551
+ attr_accessor policy_id: ::String
552
+ attr_accessor name: ::String
553
+ attr_accessor policy_engine_id: ::String
554
+ attr_accessor definition: Types::PolicyDefinition
555
+ attr_accessor description: ::String
556
+ attr_accessor created_at: ::Time
557
+ attr_accessor updated_at: ::Time
558
+ attr_accessor policy_arn: ::String
559
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
560
+ attr_accessor status_reasons: ::Array[::String]
561
+ SENSITIVE: [:description]
562
+ end
563
+
390
564
  class CreateWorkloadIdentityRequest
391
565
  attr_accessor name: ::String
392
566
  attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]
@@ -421,10 +595,18 @@ module Aws::BedrockAgentCoreControl
421
595
  SENSITIVE: []
422
596
  end
423
597
 
598
+ class CustomClaimValidationType
599
+ attr_accessor inbound_token_claim_name: ::String
600
+ attr_accessor inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY")
601
+ attr_accessor authorizing_claim_match_value: Types::AuthorizingClaimMatchValueType
602
+ SENSITIVE: []
603
+ end
604
+
424
605
  class CustomConfigurationInput
425
606
  attr_accessor semantic_override: Types::SemanticOverrideConfigurationInput
426
607
  attr_accessor summary_override: Types::SummaryOverrideConfigurationInput
427
608
  attr_accessor user_preference_override: Types::UserPreferenceOverrideConfigurationInput
609
+ attr_accessor episodic_override: Types::EpisodicOverrideConfigurationInput
428
610
  attr_accessor self_managed_configuration: Types::SelfManagedConfigurationInput
429
611
  attr_accessor unknown: untyped
430
612
  SENSITIVE: []
@@ -435,6 +617,8 @@ module Aws::BedrockAgentCoreControl
435
617
  end
436
618
  class UserPreferenceOverride < CustomConfigurationInput
437
619
  end
620
+ class EpisodicOverride < CustomConfigurationInput
621
+ end
438
622
  class SelfManagedConfiguration < CustomConfigurationInput
439
623
  end
440
624
  class Unknown < CustomConfigurationInput
@@ -445,6 +629,7 @@ module Aws::BedrockAgentCoreControl
445
629
  attr_accessor semantic_consolidation_override: Types::SemanticConsolidationOverride
446
630
  attr_accessor summary_consolidation_override: Types::SummaryConsolidationOverride
447
631
  attr_accessor user_preference_consolidation_override: Types::UserPreferenceConsolidationOverride
632
+ attr_accessor episodic_consolidation_override: Types::EpisodicConsolidationOverride
448
633
  attr_accessor unknown: untyped
449
634
  SENSITIVE: []
450
635
 
@@ -454,6 +639,8 @@ module Aws::BedrockAgentCoreControl
454
639
  end
455
640
  class UserPreferenceConsolidationOverride < CustomConsolidationConfiguration
456
641
  end
642
+ class EpisodicConsolidationOverride < CustomConsolidationConfiguration
643
+ end
457
644
  class Unknown < CustomConsolidationConfiguration
458
645
  end
459
646
  end
@@ -462,6 +649,7 @@ module Aws::BedrockAgentCoreControl
462
649
  attr_accessor semantic_consolidation_override: Types::SemanticOverrideConsolidationConfigurationInput
463
650
  attr_accessor summary_consolidation_override: Types::SummaryOverrideConsolidationConfigurationInput
464
651
  attr_accessor user_preference_consolidation_override: Types::UserPreferenceOverrideConsolidationConfigurationInput
652
+ attr_accessor episodic_consolidation_override: Types::EpisodicOverrideConsolidationConfigurationInput
465
653
  attr_accessor unknown: untyped
466
654
  SENSITIVE: []
467
655
 
@@ -471,6 +659,8 @@ module Aws::BedrockAgentCoreControl
471
659
  end
472
660
  class UserPreferenceConsolidationOverride < CustomConsolidationConfigurationInput
473
661
  end
662
+ class EpisodicConsolidationOverride < CustomConsolidationConfigurationInput
663
+ end
474
664
  class Unknown < CustomConsolidationConfigurationInput
475
665
  end
476
666
  end
@@ -478,6 +668,7 @@ module Aws::BedrockAgentCoreControl
478
668
  class CustomExtractionConfiguration
479
669
  attr_accessor semantic_extraction_override: Types::SemanticExtractionOverride
480
670
  attr_accessor user_preference_extraction_override: Types::UserPreferenceExtractionOverride
671
+ attr_accessor episodic_extraction_override: Types::EpisodicExtractionOverride
481
672
  attr_accessor unknown: untyped
482
673
  SENSITIVE: []
483
674
 
@@ -485,6 +676,8 @@ module Aws::BedrockAgentCoreControl
485
676
  end
486
677
  class UserPreferenceExtractionOverride < CustomExtractionConfiguration
487
678
  end
679
+ class EpisodicExtractionOverride < CustomExtractionConfiguration
680
+ end
488
681
  class Unknown < CustomExtractionConfiguration
489
682
  end
490
683
  end
@@ -492,6 +685,7 @@ module Aws::BedrockAgentCoreControl
492
685
  class CustomExtractionConfigurationInput
493
686
  attr_accessor semantic_extraction_override: Types::SemanticOverrideExtractionConfigurationInput
494
687
  attr_accessor user_preference_extraction_override: Types::UserPreferenceOverrideExtractionConfigurationInput
688
+ attr_accessor episodic_extraction_override: Types::EpisodicOverrideExtractionConfigurationInput
495
689
  attr_accessor unknown: untyped
496
690
  SENSITIVE: []
497
691
 
@@ -499,6 +693,8 @@ module Aws::BedrockAgentCoreControl
499
693
  end
500
694
  class UserPreferenceExtractionOverride < CustomExtractionConfigurationInput
501
695
  end
696
+ class EpisodicExtractionOverride < CustomExtractionConfigurationInput
697
+ end
502
698
  class Unknown < CustomExtractionConfigurationInput
503
699
  end
504
700
  end
@@ -507,6 +703,8 @@ module Aws::BedrockAgentCoreControl
507
703
  attr_accessor discovery_url: ::String
508
704
  attr_accessor allowed_audience: ::Array[::String]
509
705
  attr_accessor allowed_clients: ::Array[::String]
706
+ attr_accessor allowed_scopes: ::Array[::String]
707
+ attr_accessor custom_claims: ::Array[Types::CustomClaimValidationType]
510
708
  SENSITIVE: []
511
709
  end
512
710
 
@@ -531,6 +729,39 @@ module Aws::BedrockAgentCoreControl
531
729
  SENSITIVE: []
532
730
  end
533
731
 
732
+ class CustomReflectionConfiguration
733
+ attr_accessor episodic_reflection_override: Types::EpisodicReflectionOverride
734
+ attr_accessor unknown: untyped
735
+ SENSITIVE: []
736
+
737
+ class EpisodicReflectionOverride < CustomReflectionConfiguration
738
+ end
739
+ class Unknown < CustomReflectionConfiguration
740
+ end
741
+ end
742
+
743
+ class CustomReflectionConfigurationInput
744
+ attr_accessor episodic_reflection_override: Types::EpisodicOverrideReflectionConfigurationInput
745
+ attr_accessor unknown: untyped
746
+ SENSITIVE: []
747
+
748
+ class EpisodicReflectionOverride < CustomReflectionConfigurationInput
749
+ end
750
+ class Unknown < CustomReflectionConfigurationInput
751
+ end
752
+ end
753
+
754
+ class DataSourceConfig
755
+ attr_accessor cloud_watch_logs: Types::CloudWatchLogsInputConfig
756
+ attr_accessor unknown: untyped
757
+ SENSITIVE: []
758
+
759
+ class CloudWatchLogs < DataSourceConfig
760
+ end
761
+ class Unknown < DataSourceConfig
762
+ end
763
+ end
764
+
534
765
  class DecryptionFailure
535
766
  attr_accessor message: ::String
536
767
  SENSITIVE: []
@@ -596,6 +827,18 @@ module Aws::BedrockAgentCoreControl
596
827
  SENSITIVE: []
597
828
  end
598
829
 
830
+ class DeleteEvaluatorRequest
831
+ attr_accessor evaluator_id: ::String
832
+ SENSITIVE: []
833
+ end
834
+
835
+ class DeleteEvaluatorResponse
836
+ attr_accessor evaluator_arn: ::String
837
+ attr_accessor evaluator_id: ::String
838
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
839
+ SENSITIVE: []
840
+ end
841
+
599
842
  class DeleteGatewayRequest
600
843
  attr_accessor gateway_identifier: ::String
601
844
  SENSITIVE: []
@@ -647,6 +890,63 @@ module Aws::BedrockAgentCoreControl
647
890
  class DeleteOauth2CredentialProviderResponse < Aws::EmptyStructure
648
891
  end
649
892
 
893
+ class DeleteOnlineEvaluationConfigRequest
894
+ attr_accessor online_evaluation_config_id: ::String
895
+ SENSITIVE: []
896
+ end
897
+
898
+ class DeleteOnlineEvaluationConfigResponse
899
+ attr_accessor online_evaluation_config_arn: ::String
900
+ attr_accessor online_evaluation_config_id: ::String
901
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
902
+ SENSITIVE: []
903
+ end
904
+
905
+ class DeletePolicyEngineRequest
906
+ attr_accessor policy_engine_id: ::String
907
+ SENSITIVE: []
908
+ end
909
+
910
+ class DeletePolicyEngineResponse
911
+ attr_accessor policy_engine_id: ::String
912
+ attr_accessor name: ::String
913
+ attr_accessor description: ::String
914
+ attr_accessor created_at: ::Time
915
+ attr_accessor updated_at: ::Time
916
+ attr_accessor policy_engine_arn: ::String
917
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
918
+ attr_accessor status_reasons: ::Array[::String]
919
+ SENSITIVE: [:description]
920
+ end
921
+
922
+ class DeletePolicyRequest
923
+ attr_accessor policy_engine_id: ::String
924
+ attr_accessor policy_id: ::String
925
+ SENSITIVE: []
926
+ end
927
+
928
+ class DeletePolicyResponse
929
+ attr_accessor policy_id: ::String
930
+ attr_accessor name: ::String
931
+ attr_accessor policy_engine_id: ::String
932
+ attr_accessor definition: Types::PolicyDefinition
933
+ attr_accessor description: ::String
934
+ attr_accessor created_at: ::Time
935
+ attr_accessor updated_at: ::Time
936
+ attr_accessor policy_arn: ::String
937
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
938
+ attr_accessor status_reasons: ::Array[::String]
939
+ SENSITIVE: [:description]
940
+ end
941
+
942
+ class DeleteResourcePolicyRequest
943
+ attr_accessor resource_arn: ::String
944
+ SENSITIVE: []
945
+ end
946
+
947
+ class DeleteResourcePolicyResponse < Aws::EmptyStructure
948
+ end
949
+
650
950
  class DeleteWorkloadIdentityRequest
651
951
  attr_accessor name: ::String
652
952
  SENSITIVE: []
@@ -660,6 +960,116 @@ module Aws::BedrockAgentCoreControl
660
960
  SENSITIVE: []
661
961
  end
662
962
 
963
+ class EpisodicConsolidationOverride
964
+ attr_accessor append_to_prompt: ::String
965
+ attr_accessor model_id: ::String
966
+ SENSITIVE: [:append_to_prompt]
967
+ end
968
+
969
+ class EpisodicExtractionOverride
970
+ attr_accessor append_to_prompt: ::String
971
+ attr_accessor model_id: ::String
972
+ SENSITIVE: [:append_to_prompt]
973
+ end
974
+
975
+ class EpisodicMemoryStrategyInput
976
+ attr_accessor name: ::String
977
+ attr_accessor description: ::String
978
+ attr_accessor namespaces: ::Array[::String]
979
+ attr_accessor reflection_configuration: Types::EpisodicReflectionConfigurationInput
980
+ SENSITIVE: [:description]
981
+ end
982
+
983
+ class EpisodicOverrideConfigurationInput
984
+ attr_accessor extraction: Types::EpisodicOverrideExtractionConfigurationInput
985
+ attr_accessor consolidation: Types::EpisodicOverrideConsolidationConfigurationInput
986
+ attr_accessor reflection: Types::EpisodicOverrideReflectionConfigurationInput
987
+ SENSITIVE: []
988
+ end
989
+
990
+ class EpisodicOverrideConsolidationConfigurationInput
991
+ attr_accessor append_to_prompt: ::String
992
+ attr_accessor model_id: ::String
993
+ SENSITIVE: [:append_to_prompt]
994
+ end
995
+
996
+ class EpisodicOverrideExtractionConfigurationInput
997
+ attr_accessor append_to_prompt: ::String
998
+ attr_accessor model_id: ::String
999
+ SENSITIVE: [:append_to_prompt]
1000
+ end
1001
+
1002
+ class EpisodicOverrideReflectionConfigurationInput
1003
+ attr_accessor append_to_prompt: ::String
1004
+ attr_accessor model_id: ::String
1005
+ attr_accessor namespaces: ::Array[::String]
1006
+ SENSITIVE: [:append_to_prompt]
1007
+ end
1008
+
1009
+ class EpisodicReflectionConfiguration
1010
+ attr_accessor namespaces: ::Array[::String]
1011
+ SENSITIVE: []
1012
+ end
1013
+
1014
+ class EpisodicReflectionConfigurationInput
1015
+ attr_accessor namespaces: ::Array[::String]
1016
+ SENSITIVE: []
1017
+ end
1018
+
1019
+ class EpisodicReflectionOverride
1020
+ attr_accessor append_to_prompt: ::String
1021
+ attr_accessor model_id: ::String
1022
+ attr_accessor namespaces: ::Array[::String]
1023
+ SENSITIVE: [:append_to_prompt]
1024
+ end
1025
+
1026
+ class EvaluatorConfig
1027
+ attr_accessor llm_as_a_judge: Types::LlmAsAJudgeEvaluatorConfig
1028
+ attr_accessor unknown: untyped
1029
+ SENSITIVE: []
1030
+
1031
+ class LlmAsAJudge < EvaluatorConfig
1032
+ end
1033
+ class Unknown < EvaluatorConfig
1034
+ end
1035
+ end
1036
+
1037
+ class EvaluatorModelConfig
1038
+ attr_accessor bedrock_evaluator_model_config: Types::BedrockEvaluatorModelConfig
1039
+ attr_accessor unknown: untyped
1040
+ SENSITIVE: []
1041
+
1042
+ class BedrockEvaluatorModelConfig < EvaluatorModelConfig
1043
+ end
1044
+ class Unknown < EvaluatorModelConfig
1045
+ end
1046
+ end
1047
+
1048
+ class EvaluatorReference
1049
+ attr_accessor evaluator_id: ::String
1050
+ attr_accessor unknown: untyped
1051
+ SENSITIVE: []
1052
+
1053
+ class EvaluatorId < EvaluatorReference
1054
+ end
1055
+ class Unknown < EvaluatorReference
1056
+ end
1057
+ end
1058
+
1059
+ class EvaluatorSummary
1060
+ attr_accessor evaluator_arn: ::String
1061
+ attr_accessor evaluator_id: ::String
1062
+ attr_accessor evaluator_name: ::String
1063
+ attr_accessor description: ::String
1064
+ attr_accessor evaluator_type: ("Builtin" | "Custom")
1065
+ attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
1066
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
1067
+ attr_accessor created_at: ::Time
1068
+ attr_accessor updated_at: ::Time
1069
+ attr_accessor locked_for_modification: bool
1070
+ SENSITIVE: [:description]
1071
+ end
1072
+
663
1073
  class ExtractionConfiguration
664
1074
  attr_accessor custom_extraction_configuration: Types::CustomExtractionConfiguration
665
1075
  attr_accessor unknown: untyped
@@ -671,6 +1081,49 @@ module Aws::BedrockAgentCoreControl
671
1081
  end
672
1082
  end
673
1083
 
1084
+ class Filter
1085
+ attr_accessor key: ::String
1086
+ attr_accessor operator: ("Equals" | "NotEquals" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Contains" | "NotContains")
1087
+ attr_accessor value: Types::FilterValue
1088
+ SENSITIVE: []
1089
+ end
1090
+
1091
+ class FilterValue
1092
+ attr_accessor string_value: ::String
1093
+ attr_accessor double_value: ::Float
1094
+ attr_accessor boolean_value: bool
1095
+ attr_accessor unknown: untyped
1096
+ SENSITIVE: []
1097
+
1098
+ class StringValue < FilterValue
1099
+ end
1100
+ class DoubleValue < FilterValue
1101
+ end
1102
+ class BooleanValue < FilterValue
1103
+ end
1104
+ class Unknown < FilterValue
1105
+ end
1106
+ end
1107
+
1108
+ class Finding
1109
+ attr_accessor type: ("VALID" | "INVALID" | "NOT_TRANSLATABLE" | "ALLOW_ALL" | "ALLOW_NONE" | "DENY_ALL" | "DENY_NONE")
1110
+ attr_accessor description: ::String
1111
+ SENSITIVE: []
1112
+ end
1113
+
1114
+ class GatewayInterceptorConfiguration
1115
+ attr_accessor interceptor: Types::InterceptorConfiguration
1116
+ attr_accessor interception_points: ::Array[("REQUEST" | "RESPONSE")]
1117
+ attr_accessor input_configuration: Types::InterceptorInputConfiguration
1118
+ SENSITIVE: []
1119
+ end
1120
+
1121
+ class GatewayPolicyEngineConfiguration
1122
+ attr_accessor arn: ::String
1123
+ attr_accessor mode: ("LOG_ONLY" | "ENFORCE")
1124
+ SENSITIVE: []
1125
+ end
1126
+
674
1127
  class GatewayProtocolConfiguration
675
1128
  attr_accessor mcp: Types::MCPGatewayConfiguration
676
1129
  attr_accessor unknown: untyped
@@ -689,7 +1142,7 @@ module Aws::BedrockAgentCoreControl
689
1142
  attr_accessor description: ::String
690
1143
  attr_accessor created_at: ::Time
691
1144
  attr_accessor updated_at: ::Time
692
- attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
1145
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
693
1146
  attr_accessor protocol_type: ("MCP")
694
1147
  SENSITIVE: [:name, :description]
695
1148
  end
@@ -747,6 +1200,7 @@ module Aws::BedrockAgentCoreControl
747
1200
  attr_accessor network_configuration: Types::NetworkConfiguration
748
1201
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
749
1202
  attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
1203
+ attr_accessor failure_reason: ::String
750
1204
  attr_accessor description: ::String
751
1205
  attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
752
1206
  attr_accessor agent_runtime_artifact: Types::AgentRuntimeArtifact
@@ -811,6 +1265,25 @@ module Aws::BedrockAgentCoreControl
811
1265
  SENSITIVE: [:description]
812
1266
  end
813
1267
 
1268
+ class GetEvaluatorRequest
1269
+ attr_accessor evaluator_id: ::String
1270
+ SENSITIVE: []
1271
+ end
1272
+
1273
+ class GetEvaluatorResponse
1274
+ attr_accessor evaluator_arn: ::String
1275
+ attr_accessor evaluator_id: ::String
1276
+ attr_accessor evaluator_name: ::String
1277
+ attr_accessor description: ::String
1278
+ attr_accessor evaluator_config: Types::EvaluatorConfig
1279
+ attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
1280
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
1281
+ attr_accessor created_at: ::Time
1282
+ attr_accessor updated_at: ::Time
1283
+ attr_accessor locked_for_modification: bool
1284
+ SENSITIVE: [:description]
1285
+ end
1286
+
814
1287
  class GetGatewayRequest
815
1288
  attr_accessor gateway_identifier: ::String
816
1289
  SENSITIVE: []
@@ -829,9 +1302,11 @@ module Aws::BedrockAgentCoreControl
829
1302
  attr_accessor role_arn: ::String
830
1303
  attr_accessor protocol_type: ("MCP")
831
1304
  attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
832
- attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
1305
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
833
1306
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
834
1307
  attr_accessor kms_key_arn: ::String
1308
+ attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
1309
+ attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
835
1310
  attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
836
1311
  attr_accessor exception_level: ("DEBUG")
837
1312
  SENSITIVE: [:name, :description]
@@ -848,40 +1323,130 @@ module Aws::BedrockAgentCoreControl
848
1323
  attr_accessor target_id: ::String
849
1324
  attr_accessor created_at: ::Time
850
1325
  attr_accessor updated_at: ::Time
851
- attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
1326
+ attr_accessor status: ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL")
1327
+ attr_accessor status_reasons: ::Array[::String]
1328
+ attr_accessor name: ::String
1329
+ attr_accessor description: ::String
1330
+ attr_accessor target_configuration: Types::TargetConfiguration
1331
+ attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
1332
+ attr_accessor last_synchronized_at: ::Time
1333
+ SENSITIVE: [:name, :description]
1334
+ end
1335
+
1336
+ class GetMemoryInput
1337
+ attr_accessor memory_id: ::String
1338
+ SENSITIVE: []
1339
+ end
1340
+
1341
+ class GetMemoryOutput
1342
+ attr_accessor memory: Types::Memory
1343
+ SENSITIVE: []
1344
+ end
1345
+
1346
+ class GetOauth2CredentialProviderRequest
1347
+ attr_accessor name: ::String
1348
+ SENSITIVE: []
1349
+ end
1350
+
1351
+ class GetOauth2CredentialProviderResponse
1352
+ attr_accessor client_secret_arn: Types::Secret
1353
+ attr_accessor name: ::String
1354
+ attr_accessor credential_provider_arn: ::String
1355
+ attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
1356
+ attr_accessor callback_url: ::String
1357
+ attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
1358
+ attr_accessor created_time: ::Time
1359
+ attr_accessor last_updated_time: ::Time
1360
+ SENSITIVE: []
1361
+ end
1362
+
1363
+ class GetOnlineEvaluationConfigRequest
1364
+ attr_accessor online_evaluation_config_id: ::String
1365
+ SENSITIVE: []
1366
+ end
1367
+
1368
+ class GetOnlineEvaluationConfigResponse
1369
+ attr_accessor online_evaluation_config_arn: ::String
1370
+ attr_accessor online_evaluation_config_id: ::String
1371
+ attr_accessor online_evaluation_config_name: ::String
1372
+ attr_accessor description: ::String
1373
+ attr_accessor rule: Types::Rule
1374
+ attr_accessor data_source_config: Types::DataSourceConfig
1375
+ attr_accessor evaluators: ::Array[Types::EvaluatorReference]
1376
+ attr_accessor output_config: Types::OutputConfig
1377
+ attr_accessor evaluation_execution_role_arn: ::String
1378
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
1379
+ attr_accessor execution_status: ("ENABLED" | "DISABLED")
1380
+ attr_accessor created_at: ::Time
1381
+ attr_accessor updated_at: ::Time
1382
+ attr_accessor failure_reason: ::String
1383
+ SENSITIVE: [:description]
1384
+ end
1385
+
1386
+ class GetPolicyEngineRequest
1387
+ attr_accessor policy_engine_id: ::String
1388
+ SENSITIVE: []
1389
+ end
1390
+
1391
+ class GetPolicyEngineResponse
1392
+ attr_accessor policy_engine_id: ::String
1393
+ attr_accessor name: ::String
1394
+ attr_accessor description: ::String
1395
+ attr_accessor created_at: ::Time
1396
+ attr_accessor updated_at: ::Time
1397
+ attr_accessor policy_engine_arn: ::String
1398
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1399
+ attr_accessor status_reasons: ::Array[::String]
1400
+ SENSITIVE: [:description]
1401
+ end
1402
+
1403
+ class GetPolicyGenerationRequest
1404
+ attr_accessor policy_generation_id: ::String
1405
+ attr_accessor policy_engine_id: ::String
1406
+ SENSITIVE: []
1407
+ end
1408
+
1409
+ class GetPolicyGenerationResponse
1410
+ attr_accessor policy_engine_id: ::String
1411
+ attr_accessor policy_generation_id: ::String
1412
+ attr_accessor name: ::String
1413
+ attr_accessor policy_generation_arn: ::String
1414
+ attr_accessor resource: Types::Resource
1415
+ attr_accessor created_at: ::Time
1416
+ attr_accessor updated_at: ::Time
1417
+ attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
852
1418
  attr_accessor status_reasons: ::Array[::String]
853
- attr_accessor name: ::String
854
- attr_accessor description: ::String
855
- attr_accessor target_configuration: Types::TargetConfiguration
856
- attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
857
- attr_accessor last_synchronized_at: ::Time
858
- SENSITIVE: [:name, :description]
859
- end
860
-
861
- class GetMemoryInput
862
- attr_accessor memory_id: ::String
1419
+ attr_accessor findings: ::String
863
1420
  SENSITIVE: []
864
1421
  end
865
1422
 
866
- class GetMemoryOutput
867
- attr_accessor memory: Types::Memory
1423
+ class GetPolicyRequest
1424
+ attr_accessor policy_engine_id: ::String
1425
+ attr_accessor policy_id: ::String
868
1426
  SENSITIVE: []
869
1427
  end
870
1428
 
871
- class GetOauth2CredentialProviderRequest
1429
+ class GetPolicyResponse
1430
+ attr_accessor policy_id: ::String
872
1431
  attr_accessor name: ::String
1432
+ attr_accessor policy_engine_id: ::String
1433
+ attr_accessor definition: Types::PolicyDefinition
1434
+ attr_accessor description: ::String
1435
+ attr_accessor created_at: ::Time
1436
+ attr_accessor updated_at: ::Time
1437
+ attr_accessor policy_arn: ::String
1438
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1439
+ attr_accessor status_reasons: ::Array[::String]
1440
+ SENSITIVE: [:description]
1441
+ end
1442
+
1443
+ class GetResourcePolicyRequest
1444
+ attr_accessor resource_arn: ::String
873
1445
  SENSITIVE: []
874
1446
  end
875
1447
 
876
- class GetOauth2CredentialProviderResponse
877
- attr_accessor client_secret_arn: Types::Secret
878
- attr_accessor name: ::String
879
- attr_accessor credential_provider_arn: ::String
880
- attr_accessor credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2" | "AtlassianOauth2" | "LinkedinOauth2" | "XOauth2" | "OktaOauth2" | "OneLoginOauth2" | "PingOneOauth2" | "FacebookOauth2" | "YandexOauth2" | "RedditOauth2" | "ZoomOauth2" | "TwitchOauth2" | "SpotifyOauth2" | "DropboxOauth2" | "NotionOauth2" | "HubspotOauth2" | "CyberArkOauth2" | "FusionAuthOauth2" | "Auth0Oauth2" | "CognitoOauth2")
881
- attr_accessor callback_url: ::String
882
- attr_accessor oauth2_provider_config_output: Types::Oauth2ProviderConfigOutput
883
- attr_accessor created_time: ::Time
884
- attr_accessor last_updated_time: ::Time
1448
+ class GetResourcePolicyResponse
1449
+ attr_accessor policy: ::String
885
1450
  SENSITIVE: []
886
1451
  end
887
1452
 
@@ -950,6 +1515,30 @@ module Aws::BedrockAgentCoreControl
950
1515
  SENSITIVE: []
951
1516
  end
952
1517
 
1518
+ class InferenceConfiguration
1519
+ attr_accessor max_tokens: ::Integer
1520
+ attr_accessor temperature: ::Float
1521
+ attr_accessor top_p: ::Float
1522
+ attr_accessor stop_sequences: ::Array[::String]
1523
+ SENSITIVE: []
1524
+ end
1525
+
1526
+ class InterceptorConfiguration
1527
+ attr_accessor lambda: Types::LambdaInterceptorConfiguration
1528
+ attr_accessor unknown: untyped
1529
+ SENSITIVE: []
1530
+
1531
+ class Lambda < InterceptorConfiguration
1532
+ end
1533
+ class Unknown < InterceptorConfiguration
1534
+ end
1535
+ end
1536
+
1537
+ class InterceptorInputConfiguration
1538
+ attr_accessor pass_request_headers: bool
1539
+ SENSITIVE: []
1540
+ end
1541
+
953
1542
  class InternalServerException
954
1543
  attr_accessor message: ::String
955
1544
  SENSITIVE: []
@@ -973,6 +1562,11 @@ module Aws::BedrockAgentCoreControl
973
1562
  SENSITIVE: []
974
1563
  end
975
1564
 
1565
+ class LambdaInterceptorConfiguration
1566
+ attr_accessor arn: ::String
1567
+ SENSITIVE: []
1568
+ end
1569
+
976
1570
  class LifecycleConfiguration
977
1571
  attr_accessor idle_runtime_session_timeout: ::Integer
978
1572
  attr_accessor max_lifetime: ::Integer
@@ -1067,6 +1661,18 @@ module Aws::BedrockAgentCoreControl
1067
1661
  SENSITIVE: []
1068
1662
  end
1069
1663
 
1664
+ class ListEvaluatorsRequest
1665
+ attr_accessor next_token: ::String
1666
+ attr_accessor max_results: ::Integer
1667
+ SENSITIVE: []
1668
+ end
1669
+
1670
+ class ListEvaluatorsResponse
1671
+ attr_accessor evaluators: ::Array[Types::EvaluatorSummary]
1672
+ attr_accessor next_token: ::String
1673
+ SENSITIVE: []
1674
+ end
1675
+
1070
1676
  class ListGatewayTargetsRequest
1071
1677
  attr_accessor gateway_identifier: ::String
1072
1678
  attr_accessor max_results: ::Integer
@@ -1116,6 +1722,71 @@ module Aws::BedrockAgentCoreControl
1116
1722
  SENSITIVE: []
1117
1723
  end
1118
1724
 
1725
+ class ListOnlineEvaluationConfigsRequest
1726
+ attr_accessor next_token: ::String
1727
+ attr_accessor max_results: ::Integer
1728
+ SENSITIVE: []
1729
+ end
1730
+
1731
+ class ListOnlineEvaluationConfigsResponse
1732
+ attr_accessor online_evaluation_configs: ::Array[Types::OnlineEvaluationConfigSummary]
1733
+ attr_accessor next_token: ::String
1734
+ SENSITIVE: []
1735
+ end
1736
+
1737
+ class ListPoliciesRequest
1738
+ attr_accessor next_token: ::String
1739
+ attr_accessor max_results: ::Integer
1740
+ attr_accessor policy_engine_id: ::String
1741
+ attr_accessor target_resource_scope: ::String
1742
+ SENSITIVE: []
1743
+ end
1744
+
1745
+ class ListPoliciesResponse
1746
+ attr_accessor policies: ::Array[Types::Policy]
1747
+ attr_accessor next_token: ::String
1748
+ SENSITIVE: []
1749
+ end
1750
+
1751
+ class ListPolicyEnginesRequest
1752
+ attr_accessor next_token: ::String
1753
+ attr_accessor max_results: ::Integer
1754
+ SENSITIVE: []
1755
+ end
1756
+
1757
+ class ListPolicyEnginesResponse
1758
+ attr_accessor policy_engines: ::Array[Types::PolicyEngine]
1759
+ attr_accessor next_token: ::String
1760
+ SENSITIVE: []
1761
+ end
1762
+
1763
+ class ListPolicyGenerationAssetsRequest
1764
+ attr_accessor policy_generation_id: ::String
1765
+ attr_accessor policy_engine_id: ::String
1766
+ attr_accessor next_token: ::String
1767
+ attr_accessor max_results: ::Integer
1768
+ SENSITIVE: []
1769
+ end
1770
+
1771
+ class ListPolicyGenerationAssetsResponse
1772
+ attr_accessor policy_generation_assets: ::Array[Types::PolicyGenerationAsset]
1773
+ attr_accessor next_token: ::String
1774
+ SENSITIVE: []
1775
+ end
1776
+
1777
+ class ListPolicyGenerationsRequest
1778
+ attr_accessor next_token: ::String
1779
+ attr_accessor max_results: ::Integer
1780
+ attr_accessor policy_engine_id: ::String
1781
+ SENSITIVE: []
1782
+ end
1783
+
1784
+ class ListPolicyGenerationsResponse
1785
+ attr_accessor policy_generations: ::Array[Types::PolicyGeneration]
1786
+ attr_accessor next_token: ::String
1787
+ SENSITIVE: []
1788
+ end
1789
+
1119
1790
  class ListTagsForResourceRequest
1120
1791
  attr_accessor resource_arn: ::String
1121
1792
  SENSITIVE: []
@@ -1138,6 +1809,13 @@ module Aws::BedrockAgentCoreControl
1138
1809
  SENSITIVE: []
1139
1810
  end
1140
1811
 
1812
+ class LlmAsAJudgeEvaluatorConfig
1813
+ attr_accessor instructions: ::String
1814
+ attr_accessor rating_scale: Types::RatingScale
1815
+ attr_accessor model_config: Types::EvaluatorModelConfig
1816
+ SENSITIVE: [:instructions]
1817
+ end
1818
+
1141
1819
  class MCPGatewayConfiguration
1142
1820
  attr_accessor supported_versions: ::Array[::String]
1143
1821
  attr_accessor instructions: ::String
@@ -1161,6 +1839,7 @@ module Aws::BedrockAgentCoreControl
1161
1839
  attr_accessor smithy_model: Types::ApiSchemaConfiguration
1162
1840
  attr_accessor lambda: Types::McpLambdaTargetConfiguration
1163
1841
  attr_accessor mcp_server: Types::McpServerTargetConfiguration
1842
+ attr_accessor api_gateway: Types::ApiGatewayTargetConfiguration
1164
1843
  attr_accessor unknown: untyped
1165
1844
  SENSITIVE: []
1166
1845
 
@@ -1172,6 +1851,8 @@ module Aws::BedrockAgentCoreControl
1172
1851
  end
1173
1852
  class McpServer < McpTargetConfiguration
1174
1853
  end
1854
+ class ApiGateway < McpTargetConfiguration
1855
+ end
1175
1856
  class Unknown < McpTargetConfiguration
1176
1857
  end
1177
1858
  end
@@ -1197,7 +1878,7 @@ module Aws::BedrockAgentCoreControl
1197
1878
  attr_accessor name: ::String
1198
1879
  attr_accessor description: ::String
1199
1880
  attr_accessor configuration: Types::StrategyConfiguration
1200
- attr_accessor type: ("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM")
1881
+ attr_accessor type: ("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC")
1201
1882
  attr_accessor namespaces: ::Array[::String]
1202
1883
  attr_accessor created_at: ::Time
1203
1884
  attr_accessor updated_at: ::Time
@@ -1210,6 +1891,7 @@ module Aws::BedrockAgentCoreControl
1210
1891
  attr_accessor summary_memory_strategy: Types::SummaryMemoryStrategyInput
1211
1892
  attr_accessor user_preference_memory_strategy: Types::UserPreferenceMemoryStrategyInput
1212
1893
  attr_accessor custom_memory_strategy: Types::CustomMemoryStrategyInput
1894
+ attr_accessor episodic_memory_strategy: Types::EpisodicMemoryStrategyInput
1213
1895
  attr_accessor unknown: untyped
1214
1896
  SENSITIVE: []
1215
1897
 
@@ -1221,6 +1903,8 @@ module Aws::BedrockAgentCoreControl
1221
1903
  end
1222
1904
  class CustomMemoryStrategy < MemoryStrategyInput
1223
1905
  end
1906
+ class EpisodicMemoryStrategy < MemoryStrategyInput
1907
+ end
1224
1908
  class Unknown < MemoryStrategyInput
1225
1909
  end
1226
1910
  end
@@ -1300,6 +1984,20 @@ module Aws::BedrockAgentCoreControl
1300
1984
  SENSITIVE: [:description]
1301
1985
  end
1302
1986
 
1987
+ class ModifyReflectionConfiguration
1988
+ attr_accessor episodic_reflection_configuration: Types::EpisodicReflectionConfigurationInput
1989
+ attr_accessor custom_reflection_configuration: Types::CustomReflectionConfigurationInput
1990
+ attr_accessor unknown: untyped
1991
+ SENSITIVE: []
1992
+
1993
+ class EpisodicReflectionConfiguration < ModifyReflectionConfiguration
1994
+ end
1995
+ class CustomReflectionConfiguration < ModifyReflectionConfiguration
1996
+ end
1997
+ class Unknown < ModifyReflectionConfiguration
1998
+ end
1999
+ end
2000
+
1303
2001
  class ModifySelfManagedConfiguration
1304
2002
  attr_accessor trigger_conditions: ::Array[Types::TriggerConditionInput]
1305
2003
  attr_accessor invocation_configuration: Types::ModifyInvocationConfigurationInput
@@ -1310,6 +2008,7 @@ module Aws::BedrockAgentCoreControl
1310
2008
  class ModifyStrategyConfiguration
1311
2009
  attr_accessor extraction: Types::ModifyExtractionConfiguration
1312
2010
  attr_accessor consolidation: Types::ModifyConsolidationConfiguration
2011
+ attr_accessor reflection: Types::ModifyReflectionConfiguration
1313
2012
  attr_accessor self_managed_configuration: Types::ModifySelfManagedConfiguration
1314
2013
  SENSITIVE: []
1315
2014
  end
@@ -1320,10 +2019,19 @@ module Aws::BedrockAgentCoreControl
1320
2019
  SENSITIVE: []
1321
2020
  end
1322
2021
 
2022
+ class NumericalScaleDefinition
2023
+ attr_accessor definition: ::String
2024
+ attr_accessor value: ::Float
2025
+ attr_accessor label: ::String
2026
+ SENSITIVE: []
2027
+ end
2028
+
1323
2029
  class OAuthCredentialProvider
1324
2030
  attr_accessor provider_arn: ::String
1325
2031
  attr_accessor scopes: ::Array[::String]
1326
2032
  attr_accessor custom_parameters: ::Hash[::String, ::String]
2033
+ attr_accessor grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE")
2034
+ attr_accessor default_return_url: ::String
1327
2035
  SENSITIVE: []
1328
2036
  end
1329
2037
 
@@ -1429,17 +2137,133 @@ module Aws::BedrockAgentCoreControl
1429
2137
  end
1430
2138
  end
1431
2139
 
2140
+ class OnlineEvaluationConfigSummary
2141
+ attr_accessor online_evaluation_config_arn: ::String
2142
+ attr_accessor online_evaluation_config_id: ::String
2143
+ attr_accessor online_evaluation_config_name: ::String
2144
+ attr_accessor description: ::String
2145
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2146
+ attr_accessor execution_status: ("ENABLED" | "DISABLED")
2147
+ attr_accessor created_at: ::Time
2148
+ attr_accessor updated_at: ::Time
2149
+ attr_accessor failure_reason: ::String
2150
+ SENSITIVE: [:description]
2151
+ end
2152
+
2153
+ class OutputConfig
2154
+ attr_accessor cloud_watch_config: Types::CloudWatchOutputConfig
2155
+ SENSITIVE: []
2156
+ end
2157
+
2158
+ class Policy
2159
+ attr_accessor policy_id: ::String
2160
+ attr_accessor name: ::String
2161
+ attr_accessor policy_engine_id: ::String
2162
+ attr_accessor definition: Types::PolicyDefinition
2163
+ attr_accessor description: ::String
2164
+ attr_accessor created_at: ::Time
2165
+ attr_accessor updated_at: ::Time
2166
+ attr_accessor policy_arn: ::String
2167
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2168
+ attr_accessor status_reasons: ::Array[::String]
2169
+ SENSITIVE: [:description]
2170
+ end
2171
+
2172
+ class PolicyDefinition
2173
+ attr_accessor cedar: Types::CedarPolicy
2174
+ attr_accessor unknown: untyped
2175
+ SENSITIVE: []
2176
+
2177
+ class Cedar < PolicyDefinition
2178
+ end
2179
+ class Unknown < PolicyDefinition
2180
+ end
2181
+ end
2182
+
2183
+ class PolicyEngine
2184
+ attr_accessor policy_engine_id: ::String
2185
+ attr_accessor name: ::String
2186
+ attr_accessor description: ::String
2187
+ attr_accessor created_at: ::Time
2188
+ attr_accessor updated_at: ::Time
2189
+ attr_accessor policy_engine_arn: ::String
2190
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2191
+ attr_accessor status_reasons: ::Array[::String]
2192
+ SENSITIVE: [:description]
2193
+ end
2194
+
2195
+ class PolicyGeneration
2196
+ attr_accessor policy_engine_id: ::String
2197
+ attr_accessor policy_generation_id: ::String
2198
+ attr_accessor name: ::String
2199
+ attr_accessor policy_generation_arn: ::String
2200
+ attr_accessor resource: Types::Resource
2201
+ attr_accessor created_at: ::Time
2202
+ attr_accessor updated_at: ::Time
2203
+ attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
2204
+ attr_accessor status_reasons: ::Array[::String]
2205
+ attr_accessor findings: ::String
2206
+ SENSITIVE: []
2207
+ end
2208
+
2209
+ class PolicyGenerationAsset
2210
+ attr_accessor policy_generation_asset_id: ::String
2211
+ attr_accessor definition: Types::PolicyDefinition
2212
+ attr_accessor raw_text_fragment: ::String
2213
+ attr_accessor findings: ::Array[Types::Finding]
2214
+ SENSITIVE: []
2215
+ end
2216
+
1432
2217
  class ProtocolConfiguration
1433
2218
  attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A")
1434
2219
  SENSITIVE: []
1435
2220
  end
1436
2221
 
2222
+ class PutResourcePolicyRequest
2223
+ attr_accessor resource_arn: ::String
2224
+ attr_accessor policy: ::String
2225
+ SENSITIVE: []
2226
+ end
2227
+
2228
+ class PutResourcePolicyResponse
2229
+ attr_accessor policy: ::String
2230
+ SENSITIVE: []
2231
+ end
2232
+
2233
+ class RatingScale
2234
+ attr_accessor numerical: ::Array[Types::NumericalScaleDefinition]
2235
+ attr_accessor categorical: ::Array[Types::CategoricalScaleDefinition]
2236
+ attr_accessor unknown: untyped
2237
+ SENSITIVE: []
2238
+
2239
+ class Numerical < RatingScale
2240
+ end
2241
+ class Categorical < RatingScale
2242
+ end
2243
+ class Unknown < RatingScale
2244
+ end
2245
+ end
2246
+
1437
2247
  class RecordingConfig
1438
2248
  attr_accessor enabled: bool
1439
2249
  attr_accessor s3_location: Types::S3Location
1440
2250
  SENSITIVE: []
1441
2251
  end
1442
2252
 
2253
+ class ReflectionConfiguration
2254
+ attr_accessor custom_reflection_configuration: Types::CustomReflectionConfiguration
2255
+ attr_accessor episodic_reflection_configuration: Types::EpisodicReflectionConfiguration
2256
+ attr_accessor unknown: untyped
2257
+ SENSITIVE: []
2258
+
2259
+ class CustomReflectionConfiguration < ReflectionConfiguration
2260
+ end
2261
+ class EpisodicReflectionConfiguration < ReflectionConfiguration
2262
+ end
2263
+ class Unknown < ReflectionConfiguration
2264
+ end
2265
+ end
2266
+
1443
2267
  class RequestHeaderConfiguration
1444
2268
  attr_accessor request_header_allowlist: ::Array[::String]
1445
2269
  attr_accessor unknown: untyped
@@ -1451,6 +2275,17 @@ module Aws::BedrockAgentCoreControl
1451
2275
  end
1452
2276
  end
1453
2277
 
2278
+ class Resource
2279
+ attr_accessor arn: ::String
2280
+ attr_accessor unknown: untyped
2281
+ SENSITIVE: []
2282
+
2283
+ class Arn < Resource
2284
+ end
2285
+ class Unknown < Resource
2286
+ end
2287
+ end
2288
+
1454
2289
  class ResourceLimitExceededException
1455
2290
  attr_accessor message: ::String
1456
2291
  SENSITIVE: []
@@ -1461,6 +2296,13 @@ module Aws::BedrockAgentCoreControl
1461
2296
  SENSITIVE: []
1462
2297
  end
1463
2298
 
2299
+ class Rule
2300
+ attr_accessor sampling_config: Types::SamplingConfig
2301
+ attr_accessor filters: ::Array[Types::Filter]
2302
+ attr_accessor session_config: Types::SessionConfig
2303
+ SENSITIVE: []
2304
+ end
2305
+
1464
2306
  class S3Configuration
1465
2307
  attr_accessor uri: ::String
1466
2308
  attr_accessor bucket_owner_account_id: ::String
@@ -1486,6 +2328,11 @@ module Aws::BedrockAgentCoreControl
1486
2328
  SENSITIVE: []
1487
2329
  end
1488
2330
 
2331
+ class SamplingConfig
2332
+ attr_accessor sampling_percentage: ::Float
2333
+ SENSITIVE: []
2334
+ end
2335
+
1489
2336
  class SchemaDefinition
1490
2337
  attr_accessor type: ("string" | "number" | "object" | "array" | "boolean" | "integer")
1491
2338
  attr_accessor properties: ::Hash[::String, Types::SchemaDefinition]
@@ -1561,6 +2408,11 @@ module Aws::BedrockAgentCoreControl
1561
2408
  SENSITIVE: []
1562
2409
  end
1563
2410
 
2411
+ class SessionConfig
2412
+ attr_accessor session_timeout_minutes: ::Integer
2413
+ SENSITIVE: []
2414
+ end
2415
+
1564
2416
  class SetTokenVaultCMKRequest
1565
2417
  attr_accessor token_vault_id: ::String
1566
2418
  attr_accessor kms_configuration: Types::KmsConfiguration
@@ -1586,10 +2438,34 @@ module Aws::BedrockAgentCoreControl
1586
2438
  SENSITIVE: []
1587
2439
  end
1588
2440
 
2441
+ class StartPolicyGenerationRequest
2442
+ attr_accessor policy_engine_id: ::String
2443
+ attr_accessor resource: Types::Resource
2444
+ attr_accessor content: Types::Content
2445
+ attr_accessor name: ::String
2446
+ attr_accessor client_token: ::String
2447
+ SENSITIVE: []
2448
+ end
2449
+
2450
+ class StartPolicyGenerationResponse
2451
+ attr_accessor policy_engine_id: ::String
2452
+ attr_accessor policy_generation_id: ::String
2453
+ attr_accessor name: ::String
2454
+ attr_accessor policy_generation_arn: ::String
2455
+ attr_accessor resource: Types::Resource
2456
+ attr_accessor created_at: ::Time
2457
+ attr_accessor updated_at: ::Time
2458
+ attr_accessor status: ("GENERATING" | "GENERATED" | "GENERATE_FAILED" | "DELETE_FAILED")
2459
+ attr_accessor status_reasons: ::Array[::String]
2460
+ attr_accessor findings: ::String
2461
+ SENSITIVE: []
2462
+ end
2463
+
1589
2464
  class StrategyConfiguration
1590
- attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED")
2465
+ attr_accessor type: ("SEMANTIC_OVERRIDE" | "SUMMARY_OVERRIDE" | "USER_PREFERENCE_OVERRIDE" | "SELF_MANAGED" | "EPISODIC_OVERRIDE")
1591
2466
  attr_accessor extraction: Types::ExtractionConfiguration
1592
2467
  attr_accessor consolidation: Types::ConsolidationConfiguration
2468
+ attr_accessor reflection: Types::ReflectionConfiguration
1593
2469
  attr_accessor self_managed_configuration: Types::SelfManagedConfiguration
1594
2470
  SENSITIVE: []
1595
2471
  end
@@ -1820,6 +2696,23 @@ module Aws::BedrockAgentCoreControl
1820
2696
  SENSITIVE: []
1821
2697
  end
1822
2698
 
2699
+ class UpdateEvaluatorRequest
2700
+ attr_accessor client_token: ::String
2701
+ attr_accessor evaluator_id: ::String
2702
+ attr_accessor description: ::String
2703
+ attr_accessor evaluator_config: Types::EvaluatorConfig
2704
+ attr_accessor level: ("TOOL_CALL" | "TRACE" | "SESSION")
2705
+ SENSITIVE: [:description]
2706
+ end
2707
+
2708
+ class UpdateEvaluatorResponse
2709
+ attr_accessor evaluator_arn: ::String
2710
+ attr_accessor evaluator_id: ::String
2711
+ attr_accessor updated_at: ::Time
2712
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2713
+ SENSITIVE: []
2714
+ end
2715
+
1823
2716
  class UpdateGatewayRequest
1824
2717
  attr_accessor gateway_identifier: ::String
1825
2718
  attr_accessor name: ::String
@@ -1827,9 +2720,11 @@ module Aws::BedrockAgentCoreControl
1827
2720
  attr_accessor role_arn: ::String
1828
2721
  attr_accessor protocol_type: ("MCP")
1829
2722
  attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
1830
- attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
2723
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
1831
2724
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
1832
2725
  attr_accessor kms_key_arn: ::String
2726
+ attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
2727
+ attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
1833
2728
  attr_accessor exception_level: ("DEBUG")
1834
2729
  SENSITIVE: [:name, :description]
1835
2730
  end
@@ -1847,9 +2742,11 @@ module Aws::BedrockAgentCoreControl
1847
2742
  attr_accessor role_arn: ::String
1848
2743
  attr_accessor protocol_type: ("MCP")
1849
2744
  attr_accessor protocol_configuration: Types::GatewayProtocolConfiguration
1850
- attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM")
2745
+ attr_accessor authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE")
1851
2746
  attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
1852
2747
  attr_accessor kms_key_arn: ::String
2748
+ attr_accessor interceptor_configurations: ::Array[Types::GatewayInterceptorConfiguration]
2749
+ attr_accessor policy_engine_configuration: Types::GatewayPolicyEngineConfiguration
1853
2750
  attr_accessor workload_identity_details: Types::WorkloadIdentityDetails
1854
2751
  attr_accessor exception_level: ("DEBUG")
1855
2752
  SENSITIVE: [:name, :description]
@@ -1914,6 +2811,69 @@ module Aws::BedrockAgentCoreControl
1914
2811
  SENSITIVE: []
1915
2812
  end
1916
2813
 
2814
+ class UpdateOnlineEvaluationConfigRequest
2815
+ attr_accessor client_token: ::String
2816
+ attr_accessor online_evaluation_config_id: ::String
2817
+ attr_accessor description: ::String
2818
+ attr_accessor rule: Types::Rule
2819
+ attr_accessor data_source_config: Types::DataSourceConfig
2820
+ attr_accessor evaluators: ::Array[Types::EvaluatorReference]
2821
+ attr_accessor evaluation_execution_role_arn: ::String
2822
+ attr_accessor execution_status: ("ENABLED" | "DISABLED")
2823
+ SENSITIVE: [:description]
2824
+ end
2825
+
2826
+ class UpdateOnlineEvaluationConfigResponse
2827
+ attr_accessor online_evaluation_config_arn: ::String
2828
+ attr_accessor online_evaluation_config_id: ::String
2829
+ attr_accessor updated_at: ::Time
2830
+ attr_accessor status: ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
2831
+ attr_accessor execution_status: ("ENABLED" | "DISABLED")
2832
+ attr_accessor failure_reason: ::String
2833
+ SENSITIVE: []
2834
+ end
2835
+
2836
+ class UpdatePolicyEngineRequest
2837
+ attr_accessor policy_engine_id: ::String
2838
+ attr_accessor description: ::String
2839
+ SENSITIVE: [:description]
2840
+ end
2841
+
2842
+ class UpdatePolicyEngineResponse
2843
+ attr_accessor policy_engine_id: ::String
2844
+ attr_accessor name: ::String
2845
+ attr_accessor description: ::String
2846
+ attr_accessor created_at: ::Time
2847
+ attr_accessor updated_at: ::Time
2848
+ attr_accessor policy_engine_arn: ::String
2849
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2850
+ attr_accessor status_reasons: ::Array[::String]
2851
+ SENSITIVE: [:description]
2852
+ end
2853
+
2854
+ class UpdatePolicyRequest
2855
+ attr_accessor policy_engine_id: ::String
2856
+ attr_accessor policy_id: ::String
2857
+ attr_accessor description: ::String
2858
+ attr_accessor definition: Types::PolicyDefinition
2859
+ attr_accessor validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
2860
+ SENSITIVE: [:description]
2861
+ end
2862
+
2863
+ class UpdatePolicyResponse
2864
+ attr_accessor policy_id: ::String
2865
+ attr_accessor name: ::String
2866
+ attr_accessor policy_engine_id: ::String
2867
+ attr_accessor definition: Types::PolicyDefinition
2868
+ attr_accessor description: ::String
2869
+ attr_accessor created_at: ::Time
2870
+ attr_accessor updated_at: ::Time
2871
+ attr_accessor policy_arn: ::String
2872
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2873
+ attr_accessor status_reasons: ::Array[::String]
2874
+ SENSITIVE: [:description]
2875
+ end
2876
+
1917
2877
  class UpdateWorkloadIdentityRequest
1918
2878
  attr_accessor name: ::String
1919
2879
  attr_accessor allowed_resource_oauth_2_return_urls: ::Array[::String]