aws-sdk-bedrockagentcorecontrol 1.46.0 → 1.48.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
@@ -78,6 +78,23 @@ module Aws
78
78
  | (?Hash[Symbol, untyped]) -> instance
79
79
 
80
80
 
81
+ interface _AddDatasetExamplesResponseSuccess
82
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddDatasetExamplesResponse]
83
+ def dataset_arn: () -> ::String
84
+ def dataset_id: () -> ::String
85
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
86
+ def added_count: () -> ::Integer
87
+ def updated_at: () -> ::Time
88
+ def example_ids: () -> ::Array[::String]
89
+ end
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#add_dataset_examples-instance_method
91
+ def add_dataset_examples: (
92
+ dataset_id: ::String,
93
+ ?client_token: ::String,
94
+ source: Params::data_source_type
95
+ ) -> _AddDatasetExamplesResponseSuccess
96
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddDatasetExamplesResponseSuccess
97
+
81
98
  interface _CreateAgentRuntimeResponseSuccess
82
99
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateAgentRuntimeResponse]
83
100
  def agent_runtime_arn: () -> ::String
@@ -90,85 +107,12 @@ module Aws
90
107
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_agent_runtime-instance_method
91
108
  def create_agent_runtime: (
92
109
  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
- },
110
+ agent_runtime_artifact: Params::agent_runtime_artifact,
109
111
  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
- },
112
+ network_configuration: Params::network_configuration,
118
113
  ?client_token: ::String,
119
114
  ?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
- },
115
+ ?authorizer_configuration: Params::authorizer_configuration,
172
116
  ?request_header_configuration: {
173
117
  request_header_allowlist: Array[::String]?
174
118
  },
@@ -181,19 +125,7 @@ module Aws
181
125
  },
182
126
  ?environment_variables: Hash[::String, ::String],
183
127
  ?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
- },
128
+ Params::filesystem_configuration
197
129
  ],
198
130
  ?tags: Hash[::String, ::String]
199
131
  ) -> _CreateAgentRuntimeResponseSuccess
@@ -275,7 +207,7 @@ module Aws
275
207
  }?
276
208
  },
277
209
  type: ("MANAGED" | "RECOMMENDED")?
278
- },
210
+ }
279
211
  ],
280
212
  ?certificates: Array[
281
213
  {
@@ -284,7 +216,7 @@ module Aws
284
216
  secret_arn: ::String
285
217
  }?
286
218
  }
287
- },
219
+ }
288
220
  ],
289
221
  ?client_token: ::String,
290
222
  ?tags: Hash[::String, ::String]
@@ -334,7 +266,7 @@ module Aws
334
266
  secret_arn: ::String
335
267
  }?
336
268
  }
337
- },
269
+ }
338
270
  ],
339
271
  ?client_token: ::String,
340
272
  ?tags: Hash[::String, ::String]
@@ -367,6 +299,40 @@ module Aws
367
299
  ) -> _CreateConfigurationBundleResponseSuccess
368
300
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
369
301
 
302
+ interface _CreateDatasetResponseSuccess
303
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
304
+ def dataset_arn: () -> ::String
305
+ def dataset_id: () -> ::String
306
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
307
+ def created_at: () -> ::Time
308
+ end
309
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_dataset-instance_method
310
+ def create_dataset: (
311
+ ?client_token: ::String,
312
+ dataset_name: ::String,
313
+ ?description: ::String,
314
+ source: Params::data_source_type,
315
+ schema_type: ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1"),
316
+ ?kms_key_arn: ::String,
317
+ ?tags: Hash[::String, ::String]
318
+ ) -> _CreateDatasetResponseSuccess
319
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
320
+
321
+ interface _CreateDatasetVersionResponseSuccess
322
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetVersionResponse]
323
+ def dataset_arn: () -> ::String
324
+ def dataset_id: () -> ::String
325
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
326
+ def dataset_version: () -> ::String
327
+ def created_at: () -> ::Time
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_dataset_version-instance_method
330
+ def create_dataset_version: (
331
+ dataset_id: ::String,
332
+ ?client_token: ::String
333
+ ) -> _CreateDatasetVersionResponseSuccess
334
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetVersionResponseSuccess
335
+
370
336
  interface _CreateEvaluatorResponseSuccess
