aws-sdk-bedrockagentcorecontrol 1.52.0 → 1.54.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.
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.52.0'
58
+ GEM_VERSION = '1.54.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -302,6 +302,7 @@ module Aws
302
302
  name: ::String,
303
303
  arn: ::String?
304
304
  },
305
+ ?kms_key_arn: ::String,
305
306
  ?tags: Hash[::String, ::String]
306
307
  ) -> _CreateConfigurationBundleResponseSuccess
307
308
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationBundleResponseSuccess
@@ -376,10 +377,13 @@ module Aws
376
377
  def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
377
378
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
378
379
  def kms_key_arn: () -> ::String
380
+ def custom_transform_configuration: () -> Types::CustomTransformConfiguration
379
381
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
380
382
  def policy_engine_configuration: () -> Types::GatewayPolicyEngineConfiguration
381
383
  def workload_identity_details: () -> Types::WorkloadIdentityDetails
382
384
  def exception_level: () -> ("DEBUG")
385
+ def web_acl_arn: () -> ::String
386
+ def waf_configuration: () -> Types::WafConfiguration
383
387
  end
384
388
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway-instance_method
385
389
  def create_gateway: (
@@ -453,7 +457,7 @@ module Aws
453
457
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
454
458
  def create_gateway_target: (
455
459
  gateway_identifier: ::String,
456
- name: ::String,
460
+ ?name: ::String,
457
461
  ?description: ::String,
458
462
  ?client_token: ::String,
459
463
  target_configuration: Params::target_configuration,
@@ -508,6 +512,21 @@ module Aws
508
512
  ) -> _CreateHarnessResponseSuccess
509
513
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHarnessResponseSuccess
510
514
 
515
+ interface _CreateHarnessEndpointResponseSuccess
516
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateHarnessEndpointResponse]
517
+ def endpoint: () -> Types::HarnessEndpoint
518
+ end
519
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_harness_endpoint-instance_method
520
+ def create_harness_endpoint: (
521
+ harness_id: ::String,
522
+ endpoint_name: ::String,
523
+ ?target_version: ::String,
524
+ ?description: ::String,
525
+ ?client_token: ::String,
526
+ ?tags: Hash[::String, ::String]
527
+ ) -> _CreateHarnessEndpointResponseSuccess
528
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHarnessEndpointResponseSuccess
529
+
511
530
  interface _CreateMemoryResponseSuccess
512
531
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateMemoryOutput]
513
532
  def memory: () -> Types::Memory
@@ -576,11 +595,19 @@ module Aws
576
595
  service_names: Array[::String]
577
596
  }?
578
597
  },
579
- evaluators: Array[
598
+ ?evaluators: Array[
580
599
  {
581
600
  evaluator_id: ::String?
582
601
  }
583
602
  ],
603
+ ?insights: Array[
604
+ {
605
+ insight_id: ::String
606
+ }
607
+ ],
608
+ ?clustering_config: {
609
+ frequencies: Array[("DAILY" | "WEEKLY" | "MONTHLY")]
610
+ },
584
611
  evaluation_execution_role_arn: ::String,
585
612
  enable_on_create: bool,
586
613
  ?tags: Hash[::String, ::String]
@@ -660,6 +687,7 @@ module Aws
660
687
  def updated_at: () -> ::Time
661
688
  def policy_arn: () -> ::String
662
689
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
690
+ def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
663
691
  def definition: () -> Types::PolicyDefinition
664
692
  def description: () -> ::String
665
693
  def status_reasons: () -> ::Array[::String]
@@ -670,6 +698,7 @@ module Aws
670
698
  definition: Params::policy_definition,
671
699
  ?description: ::String,
672
700
  ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS"),
701
+ ?enforcement_mode: ("ACTIVE" | "LOG_ONLY"),
673
702
  policy_engine_id: ::String,
674
703
  ?client_token: ::String
675
704
  ) -> _CreatePolicyResponseSuccess
