aws-sdk-bedrockagentcorecontrol 1.46.0 → 1.47.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
@@ -90,85 +90,12 @@ module Aws
90
90
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_agent_runtime-instance_method
91
91
  def create_agent_runtime: (
92
92
  agent_runtime_name: ::String,
93
- agent_runtime_artifact: {
94
- container_configuration: {
95
- container_uri: ::String
96
- }?,
97
- code_configuration: {
98
- code: {
99
- s3: {
100
- bucket: ::String,
101
- prefix: ::String,
102
- version_id: ::String?
103
- }?
104
- },
105
- runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13" | "PYTHON_3_14" | "NODE_22"),
106
- entry_point: Array[::String]
107
- }?
108
- },
93
+ agent_runtime_artifact: Params::agent_runtime_artifact,
109
94
  role_arn: ::String,
110
- network_configuration: {
111
- network_mode: ("PUBLIC" | "VPC"),
112
- network_mode_config: {
113
- security_groups: Array[::String],
114
- subnets: Array[::String],
115
- require_service_s3_endpoint: bool?
116
- }?
117
- },
95
+ network_configuration: Params::network_configuration,
118
96
  ?client_token: ::String,
119
97
  ?description: ::String,
120
- ?authorizer_configuration: {
121
- custom_jwt_authorizer: {
122
- discovery_url: ::String,
123
- allowed_audience: Array[::String]?,
124
- allowed_clients: Array[::String]?,
125
- allowed_scopes: Array[::String]?,
126
- custom_claims: Array[
127
- {
128
- inbound_token_claim_name: ::String,
129
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
130
- authorizing_claim_match_value: {
131
- claim_match_value: {
132
- match_value_string: ::String?,
133
- match_value_string_list: Array[::String]?
134
- },
135
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
136
- }
137
- },
138
- ]?,
139
- private_endpoint: {
140
- self_managed_lattice_resource: {
141
- resource_configuration_identifier: ::String?
142
- }?,
143
- managed_vpc_resource: {
144
- vpc_identifier: ::String,
145
- subnet_ids: Array[::String],
146
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
147
- security_group_ids: Array[::String]?,
148
- tags: Hash[::String, ::String]?,
149
- routing_domain: ::String?
150
- }?
151
- }?,
152
- private_endpoint_overrides: Array[
153
- {
154
- domain: ::String,
155
- private_endpoint: {
156
- self_managed_lattice_resource: {
157
- resource_configuration_identifier: ::String?
158
- }?,
159
- managed_vpc_resource: {
160
- vpc_identifier: ::String,
161
- subnet_ids: Array[::String],
162
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
163
- security_group_ids: Array[::String]?,
164
- tags: Hash[::String, ::String]?,
165
- routing_domain: ::String?
166
- }?
167
- }
168
- },
169
- ]?
170
- }?
171
- },
98
+ ?authorizer_configuration: Params::authorizer_configuration,
172
99
  ?request_header_configuration: {
173
100
  request_header_allowlist: Array[::String]?
174
101
  },
@@ -181,19 +108,7 @@ module Aws
181
108
  },
182
109
  ?environment_variables: Hash[::String, ::String],
183
110
  ?filesystem_configurations: Array[
184
- {
185
- session_storage: {
186
- mount_path: ::String
187
- }?,
188
- s3_files_access_point: {
189
- access_point_arn: ::String,
190
- mount_path: ::String
191
- }?,
192
- efs_access_point: {
193
- access_point_arn: ::String,
194
- mount_path: ::String
195
- }?
196
- },
111
+ Params::filesystem_configuration
197
112
  ],
198
113
  ?tags: Hash[::String, ::String]
199
114
  ) -> _CreateAgentRuntimeResponseSuccess
@@ -275,7 +190,7 @@ module Aws
275
190
  }?
276
191
  },
277
192
  type: ("MANAGED" | "RECOMMENDED")?
278
- },
193
+ }
279
194
  ],
280
195
  ?certificates: Array[
281
196
  {
@@ -284,7 +199,7 @@ module Aws
284
199
  secret_arn: ::String
285
200
  }?
286
201
  }
287
- },
202
+ }
288
203
  ],
289
204
  ?client_token: ::String,
290
205
  ?tags: Hash[::String, ::String]
@@ -334,7 +249,7 @@ module Aws
334
249
  secret_arn: ::String
335
250
  }?
336
251
  }
337
- },
252
+ }
338
253
  ],
339
254
  ?client_token: ::String,
340
255
  ?tags: Hash[::String, ::String]
@@ -379,45 +294,7 @@ module Aws
379
294
  ?client_token: ::String,
380
295
  evaluator_name: ::String,
381
296
  ?description: ::String,
382
- evaluator_config: {
383
- llm_as_a_judge: {
384
- instructions: ::String,
385
- rating_scale: {
386
- numerical: Array[
387
- {
388
- definition: ::String,
389
- value: ::Float,
390
- label: ::String
391
- },
392
- ]?,
393
- categorical: Array[
394
- {
395
- definition: ::String,
396
- label: ::String
397
- },
398
- ]?
399
- },
400
- model_config: {
401
- bedrock_evaluator_model_config: {
402
- model_id: ::String,
403
- inference_config: {
404
- max_tokens: ::Integer?,
405
- temperature: ::Float?,
406
- top_p: ::Float?,
407
- stop_sequences: Array[::String]?
408
- }?,
409
- additional_model_request_fields: {
410
- }?
411
- }?
412
- }
413
- }?,
414
- code_based: {
415
- lambda_config: {
416
- lambda_arn: ::String,
417
- lambda_timeout_in_seconds: ::Integer?
418
- }?
419
- }?
420
- },
297
+ evaluator_config: Params::evaluator_config,
421
298
  level: ("TOOL_CALL" | "TRACE" | "SESSION"),
422
299
  ?kms_key_arn: ::String,
423
300
  ?tags: Hash[::String, ::String]
@@ -453,85 +330,12 @@ module Aws
453
330
  ?client_token: ::String,
454
331
  role_arn: ::String,
455
332
  ?protocol_type: ("MCP"),
456
- ?protocol_configuration: {
457
- mcp: {
458
- supported_versions: Array[::String]?,
459
- instructions: ::String?,
460
- search_type: ("SEMANTIC")?,
461
- session_configuration: {
462
- session_timeout_in_seconds: ::Integer?
463
- }?,
464
- streaming_configuration: {
465
- enable_response_streaming: bool?
466
- }?
467
- }?
468
- },
333
+ ?protocol_configuration: Params::gateway_protocol_configuration,
469
334
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
470
- ?authorizer_configuration: {
471
- custom_jwt_authorizer: {
472
- discovery_url: ::String,
473
- allowed_audience: Array[::String]?,
474
- allowed_clients: Array[::String]?,
475
- allowed_scopes: Array[::String]?,
476
- custom_claims: Array[
477
- {
478
- inbound_token_claim_name: ::String,
479
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
480
- authorizing_claim_match_value: {
481
- claim_match_value: {
482
- match_value_string: ::String?,
483
- match_value_string_list: Array[::String]?
484
- },
485
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
486
- }
487
- },
488
- ]?,
489
- private_endpoint: {
490
- self_managed_lattice_resource: {
491
- resource_configuration_identifier: ::String?
492
- }?,
493
- managed_vpc_resource: {
494
- vpc_identifier: ::String,
495
- subnet_ids: Array[::String],
496
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
497
- security_group_ids: Array[::String]?,
498
- tags: Hash[::String, ::String]?,
499
- routing_domain: ::String?
500
- }?
501
- }?,
502
- private_endpoint_overrides: Array[
503
- {
504
- domain: ::String,
505
- private_endpoint: {
506
- self_managed_lattice_resource: {
507
- resource_configuration_identifier: ::String?
508
- }?,
509
- managed_vpc_resource: {
510
- vpc_identifier: ::String,
511
- subnet_ids: Array[::String],
512
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
513
- security_group_ids: Array[::String]?,
514
- tags: Hash[::String, ::String]?,
515
- routing_domain: ::String?
516
- }?
517
- }
518
- },
519
- ]?
520
- }?
521
- },
335
+ ?authorizer_configuration: Params::authorizer_configuration,
522
336
  ?kms_key_arn: ::String,
523
337
  ?interceptor_configurations: Array[
524
- {
525
- interceptor: {
526
- lambda: {
527
- arn: ::String
528
- }?
529
- },
530
- interception_points: Array[("REQUEST" | "RESPONSE")],
531
- input_configuration: {
532
- pass_request_headers: bool
533
- }?
534
- },
338
+ Params::gateway_interceptor_configuration
535
339
  ],
536
340
  ?policy_engine_configuration: {
537
341
  arn: ::String,
@@ -560,61 +364,10 @@ module Aws
560
364
  ?client_token: ::String,
561
365
  priority: ::Integer,
562
366
  ?conditions: Array[
563
- {
564
- match_principals: {
565
- any_of: Array[
566
- {
567
- iam_principal: {
568
- arn: ::String,
569
- operator: ("StringEquals" | "StringLike")?
570
- }?
571
- },
572
- ]
573
- }?,
574
- match_paths: {
575
- any_of: Array[::String]
576
- }?
577
- },
367
+ Params::condition
578
368
  ],
579
369
  actions: Array[
580
- {
581
- configuration_bundle: {
582
- static_override: {
583
- bundle_arn: ::String,
584
- bundle_version: ::String
585
- }?,
586
- weighted_override: {
587
- traffic_split: Array[
588
- {
589
- name: ::String,
590
- weight: ::Integer,
591
- configuration_bundle: {
592
- bundle_arn: ::String,
593
- bundle_version: ::String
594
- },
595
- description: ::String?,
596
- metadata: Hash[::String, ::String]?
597
- },
598
- ]
599
- }?
600
- }?,
601
- route_to_target: {
602
- static_route: {
603
- target_name: ::String
604
- }?,
605
- weighted_route: {
606
- traffic_split: Array[
607
- {
608
- name: ::String,
609
- weight: ::Integer,
610
- target_name: ::String,
611
- description: ::String?,
612
- metadata: Hash[::String, ::String]?
613
- },
614
- ]
615
- }?
616
- }?
617
- },
370
+ Params::action
618
371
  ],
619
372
  ?description: ::String
620
373
  ) -> _CreateGatewayRuleResponseSuccess
@@ -645,133 +398,16 @@ module Aws
645
398
  name: ::String,
646
399
  ?description: ::String,
647
400
  ?client_token: ::String,