371
337
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluatorResponse]
372
338
  def evaluator_arn: () -> ::String
@@ -379,45 +345,7 @@ module Aws
379
345
  ?client_token: ::String,
380
346
  evaluator_name: ::String,
381
347
  ?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
- },
348
+ evaluator_config: Params::evaluator_config,
421
349
  level: ("TOOL_CALL" | "TRACE" | "SESSION"),
422
350
  ?kms_key_arn: ::String,
423
351
  ?tags: Hash[::String, ::String]
@@ -453,85 +381,12 @@ module Aws
453
381
  ?client_token: ::String,
454
382
  role_arn: ::String,
455
383
  ?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
- },
384
+ ?protocol_configuration: Params::gateway_protocol_configuration,
469
385
  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
- },
386
+ ?authorizer_configuration: Params::authorizer_configuration,
522
387
  ?kms_key_arn: ::String,
523
388
  ?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
- },
389
+ Params::gateway_interceptor_configuration
535
390
  ],
536
391
  ?policy_engine_configuration: {
537
392
  arn: ::String,
@@ -560,61 +415,10 @@ module Aws
560
415
  ?client_token: ::String,
561
416
  priority: ::Integer,
562
417
  ?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
- },
418
+ Params::condition
578
419
  ],
579
420
  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
- },
421
+ Params::action
618
422
  ],
619
423
  ?description: ::String
620
424
  ) -> _CreateGatewayRuleResponseSuccess
@@ -645,133 +449,16 @@ module Aws
645
449
  name: ::String,
646
450
  ?description: ::String,
647
451
  ?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
- },
452
+ target_configuration: Params::target_configuration,
733
453
  ?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
- },
454
+ Params::credential_provider_configuration
756
455
  ],
757
456
  ?metadata_configuration: {
758
457
  allowed_request_headers: Array[::String]?,
759
458
  allowed_query_parameters: Array[::String]?,
760
459
  allowed_response_headers: Array[::String]?
761
460
  },
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
- }
461
+ ?private_endpoint: Params::private_endpoint
775
462
  ) -> _CreateGatewayTargetResponseSuccess
776
463
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayTargetResponseSuccess
777
464
 
@@ -784,193 +471,31 @@ module Aws
784
471
  harness_name: ::String,
785
472
  ?client_token: ::String,
786
473
  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
- },
474
+ ?environment: Params::harness_environment_provider_request,
818
475
  ?environment_artifact: {
819
476
  container_configuration: {
820
477
  container_uri: ::String
821
478
  }?
822
479
  },
823
480
  ?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
- },
481
+ ?authorizer_configuration: Params::authorizer_configuration,
482
+ ?model: Params::harness_model_configuration,
899
483
  ?system_prompt: Array[
900
484
  {
901
485
  text: ::String?
902
- },
486
+ }
903
487
  ],
904
488
  ?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
- },
489
+ Params::harness_tool
942
490
  ],
943
491
  ?skills: Array[
944
492
  {
945
493
  path: ::String?
946
- },
494
+ }
947
495
  ],
948
496
  ?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
- },
497
+ ?memory: Params::harness_memory_configuration,
498
+ ?truncation: Params::harness_truncation_configuration,
974
499
  ?max_iterations: ::Integer,
975
500
  ?max_tokens: ::Integer,
976
501
  ?timeout_seconds: ::Integer,
@@ -991,317 +516,15 @@ module Aws
991
516
  ?memory_execution_role_arn: ::String,
992
517
  event_expiry_duration: ::Integer,
993
518
  ?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
- },
519
+ Params::memory_strategy_input
1283
520
  ],
1284
521
  ?indexed_keys: Array[
1285
522
  {
1286
523
  key: ::String,
1287
524
  type: ("STRING" | "STRINGLIST" | "NUMBER")
1288
- },
525
+ }
1289
526
  ],
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
- },
527
+ ?stream_delivery_resources: Params::stream_delivery_resources,
1305
528
  ?tags: Hash[::String, ::String]
1306
529
  ) -> _CreateMemoryResponseSuccess
1307
530
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemoryResponseSuccess
@@ -1319,97 +542,7 @@ module Aws
1319
542
  def create_oauth_2_credential_provider: (
1320
543
  name: ::String,
1321
544
  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
- },
545
+ oauth2_provider_config_input: Params::oauth_2_provider_config_input,
1413
546
  ?tags: Hash[::String, ::String]