@@ -951,10 +980,23 @@ module Aws
951
980
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_harness-instance_method
952
981
  def delete_harness: (
953
982
  harness_id: ::String,
954
- ?client_token: ::String
983
+ ?client_token: ::String,
984
+ ?delete_managed_memory: bool
955
985
  ) -> _DeleteHarnessResponseSuccess
956
986
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteHarnessResponseSuccess
957
987
 
988
+ interface _DeleteHarnessEndpointResponseSuccess
989
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteHarnessEndpointResponse]
990
+ def endpoint: () -> Types::HarnessEndpoint
991
+ end
992
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_harness_endpoint-instance_method
993
+ def delete_harness_endpoint: (
994
+ harness_id: ::String,
995
+ endpoint_name: ::String,
996
+ ?client_token: ::String
997
+ ) -> _DeleteHarnessEndpointResponseSuccess
998
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteHarnessEndpointResponseSuccess
999
+
958
1000
  interface _DeleteMemoryResponseSuccess
959
1001
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMemoryOutput]
960
1002
  def memory_id: () -> ::String
@@ -1031,6 +1073,7 @@ module Aws
1031
1073
  def updated_at: () -> ::Time
1032
1074
  def policy_arn: () -> ::String
1033
1075
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1076
+ def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
1034
1077
  def definition: () -> Types::PolicyDefinition
1035
1078
  def description: () -> ::String
1036
1079
  def status_reasons: () -> ::Array[::String]
@@ -1238,6 +1281,7 @@ module Aws
1238
1281
  def lineage_metadata: () -> Types::VersionLineageMetadata
1239
1282
  def created_at: () -> ::Time
1240
1283
  def updated_at: () -> ::Time
1284
+ def kms_key_arn: () -> ::String
1241
1285
  end