648
- target_configuration: {
649
- mcp: {
650
- open_api_schema: {
651
- s3: {
652
- uri: ::String?,
653
- bucket_owner_account_id: ::String?
654
- }?,
655
- inline_payload: ::String?
656
- }?,
657
- smithy_model: {
658
- s3: {
659
- uri: ::String?,
660
- bucket_owner_account_id: ::String?
661
- }?,
662
- inline_payload: ::String?
663
- }?,
664
- lambda: {
665
- lambda_arn: ::String,
666
- tool_schema: {
667
- s3: {
668
- uri: ::String?,
669
- bucket_owner_account_id: ::String?
670
- }?,
671
- inline_payload: Array[
672
- {
673
- name: ::String,
674
- description: ::String,
675
- input_schema: {
676
- type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
677
- properties: Hash[::String, untyped]?,
678
- required: Array[::String]?,
679
- items: untyped?,
680
- description: ::String?
681
- },
682
- output_schema: {
683
- type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
684
- properties: Hash[::String, untyped]?,
685
- required: Array[::String]?,
686
- items: untyped?,
687
- description: ::String?
688
- }?
689
- },
690
- ]?
691
- }
692
- }?,
693
- mcp_server: {
694
- endpoint: ::String,
695
- mcp_tool_schema: {
696
- s3: {
697
- uri: ::String?,
698
- bucket_owner_account_id: ::String?
699
- }?,
700
- inline_payload: ::String?
701
- }?,
702
- listing_mode: ("DEFAULT" | "DYNAMIC")?,
703
- resource_priority: ::Integer?
704
- }?,
705
- api_gateway: {
706
- rest_api_id: ::String,
707
- stage: ::String,
708
- api_gateway_tool_configuration: {
709
- tool_overrides: Array[
710
- {
711
- name: ::String,
712
- description: ::String?,
713
- path: ::String,
714
- method: ("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")
715
- },
716
- ]?,
717
- tool_filters: Array[
718
- {
719
- filter_path: ::String,
720
- methods: Array[("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")]
721
- },
722
- ]
723
- }
724
- }?
725
- }?,
726
- http: {
727
- agentcore_runtime: {
728
- arn: ::String,
729
- qualifier: ::String?
730
- }?
731
- }?
732
- },
401
+ target_configuration: Params::target_configuration,
733
402
  ?credential_provider_configurations: Array[
734
- {
735
- credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH"),
736
- credential_provider: {
737
- oauth_credential_provider: {
738
- provider_arn: ::String,
739
- scopes: Array[::String],
740
- custom_parameters: Hash[::String, ::String]?,
741
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
742
- default_return_url: ::String?
743
- }?,
744
- api_key_credential_provider: {
745
- provider_arn: ::String,
746
- credential_parameter_name: ::String?,
747
- credential_prefix: ::String?,
748
- credential_location: ("HEADER" | "QUERY_PARAMETER")?
749
- }?,
750
- iam_credential_provider: {
751
- service: ::String,
752
- region: ::String?
753
- }?
754
- }?
755
- },
403
+ Params::credential_provider_configuration
756
404
  ],
757
405
  ?metadata_configuration: {
758
406
  allowed_request_headers: Array[::String]?,
759
407
  allowed_query_parameters: Array[::String]?,
760
408
  allowed_response_headers: Array[::String]?
761
409
  },
762
- ?private_endpoint: {
763
- self_managed_lattice_resource: {
764
- resource_configuration_identifier: ::String?
765
- }?,
766
- managed_vpc_resource: {
767
- vpc_identifier: ::String,
768
- subnet_ids: Array[::String],
769
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
770
- security_group_ids: Array[::String]?,
771
- tags: Hash[::String, ::String]?,
772
- routing_domain: ::String?
773
- }?
774
- }
410
+ ?private_endpoint: Params::private_endpoint
775
411
  ) -> _CreateGatewayTargetResponseSuccess
776
412
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayTargetResponseSuccess
777
413
 
@@ -784,193 +420,31 @@ module Aws
784
420
  harness_name: ::String,
785
421
  ?client_token: ::String,
786
422
  execution_role_arn: ::String,
787
- ?environment: {
788
- agent_core_runtime_environment: {
789
- lifecycle_configuration: {
790
- idle_runtime_session_timeout: ::Integer?,
791
- max_lifetime: ::Integer?
792
- }?,
793
- network_configuration: {
794
- network_mode: ("PUBLIC" | "VPC"),
795
- network_mode_config: {
796
- security_groups: Array[::String],
797
- subnets: Array[::String],
798
- require_service_s3_endpoint: bool?
799
- }?
800
- }?,
801
- filesystem_configurations: Array[
802
- {
803
- session_storage: {
804
- mount_path: ::String
805
- }?,
806
- s3_files_access_point: {
807
- access_point_arn: ::String,
808
- mount_path: ::String
809
- }?,
810
- efs_access_point: {
811
- access_point_arn: ::String,
812
- mount_path: ::String
813
- }?
814
- },
815
- ]?
816
- }?
817
- },
423
+ ?environment: Params::harness_environment_provider_request,
818
424
  ?environment_artifact: {
819
425
  container_configuration: {
820
426
  container_uri: ::String
821
427
  }?
822
428
  },
823
429
  ?environment_variables: Hash[::String, ::String],
824
- ?authorizer_configuration: {
825
- custom_jwt_authorizer: {
826
- discovery_url: ::String,
827
- allowed_audience: Array[::String]?,
828
- allowed_clients: Array[::String]?,
829
- allowed_scopes: Array[::String]?,
830
- custom_claims: Array[
831
- {
832
- inbound_token_claim_name: ::String,
833
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
834
- authorizing_claim_match_value: {
835
- claim_match_value: {
836
- match_value_string: ::String?,
837
- match_value_string_list: Array[::String]?
838
- },
839
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
840
- }
841
- },
842
- ]?,
843
- private_endpoint: {
844
- self_managed_lattice_resource: {
845
- resource_configuration_identifier: ::String?
846
- }?,
847
- managed_vpc_resource: {
848
- vpc_identifier: ::String,
849
- subnet_ids: Array[::String],
850
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
851
- security_group_ids: Array[::String]?,
852
- tags: Hash[::String, ::String]?,
853
- routing_domain: ::String?
854
- }?
855
- }?,
856
- private_endpoint_overrides: Array[
857
- {
858
- domain: ::String,
859
- private_endpoint: {
860
- self_managed_lattice_resource: {
861
- resource_configuration_identifier: ::String?
862
- }?,
863
- managed_vpc_resource: {
864
- vpc_identifier: ::String,
865
- subnet_ids: Array[::String],
866
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
867
- security_group_ids: Array[::String]?,
868
- tags: Hash[::String, ::String]?,
869
- routing_domain: ::String?
870
- }?
871
- }
872
- },
873
- ]?
874
- }?
875
- },
876
- ?model: {
877
- bedrock_model_config: {
878
- model_id: ::String,
879
- max_tokens: ::Integer?,
880
- temperature: ::Float?,
881
- top_p: ::Float?
882
- }?,
883
- open_ai_model_config: {
884
- model_id: ::String,
885
- api_key_arn: ::String,
886
- max_tokens: ::Integer?,
887
- temperature: ::Float?,
888
- top_p: ::Float?
889
- }?,
890
- gemini_model_config: {
891
- model_id: ::String,
892
- api_key_arn: ::String,
893
- max_tokens: ::Integer?,
894
- temperature: ::Float?,
895
- top_p: ::Float?,
896
- top_k: ::Integer?
897
- }?
898
- },
430
+ ?authorizer_configuration: Params::authorizer_configuration,
431
+ ?model: Params::harness_model_configuration,
899
432
  ?system_prompt: Array[
900
433
  {
901
434
  text: ::String?
902
- },
435
+ }
903
436
  ],
904
437
  ?tools: Array[
905
- {
906
- type: ("remote_mcp" | "agentcore_browser" | "agentcore_gateway" | "inline_function" | "agentcore_code_interpreter"),
907
- name: ::String?,
908
- config: {
909
- remote_mcp: {
910
- url: ::String,
911
- headers: Hash[::String, ::String]?
912
- }?,
913
- agent_core_browser: {
914
- browser_arn: ::String?
915
- }?,
916
- agent_core_gateway: {
917
- gateway_arn: ::String,
918
- outbound_auth: {
919
- aws_iam: {
920
- }?,
921
- none: {
922
- }?,
923
- oauth: {
924
- provider_arn: ::String,
925
- scopes: Array[::String],
926
- custom_parameters: Hash[::String, ::String]?,
927
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
928
- default_return_url: ::String?
929
- }?
930
- }?
931
- }?,
932
- inline_function: {
933
- description: ::String,
934
- input_schema: {
935
- }
936
- }?,
937
- agent_core_code_interpreter: {
938
- code_interpreter_arn: ::String?
939
- }?
940
- }?
941
- },
438
+ Params::harness_tool
942
439
  ],
943
440
  ?skills: Array[
944
441
  {
945
442
  path: ::String?
946
- },
443
+ }
947
444
  ],
948
445
  ?allowed_tools: Array[::String],
949
- ?memory: {
950
- agent_core_memory_configuration: {
951
- arn: ::String,
952
- actor_id: ::String?,
953
- messages_count: ::Integer?,
954
- retrieval_config: Hash[::String, {
955
- top_k: ::Integer?,
956
- relevance_score: ::Float?,
957
- strategy_id: ::String?
958
- }]?
959
- }?
960
- },
961
- ?truncation: {
962
- strategy: ("sliding_window" | "summarization" | "none"),
963
- config: {
964
- sliding_window: {
965
- messages_count: ::Integer?
966
- }?,
967
- summarization: {
968
- summary_ratio: ::Float?,
969
- preserve_recent_messages: ::Integer?,
970
- summarization_system_prompt: ::String?
971
- }?
972
- }?
973
- },
446
+ ?memory: Params::harness_memory_configuration,
447
+ ?truncation: Params::harness_truncation_configuration,
974
448
  ?max_iterations: ::Integer,
975
449
  ?max_tokens: ::Integer,
976
450
  ?timeout_seconds: ::Integer,
@@ -991,317 +465,15 @@ module Aws
991
465
  ?memory_execution_role_arn: ::String,
992
466
  event_expiry_duration: ::Integer,