1414
547
  ) -> _CreateOauth2CredentialProviderResponseSuccess
1415
548
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOauth2CredentialProviderResponseSuccess
@@ -1429,25 +562,7 @@ module Aws
1429
562
  ?client_token: ::String,
1430
563
  online_evaluation_config_name: ::String,
1431
564
  ?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
- },
565
+ rule: Params::rule,
1451
566
  data_source_config: {
1452
567
  cloud_watch_logs: {
1453
568
  log_group_names: Array[::String],
@@ -1457,7 +572,7 @@ module Aws
1457
572
  evaluators: Array[
1458
573
  {
1459
574
  evaluator_id: ::String?
1460
- },
575
+ }
1461
576
  ],
1462
577
  evaluation_execution_role_arn: ::String,
1463
578
  enable_on_create: bool,
@@ -1482,14 +597,7 @@ module Aws
1482
597
  ?description: ::String,
1483
598
  type: ("CoinbaseCDP" | "StripePrivy"),
1484
599
  credential_provider_configurations: Array[
1485
- {
1486
- coinbase_cdp: {
1487
- credential_provider_arn: ::String
1488
- }?,
1489
- stripe_privy: {
1490
- credential_provider_arn: ::String
1491
- }?
1492
- },
600
+ Params::credentials_provider_configuration
1493
601
  ],
1494
602
  ?client_token: ::String
1495
603
  ) -> _CreatePaymentConnectorResponseSuccess
@@ -1506,19 +614,7 @@ module Aws
1506
614
  def create_payment_credential_provider: (
1507
615
  name: ::String,
1508
616
  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
- },
617
+ provider_configuration_input: Params::payment_provider_configuration_input,
1522
618
  ?tags: Hash[::String, ::String]
1523
619
  ) -> _CreatePaymentCredentialProviderResponseSuccess
1524
620
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePaymentCredentialProviderResponseSuccess
@@ -1541,58 +637,7 @@ module Aws
1541
637
  name: ::String,
1542
638
  ?description: ::String,
1543
639
  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
- },
640
+ ?authorizer_configuration: Params::authorizer_configuration,
1596
641
  role_arn: ::String,
1597
642
  ?client_token: ::String,
1598
643
  ?tags: Hash[::String, ::String]
@@ -1615,15 +660,7 @@ module Aws
1615
660
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_policy-instance_method
1616
661
  def create_policy: (
1617
662
  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
- },
663
+ definition: Params::policy_definition,
1627
664
  ?description: ::String,
1628
665
  ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS"),
1629
666
  policy_engine_id: ::String,
@@ -1662,58 +699,7 @@ module Aws
1662
699
  name: ::String,
1663
700
  ?description: ::String,
1664
701
  ?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
- },
702
+ ?authorizer_configuration: Params::authorizer_configuration,
1717
703
  ?client_token: ::String,
1718
704
  ?approval_configuration: {
1719
705
  auto_approval: bool?
@@ -1764,29 +750,7 @@ module Aws
1764
750
  },
1765
751
  ?record_version: ::String,
1766
752
  ?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
- },
753
+ ?synchronization_configuration: Params::synchronization_configuration,
1790
754
  ?client_token: ::String
1791
755
  ) -> _CreateRegistryRecordResponseSuccess
1792
756
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRegistryRecordResponseSuccess
@@ -1892,6 +856,37 @@ module Aws
1892
856
  ) -> _DeleteConfigurationBundleResponseSuccess
1893
857
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationBundleResponseSuccess
1894
858
 
859
+ interface _DeleteDatasetResponseSuccess
860
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatasetResponse]
861
+ def dataset_arn: () -> ::String
862
+ def dataset_id: () -> ::String
863
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
864
+ def dataset_version: () -> ::String
865
+ def updated_at: () -> ::Time
866
+ end
867
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_dataset-instance_method
868
+ def delete_dataset: (
869
+ dataset_id: ::String,
870
+ ?dataset_version: ::String
871
+ ) -> _DeleteDatasetResponseSuccess
872
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDatasetResponseSuccess
873
+
874
+ interface _DeleteDatasetExamplesResponseSuccess
875
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatasetExamplesResponse]
876
+ def dataset_arn: () -> ::String
877
+ def dataset_id: () -> ::String
878
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
879
+ def deleted_count: () -> ::Integer
880
+ def updated_at: () -> ::Time
881
+ end
882
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_dataset_examples-instance_method
883
+ def delete_dataset_examples: (
884
+ dataset_id: ::String,
885
+ ?client_token: ::String,
886
+ example_ids: Array[::String]
887
+ ) -> _DeleteDatasetExamplesResponseSuccess
888
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDatasetExamplesResponseSuccess
889
+
1895
890
  interface _DeleteEvaluatorResponseSuccess