1242
1286
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle-instance_method
1243
1287
  def get_configuration_bundle: (
@@ -1257,6 +1301,7 @@ module Aws
1257
1301
  def lineage_metadata: () -> Types::VersionLineageMetadata
1258
1302
  def created_at: () -> ::Time
1259
1303
  def version_created_at: () -> ::Time
1304
+ def kms_key_arn: () -> ::String
1260
1305
  end
1261
1306
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_configuration_bundle_version-instance_method
1262
1307
  def get_configuration_bundle_version: (
@@ -1329,10 +1374,13 @@ module Aws
1329
1374
  def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
1330
1375
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
1331
1376
  def kms_key_arn: () -> ::String
1377
+ def custom_transform_configuration: () -> Types::CustomTransformConfiguration
1332
1378
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
1333
1379
  def policy_engine_configuration: () -> Types::GatewayPolicyEngineConfiguration
1334
1380
  def workload_identity_details: () -> Types::WorkloadIdentityDetails
1335
1381
  def exception_level: () -> ("DEBUG")
1382
+ def web_acl_arn: () -> ::String
1383
+ def waf_configuration: () -> Types::WafConfiguration
1336
1384
  end
1337
1385
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway-instance_method
1338
1386
  def get_gateway: (
@@ -1392,10 +1440,22 @@ module Aws
1392
1440
  end
1393
1441
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_harness-instance_method
1394
1442
  def get_harness: (
1395
- harness_id: ::String
1443
+ harness_id: ::String,
1444
+ ?harness_version: ::String
1396
1445
  ) -> _GetHarnessResponseSuccess
1397
1446
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHarnessResponseSuccess
1398
1447
 
1448
+ interface _GetHarnessEndpointResponseSuccess
1449
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetHarnessEndpointResponse]
1450
+ def endpoint: () -> Types::HarnessEndpoint
1451
+ end
1452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_harness_endpoint-instance_method
1453
+ def get_harness_endpoint: (
1454
+ harness_id: ::String,
1455
+ endpoint_name: ::String
1456
+ ) -> _GetHarnessEndpointResponseSuccess
1457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHarnessEndpointResponseSuccess
1458
+
1399
1459
  interface _GetMemoryResponseSuccess
1400
1460
  include ::Seahorse::Client::_ResponseSuccess[Types::GetMemoryOutput]
1401
1461
  def memory: () -> Types::Memory
@@ -1437,6 +1497,8 @@ module Aws
1437
1497
  def rule: () -> Types::Rule
1438
1498
  def data_source_config: () -> Types::DataSourceConfig
1439
1499
  def evaluators: () -> ::Array[Types::EvaluatorReference]
1500
+ def insights: () -> ::Array[Types::Insight]
1501
+ def clustering_config: () -> Types::ClusteringConfig
1440
1502
  def output_config: () -> Types::OutputConfig
1441
1503
  def evaluation_execution_role_arn: () -> ::String
1442
1504
  def status: () -> ("ACTIVE" | "CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "DELETING" | "ERROR")
@@ -1515,6 +1577,7 @@ module Aws
1515
1577
  def updated_at: () -> ::Time
1516
1578
  def policy_arn: () -> ::String
1517
1579
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1580
+ def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
1518
1581
  def definition: () -> Types::PolicyDefinition
1519
1582
  def description: () -> ::String
1520
1583
  def status_reasons: () -> ::Array[::String]
@@ -1608,6 +1671,7 @@ module Aws
1608
1671
  def updated_at: () -> ::Time
1609
1672
  def policy_arn: () -> ::String
1610
1673
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
1674
+ def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
1611
1675
  end
1612
1676
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_policy_summary-instance_method
1613
1677
  def get_policy_summary: (
@@ -1907,6 +1971,32 @@ module Aws
1907
1971
  ) -> _ListGatewaysResponseSuccess
1908
1972
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewaysResponseSuccess
1909
1973
 
1974
+ interface _ListHarnessEndpointsResponseSuccess
1975
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListHarnessEndpointsResponse]
1976
+ def endpoints: () -> ::Array[Types::HarnessEndpoint]
1977
+ def next_token: () -> ::String
1978
+ end
1979
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_harness_endpoints-instance_method
1980
+ def list_harness_endpoints: (
1981
+ harness_id: ::String,
1982
+ ?max_results: ::Integer,
1983
+ ?next_token: ::String
1984
+ ) -> _ListHarnessEndpointsResponseSuccess
1985
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHarnessEndpointsResponseSuccess
1986
+
1987
+ interface _ListHarnessVersionsResponseSuccess
1988
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListHarnessVersionsResponse]
1989
+ def harness_versions: () -> ::Array[Types::HarnessVersionSummary]
1990
+ def next_token: () -> ::String
1991
+ end
1992
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_harness_versions-instance_method
1993
+ def list_harness_versions: (
1994
+ harness_id: ::String,
1995
+ ?max_results: ::Integer,
1996
+ ?next_token: ::String
1997
+ ) -> _ListHarnessVersionsResponseSuccess
1998
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHarnessVersionsResponseSuccess
1999
+
1910
2000
  interface _ListHarnessesResponseSuccess
1911
2001
  include ::Seahorse::Client::_ResponseSuccess[Types::ListHarnessesResponse]
1912
2002
  def harnesses: () -> ::Array[Types::HarnessSummary]
@@ -2340,7 +2430,8 @@ module Aws
2340
2430
  ?created_by: {
2341
2431
  name: ::String,
2342
2432
  arn: ::String?
2343
- }
2433
+ },
2434
+ ?kms_key_arn: ::String
2344
2435
  ) -> _UpdateConfigurationBundleResponseSuccess
2345
2436
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationBundleResponseSuccess
2346
2437
 
@@ -2412,10 +2503,13 @@ module Aws
2412
2503
  def authorizer_type: () -> ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY")
2413
2504
  def authorizer_configuration: () -> Types::AuthorizerConfiguration
2414
2505
  def kms_key_arn: () -> ::String