993
467
  ?memory_strategies: Array[
994
- {
995
- semantic_memory_strategy: {
996
- name: ::String,
997
- description: ::String?,
998
- namespaces: Array[::String]?,
999
- namespace_templates: Array[::String]?,
1000
- memory_record_schema: {
1001
- metadata_schema: Array[
1002
- {
1003
- key: ::String,
1004
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1005
- extraction_config: {
1006
- llm_extraction_config: {
1007
- llm_extraction_instruction: ::String?,
1008
- definition: ::String,
1009
- validation: {
1010
- string_validation: {
1011
- allowed_values: Array[::String]
1012
- }?,
1013
- string_list_validation: {
1014
- allowed_values: Array[::String]?,
1015
- max_items: ::Integer?
1016
- }?,
1017
- number_validation: {
1018
- min_value: ::Float?,
1019
- max_value: ::Float?
1020
- }?
1021
- }?
1022
- }?
1023
- }?
1024
- },
1025
- ]?
1026
- }?
1027
- }?,
1028
- summary_memory_strategy: {
1029
- name: ::String,
1030
- description: ::String?,
1031
- namespaces: Array[::String]?,
1032
- namespace_templates: Array[::String]?,
1033
- memory_record_schema: {
1034
- metadata_schema: Array[
1035
- {
1036
- key: ::String,
1037
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1038
- extraction_config: {
1039
- llm_extraction_config: {
1040
- llm_extraction_instruction: ::String?,
1041
- definition: ::String,
1042
- validation: {
1043
- string_validation: {
1044
- allowed_values: Array[::String]
1045
- }?,
1046
- string_list_validation: {
1047
- allowed_values: Array[::String]?,
1048
- max_items: ::Integer?
1049
- }?,
1050
- number_validation: {
1051
- min_value: ::Float?,
1052
- max_value: ::Float?
1053
- }?
1054
- }?
1055
- }?
1056
- }?
1057
- },
1058
- ]?
1059
- }?
1060
- }?,
1061
- user_preference_memory_strategy: {
1062
- name: ::String,
1063
- description: ::String?,
1064
- namespaces: Array[::String]?,
1065
- namespace_templates: Array[::String]?,
1066
- memory_record_schema: {
1067
- metadata_schema: Array[
1068
- {
1069
- key: ::String,
1070
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1071
- extraction_config: {
1072
- llm_extraction_config: {
1073
- llm_extraction_instruction: ::String?,
1074
- definition: ::String,
1075
- validation: {
1076
- string_validation: {
1077
- allowed_values: Array[::String]
1078
- }?,
1079
- string_list_validation: {
1080
- allowed_values: Array[::String]?,
1081
- max_items: ::Integer?
1082
- }?,
1083
- number_validation: {
1084
- min_value: ::Float?,
1085
- max_value: ::Float?
1086
- }?
1087
- }?
1088
- }?
1089
- }?
1090
- },
1091
- ]?
1092
- }?
1093
- }?,
1094
- custom_memory_strategy: {
1095
- name: ::String,
1096
- description: ::String?,
1097
- namespaces: Array[::String]?,
1098
- namespace_templates: Array[::String]?,
1099
- configuration: {
1100
- semantic_override: {
1101
- extraction: {
1102
- append_to_prompt: ::String,
1103
- model_id: ::String
1104
- }?,
1105
- consolidation: {
1106
- append_to_prompt: ::String,
1107
- model_id: ::String
1108
- }?
1109
- }?,
1110
- summary_override: {
1111
- consolidation: {
1112
- append_to_prompt: ::String,
1113
- model_id: ::String
1114
- }?
1115
- }?,
1116
- user_preference_override: {
1117
- extraction: {
1118
- append_to_prompt: ::String,
1119
- model_id: ::String
1120
- }?,
1121
- consolidation: {
1122
- append_to_prompt: ::String,
1123
- model_id: ::String
1124
- }?
1125
- }?,
1126
- episodic_override: {
1127
- extraction: {
1128
- append_to_prompt: ::String,
1129
- model_id: ::String
1130
- }?,
1131
- consolidation: {
1132
- append_to_prompt: ::String,
1133
- model_id: ::String
1134
- }?,
1135
- reflection: {
1136
- append_to_prompt: ::String,
1137
- model_id: ::String,
1138
- namespaces: Array[::String]?,
1139
- namespace_templates: Array[::String]?,
1140
- memory_record_schema: {
1141
- metadata_schema: Array[
1142
- {
1143
- key: ::String,
1144
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1145
- extraction_config: {
1146
- llm_extraction_config: {
1147
- llm_extraction_instruction: ::String?,
1148
- definition: ::String,
1149
- validation: {
1150
- string_validation: {
1151
- allowed_values: Array[::String]
1152
- }?,
1153
- string_list_validation: {
1154
- allowed_values: Array[::String]?,
1155
- max_items: ::Integer?
1156
- }?,
1157
- number_validation: {
1158
- min_value: ::Float?,
1159
- max_value: ::Float?
1160
- }?
1161
- }?
1162
- }?
1163
- }?
1164
- },
1165
- ]?
1166
- }?
1167
- }?
1168
- }?,
1169
- self_managed_configuration: {
1170
- trigger_conditions: Array[
1171
- {
1172
- message_based_trigger: {
1173
- message_count: ::Integer?
1174
- }?,
1175
- token_based_trigger: {
1176
- token_count: ::Integer?
1177
- }?,
1178
- time_based_trigger: {
1179
- idle_session_timeout: ::Integer?
1180
- }?
1181
- },
1182
- ]?,
1183
- invocation_configuration: {
1184
- topic_arn: ::String,
1185
- payload_delivery_bucket_name: ::String
1186
- },
1187
- historical_context_window_size: ::Integer?
1188
- }?
1189
- }?,
1190
- memory_record_schema: {
1191
- metadata_schema: Array[
1192
- {
1193
- key: ::String,
1194
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1195
- extraction_config: {
1196
- llm_extraction_config: {
1197
- llm_extraction_instruction: ::String?,
1198
- definition: ::String,
1199
- validation: {
1200
- string_validation: {
1201
- allowed_values: Array[::String]
1202
- }?,
1203
- string_list_validation: {
1204
- allowed_values: Array[::String]?,
1205
- max_items: ::Integer?
1206
- }?,
1207
- number_validation: {
1208
- min_value: ::Float?,
1209
- max_value: ::Float?
1210
- }?
1211
- }?
1212
- }?
1213
- }?
1214
- },
1215
- ]?
1216
- }?
1217
- }?,
1218
- episodic_memory_strategy: {
1219
- name: ::String,
1220
- description: ::String?,
1221
- namespaces: Array[::String]?,
1222
- namespace_templates: Array[::String]?,
1223
- reflection_configuration: {
1224
- namespaces: Array[::String]?,
1225
- namespace_templates: Array[::String]?,
1226
- memory_record_schema: {
1227
- metadata_schema: Array[
1228
- {
1229
- key: ::String,
1230
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1231
- extraction_config: {
1232
- llm_extraction_config: {
1233
- llm_extraction_instruction: ::String?,
1234
- definition: ::String,
1235
- validation: {
1236
- string_validation: {
1237
- allowed_values: Array[::String]
1238
- }?,
1239
- string_list_validation: {
1240
- allowed_values: Array[::String]?,
1241
- max_items: ::Integer?
1242
- }?,
1243
- number_validation: {
1244
- min_value: ::Float?,
1245
- max_value: ::Float?
1246
- }?
1247
- }?
1248
- }?
1249
- }?
1250
- },
1251
- ]?
1252
- }?
1253
- }?,
1254
- memory_record_schema: {
1255
- metadata_schema: Array[
1256
- {
1257
- key: ::String,
1258
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
1259
- extraction_config: {
1260
- llm_extraction_config: {
1261
- llm_extraction_instruction: ::String?,
1262
- definition: ::String,
1263
- validation: {
1264
- string_validation: {
1265
- allowed_values: Array[::String]
1266
- }?,
1267
- string_list_validation: {
1268
- allowed_values: Array[::String]?,
1269
- max_items: ::Integer?
1270
- }?,
1271
- number_validation: {
1272
- min_value: ::Float?,
1273
- max_value: ::Float?
1274
- }?
1275
- }?
1276
- }?
1277
- }?
1278
- },
1279
- ]?
1280
- }?
1281
- }?
1282
- },
468
+ Params::memory_strategy_input
1283
469
  ],
1284
470
  ?indexed_keys: Array[
1285
471
  {
1286
472
  key: ::String,
1287
473
  type: ("STRING" | "STRINGLIST" | "NUMBER")
1288
- },
474
+ }
1289
475
  ],
1290
- ?stream_delivery_resources: {
1291
- resources: Array[
1292
- {
1293
- kinesis: {
1294
- data_stream_arn: ::String,
1295
- content_configurations: Array[
1296
- {
1297
- type: ("MEMORY_RECORDS"),
1298
- level: ("METADATA_ONLY" | "FULL_CONTENT")?
1299
- },
1300
- ]
1301
- }?
1302
- },
1303
- ]
1304
- },
476
+ ?stream_delivery_resources: Params::stream_delivery_resources,
1305
477
  ?tags: Hash[::String, ::String]
1306
478
  ) -> _CreateMemoryResponseSuccess
1307
479
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemoryResponseSuccess
@@ -1319,97 +491,7 @@ module Aws
1319
491
  def create_oauth_2_credential_provider: (
1320
492
  name: ::String,
1321
493
  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"),
1322
- oauth2_provider_config_input: {
1323
- custom_oauth_2_provider_config: {
1324
- oauth_discovery: {
1325
- discovery_url: ::String?,
1326
- authorization_server_metadata: {
1327
- issuer: ::String,
1328
- authorization_endpoint: ::String,
1329
- token_endpoint: ::String,
1330
- response_types: Array[::String]?,
1331
- token_endpoint_auth_methods: Array[::String]?
1332
- }?
1333
- },
1334
- client_id: ::String?,
1335
- client_secret: ::String?,
1336
- private_endpoint: {
1337
- self_managed_lattice_resource: {
1338
- resource_configuration_identifier: ::String?
1339
- }?,
1340
- managed_vpc_resource: {
1341
- vpc_identifier: ::String,
1342
- subnet_ids: Array[::String],
1343
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
1344
- security_group_ids: Array[::String]?,
1345
- tags: Hash[::String, ::String]?,
1346
- routing_domain: ::String?
1347
- }?
1348
- }?,
1349
- private_endpoint_overrides: Array[
1350
- {
1351
- domain: ::String,
1352
- private_endpoint: {
1353
- self_managed_lattice_resource: {
1354
- resource_configuration_identifier: ::String?
1355
- }?,
1356
- managed_vpc_resource: {
1357
- vpc_identifier: ::String,
1358
- subnet_ids: Array[::String],
1359
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
1360
- security_group_ids: Array[::String]?,
1361
- tags: Hash[::String, ::String]?,
1362
- routing_domain: ::String?
1363
- }?
1364
- }
1365
- },
1366
- ]?,
1367
- on_behalf_of_token_exchange_config: {
1368
- grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
1369
- token_exchange_grant_type_config: {
1370
- actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT"),
1371
- actor_token_scopes: Array[::String]?
1372
- }?
1373
- }?,
1374
- client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?
1375
- }?,
1376
- google_oauth_2_provider_config: {
1377
- client_id: ::String,
1378
- client_secret: ::String
1379
- }?,
1380
- github_oauth_2_provider_config: {
1381
- client_id: ::String,
1382
- client_secret: ::String
1383
- }?,
1384
- slack_oauth_2_provider_config: {
1385
- client_id: ::String,
1386
- client_secret: ::String
1387
- }?,
1388
- salesforce_oauth_2_provider_config: {
1389
- client_id: ::String,
1390
- client_secret: ::String
1391
- }?,
1392
- microsoft_oauth_2_provider_config: {
1393
- client_id: ::String,
1394
- client_secret: ::String,
1395
- tenant_id: ::String?
1396
- }?,
1397
- atlassian_oauth_2_provider_config: {
1398
- client_id: ::String,
1399
- client_secret: ::String
1400
- }?,
1401
- linkedin_oauth_2_provider_config: {
1402
- client_id: ::String,
1403
- client_secret: ::String
1404
- }?,
1405
- included_oauth_2_provider_config: {
1406
- client_id: ::String,
1407
- client_secret: ::String,
1408
- issuer: ::String?,
1409
- authorization_endpoint: ::String?,
1410
- token_endpoint: ::String?
1411
- }?
1412
- },
494
+ oauth2_provider_config_input: Params::oauth_2_provider_config_input,
1413
495
  ?tags: Hash[::String, ::String]
1414
496
  ) -> _CreateOauth2CredentialProviderResponseSuccess
1415
497
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOauth2CredentialProviderResponseSuccess
@@ -1429,25 +511,7 @@ module Aws
1429
511
  ?client_token: ::String,
1430
512
  online_evaluation_config_name: ::String,
1431
513
  ?description: ::String,