1896
891
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEvaluatorResponse]
1897
892
  def evaluator_arn: () -> ::String
@@ -2261,6 +1256,32 @@ module Aws
2261
1256
  ) -> _GetConfigurationBundleVersionResponseSuccess
2262
1257
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationBundleVersionResponseSuccess
2263
1258
 
1259
+ interface _GetDatasetResponseSuccess
1260
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDatasetResponse]
1261
+ def dataset_arn: () -> ::String
1262
+ def dataset_id: () -> ::String
1263
+ def dataset_version: () -> ::String
1264
+ def dataset_name: () -> ::String
1265
+ def description: () -> ::String
1266
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1267
+ def draft_status: () -> ("MODIFIED" | "UNMODIFIED")
1268
+ def failure_reason: () -> ::String
1269
+ def schema_type: () -> ("AGENTCORE_EVALUATION_PREDEFINED_V1" | "AGENTCORE_EVALUATION_SIMULATED_V1")
1270
+ def kms_key_arn: () -> ::String
1271
+ def example_count: () -> ::Integer
1272
+ def download_url: () -> ::String
1273
+ def download_url_expires_at: () -> ::Time
1274
+ def created_at: () -> ::Time
1275
+ def updated_at: () -> ::Time
1276
+ def tags: () -> ::Hash[::String, ::String]
1277
+ end
1278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_dataset-instance_method
1279
+ def get_dataset: (
1280
+ dataset_id: ::String,
1281
+ ?dataset_version: ::String
1282
+ ) -> _GetDatasetResponseSuccess
1283
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDatasetResponseSuccess
1284
+
2264
1285
  interface _GetEvaluatorResponseSuccess
2265
1286
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEvaluatorResponse]
2266
1287
  def evaluator_arn: () -> ::String
@@ -2783,6 +1804,48 @@ module Aws
2783
1804
  ) -> _ListConfigurationBundlesResponseSuccess
2784
1805
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationBundlesResponseSuccess
2785
1806
 
1807
+ interface _ListDatasetExamplesResponseSuccess
1808
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetExamplesResponse]
1809
+ def dataset_arn: () -> ::String
1810
+ def dataset_id: () -> ::String
1811
+ def dataset_version: () -> ::String
1812
+ def examples: () -> ::Array[untyped]
1813
+ def next_token: () -> ::String
1814
+ end
1815
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_dataset_examples-instance_method
1816
+ def list_dataset_examples: (
1817
+ dataset_id: ::String,
1818
+ ?dataset_version: ::String,
1819
+ ?max_results: ::Integer,
1820
+ ?next_token: ::String
1821
+ ) -> _ListDatasetExamplesResponseSuccess
1822
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetExamplesResponseSuccess
1823
+
1824
+ interface _ListDatasetVersionsResponseSuccess
1825
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetVersionsResponse]
1826
+ def versions: () -> ::Array[Types::DatasetVersionSummary]
1827
+ def next_token: () -> ::String
1828
+ end
1829
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_dataset_versions-instance_method
1830
+ def list_dataset_versions: (
1831
+ dataset_id: ::String,
1832
+ ?next_token: ::String,
1833
+ ?max_results: ::Integer
1834
+ ) -> _ListDatasetVersionsResponseSuccess
1835
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetVersionsResponseSuccess
1836
+
1837
+ interface _ListDatasetsResponseSuccess
1838
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetsResponse]
1839
+ def datasets: () -> ::Array[Types::DatasetSummary]
1840
+ def next_token: () -> ::String
1841
+ end
1842
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_datasets-instance_method
1843
+ def list_datasets: (
1844
+ ?next_token: ::String,
1845
+ ?max_results: ::Integer
1846
+ ) -> _ListDatasetsResponseSuccess
1847
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetsResponseSuccess
1848
+
2786
1849
  interface _ListEvaluatorsResponseSuccess