2506
+ def custom_transform_configuration: () -> Types::CustomTransformConfiguration
2415
2507
  def interceptor_configurations: () -> ::Array[Types::GatewayInterceptorConfiguration]
2416
2508
  def policy_engine_configuration: () -> Types::GatewayPolicyEngineConfiguration
2417
2509
  def workload_identity_details: () -> Types::WorkloadIdentityDetails
2418
2510
  def exception_level: () -> ("DEBUG")
2511
+ def web_acl_arn: () -> ::String
2512
+ def waf_configuration: () -> Types::WafConfiguration
2419
2513
  end
2420
2514
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway-instance_method
2421
2515
  def update_gateway: (
@@ -2428,6 +2522,11 @@ module Aws
2428
2522
  authorizer_type: ("CUSTOM_JWT" | "AWS_IAM" | "NONE" | "AUTHENTICATE_ONLY"),
2429
2523
  ?authorizer_configuration: Params::authorizer_configuration,
2430
2524
  ?kms_key_arn: ::String,
2525
+ ?custom_transform_configuration: {
2526
+ lambda: {
2527
+ arn: ::String?
2528
+ }?
2529
+ },
2431
2530
  ?interceptor_configurations: Array[
2432
2531
  Params::gateway_interceptor_configuration
2433
2532
  ],
@@ -2435,7 +2534,10 @@ module Aws
2435
2534
  arn: ::String,
2436
2535
  mode: ("LOG_ONLY" | "ENFORCE")
2437
2536
  },
2438
- ?exception_level: ("DEBUG")
2537
+ ?exception_level: ("DEBUG"),
2538
+ ?waf_configuration: {
2539
+ failure_mode: ("FAIL_CLOSE" | "FAIL_OPEN")?
2540
+ }
2439
2541
  ) -> _UpdateGatewayResponseSuccess
2440
2542
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayResponseSuccess
2441
2543
 
@@ -2490,7 +2592,7 @@ module Aws
2490
2592
  def update_gateway_target: (
2491
2593
  gateway_identifier: ::String,
2492
2594
  target_id: ::String,
2493
- name: ::String,
2595
+ ?name: ::String,
2494
2596
  ?description: ::String,
2495
2597
  target_configuration: Params::target_configuration,
2496
2598
  ?credential_provider_configurations: Array[
@@ -2547,6 +2649,20 @@ module Aws
2547
2649
  ) -> _UpdateHarnessResponseSuccess
2548
2650
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHarnessResponseSuccess
2549
2651
 
2652
+ interface _UpdateHarnessEndpointResponseSuccess
2653
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateHarnessEndpointResponse]
2654
+ def endpoint: () -> Types::HarnessEndpoint
2655
+ end
2656
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_harness_endpoint-instance_method
2657
+ def update_harness_endpoint: (
2658
+ harness_id: ::String,
2659
+ endpoint_name: ::String,
2660
+ ?target_version: ::String,
2661
+ ?description: ::String,
2662
+ ?client_token: ::String
2663
+ ) -> _UpdateHarnessEndpointResponseSuccess
2664
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHarnessEndpointResponseSuccess
2665
+
2550
2666
  interface _UpdateMemoryResponseSuccess
2551
2667
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMemoryOutput]
2552
2668
  def memory: () -> Types::Memory
@@ -2689,6 +2805,14 @@ module Aws
2689
2805
  evaluator_id: ::String?
2690
2806
  }
2691
2807
  ],
2808
+ ?insights: Array[
2809
+ {
2810
+ insight_id: ::String
2811
+ }
2812
+ ],
2813
+ ?clustering_config: {
2814
+ frequencies: Array[("DAILY" | "WEEKLY" | "MONTHLY")]
2815
+ },
2692
2816
  ?evaluation_execution_role_arn: ::String,
2693
2817
  ?execution_status: ("ENABLED" | "DISABLED")