1432
- rule: {
1433
- sampling_config: {
1434
- sampling_percentage: ::Float
1435
- },
1436
- filters: Array[
1437
- {
1438
- key: ::String,
1439
- operator: ("Equals" | "NotEquals" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Contains" | "NotContains"),
1440
- value: {
1441
- string_value: ::String?,
1442
- double_value: ::Float?,
1443
- boolean_value: bool?
1444
- }
1445
- },
1446
- ]?,
1447
- session_config: {
1448
- session_timeout_minutes: ::Integer
1449
- }?
1450
- },
514
+ rule: Params::rule,
1451
515
  data_source_config: {
1452
516
  cloud_watch_logs: {
1453
517
  log_group_names: Array[::String],
@@ -1457,7 +521,7 @@ module Aws
1457
521
  evaluators: Array[
1458
522
  {
1459
523
  evaluator_id: ::String?
1460
- },
524
+ }
1461
525
  ],
1462
526
  evaluation_execution_role_arn: ::String,
1463
527
  enable_on_create: bool,
@@ -1482,14 +546,7 @@ module Aws
1482
546
  ?description: ::String,
1483
547
  type: ("CoinbaseCDP" | "StripePrivy"),
1484
548
  credential_provider_configurations: Array[
1485
- {
1486
- coinbase_cdp: {
1487
- credential_provider_arn: ::String
1488
- }?,
1489
- stripe_privy: {
1490
- credential_provider_arn: ::String
1491
- }?
1492
- },
549
+ Params::credentials_provider_configuration
1493
550
  ],
1494
551
  ?client_token: ::String
1495
552
  ) -> _CreatePaymentConnectorResponseSuccess
@@ -1506,19 +563,7 @@ module Aws
1506
563
  def create_payment_credential_provider: (
1507
564
  name: ::String,
1508
565
  credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy"),
1509
- provider_configuration_input: {
1510
- coinbase_cdp_configuration: {
1511
- api_key_id: ::String,
1512
- api_key_secret: ::String,
1513
- wallet_secret: ::String
1514
- }?,
1515
- stripe_privy_configuration: {
1516
- app_id: ::String,
1517
- app_secret: ::String,
1518
- authorization_private_key: ::String,
1519
- authorization_id: ::String
1520
- }?
1521
- },
566
+ provider_configuration_input: Params::payment_provider_configuration_input,
1522
567
  ?tags: Hash[::String, ::String]
1523
568
  ) -> _CreatePaymentCredentialProviderResponseSuccess
1524
569
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentCredentialProviderResponseSuccess
@@ -1541,58 +586,7 @@ module Aws
1541
586
  name: ::String,
1542
587
  ?description: ::String,
1543
588
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
1544
- ?authorizer_configuration: {
1545
- custom_jwt_authorizer: {
1546
- discovery_url: ::String,
1547
- allowed_audience: Array[::String]?,
1548
- allowed_clients: Array[::String]?,
1549
- allowed_scopes: Array[::String]?,
1550
- custom_claims: Array[
1551
- {
1552
- inbound_token_claim_name: ::String,
1553
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
1554
- authorizing_claim_match_value: {
1555
- claim_match_value: {
1556
- match_value_string: ::String?,
1557
- match_value_string_list: Array[::String]?
1558
- },
1559
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
1560
- }
1561
- },
1562
- ]?,
1563
- private_endpoint: {
1564
- self_managed_lattice_resource: {
1565
- resource_configuration_identifier: ::String?
1566
- }?,
1567
- managed_vpc_resource: {
1568
- vpc_identifier: ::String,
1569
- subnet_ids: Array[::String],
1570
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
1571
- security_group_ids: Array[::String]?,
1572
- tags: Hash[::String, ::String]?,
1573
- routing_domain: ::String?
1574
- }?
1575
- }?,
1576
- private_endpoint_overrides: Array[
1577
- {
1578
- domain: ::String,
1579
- private_endpoint: {
1580
- self_managed_lattice_resource: {
1581
- resource_configuration_identifier: ::String?
1582
- }?,
1583
- managed_vpc_resource: {
1584
- vpc_identifier: ::String,
1585
- subnet_ids: Array[::String],
1586
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
1587
- security_group_ids: Array[::String]?,
1588
- tags: Hash[::String, ::String]?,
1589
- routing_domain: ::String?
1590
- }?
1591
- }
1592
- },
1593
- ]?
1594
- }?
1595
- },
589
+ ?authorizer_configuration: Params::authorizer_configuration,
1596
590
  role_arn: ::String,
1597
591
  ?client_token: ::String,
1598
592
  ?tags: Hash[::String, ::String]
@@ -1615,15 +609,7 @@ module Aws
1615
609
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_policy-instance_method
1616
610
  def create_policy: (
1617
611
  name: ::String,
1618
- definition: {
1619
- cedar: {
1620
- statement: ::String
1621
- }?,
1622
- policy_generation: {
1623
- policy_generation_id: ::String,
1624
- policy_generation_asset_id: ::String
1625
- }?
1626
- },
612
+ definition: Params::policy_definition,
1627
613
  ?description: ::String,
1628
614
  ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS"),
1629
615
  policy_engine_id: ::String,
@@ -1662,58 +648,7 @@ module Aws
1662
648
  name: ::String,
1663
649
  ?description: ::String,
1664
650
  ?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
1665
- ?authorizer_configuration: {
1666
- custom_jwt_authorizer: {
1667
- discovery_url: ::String,
1668
- allowed_audience: Array[::String]?,
1669
- allowed_clients: Array[::String]?,
1670
- allowed_scopes: Array[::String]?,
1671
- custom_claims: Array[
1672
- {
1673
- inbound_token_claim_name: ::String,
1674
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
1675
- authorizing_claim_match_value: {
1676
- claim_match_value: {
1677
- match_value_string: ::String?,
1678
- match_value_string_list: Array[::String]?
1679
- },
1680
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
1681
- }
1682
- },
1683
- ]?,
1684
- private_endpoint: {
1685
- self_managed_lattice_resource: {
1686
- resource_configuration_identifier: ::String?
1687
- }?,
1688
- managed_vpc_resource: {
1689
- vpc_identifier: ::String,
1690
- subnet_ids: Array[::String],
1691
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
1692
- security_group_ids: Array[::String]?,
1693
- tags: Hash[::String, ::String]?,
1694
- routing_domain: ::String?
1695
- }?
1696
- }?,
1697
- private_endpoint_overrides: Array[
1698
- {
1699
- domain: ::String,
1700
- private_endpoint: {
1701
- self_managed_lattice_resource: {
1702
- resource_configuration_identifier: ::String?
1703
- }?,
1704
- managed_vpc_resource: {
1705
- vpc_identifier: ::String,
1706
- subnet_ids: Array[::String],
1707
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
1708
- security_group_ids: Array[::String]?,
1709
- tags: Hash[::String, ::String]?,
1710
- routing_domain: ::String?
1711
- }?
1712
- }
1713
- },
1714
- ]?
1715
- }?
1716
- },
651
+ ?authorizer_configuration: Params::authorizer_configuration,
1717
652
  ?client_token: ::String,
1718
653
  ?approval_configuration: {
1719
654
  auto_approval: bool?
@@ -1764,29 +699,7 @@ module Aws
1764
699
  },
1765
700
  ?record_version: ::String,
1766
701
  ?synchronization_type: ("URL"),
1767
- ?synchronization_configuration: {
1768
- from_url: {
1769
- url: ::String,
1770
- credential_provider_configurations: Array[
1771
- {
1772
- credential_provider_type: ("OAUTH" | "IAM"),
1773
- credential_provider: {
1774
- oauth_credential_provider: {
1775
- provider_arn: ::String,
1776
- grant_type: ("CLIENT_CREDENTIALS")?,
1777
- scopes: Array[::String]?,
1778
- custom_parameters: Hash[::String, ::String]?
1779
- }?,
1780
- iam_credential_provider: {
1781
- role_arn: ::String?,
1782
- service: ::String?,
1783
- region: ::String?
1784
- }?
1785
- }
1786
- },
1787
- ]?
1788
- }?
1789
- },
702
+ ?synchronization_configuration: Params::synchronization_configuration,
1790
703
  ?client_token: ::String
1791
704
  ) -> _CreateRegistryRecordResponseSuccess
1792
705
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRegistryRecordResponseSuccess
@@ -3175,84 +2088,11 @@ module Aws
3175
2088
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_agent_runtime-instance_method
3176
2089
  def update_agent_runtime: (
3177
2090
  agent_runtime_id: ::String,
3178
- agent_runtime_artifact: {
3179
- container_configuration: {
3180
- container_uri: ::String
3181
- }?,
3182
- code_configuration: {
3183
- code: {
3184
- s3: {
3185
- bucket: ::String,
3186
- prefix: ::String,
3187
- version_id: ::String?
3188
- }?
3189
- },
3190
- runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13" | "PYTHON_3_14" | "NODE_22"),
3191
- entry_point: Array[::String]
3192
- }?
3193
- },
2091
+ agent_runtime_artifact: Params::agent_runtime_artifact,
3194
2092
  role_arn: ::String,
3195
- network_configuration: {
3196
- network_mode: ("PUBLIC" | "VPC"),
3197
- network_mode_config: {
3198
- security_groups: Array[::String],
3199
- subnets: Array[::String],
3200
- require_service_s3_endpoint: bool?
3201
- }?
3202
- },
2093
+ network_configuration: Params::network_configuration,
3203
2094
  ?description: ::String,
3204
- ?authorizer_configuration: {
3205
- custom_jwt_authorizer: {
3206
- discovery_url: ::String,
3207
- allowed_audience: Array[::String]?,
3208
- allowed_clients: Array[::String]?,
3209
- allowed_scopes: Array[::String]?,
3210
- custom_claims: Array[
3211
- {
3212
- inbound_token_claim_name: ::String,
3213
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
3214
- authorizing_claim_match_value: {
3215
- claim_match_value: {
3216
- match_value_string: ::String?,
3217
- match_value_string_list: Array[::String]?
3218
- },
3219
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
3220
- }
3221
- },
3222
- ]?,
3223
- private_endpoint: {
3224
- self_managed_lattice_resource: {
3225
- resource_configuration_identifier: ::String?
3226
- }?,
3227
- managed_vpc_resource: {
3228
- vpc_identifier: ::String,
3229
- subnet_ids: Array[::String],
3230
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3231
- security_group_ids: Array[::String]?,
3232
- tags: Hash[::String, ::String]?,
3233
- routing_domain: ::String?
3234
- }?
3235
- }?,
3236
- private_endpoint_overrides: Array[
3237
- {
3238
- domain: ::String,
3239
- private_endpoint: {
3240
- self_managed_lattice_resource: {
3241
- resource_configuration_identifier: ::String?
3242
- }?,
3243
- managed_vpc_resource: {
3244
- vpc_identifier: ::String,
3245
- subnet_ids: Array[::String],
3246
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3247
- security_group_ids: Array[::String]?,
3248
- tags: Hash[::String, ::String]?,
3249
- routing_domain: ::String?
3250
- }?
3251
- }
3252
- },
3253
- ]?
3254
- }?
3255
- },
2095
+ ?authorizer_configuration: Params::authorizer_configuration,
3256
2096
  ?request_header_configuration: {
3257
2097
  request_header_allowlist: Array[::String]?
3258
2098
  },
@@ -3268,19 +2108,7 @@ module Aws
3268
2108
  },
3269
2109
  ?environment_variables: Hash[::String, ::String],
3270
2110
  ?filesystem_configurations: Array[
3271
- {
3272
- session_storage: {
3273
- mount_path: ::String
3274
- }?,
3275
- s3_files_access_point: {
3276
- access_point_arn: ::String,
3277
- mount_path: ::String
3278
- }?,
3279
- efs_access_point: {
3280
- access_point_arn: ::String,
3281
- mount_path: ::String
3282
- }?
3283
- },
2111
+ Params::filesystem_configuration
3284
2112
  ],
3285
2113
  ?client_token: ::String
3286
2114
  ) -> _UpdateAgentRuntimeResponseSuccess