2787
1850
  include ::Seahorse::Client::_ResponseSuccess[Types::ListEvaluatorsResponse]
2788
1851
  def evaluators: () -> ::Array[Types::EvaluatorSummary]
@@ -3175,84 +2238,11 @@ module Aws
3175
2238
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_agent_runtime-instance_method
3176
2239
  def update_agent_runtime: (
3177
2240
  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
- },
2241
+ agent_runtime_artifact: Params::agent_runtime_artifact,
3194
2242
  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
- },
2243
+ network_configuration: Params::network_configuration,
3203
2244
  ?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
- },
2245
+ ?authorizer_configuration: Params::authorizer_configuration,
3256
2246
  ?request_header_configuration: {
3257
2247
  request_header_allowlist: Array[::String]?
3258
2248
  },
@@ -3268,19 +2258,7 @@ module Aws
3268
2258
  },
3269
2259
  ?environment_variables: Hash[::String, ::String],
3270
2260
  ?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
- },
2261
+ Params::filesystem_configuration
3284
2262
  ],
3285
2263
  ?client_token: ::String
3286
2264
  ) -> _UpdateAgentRuntimeResponseSuccess
@@ -3348,6 +2326,39 @@ module Aws
3348
2326
  ) -> _UpdateConfigurationBundleResponseSuccess
3349
2327
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
3350
2328
 
2329
+ interface _UpdateDatasetResponseSuccess
2330
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetResponse]
2331
+ def dataset_arn: () -> ::String
2332
+ def dataset_id: () -> ::String
2333
+ def updated_at: () -> ::Time
2334
+ end
2335
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_dataset-instance_method
2336
+ def update_dataset: (
2337
+ dataset_id: ::String,
2338
+ ?client_token: ::String,
2339
+ ?description: ::String
2340
+ ) -> _UpdateDatasetResponseSuccess
2341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetResponseSuccess
2342
+
2343
+ interface _UpdateDatasetExamplesResponseSuccess
2344
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetExamplesResponse]
2345
+ def dataset_arn: () -> ::String
2346
+ def dataset_id: () -> ::String
2347
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2348
+ def updated_count: () -> ::Integer
2349
+ def updated_at: () -> ::Time
2350
+ end
2351
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_dataset_examples-instance_method
2352
+ def update_dataset_examples: (
2353
+ dataset_id: ::String,
2354
+ ?client_token: ::String,
2355
+ examples: Array[
2356
+ {
2357
+ }
2358
+ ]
2359
+ ) -> _UpdateDatasetExamplesResponseSuccess
2360
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetExamplesResponseSuccess
2361
+
3351
2362
  interface _UpdateEvaluatorResponseSuccess
3352
2363
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEvaluatorResponse]
3353
2364
  def evaluator_arn: () -> ::String
@@ -3360,45 +2371,7 @@ module Aws
3360
2371
  ?client_token: ::String,
3361
2372
  evaluator_id: ::String,
3362
2373
  ?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
- },
2374
+ ?evaluator_config: Params::evaluator_config,
3402
2375
  ?level: ("TOOL_CALL" | "TRACE" | "SESSION"),
3403
2376
  ?kms_key_arn: ::String
3404
2377
  ) -> _UpdateEvaluatorResponseSuccess
@@ -3433,85 +2406,12 @@ module Aws
3433
2406
  ?description: ::String,
3434
2407
  role_arn: ::String,
3435
2408
  ?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
- },
2409
+ ?protocol_configuration: Params::gateway_protocol_configuration,
3449
2410
  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
- },
2411
+ ?authorizer_configuration: Params::authorizer_configuration,
3502
2412
  ?kms_key_arn: ::String,
3503
2413
  ?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
- },
2414
+ Params::gateway_interceptor_configuration
3515
2415
  ],
3516
2416
  ?policy_engine_configuration: {
3517
2417
  arn: ::String,
@@ -3540,61 +2440,10 @@ module Aws
3540
2440
  rule_id: ::String,
3541
2441
  ?priority: ::Integer,
3542
2442
  ?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
- },
2443
+ Params::condition
3558
2444
  ],