2694
2818
  ) -> _UpdateOnlineEvaluationConfigResponseSuccess
@@ -2765,6 +2889,7 @@ module Aws
2765
2889
  def updated_at: () -> ::Time
2766
2890
  def policy_arn: () -> ::String
2767
2891
  def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
2892
+ def enforcement_mode: () -> ("ACTIVE" | "LOG_ONLY")
2768
2893
  def definition: () -> Types::PolicyDefinition
2769
2894
  def description: () -> ::String
2770
2895
  def status_reasons: () -> ::Array[::String]
@@ -2777,7 +2902,8 @@ module Aws
2777
2902
  optional_value: ::String?
2778
2903
  },
2779
2904
  ?definition: Params::policy_definition,
2780
- ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS")
2905
+ ?validation_mode: ("FAIL_ON_ANY_FINDINGS" | "IGNORE_ALL_FINDINGS"),
2906
+ ?enforcement_mode: ("ACTIVE" | "LOG_ONLY")
2781
2907
  ) -> _UpdatePolicyResponseSuccess
2782
2908
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePolicyResponseSuccess
2783
2909
 
data/sig/params.rbs CHANGED
@@ -75,7 +75,15 @@ module Aws
75
75
  private_endpoint: Params::private_endpoint?,
76
76
  private_endpoint_overrides: Array[
77
77
  Params::private_endpoint_override
78
- ]?
78
+ ]?,
79
+ allowed_workload_configuration: {
80
+ hosting_environments: Array[
81
+ {
82
+ arn: ::String
83
+ }
84
+ ]?,
85
+ workload_identities: Array[::String]?
86
+ }?
79
87
  }
80
88
 
81
89
  type authorizer_configuration = {
@@ -177,6 +185,17 @@ module Aws
177
185
  mcp: Params::mcp_gateway_configuration?
178
186
  }
179
187
 
188
+ type interceptor_input_configuration = {
189
+ pass_request_headers: bool,
190
+ payload_filter: {
191
+ exclude: Array[
192
+ {
193
+ field: ("RESPONSE_BODY")?
194
+ }
195
+ ]
196
+ }?
197
+ }
198
+
180
199
  type gateway_interceptor_configuration = {
181
200
  interceptor: {
182
201
  lambda: {
@@ -184,9 +203,7 @@ module Aws
184
203
  }?
185
204
  },
186
205
  interception_points: Array[("REQUEST" | "RESPONSE")],
187
- input_configuration: {
188
- pass_request_headers: bool
189
- }?
206
+ input_configuration: Params::interceptor_input_configuration?
190
207
  }
191
208
 
192
209
  type match_principals = {
@@ -307,6 +324,16 @@ module Aws
307
324
  api_gateway_tool_configuration: Params::api_gateway_tool_configuration
308
325
  }
309
326
 