@@ -3360,45 +2188,7 @@ module Aws
3360
2188
  ?client_token: ::String,
3361
2189
  evaluator_id: ::String,
3362
2190
  ?description: ::String,
3363
- ?evaluator_config: {
3364
- llm_as_a_judge: {
3365
- instructions: ::String,
3366
- rating_scale: {
3367
- numerical: Array[
3368
- {
3369
- definition: ::String,
3370
- value: ::Float,
3371
- label: ::String
3372
- },
3373
- ]?,
3374
- categorical: Array[
3375
- {
3376
- definition: ::String,
3377
- label: ::String
3378
- },
3379
- ]?
3380
- },
3381
- model_config: {
3382
- bedrock_evaluator_model_config: {
3383
- model_id: ::String,
3384
- inference_config: {
3385
- max_tokens: ::Integer?,
3386
- temperature: ::Float?,
3387
- top_p: ::Float?,
3388
- stop_sequences: Array[::String]?
3389
- }?,
3390
- additional_model_request_fields: {
3391
- }?
3392
- }?
3393
- }
3394
- }?,
3395
- code_based: {
3396
- lambda_config: {
3397
- lambda_arn: ::String,
3398
- lambda_timeout_in_seconds: ::Integer?
3399
- }?
3400
- }?
3401
- },
2191
+ ?evaluator_config: Params::evaluator_config,
3402
2192
  ?level: ("TOOL_CALL" | "TRACE" | "SESSION"),
3403
2193
  ?kms_key_arn: ::String
3404
2194
  ) -> _UpdateEvaluatorResponseSuccess
@@ -3433,85 +2223,12 @@ module Aws
3433
2223
  ?description: ::String,
3434
2224
  role_arn: ::String,
3435
2225
  ?protocol_type: ("MCP"),
3436
- ?protocol_configuration: {
3437
- mcp: {
3438
- supported_versions: Array[::String]?,
3439
- instructions: ::String?,
3440
- search_type: ("SEMANTIC")?,
3441
- session_configuration: {
3442
- session_timeout_in_seconds: ::Integer?
3443
- }?,
3444
- streaming_configuration: {
3445
- enable_response_streaming: bool?
3446
- }?
3447
- }?
3448
- },
2226
+ ?protocol_configuration: Params::gateway_protocol_configuration,
3449
2227
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
3450
- ?authorizer_configuration: {
3451
- custom_jwt_authorizer: {
3452
- discovery_url: ::String,
3453
- allowed_audience: Array[::String]?,
3454
- allowed_clients: Array[::String]?,
3455
- allowed_scopes: Array[::String]?,
3456
- custom_claims: Array[
3457
- {
3458
- inbound_token_claim_name: ::String,
3459
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
3460
- authorizing_claim_match_value: {
3461
- claim_match_value: {
3462
- match_value_string: ::String?,
3463
- match_value_string_list: Array[::String]?
3464
- },
3465
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
3466
- }
3467
- },
3468
- ]?,
3469
- private_endpoint: {
3470
- self_managed_lattice_resource: {
3471
- resource_configuration_identifier: ::String?
3472
- }?,
3473
- managed_vpc_resource: {
3474
- vpc_identifier: ::String,
3475
- subnet_ids: Array[::String],
3476
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3477
- security_group_ids: Array[::String]?,
3478
- tags: Hash[::String, ::String]?,
3479
- routing_domain: ::String?
3480
- }?
3481
- }?,
3482
- private_endpoint_overrides: Array[
3483
- {
3484
- domain: ::String,
3485
- private_endpoint: {
3486
- self_managed_lattice_resource: {
3487
- resource_configuration_identifier: ::String?
3488
- }?,
3489
- managed_vpc_resource: {
3490
- vpc_identifier: ::String,
3491
- subnet_ids: Array[::String],
3492
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3493
- security_group_ids: Array[::String]?,
3494
- tags: Hash[::String, ::String]?,
3495
- routing_domain: ::String?
3496
- }?
3497
- }
3498
- },
3499
- ]?
3500
- }?
3501
- },
2228
+ ?authorizer_configuration: Params::authorizer_configuration,
3502
2229
  ?kms_key_arn: ::String,
3503
2230
  ?interceptor_configurations: Array[
3504
- {
3505
- interceptor: {
3506
- lambda: {
3507
- arn: ::String
3508
- }?
3509
- },
3510
- interception_points: Array[("REQUEST" | "RESPONSE")],
3511
- input_configuration: {
3512
- pass_request_headers: bool
3513
- }?
3514
- },
2231
+ Params::gateway_interceptor_configuration
3515
2232
  ],
3516
2233
  ?policy_engine_configuration: {
3517
2234
  arn: ::String,
@@ -3540,61 +2257,10 @@ module Aws
3540
2257
  rule_id: ::String,
3541
2258
  ?priority: ::Integer,
3542
2259
  ?conditions: Array[
3543
- {
3544
- match_principals: {
3545
- any_of: Array[
3546
- {
3547
- iam_principal: {
3548
- arn: ::String,
3549
- operator: ("StringEquals" | "StringLike")?
3550
- }?
3551
- },
3552
- ]
3553
- }?,
3554
- match_paths: {
3555
- any_of: Array[::String]
3556
- }?
3557
- },
2260
+ Params::condition
3558
2261
  ],
3559
2262
  ?actions: Array[
3560
- {
3561
- configuration_bundle: {
3562
- static_override: {
3563
- bundle_arn: ::String,
3564
- bundle_version: ::String
3565
- }?,
3566
- weighted_override: {
3567
- traffic_split: Array[
3568
- {
3569
- name: ::String,
3570
- weight: ::Integer,
3571
- configuration_bundle: {
3572
- bundle_arn: ::String,
3573
- bundle_version: ::String
3574
- },
3575
- description: ::String?,
3576
- metadata: Hash[::String, ::String]?
3577
- },
3578
- ]
3579
- }?
3580
- }?,
3581
- route_to_target: {
3582
- static_route: {
3583
- target_name: ::String
3584
- }?,
3585
- weighted_route: {
3586
- traffic_split: Array[
3587
- {
3588
- name: ::String,
3589
- weight: ::Integer,
3590
- target_name: ::String,
3591
- description: ::String?,
3592
- metadata: Hash[::String, ::String]?
3593
- },
3594
- ]
3595
- }?
3596
- }?
3597
- },
2263
+ Params::action
3598
2264
  ],
3599
2265
  ?description: ::String
3600
2266
  ) -> _UpdateGatewayRuleResponseSuccess
@@ -3625,133 +2291,16 @@ module Aws
3625
2291
  target_id: ::String,
3626
2292
  name: ::String,
3627
2293
  ?description: ::String,
3628
- target_configuration: {
3629
- mcp: {
3630
- open_api_schema: {
3631
- s3: {
3632
- uri: ::String?,
3633
- bucket_owner_account_id: ::String?
3634
- }?,
3635
- inline_payload: ::String?
3636
- }?,
3637
- smithy_model: {
3638
- s3: {
3639
- uri: ::String?,
3640
- bucket_owner_account_id: ::String?
3641
- }?,
3642
- inline_payload: ::String?
3643
- }?,
3644
- lambda: {
3645
- lambda_arn: ::String,
3646
- tool_schema: {
3647
- s3: {
3648
- uri: ::String?,
3649
- bucket_owner_account_id: ::String?
3650
- }?,
3651
- inline_payload: Array[
3652
- {
3653
- name: ::String,
3654
- description: ::String,
3655
- input_schema: {
3656
- type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
3657
- properties: Hash[::String, untyped]?,
3658
- required: Array[::String]?,
3659
- items: untyped?,
3660
- description: ::String?
3661
- },
3662
- output_schema: {
3663
- type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
3664
- properties: Hash[::String, untyped]?,
3665
- required: Array[::String]?,
3666
- items: untyped?,
3667
- description: ::String?
3668
- }?
3669
- },
3670
- ]?
3671
- }
3672
- }?,
3673
- mcp_server: {
3674
- endpoint: ::String,
3675
- mcp_tool_schema: {
3676
- s3: {
3677
- uri: ::String?,
3678
- bucket_owner_account_id: ::String?
3679
- }?,
3680
- inline_payload: ::String?
3681
- }?,
3682
- listing_mode: ("DEFAULT" | "DYNAMIC")?,
3683
- resource_priority: ::Integer?
3684
- }?,
3685
- api_gateway: {
3686
- rest_api_id: ::String,
3687
- stage: ::String,
3688
- api_gateway_tool_configuration: {
3689
- tool_overrides: Array[
3690
- {
3691
- name: ::String,
3692
- description: ::String?,
3693
- path: ::String,
3694
- method: ("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")
3695
- },
3696
- ]?,
3697
- tool_filters: Array[
3698
- {
3699
- filter_path: ::String,
3700
- methods: Array[("GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST")]
3701
- },
3702
- ]
3703
- }
3704
- }?
3705
- }?,
3706
- http: {
3707
- agentcore_runtime: {
3708
- arn: ::String,
3709
- qualifier: ::String?
3710
- }?
3711
- }?
3712
- },
2294
+ target_configuration: Params::target_configuration,
3713
2295
  ?credential_provider_configurations: Array[
3714
- {
3715
- credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY" | "CALLER_IAM_CREDENTIALS" | "JWT_PASSTHROUGH"),
3716
- credential_provider: {
3717
- oauth_credential_provider: {
3718
- provider_arn: ::String,
3719
- scopes: Array[::String],
3720
- custom_parameters: Hash[::String, ::String]?,
3721
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
3722
- default_return_url: ::String?
3723
- }?,
3724
- api_key_credential_provider: {
3725
- provider_arn: ::String,
3726
- credential_parameter_name: ::String?,
3727
- credential_prefix: ::String?,
3728
- credential_location: ("HEADER" | "QUERY_PARAMETER")?
3729
- }?,
3730
- iam_credential_provider: {
3731
- service: ::String,
3732
- region: ::String?
3733
- }?
3734
- }?
3735
- },
2296
+ Params::credential_provider_configuration
3736
2297
  ],
3737
2298
  ?metadata_configuration: {
3738
2299
  allowed_request_headers: Array[::String]?,
3739
2300
  allowed_query_parameters: Array[::String]?,
3740
2301
  allowed_response_headers: Array[::String]?
3741
2302
  },
3742
- ?private_endpoint: {
3743
- self_managed_lattice_resource: {
3744
- resource_configuration_identifier: ::String?
3745
- }?,
3746
- managed_vpc_resource: {
3747
- vpc_identifier: ::String,
3748
- subnet_ids: Array[::String],
3749
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3750
- security_group_ids: Array[::String]?,
3751
- tags: Hash[::String, ::String]?,
3752
- routing_domain: ::String?
3753
- }?
3754
- }
2303
+ ?private_endpoint: Params::private_endpoint
3755
2304
  ) -> _UpdateGatewayTargetResponseSuccess