3559
2445
  ?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
- },
2446
+ Params::action
3598
2447
  ],
3599
2448
  ?description: ::String
3600
2449
  ) -> _UpdateGatewayRuleResponseSuccess
@@ -3625,133 +2474,16 @@ module Aws
3625
2474
  target_id: ::String,
3626
2475
  name: ::String,
3627
2476
  ?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
- },
2477
+ target_configuration: Params::target_configuration,
3713
2478
  ?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
- },
2479
+ Params::credential_provider_configuration
3736
2480
  ],
3737
2481
  ?metadata_configuration: {
3738
2482
  allowed_request_headers: Array[::String]?,
3739
2483
  allowed_query_parameters: Array[::String]?,
3740
2484
  allowed_response_headers: Array[::String]?
3741
2485
  },
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
- }
2486
+ ?private_endpoint: Params::private_endpoint
3755
2487
  ) -> _UpdateGatewayTargetResponseSuccess
3756
2488
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayTargetResponseSuccess
3757
2489
 
@@ -3764,37 +2496,7 @@ module Aws
3764
2496
  harness_id: ::String,
3765
2497
  ?client_token: ::String,
3766
2498
  ?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
- },
2499
+ ?environment: Params::harness_environment_provider_request,
3798
2500
  ?environment_artifact: {
3799
2501
  optional_value: {
3800
2502
  container_configuration: {
@@ -3803,160 +2505,26 @@ module Aws
3803
2505
  }?
3804
2506
  },
3805
2507
  ?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
- },
2508
+ ?authorizer_configuration: Params::updated_authorizer_configuration,
2509
+ ?model: Params::harness_model_configuration,
3883
2510
  ?system_prompt: Array[
3884
2511
  {
3885
2512
  text: ::String?
3886
- },
2513
+ }
3887
2514
  ],
3888
2515
  ?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
- },
2516
+ Params::harness_tool
3926
2517
  ],
3927
2518
  ?skills: Array[
3928
2519
  {
3929
2520
  path: ::String?
3930
- },
2521
+ }
3931
2522
  ],
3932
2523
  ?allowed_tools: Array[::String],
3933
2524
  ?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
- }?
2525
+ optional_value: Params::harness_memory_configuration?
3959
2526
  },
2527
+ ?truncation: Params::harness_truncation_configuration,
3960
2528
  ?max_iterations: ::Integer,
3961
2529
  ?max_tokens: ::Integer,
3962
2530
  ?timeout_seconds: ::Integer
@@ -3976,295 +2544,7 @@ module Aws
3976
2544
  ?memory_execution_role_arn: ::String,
3977
2545
  ?memory_strategies: {
3978
2546
  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
- },
2547
+ Params::memory_strategy_input
4268
2548
  ]?,
4269
2549
  modify_memory_strategies: Array[
4270
2550
  {
@@ -4310,86 +2590,14 @@ module Aws
4310
2590
  }?
4311
2591
  }?,
4312
2592
  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
- }?,
2593
+ episodic_reflection_configuration: Params::episodic_reflection_configuration_input?,
4344
2594
  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
- }?
2595
+ episodic_reflection_override: Params::episodic_override_reflection_configuration_input?
4378
2596
  }?
4379
2597
  }?,
4380
2598
  self_managed_configuration: {
4381
2599
  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
- },
2600
+ Params::trigger_condition_input
4393
2601
  ]?,
4394
2602
  invocation_configuration: {
4395
2603
  topic_arn: ::String?,
@@ -4398,62 +2606,22 @@ module Aws
4398
2606
  historical_context_window_size: ::Integer?
4399
2607
  }?
4400
2608
  }?,
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
- },
2609
+ memory_record_schema: Params::memory_record_schema?
2610
+ }
4429
2611
  ]?,
4430
2612
  delete_memory_strategies: Array[
4431
2613
  {
4432
2614
  memory_strategy_id: ::String
4433
- },
2615
+ }
4434
2616
  ]?
4435
2617
  },
4436
2618
  ?add_indexed_keys: Array[
4437
2619
  {
4438
2620
  key: ::String,
4439
2621
  type: ("STRING" | "STRINGLIST" | "NUMBER")
4440
- },
2622
+ }
4441
2623
  ],
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
- }
2624
+ ?stream_delivery_resources: Params::stream_delivery_resources
4457
2625
  ) -> _UpdateMemoryResponseSuccess