327
+ type connector_target_configuration = {
328
+ source: {
329
+ connector_id: ::String
330
+ },
331
+ enabled: Array[::String]?,
332
+ configurations: Array[
333
+ Params::connector_configuration
334
+ ]?
335
+ }
336
+
310
337
  type mcp_target_configuration = {
311
338
  open_api_schema: {
312
339
  s3: {
@@ -324,17 +351,75 @@ module Aws
324
351
  }?,
325
352
  lambda: Params::mcp_lambda_target_configuration?,
326
353
  mcp_server: Params::mcp_server_target_configuration?,
327
- api_gateway: Params::api_gateway_target_configuration?
354
+ api_gateway: Params::api_gateway_target_configuration?,
355
+ connector: Params::connector_target_configuration?
356
+ }
357
+
358
+ type http_api_schema_configuration = {
359
+ source: {
360
+ s3: {
361
+ uri: ::String?,
362
+ bucket_owner_account_id: ::String?
363
+ }?,
364
+ inline_payload: ::String?
365
+ }
366
+ }
367
+
368
+ type runtime_target_configuration = {
369
+ arn: ::String,
370
+ qualifier: ::String?,
371
+ schema: Params::http_api_schema_configuration?
372
+ }
373
+
374
+ type passthrough_target_configuration = {
375
+ endpoint: ::String,
376
+ protocol_type: ("MCP" | "A2A" | "INFERENCE" | "CUSTOM"),
377
+ schema: Params::http_api_schema_configuration?,
378
+ stickiness_configuration: {
379
+ identifier: ::String,
380
+ timeout: ::Integer?
381
+ }?
382
+ }
383
+
384
+ type http_target_configuration = {
385
+ agentcore_runtime: Params::runtime_target_configuration?,
386
+ passthrough: Params::passthrough_target_configuration?
387
+ }
388
+
389
+ type inference_provider_target_configuration = {
390
+ endpoint: ::String,
391
+ model_mapping: {
392
+ provider_prefix: {
393
+ strip: bool?,
394
+ separator: ::String?
395
+ }?
396
+ }?,
397
+ operations: Array[
398
+ {
399
+ path: ::String,
400
+ provider_path: ::String?,
401
+ models: Array[
402
+ {
403
+ model: ::String
404
+ }
405
+ ]?
406
+ }
407
+ ]?
408
+ }
409
+
410
+ type inference_target_configuration = {
411
+ connector: {
412
+ source: {
413
+ connector_id: ::String
414
+ }
415
+ }?,
416
+ provider: Params::inference_provider_target_configuration?
328
417
  }
329
418
 
330
419
  type target_configuration = {
331
420
  mcp: Params::mcp_target_configuration?,
332
- http: {
333
- agentcore_runtime: {
334
- arn: ::String,
335
- qualifier: ::String?
336
- }?
337
- }?
421
+ http: Params::http_target_configuration?,
422
+ inference: Params::inference_target_configuration?
338
423
  }
339
424
 
340
425
  type schema_definition = {
@@ -364,6 +449,20 @@ module Aws
364
449
  output_schema: Params::schema_definition?
365
450
  }
366
451
 
452
+ type connector_configuration = {
453
+ name: ::String,
454
+ description: ::String?,
455
+ parameter_values: {
456
+ }?,
457
+ parameter_overrides: Array[
458
+ {
459
+ path: ::String,
460
+ description: ::String?,
461
+ visible: bool?
462
+ }
463
+ ]?
464
+ }
465
+
367
466
  type credential_provider = {
368
467
  oauth_credential_provider: {
369
468
  provider_arn: ::String,
@@ -510,7 +609,10 @@ module Aws
510
609
  s3: {
511
610
  uri: ::String
512
611
  }?,
513
- git: Params::harness_skill_git_source?
612
+ git: Params::harness_skill_git_source?,
613
+ aws_skills: {
614
+ paths: Array[::String]?
615
+ }?
514
616
  }
515
617
 
516
618
  type harness_agent_core_memory_configuration = {
@@ -525,7 +627,15 @@ module Aws
525
627
  }
526
628
 
527
629
  type harness_memory_configuration = {
528
- agent_core_memory_configuration: Params::harness_agent_core_memory_configuration?
630
+ agent_core_memory_configuration: Params::harness_agent_core_memory_configuration?,
631
+ managed_memory_configuration: {
632
+ arn: ::String?,
633
+ strategies: Array[("SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "EPISODIC")]?,
634
+ event_expiry_duration: ::Integer?,
635
+ encryption_key_arn: ::String?
636
+ }?,
637
+ disabled: {
638
+ }?
529
639
  }
530
640
 
531
641
  type harness_truncation_strategy_configuration = {
@@ -939,6 +1049,9 @@ module Aws
939
1049
  policy_generation: {
940
1050
  policy_generation_id: ::String,
941
1051
  policy_generation_asset_id: ::String
1052
+ }?,
1053
+ policy: {
1054
+ statement: ::String
942
1055
  }?
943
1056
  }
944
1057