3756
2305
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayTargetResponseSuccess
3757
2306
 
@@ -3764,37 +2313,7 @@ module Aws
3764
2313
  harness_id: ::String,
3765
2314
  ?client_token: ::String,
3766
2315
  ?execution_role_arn: ::String,
3767
- ?environment: {
3768
- agent_core_runtime_environment: {
3769
- lifecycle_configuration: {
3770
- idle_runtime_session_timeout: ::Integer?,
3771
- max_lifetime: ::Integer?
3772
- }?,
3773
- network_configuration: {
3774
- network_mode: ("PUBLIC" | "VPC"),
3775
- network_mode_config: {
3776
- security_groups: Array[::String],
3777
- subnets: Array[::String],
3778
- require_service_s3_endpoint: bool?
3779
- }?
3780
- }?,
3781
- filesystem_configurations: Array[
3782
- {
3783
- session_storage: {
3784
- mount_path: ::String
3785
- }?,
3786
- s3_files_access_point: {
3787
- access_point_arn: ::String,
3788
- mount_path: ::String
3789
- }?,
3790
- efs_access_point: {
3791
- access_point_arn: ::String,
3792
- mount_path: ::String
3793
- }?
3794
- },
3795
- ]?
3796
- }?
3797
- },
2316
+ ?environment: Params::harness_environment_provider_request,
3798
2317
  ?environment_artifact: {
3799
2318
  optional_value: {
3800
2319
  container_configuration: {
@@ -3803,160 +2322,26 @@ module Aws
3803
2322
  }?
3804
2323
  },
3805
2324
  ?environment_variables: Hash[::String, ::String],
3806
- ?authorizer_configuration: {
3807
- optional_value: {
3808
- custom_jwt_authorizer: {
3809
- discovery_url: ::String,
3810
- allowed_audience: Array[::String]?,
3811
- allowed_clients: Array[::String]?,
3812
- allowed_scopes: Array[::String]?,
3813
- custom_claims: Array[
3814
- {
3815
- inbound_token_claim_name: ::String,
3816
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
3817
- authorizing_claim_match_value: {
3818
- claim_match_value: {
3819
- match_value_string: ::String?,
3820
- match_value_string_list: Array[::String]?
3821
- },
3822
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
3823
- }
3824
- },
3825
- ]?,
3826
- private_endpoint: {
3827
- self_managed_lattice_resource: {
3828
- resource_configuration_identifier: ::String?
3829
- }?,
3830
- managed_vpc_resource: {
3831
- vpc_identifier: ::String,
3832
- subnet_ids: Array[::String],
3833
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3834
- security_group_ids: Array[::String]?,
3835
- tags: Hash[::String, ::String]?,
3836
- routing_domain: ::String?
3837
- }?
3838
- }?,
3839
- private_endpoint_overrides: Array[
3840
- {
3841
- domain: ::String,
3842
- private_endpoint: {
3843
- self_managed_lattice_resource: {
3844
- resource_configuration_identifier: ::String?
3845
- }?,
3846
- managed_vpc_resource: {
3847
- vpc_identifier: ::String,
3848
- subnet_ids: Array[::String],
3849
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
3850
- security_group_ids: Array[::String]?,
3851
- tags: Hash[::String, ::String]?,
3852
- routing_domain: ::String?
3853
- }?
3854
- }
3855
- },
3856
- ]?
3857
- }?
3858
- }?
3859
- },
3860
- ?model: {
3861
- bedrock_model_config: {
3862
- model_id: ::String,
3863
- max_tokens: ::Integer?,
3864
- temperature: ::Float?,
3865
- top_p: ::Float?
3866
- }?,
3867
- open_ai_model_config: {
3868
- model_id: ::String,
3869
- api_key_arn: ::String,
3870
- max_tokens: ::Integer?,
3871
- temperature: ::Float?,
3872
- top_p: ::Float?
3873
- }?,
3874
- gemini_model_config: {
3875
- model_id: ::String,
3876
- api_key_arn: ::String,
3877
- max_tokens: ::Integer?,
3878
- temperature: ::Float?,
3879
- top_p: ::Float?,
3880
- top_k: ::Integer?
3881
- }?
3882
- },
2325
+ ?authorizer_configuration: Params::updated_authorizer_configuration,
2326
+ ?model: Params::harness_model_configuration,
3883
2327
  ?system_prompt: Array[
3884
2328
  {
3885
2329
  text: ::String?
3886
- },
2330
+ }
3887
2331
  ],
3888
2332
  ?tools: Array[
3889
- {
3890
- type: ("remote_mcp" | "agentcore_browser" | "agentcore_gateway" | "inline_function" | "agentcore_code_interpreter"),
3891
- name: ::String?,
3892
- config: {
3893
- remote_mcp: {
3894
- url: ::String,
3895
- headers: Hash[::String, ::String]?
3896
- }?,
3897
- agent_core_browser: {
3898
- browser_arn: ::String?
3899
- }?,
3900
- agent_core_gateway: {
3901
- gateway_arn: ::String,
3902
- outbound_auth: {
3903
- aws_iam: {
3904
- }?,
3905
- none: {
3906
- }?,
3907
- oauth: {
3908
- provider_arn: ::String,
3909
- scopes: Array[::String],
3910
- custom_parameters: Hash[::String, ::String]?,
3911
- grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "TOKEN_EXCHANGE")?,
3912
- default_return_url: ::String?
3913
- }?
3914
- }?
3915
- }?,
3916
- inline_function: {
3917
- description: ::String,
3918
- input_schema: {
3919
- }
3920
- }?,
3921
- agent_core_code_interpreter: {
3922
- code_interpreter_arn: ::String?
3923
- }?
3924
- }?
3925
- },
2333
+ Params::harness_tool
3926
2334
  ],
3927
2335
  ?skills: Array[
3928
2336
  {
3929
2337
  path: ::String?
3930
- },
2338
+ }
3931
2339
  ],
3932
2340
  ?allowed_tools: Array[::String],
3933
2341
  ?memory: {
3934
- optional_value: {
3935
- agent_core_memory_configuration: {
3936
- arn: ::String,
3937
- actor_id: ::String?,
3938
- messages_count: ::Integer?,
3939
- retrieval_config: Hash[::String, {
3940
- top_k: ::Integer?,
3941
- relevance_score: ::Float?,
3942
- strategy_id: ::String?
3943
- }]?
3944
- }?
3945
- }?
3946
- },
3947
- ?truncation: {
3948
- strategy: ("sliding_window" | "summarization" | "none"),
3949
- config: {
3950
- sliding_window: {
3951
- messages_count: ::Integer?
3952
- }?,
3953
- summarization: {
3954
- summary_ratio: ::Float?,
3955
- preserve_recent_messages: ::Integer?,
3956
- summarization_system_prompt: ::String?
3957
- }?
3958
- }?
2342
+ optional_value: Params::harness_memory_configuration?
3959
2343
  },
2344
+ ?truncation: Params::harness_truncation_configuration,
3960
2345
  ?max_iterations: ::Integer,
3961
2346
  ?max_tokens: ::Integer,
3962
2347
  ?timeout_seconds: ::Integer
@@ -3976,295 +2361,7 @@ module Aws
3976
2361
  ?memory_execution_role_arn: ::String,