4458
2626
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemoryResponseSuccess
4459
2627
 
@@ -4473,97 +2641,7 @@ module Aws
4473
2641
  def update_oauth_2_credential_provider: (
4474
2642
  name: ::String,
4475
2643
  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
- }
2644
+ oauth2_provider_config_input: Params::oauth_2_provider_config_input
4567
2645
  ) -> _UpdateOauth2CredentialProviderResponseSuccess
4568
2646
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOauth2CredentialProviderResponseSuccess
4569
2647
 
@@ -4581,25 +2659,7 @@ module Aws
4581
2659
  ?client_token: ::String,
4582
2660
  online_evaluation_config_id: ::String,
4583
2661
  ?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
- },
2662
+ ?rule: Params::rule,
4603
2663
  ?data_source_config: {
4604
2664
  cloud_watch_logs: {
4605
2665
  log_group_names: Array[::String],
@@ -4609,7 +2669,7 @@ module Aws
4609
2669
  ?evaluators: Array[
4610
2670
  {
4611
2671
  evaluator_id: ::String?
4612
- },
2672
+ }
4613
2673
  ],
4614
2674
  ?evaluation_execution_role_arn: ::String,
4615
2675
  ?execution_status: ("ENABLED" | "DISABLED")
@@ -4633,14 +2693,7 @@ module Aws
4633
2693
  ?description: ::String,
4634
2694
  ?type: ("CoinbaseCDP" | "StripePrivy"),
4635
2695
  ?credential_provider_configurations: Array[
4636
- {
4637
- coinbase_cdp: {
4638
- credential_provider_arn: ::String
4639
- }?,
4640
- stripe_privy: {
4641
- credential_provider_arn: ::String
4642
- }?
4643
- },
2696
+ Params::credentials_provider_configuration
4644
2697
  ],
4645
2698
  ?client_token: ::String
4646
2699
  ) -> _UpdatePaymentConnectorResponseSuccess
@@ -4659,19 +2712,7 @@ module Aws
4659
2712
  def update_payment_credential_provider: (
4660
2713
  name: ::String,
4661
2714
  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
- }
2715
+ provider_configuration_input: Params::payment_provider_configuration_input
4675
2716
  ) -> _UpdatePaymentCredentialProviderResponseSuccess
4676
2717
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePaymentCredentialProviderResponseSuccess
4677
2718
 
@@ -4691,58 +2732,7 @@ module Aws
4691
2732
  payment_manager_id: ::String,
4692
2733
  ?description: ::String,
4693
2734
  ?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
- },
2735
+ ?authorizer_configuration: Params::authorizer_configuration,
4746
2736
  ?role_arn: ::String,
4747
2737
  ?client_token: ::String
4748
2738
  ) -> _UpdatePaymentManagerResponseSuccess
@@ -4768,15 +2758,7 @@ module Aws
4768
2758
  ?description: {
4769
2759
  optional_value: ::String?
4770
2760
  },
4771
- ?definition: {
4772
- cedar: {
4773
- statement: ::String
4774
- }?,
4775
- policy_generation: {
4776
- policy_generation_id: ::String,
4777
- policy_generation_asset_id: ::String
4778
- }?
4779
- },
2761
+ ?definition: Params::policy_definition,
4780
2762
  ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
4781
2763
  ) -> _UpdatePolicyResponseSuccess
4782
2764
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePolicyResponseSuccess
@@ -4823,60 +2805,7 @@ module Aws
4823
2805
  ?description: {
4824
2806
  optional_value: ::String?
4825
2807
  },
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
- },
2808
+ ?authorizer_configuration: Params::updated_authorizer_configuration,
4880
2809
  ?approval_configuration: {
4881
2810
  optional_value: {
4882
2811
  auto_approval: bool?
@@ -4964,29 +2893,7 @@ module Aws
4964
2893
  optional_value: ("URL")?
4965
2894
  },
4966
2895
  ?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
- }?
2896
+ optional_value: Params::synchronization_configuration?
4990
2897
  },
4991
2898
  ?trigger_synchronization: bool
4992
2899
  ) -> _UpdateRegistryRecordResponseSuccess