3977
2362
  ?memory_strategies: {
3978
2363
  add_memory_strategies: Array[
3979
- {
3980
- semantic_memory_strategy: {
3981
- name: ::String,
3982
- description: ::String?,
3983
- namespaces: Array[::String]?,
3984
- namespace_templates: Array[::String]?,
3985
- memory_record_schema: {
3986
- metadata_schema: Array[
3987
- {
3988
- key: ::String,
3989
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
3990
- extraction_config: {
3991
- llm_extraction_config: {
3992
- llm_extraction_instruction: ::String?,
3993
- definition: ::String,
3994
- validation: {
3995
- string_validation: {
3996
- allowed_values: Array[::String]
3997
- }?,
3998
- string_list_validation: {
3999
- allowed_values: Array[::String]?,
4000
- max_items: ::Integer?
4001
- }?,
4002
- number_validation: {
4003
- min_value: ::Float?,
4004
- max_value: ::Float?
4005
- }?
4006
- }?
4007
- }?
4008
- }?
4009
- },
4010
- ]?
4011
- }?
4012
- }?,
4013
- summary_memory_strategy: {
4014
- name: ::String,
4015
- description: ::String?,
4016
- namespaces: Array[::String]?,
4017
- namespace_templates: Array[::String]?,
4018
- memory_record_schema: {
4019
- metadata_schema: Array[
4020
- {
4021
- key: ::String,
4022
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4023
- extraction_config: {
4024
- llm_extraction_config: {
4025
- llm_extraction_instruction: ::String?,
4026
- definition: ::String,
4027
- validation: {
4028
- string_validation: {
4029
- allowed_values: Array[::String]
4030
- }?,
4031
- string_list_validation: {
4032
- allowed_values: Array[::String]?,
4033
- max_items: ::Integer?
4034
- }?,
4035
- number_validation: {
4036
- min_value: ::Float?,
4037
- max_value: ::Float?
4038
- }?
4039
- }?
4040
- }?
4041
- }?
4042
- },
4043
- ]?
4044
- }?
4045
- }?,
4046
- user_preference_memory_strategy: {
4047
- name: ::String,
4048
- description: ::String?,
4049
- namespaces: Array[::String]?,
4050
- namespace_templates: Array[::String]?,
4051
- memory_record_schema: {
4052
- metadata_schema: Array[
4053
- {
4054
- key: ::String,
4055
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4056
- extraction_config: {
4057
- llm_extraction_config: {
4058
- llm_extraction_instruction: ::String?,
4059
- definition: ::String,
4060
- validation: {
4061
- string_validation: {
4062
- allowed_values: Array[::String]
4063
- }?,
4064
- string_list_validation: {
4065
- allowed_values: Array[::String]?,
4066
- max_items: ::Integer?
4067
- }?,
4068
- number_validation: {
4069
- min_value: ::Float?,
4070
- max_value: ::Float?
4071
- }?
4072
- }?
4073
- }?
4074
- }?
4075
- },
4076
- ]?
4077
- }?
4078
- }?,
4079
- custom_memory_strategy: {
4080
- name: ::String,
4081
- description: ::String?,
4082
- namespaces: Array[::String]?,
4083
- namespace_templates: Array[::String]?,
4084
- configuration: {
4085
- semantic_override: {
4086
- extraction: {
4087
- append_to_prompt: ::String,
4088
- model_id: ::String
4089
- }?,
4090
- consolidation: {
4091
- append_to_prompt: ::String,
4092
- model_id: ::String
4093
- }?
4094
- }?,
4095
- summary_override: {
4096
- consolidation: {
4097
- append_to_prompt: ::String,
4098
- model_id: ::String
4099
- }?
4100
- }?,
4101
- user_preference_override: {
4102
- extraction: {
4103
- append_to_prompt: ::String,
4104
- model_id: ::String
4105
- }?,
4106
- consolidation: {
4107
- append_to_prompt: ::String,
4108
- model_id: ::String
4109
- }?
4110
- }?,
4111
- episodic_override: {
4112
- extraction: {
4113
- append_to_prompt: ::String,
4114
- model_id: ::String
4115
- }?,
4116
- consolidation: {
4117
- append_to_prompt: ::String,
4118
- model_id: ::String
4119
- }?,
4120
- reflection: {
4121
- append_to_prompt: ::String,
4122
- model_id: ::String,
4123
- namespaces: Array[::String]?,
4124
- namespace_templates: Array[::String]?,
4125
- memory_record_schema: {
4126
- metadata_schema: Array[
4127
- {
4128
- key: ::String,
4129
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4130
- extraction_config: {
4131
- llm_extraction_config: {
4132
- llm_extraction_instruction: ::String?,
4133
- definition: ::String,
4134
- validation: {
4135
- string_validation: {
4136
- allowed_values: Array[::String]
4137
- }?,
4138
- string_list_validation: {
4139
- allowed_values: Array[::String]?,
4140
- max_items: ::Integer?
4141
- }?,
4142
- number_validation: {
4143
- min_value: ::Float?,
4144
- max_value: ::Float?
4145
- }?
4146
- }?
4147
- }?
4148
- }?
4149
- },
4150
- ]?
4151
- }?
4152
- }?
4153
- }?,
4154
- self_managed_configuration: {
4155
- trigger_conditions: Array[
4156
- {
4157
- message_based_trigger: {
4158
- message_count: ::Integer?
4159
- }?,
4160
- token_based_trigger: {
4161
- token_count: ::Integer?
4162
- }?,
4163
- time_based_trigger: {
4164
- idle_session_timeout: ::Integer?
4165
- }?
4166
- },
4167
- ]?,
4168
- invocation_configuration: {
4169
- topic_arn: ::String,
4170
- payload_delivery_bucket_name: ::String
4171
- },
4172
- historical_context_window_size: ::Integer?
4173
- }?
4174
- }?,
4175
- memory_record_schema: {
4176
- metadata_schema: Array[
4177
- {
4178
- key: ::String,
4179
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4180
- extraction_config: {
4181
- llm_extraction_config: {
4182
- llm_extraction_instruction: ::String?,
4183
- definition: ::String,
4184
- validation: {
4185
- string_validation: {
4186
- allowed_values: Array[::String]
4187
- }?,
4188
- string_list_validation: {
4189
- allowed_values: Array[::String]?,
4190
- max_items: ::Integer?
4191
- }?,
4192
- number_validation: {
4193
- min_value: ::Float?,
4194
- max_value: ::Float?
4195
- }?
4196
- }?
4197
- }?
4198
- }?
4199
- },
4200
- ]?
4201
- }?
4202
- }?,
4203
- episodic_memory_strategy: {
4204
- name: ::String,
4205
- description: ::String?,
4206
- namespaces: Array[::String]?,
4207
- namespace_templates: Array[::String]?,
4208
- reflection_configuration: {
4209
- namespaces: Array[::String]?,
4210
- namespace_templates: Array[::String]?,
4211
- memory_record_schema: {
4212
- metadata_schema: Array[
4213
- {
4214
- key: ::String,
4215
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4216
- extraction_config: {
4217
- llm_extraction_config: {
4218
- llm_extraction_instruction: ::String?,
4219
- definition: ::String,
4220
- validation: {
4221
- string_validation: {
4222
- allowed_values: Array[::String]
4223
- }?,
4224
- string_list_validation: {
4225
- allowed_values: Array[::String]?,
4226
- max_items: ::Integer?
4227
- }?,
4228
- number_validation: {
4229
- min_value: ::Float?,
4230
- max_value: ::Float?
4231
- }?
4232
- }?
4233
- }?
4234
- }?
4235
- },
4236
- ]?
4237
- }?
4238
- }?,
4239
- memory_record_schema: {
4240
- metadata_schema: Array[
4241
- {
4242
- key: ::String,
4243
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4244
- extraction_config: {
4245
- llm_extraction_config: {
4246
- llm_extraction_instruction: ::String?,
4247
- definition: ::String,
4248
- validation: {
4249
- string_validation: {
4250
- allowed_values: Array[::String]
4251
- }?,
4252
- string_list_validation: {
4253
- allowed_values: Array[::String]?,
4254
- max_items: ::Integer?
4255
- }?,
4256
- number_validation: {
4257
- min_value: ::Float?,
4258
- max_value: ::Float?
4259
- }?
4260
- }?
4261
- }?
4262
- }?
4263
- },
4264
- ]?
4265
- }?
4266
- }?
4267
- },
2364
+ Params::memory_strategy_input
4268
2365
  ]?,
4269
2366
  modify_memory_strategies: Array[
4270
2367
  {
@@ -4310,86 +2407,14 @@ module Aws
4310
2407
  }?
4311
2408
  }?,
4312
2409
  reflection: {
4313
- episodic_reflection_configuration: {
4314
- namespaces: Array[::String]?,
4315
- namespace_templates: Array[::String]?,
4316
- memory_record_schema: {
4317
- metadata_schema: Array[
4318
- {
4319
- key: ::String,
4320
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4321
- extraction_config: {
4322
- llm_extraction_config: {
4323
- llm_extraction_instruction: ::String?,
4324
- definition: ::String,
4325
- validation: {
4326
- string_validation: {
4327
- allowed_values: Array[::String]
4328
- }?,
4329
- string_list_validation: {
4330
- allowed_values: Array[::String]?,
4331
- max_items: ::Integer?
4332
- }?,
4333
- number_validation: {
4334
- min_value: ::Float?,
4335
- max_value: ::Float?
4336
- }?
4337
- }?
4338
- }?
4339
- }?
4340
- },
4341
- ]?
4342
- }?
4343
- }?,
2410
+ episodic_reflection_configuration: Params::episodic_reflection_configuration_input?,
4344
2411
  custom_reflection_configuration: {
4345
- episodic_reflection_override: {
4346
- append_to_prompt: ::String,
4347
- model_id: ::String,
4348
- namespaces: Array[::String]?,
4349
- namespace_templates: Array[::String]?,
4350
- memory_record_schema: {
4351
- metadata_schema: Array[
4352
- {
4353
- key: ::String,
4354
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4355
- extraction_config: {
4356
- llm_extraction_config: {
4357
- llm_extraction_instruction: ::String?,
4358
- definition: ::String,
4359
- validation: {
4360
- string_validation: {
4361
- allowed_values: Array[::String]
4362
- }?,
4363
- string_list_validation: {
4364
- allowed_values: Array[::String]?,
4365
- max_items: ::Integer?
4366
- }?,
4367
- number_validation: {
4368
- min_value: ::Float?,
4369
- max_value: ::Float?
4370
- }?
4371
- }?
4372
- }?
4373
- }?
4374
- },
4375
- ]?
4376
- }?
4377
- }?
2412
+ episodic_reflection_override: Params::episodic_override_reflection_configuration_input?
4378
2413
  }?
4379
2414
  }?,
4380
2415
  self_managed_configuration: {
4381
2416
  trigger_conditions: Array[
4382
- {
4383
- message_based_trigger: {
4384
- message_count: ::Integer?
4385
- }?,
4386
- token_based_trigger: {
4387
- token_count: ::Integer?
4388
- }?,
4389
- time_based_trigger: {
4390
- idle_session_timeout: ::Integer?
4391
- }?
4392
- },
2417
+ Params::trigger_condition_input
4393
2418
  ]?,
4394
2419
  invocation_configuration: {
4395
2420
  topic_arn: ::String?,
@@ -4398,62 +2423,22 @@ module Aws
4398
2423
  historical_context_window_size: ::Integer?
4399
2424
  }?
4400
2425
  }?,
4401
- memory_record_schema: {
4402
- metadata_schema: Array[
4403
- {
4404
- key: ::String,
4405
- type: ("STRING" | "STRINGLIST" | "NUMBER")?,
4406
- extraction_config: {
4407
- llm_extraction_config: {
4408
- llm_extraction_instruction: ::String?,
4409
- definition: ::String,
4410
- validation: {
4411
- string_validation: {
4412
- allowed_values: Array[::String]
4413
- }?,
4414
- string_list_validation: {
4415
- allowed_values: Array[::String]?,
4416
- max_items: ::Integer?
4417
- }?,
4418
- number_validation: {
4419
- min_value: ::Float?,
4420
- max_value: ::Float?
4421
- }?
4422
- }?
4423
- }?
4424
- }?
4425
- },
4426
- ]?
4427
- }?
4428
- },
2426
+ memory_record_schema: Params::memory_record_schema?
2427
+ }
4429
2428
  ]?,
4430
2429
  delete_memory_strategies: Array[
4431
2430
  {
4432
2431
  memory_strategy_id: ::String
4433
- },
2432
+ }
4434
2433
  ]?
4435
2434
  },
4436
2435
  ?add_indexed_keys: Array[
4437
2436
  {
4438
2437
  key: ::String,
4439
2438
  type: ("STRING" | "STRINGLIST" | "NUMBER")
4440
- },
2439
+ }
4441
2440
  ],
4442
- ?stream_delivery_resources: {
4443
- resources: Array[
4444
- {
4445
- kinesis: {
4446
- data_stream_arn: ::String,
4447
- content_configurations: Array[
4448
- {
4449
- type: ("MEMORY_RECORDS"),
4450
- level: ("METADATA_ONLY" | "FULL_CONTENT")?
4451
- },
4452
- ]
4453
- }?
4454
- },
4455
- ]
4456
- }
2441
+ ?stream_delivery_resources: Params::stream_delivery_resources
4457
2442
  ) -> _UpdateMemoryResponseSuccess
4458
2443
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemoryResponseSuccess
4459
2444
 
@@ -4473,97 +2458,7 @@ module Aws
4473
2458
  def update_oauth_2_credential_provider: (
4474
2459
  name: ::String,
4475
2460
  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"),
4476
- oauth2_provider_config_input: {
4477
- custom_oauth_2_provider_config: {
4478
- oauth_discovery: {
4479
- discovery_url: ::String?,
4480
- authorization_server_metadata: {
4481
- issuer: ::String,
4482
- authorization_endpoint: ::String,
4483
- token_endpoint: ::String,
4484
- response_types: Array[::String]?,
4485
- token_endpoint_auth_methods: Array[::String]?
4486
- }?
4487
- },
4488
- client_id: ::String?,
4489
- client_secret: ::String?,
4490
- private_endpoint: {
4491
- self_managed_lattice_resource: {
4492
- resource_configuration_identifier: ::String?
4493
- }?,
4494
- managed_vpc_resource: {
4495
- vpc_identifier: ::String,
4496
- subnet_ids: Array[::String],
4497
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
4498
- security_group_ids: Array[::String]?,
4499
- tags: Hash[::String, ::String]?,
4500
- routing_domain: ::String?
4501
- }?
4502
- }?,
4503
- private_endpoint_overrides: Array[
4504
- {
4505
- domain: ::String,
4506
- private_endpoint: {
4507
- self_managed_lattice_resource: {
4508
- resource_configuration_identifier: ::String?
4509
- }?,
4510
- managed_vpc_resource: {
4511
- vpc_identifier: ::String,
4512
- subnet_ids: Array[::String],
4513
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
4514
- security_group_ids: Array[::String]?,
4515
- tags: Hash[::String, ::String]?,
4516
- routing_domain: ::String?
4517
- }?
4518
- }
4519
- },
4520
- ]?,
4521
- on_behalf_of_token_exchange_config: {
4522
- grant_type: ("TOKEN_EXCHANGE" | "JWT_AUTHORIZATION_GRANT"),
4523
- token_exchange_grant_type_config: {
4524
- actor_token_content: ("NONE" | "M2M" | "AWS_IAM_ID_TOKEN_JWT"),
4525
- actor_token_scopes: Array[::String]?
4526
- }?
4527
- }?,
4528
- client_authentication_method: ("CLIENT_SECRET_BASIC" | "CLIENT_SECRET_POST" | "AWS_IAM_ID_TOKEN_JWT")?
4529
- }?,
4530
- google_oauth_2_provider_config: {
4531
- client_id: ::String,
4532
- client_secret: ::String
4533
- }?,
4534
- github_oauth_2_provider_config: {
4535
- client_id: ::String,
4536
- client_secret: ::String
4537
- }?,
4538
- slack_oauth_2_provider_config: {
4539
- client_id: ::String,
4540
- client_secret: ::String
4541
- }?,
4542
- salesforce_oauth_2_provider_config: {
4543
- client_id: ::String,
4544
- client_secret: ::String
4545
- }?,
4546
- microsoft_oauth_2_provider_config: {
4547
- client_id: ::String,
4548
- client_secret: ::String,
4549
- tenant_id: ::String?
4550
- }?,
4551
- atlassian_oauth_2_provider_config: {
4552
- client_id: ::String,
4553
- client_secret: ::String
4554
- }?,
4555
- linkedin_oauth_2_provider_config: {
4556
- client_id: ::String,
4557
- client_secret: ::String
4558
- }?,
4559
- included_oauth_2_provider_config: {
4560
- client_id: ::String,
4561
- client_secret: ::String,
4562
- issuer: ::String?,
4563
- authorization_endpoint: ::String?,
4564
- token_endpoint: ::String?
4565
- }?
4566
- }
2461
+ oauth2_provider_config_input: Params::oauth_2_provider_config_input
4567
2462
  ) -> _UpdateOauth2CredentialProviderResponseSuccess
4568
2463
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOauth2CredentialProviderResponseSuccess
4569
2464
 
@@ -4581,25 +2476,7 @@ module Aws
4581
2476
  ?client_token: ::String,
4582
2477
  online_evaluation_config_id: ::String,
4583
2478
  ?description: ::String,
4584
- ?rule: {
4585
- sampling_config: {
4586
- sampling_percentage: ::Float
4587
- },
4588
- filters: Array[
4589
- {
4590
- key: ::String,
4591
- operator: ("Equals" | "NotEquals" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Contains" | "NotContains"),
4592
- value: {
4593
- string_value: ::String?,
4594
- double_value: ::Float?,
4595
- boolean_value: bool?
4596
- }
4597
- },
4598
- ]?,
4599
- session_config: {
4600
- session_timeout_minutes: ::Integer
4601
- }?
4602
- },
2479
+ ?rule: Params::rule,
4603
2480
  ?data_source_config: {
4604
2481
  cloud_watch_logs: {
4605
2482
  log_group_names: Array[::String],
@@ -4609,7 +2486,7 @@ module Aws
4609
2486
  ?evaluators: Array[
4610
2487
  {
4611
2488
  evaluator_id: ::String?
4612
- },
2489
+ }
4613
2490
  ],
4614
2491
  ?evaluation_execution_role_arn: ::String,
4615
2492
  ?execution_status: ("ENABLED" | "DISABLED")
@@ -4633,14 +2510,7 @@ module Aws
4633
2510
  ?description: ::String,
4634
2511
  ?type: ("CoinbaseCDP" | "StripePrivy"),
4635
2512
  ?credential_provider_configurations: Array[
4636
- {
4637
- coinbase_cdp: {
4638
- credential_provider_arn: ::String
4639
- }?,
4640
- stripe_privy: {
4641
- credential_provider_arn: ::String
4642
- }?
4643
- },
2513
+ Params::credentials_provider_configuration
4644
2514
  ],
4645
2515
  ?client_token: ::String
4646
2516
  ) -> _UpdatePaymentConnectorResponseSuccess
@@ -4659,19 +2529,7 @@ module Aws
4659
2529
  def update_payment_credential_provider: (
4660
2530
  name: ::String,
4661
2531
  credential_provider_vendor: ("CoinbaseCDP" | "StripePrivy"),
4662
- provider_configuration_input: {
4663
- coinbase_cdp_configuration: {
4664
- api_key_id: ::String,
4665
- api_key_secret: ::String,
4666
- wallet_secret: ::String
4667
- }?,
4668
- stripe_privy_configuration: {
4669
- app_id: ::String,
4670
- app_secret: ::String,
4671
- authorization_private_key: ::String,
4672
- authorization_id: ::String
4673
- }?
4674
- }
2532
+ provider_configuration_input: Params::payment_provider_configuration_input
4675
2533
  ) -> _UpdatePaymentCredentialProviderResponseSuccess
4676
2534
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentCredentialProviderResponseSuccess
4677
2535
 
@@ -4691,58 +2549,7 @@ module Aws
4691
2549
  payment_manager_id: ::String,
4692
2550
  ?description: ::String,
4693
2551
  ?authorizer_type: ("CUSTOM_JWT" | "AWS_IAM"),
4694
- ?authorizer_configuration: {
4695
- custom_jwt_authorizer: {
4696
- discovery_url: ::String,
4697
- allowed_audience: Array[::String]?,
4698
- allowed_clients: Array[::String]?,
4699
- allowed_scopes: Array[::String]?,
4700
- custom_claims: Array[
4701
- {
4702
- inbound_token_claim_name: ::String,
4703
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
4704
- authorizing_claim_match_value: {
4705
- claim_match_value: {
4706
- match_value_string: ::String?,
4707
- match_value_string_list: Array[::String]?
4708
- },
4709
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
4710
- }
4711
- },
4712
- ]?,
4713
- private_endpoint: {
4714
- self_managed_lattice_resource: {
4715
- resource_configuration_identifier: ::String?
4716
- }?,
4717
- managed_vpc_resource: {
4718
- vpc_identifier: ::String,
4719
- subnet_ids: Array[::String],
4720
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
4721
- security_group_ids: Array[::String]?,
4722
- tags: Hash[::String, ::String]?,
4723
- routing_domain: ::String?
4724
- }?
4725
- }?,
4726
- private_endpoint_overrides: Array[
4727
- {
4728
- domain: ::String,
4729
- private_endpoint: {
4730
- self_managed_lattice_resource: {
4731
- resource_configuration_identifier: ::String?
4732
- }?,
4733
- managed_vpc_resource: {
4734
- vpc_identifier: ::String,
4735
- subnet_ids: Array[::String],
4736
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
4737
- security_group_ids: Array[::String]?,
4738
- tags: Hash[::String, ::String]?,
4739
- routing_domain: ::String?
4740
- }?
4741
- }
4742
- },
4743
- ]?
4744
- }?
4745
- },
2552
+ ?authorizer_configuration: Params::authorizer_configuration,
4746
2553
  ?role_arn: ::String,
4747
2554
  ?client_token: ::String
4748
2555
  ) -> _UpdatePaymentManagerResponseSuccess
@@ -4768,15 +2575,7 @@ module Aws
4768
2575
  ?description: {
4769
2576
  optional_value: ::String?
4770
2577
  },
4771
- ?definition: {
4772
- cedar: {
4773
- statement: ::String
4774
- }?,
4775
- policy_generation: {
4776
- policy_generation_id: ::String,
4777
- policy_generation_asset_id: ::String
4778
- }?
4779
- },
2578
+ ?definition: Params::policy_definition,
4780
2579
  ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
4781
2580
  ) -> _UpdatePolicyResponseSuccess
4782
2581
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePolicyResponseSuccess
@@ -4823,60 +2622,7 @@ module Aws
4823
2622
  ?description: {
4824
2623
  optional_value: ::String?
4825
2624
  },
4826
- ?authorizer_configuration: {
4827
- optional_value: {
4828
- custom_jwt_authorizer: {
4829
- discovery_url: ::String,
4830
- allowed_audience: Array[::String]?,
4831
- allowed_clients: Array[::String]?,
4832
- allowed_scopes: Array[::String]?,
4833
- custom_claims: Array[
4834
- {
4835
- inbound_token_claim_name: ::String,
4836
- inbound_token_claim_value_type: ("STRING" | "STRING_ARRAY"),
4837
- authorizing_claim_match_value: {
4838
- claim_match_value: {
4839
- match_value_string: ::String?,
4840
- match_value_string_list: Array[::String]?
4841
- },
4842
- claim_match_operator: ("EQUALS" | "CONTAINS" | "CONTAINS_ANY")
4843
- }
4844
- },
4845
- ]?,
4846
- private_endpoint: {
4847
- self_managed_lattice_resource: {
4848
- resource_configuration_identifier: ::String?
4849
- }?,
4850
- managed_vpc_resource: {
4851
- vpc_identifier: ::String,
4852
- subnet_ids: Array[::String],
4853
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
4854
- security_group_ids: Array[::String]?,
4855
- tags: Hash[::String, ::String]?,
4856
- routing_domain: ::String?
4857
- }?
4858
- }?,
4859
- private_endpoint_overrides: Array[
4860
- {
4861
- domain: ::String,
4862
- private_endpoint: {
4863
- self_managed_lattice_resource: {
4864
- resource_configuration_identifier: ::String?
4865
- }?,
4866
- managed_vpc_resource: {
4867
- vpc_identifier: ::String,
4868
- subnet_ids: Array[::String],
4869
- endpoint_ip_address_type: ("IPV4" | "IPV6"),
4870
- security_group_ids: Array[::String]?,
4871
- tags: Hash[::String, ::String]?,
4872
- routing_domain: ::String?
4873
- }?
4874
- }
4875
- },
4876
- ]?
4877
- }?
4878
- }?
4879
- },
2625
+ ?authorizer_configuration: Params::updated_authorizer_configuration,
4880
2626
  ?approval_configuration: {
4881
2627
  optional_value: {
4882
2628
  auto_approval: bool?
@@ -4964,29 +2710,7 @@ module Aws
4964
2710
  optional_value: ("URL")?
4965
2711
  },
4966
2712
  ?synchronization_configuration: {
4967
- optional_value: {
4968
- from_url: {
4969
- url: ::String,
4970
- credential_provider_configurations: Array[
4971
- {
4972
- credential_provider_type: ("OAUTH" | "IAM"),
4973
- credential_provider: {
4974
- oauth_credential_provider: {
4975
- provider_arn: ::String,
4976
- grant_type: ("CLIENT_CREDENTIALS")?,
4977
- scopes: Array[::String]?,
4978
- custom_parameters: Hash[::String, ::String]?
4979
- }?,
4980
- iam_credential_provider: {
4981
- role_arn: ::String?,
4982
- service: ::String?,
4983
- region: ::String?
4984
- }?
4985
- }
4986
- },
4987
- ]?
4988
- }?
4989
- }?
2713
+ optional_value: Params::synchronization_configuration?
4990
2714
  },
4991
2715
  ?trigger_synchronization: bool
4992
2716
  ) -> _UpdateRegistryRecordResponseSuccess