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.
@@ -325,6 +325,32 @@ module Aws::BedrockAgentCoreControl
325
325
  include Aws::Structure
326
326
  end
327
327
 
328
+ # The configuration that restricts which workloads in the request's
329
+ # identity chain are allowed to invoke the target, identified by their
330
+ # hosting environments and workload identities. At launch, this is
331
+ # supported only for AgentCore Runtime targets, and the allowed
332
+ # workloads are AgentCore Gateways.
333
+ #
334
+ # @!attribute [rw] hosting_environments
335
+ # The list of hosting environments whose workloads are allowed to
336
+ # invoke the target. At launch, the only supported hosting environment
337
+ # is AgentCore Gateway.
338
+ # @return [Array<Types::HostingEnvironment>]
339
+ #
340
+ # @!attribute [rw] workload_identities
341
+ # The list of workload identities that are allowed to invoke the
342
+ # target.
343
+ # @return [Array<String>]
344
+ #
345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AllowedWorkloadConfiguration AWS API Documentation
346
+ #
347
+ class AllowedWorkloadConfiguration < Struct.new(
348
+ :hosting_environments,
349
+ :workload_identities)
350
+ SENSITIVE = []
351
+ include Aws::Structure
352
+ end
353
+
328
354
  # The configuration for an Amazon API Gateway target.
329
355
  #
330
356
  # @!attribute [rw] rest_api_id
@@ -556,16 +582,17 @@ module Aws::BedrockAgentCoreControl
556
582
  # @return [String]
557
583
  #
558
584
  # @!attribute [rw] client_secret_config
559
- # A reference to the AWS Secrets Manager secret that stores the client
560
- # secret. This includes the secret ID and the JSON key used to extract
561
- # the client secret value from the secret. Required when
562
- # `clientSecretSource` is set to `EXTERNAL`.
585
+ # A reference to the Amazon Web Services Secrets Manager secret that
586
+ # stores the client secret. This includes the secret ID and the JSON
587
+ # key used to extract the client secret value from the secret.
588
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
563
589
  # @return [Types::SecretReference]
564
590
  #
565
591
  # @!attribute [rw] client_secret_source
566
592
  # The source type of the client secret for the Atlassian OAuth2
567
593
  # provider. Use `MANAGED` if the secret is managed by the service, or
568
- # `EXTERNAL` if you manage the secret yourself in AWS Secrets Manager.
594
+ # `EXTERNAL` if you manage the secret yourself in Amazon Web Services
595
+ # Secrets Manager.
569
596
  # @return [String]
570
597
  #
571
598
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AtlassianOauth2ProviderConfigInput AWS API Documentation
@@ -1040,6 +1067,22 @@ module Aws::BedrockAgentCoreControl
1040
1067
  include Aws::Structure
1041
1068
  end
1042
1069
 
1070
+ # Configuration for periodic batch evaluation clustering, specifying how
1071
+ # often clustering jobs run.
1072
+ #
1073
+ # @!attribute [rw] frequencies
1074
+ # The list of frequencies at which clustering batch evaluations are
1075
+ # triggered.
1076
+ # @return [Array<String>]
1077
+ #
1078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ClusteringConfig AWS API Documentation
1079
+ #
1080
+ class ClusteringConfig < Struct.new(
1081
+ :frequencies)
1082
+ SENSITIVE = []
1083
+ include Aws::Structure
1084
+ end
1085
+
1043
1086
  # The source code configuration that specifies the location and details
1044
1087
  # of the code to be executed.
1045
1088
  #
@@ -1199,14 +1242,15 @@ module Aws::BedrockAgentCoreControl
1199
1242
  # @!attribute [rw] api_key_secret_source
1200
1243
  # The source type of the API key secret for the Coinbase Developer
1201
1244
  # Platform. Use `MANAGED` if the secret is managed by the service, or
1202
- # `EXTERNAL` if you manage the secret yourself in AWS Secrets Manager.
1245
+ # `EXTERNAL` if you manage the secret yourself in Amazon Web Services
1246
+ # Secrets Manager.
1203
1247
  # @return [String]
1204
1248
  #
1205
1249
  # @!attribute [rw] api_key_secret_config
1206
- # A reference to the AWS Secrets Manager secret that stores the API
1207
- # key secret. This includes the secret ID and the JSON key used to
1208
- # extract the API key secret value from the secret. Required when
1209
- # `apiKeySecretSource` is set to `EXTERNAL`.
1250
+ # A reference to the Amazon Web Services Secrets Manager secret that
1251
+ # stores the API key secret. This includes the secret ID and the JSON
1252
+ # key used to extract the API key secret value from the secret.
1253
+ # Required when `apiKeySecretSource` is set to `EXTERNAL`.
1210
1254
  # @return [Types::SecretReference]
1211
1255
  #
1212
1256
  # @!attribute [rw] wallet_secret
@@ -1216,14 +1260,15 @@ module Aws::BedrockAgentCoreControl
1216
1260
  # @!attribute [rw] wallet_secret_source
1217
1261
  # The source type of the wallet secret for the Coinbase Developer
1218
1262
  # Platform. Use `MANAGED` if the secret is managed by the service, or
1219
- # `EXTERNAL` if you manage the secret yourself in AWS Secrets Manager.
1263
+ # `EXTERNAL` if you manage the secret yourself in Amazon Web Services
1264
+ # Secrets Manager.
1220
1265
  # @return [String]
1221
1266
  #
1222
1267
  # @!attribute [rw] wallet_secret_config
1223
- # A reference to the AWS Secrets Manager secret that stores the wallet
1224
- # secret. This includes the secret ID and the JSON key used to extract
1225
- # the wallet secret value from the secret. Required when
1226
- # `walletSecretSource` is set to `EXTERNAL`.
1268
+ # A reference to the Amazon Web Services Secrets Manager secret that
1269
+ # stores the wallet secret. This includes the secret ID and the JSON
1270
+ # key used to extract the wallet secret value from the secret.
1271
+ # Required when `walletSecretSource` is set to `EXTERNAL`.
1227
1272
  # @return [Types::SecretReference]
1228
1273
  #
1229
1274
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationInput AWS API Documentation
@@ -1247,33 +1292,35 @@ module Aws::BedrockAgentCoreControl
1247
1292
  # @return [String]
1248
1293
  #
1249
1294
  # @!attribute [rw] api_key_secret_arn
1250
- # Contains information about a secret in AWS Secrets Manager.
1295
+ # Contains information about a secret in Amazon Web Services Secrets
1296
+ # Manager.
1251
1297
  # @return [Types::Secret]
1252
1298
  #
1253
1299
  # @!attribute [rw] api_key_secret_json_key
1254
- # The JSON key used to extract the API key secret value from the AWS
1255
- # Secrets Manager secret.
1300
+ # The JSON key used to extract the API key secret value from the
1301
+ # Amazon Web Services Secrets Manager secret.
1256
1302
  # @return [String]
1257
1303
  #
1258
1304
  # @!attribute [rw] api_key_secret_source
1259
1305
  # The source type of the API key secret. Either `MANAGED` if the
1260
1306
  # secret is managed by the service, or `EXTERNAL` if managed by the
1261
- # user in AWS Secrets Manager.
1307
+ # user in Amazon Web Services Secrets Manager.
1262
1308
  # @return [String]
1263
1309
  #
1264
1310
  # @!attribute [rw] wallet_secret_arn
1265
- # Contains information about a secret in AWS Secrets Manager.
1311
+ # Contains information about a secret in Amazon Web Services Secrets
1312
+ # Manager.
1266
1313
  # @return [Types::Secret]
1267
1314
  #
1268
1315
  # @!attribute [rw] wallet_secret_json_key
1269
- # The JSON key used to extract the wallet secret value from the AWS
1270
- # Secrets Manager secret.
1316
+ # The JSON key used to extract the wallet secret value from the Amazon
1317
+ # Web Services Secrets Manager secret.
1271
1318
  # @return [String]
1272
1319
  #
1273
1320
  # @!attribute [rw] wallet_secret_source
1274
1321
  # The source type of the wallet secret. Either `MANAGED` if the secret
1275
1322
  # is managed by the service, or `EXTERNAL` if managed by the user in
1276
- # AWS Secrets Manager.
1323
+ # Amazon Web Services Secrets Manager.
1277
1324
  # @return [String]
1278
1325
  #
1279
1326
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationOutput AWS API Documentation
@@ -1484,6 +1531,106 @@ module Aws::BedrockAgentCoreControl
1484
1531
  include Aws::Structure
1485
1532
  end
1486
1533
 
1534
+ # Configuration for a single tool within a connector.
1535
+ #
1536
+ # @!attribute [rw] name
1537
+ # The tool or operation name (for example, `retrieve` or `webSearch`).
1538
+ # @return [String]
1539
+ #
1540
+ # @!attribute [rw] description
1541
+ # An agent-facing description override for this tool.
1542
+ # @return [String]
1543
+ #
1544
+ # @!attribute [rw] parameter_values
1545
+ # Parameters to set as fixed or default values when provisioning this
1546
+ # tool.
1547
+ # @return [Hash,Array,String,Numeric,Boolean]
1548
+ #
1549
+ # @!attribute [rw] parameter_overrides
1550
+ # Parameters to expose to the agent at runtime, with optional
1551
+ # description overrides.
1552
+ # @return [Array<Types::ConnectorParameterOverride>]
1553
+ #
1554
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConnectorConfiguration AWS API Documentation
1555
+ #
1556
+ class ConnectorConfiguration < Struct.new(
1557
+ :name,
1558
+ :description,
1559
+ :parameter_values,
1560
+ :parameter_overrides)
1561
+ SENSITIVE = []
1562
+ include Aws::Structure
1563
+ end
1564
+
1565
+ # Specifies a parameter override for a connector tool, allowing you to
1566
+ # control parameter visibility and descriptions.
1567
+ #
1568
+ # @!attribute [rw] path
1569
+ # A JSON Pointer path identifying the parameter (for example,
1570
+ # `/numberOfResults` or `/filter`).
1571
+ # @return [String]
1572
+ #
1573
+ # @!attribute [rw] description
1574
+ # An agent-facing description override for this parameter.
1575
+ # @return [String]
1576
+ #
1577
+ # @!attribute [rw] visible
1578
+ # Whether this parameter is visible to the agent. If not specified,
1579
+ # uses the service default.
1580
+ # @return [Boolean]
1581
+ #
1582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConnectorParameterOverride AWS API Documentation
1583
+ #
1584
+ class ConnectorParameterOverride < Struct.new(
1585
+ :path,
1586
+ :description,
1587
+ :visible)
1588
+ SENSITIVE = []
1589
+ include Aws::Structure
1590
+ end
1591
+
1592
+ # The source identifying the connector integration.
1593
+ #
1594
+ # @!attribute [rw] connector_id
1595
+ # The identifier for the connector integration (for example,
1596
+ # `bedrock-knowledge-bases`).
1597
+ # @return [String]
1598
+ #
1599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConnectorSource AWS API Documentation
1600
+ #
1601
+ class ConnectorSource < Struct.new(
1602
+ :connector_id)
1603
+ SENSITIVE = []
1604
+ include Aws::Structure
1605
+ end
1606
+
1607
+ # Configuration for a connector integration target. Connectors provide
1608
+ # pre-built integrations with Amazon Web Services services and
1609
+ # third-party tools.
1610
+ #
1611
+ # @!attribute [rw] source
1612
+ # The source configuration identifying which connector to use.
1613
+ # @return [Types::ConnectorSource]
1614
+ #
1615
+ # @!attribute [rw] enabled
1616
+ # A list of tool names to enable from this connector. If absent, all
1617
+ # tools provided by the connector are enabled.
1618
+ # @return [Array<String>]
1619
+ #
1620
+ # @!attribute [rw] configurations
1621
+ # A list of per-tool configurations for the connector.
1622
+ # @return [Array<Types::ConnectorConfiguration>]
1623
+ #
1624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConnectorTargetConfiguration AWS API Documentation
1625
+ #
1626
+ class ConnectorTargetConfiguration < Struct.new(
1627
+ :source,
1628
+ :enabled,
1629
+ :configurations)
1630
+ SENSITIVE = []
1631
+ include Aws::Structure
1632
+ end
1633
+
1487
1634
  # Contains consolidation configuration information for a memory
1488
1635
  # strategy.
1489
1636
  #
@@ -1783,16 +1930,16 @@ module Aws::BedrockAgentCoreControl
1783
1930
  # @return [String]
1784
1931
  #
1785
1932
  # @!attribute [rw] api_key_secret_config
1786
- # A reference to the AWS Secrets Manager secret that stores the API
1787
- # key. This includes the secret ID and the JSON key used to extract
1788
- # the API key value from the secret. Required when
1933
+ # A reference to the Amazon Web Services Secrets Manager secret that
1934
+ # stores the API key. This includes the secret ID and the JSON key
1935
+ # used to extract the API key value from the secret. Required when
1789
1936
  # `apiKeySecretSource` is set to `EXTERNAL`.
1790
1937
  # @return [Types::SecretReference]
1791
1938
  #
1792
1939
  # @!attribute [rw] api_key_secret_source
1793
1940
  # The source type of the API key secret. Use `MANAGED` if the secret
1794
1941
  # is managed by the service, or `EXTERNAL` if you manage the secret
1795
- # yourself in AWS Secrets Manager.
1942
+ # yourself in Amazon Web Services Secrets Manager.
1796
1943
  # @return [String]
1797
1944
  #
1798
1945
  # @!attribute [rw] tags
@@ -1818,14 +1965,14 @@ module Aws::BedrockAgentCoreControl
1818
1965
  # @return [Types::Secret]
1819
1966
  #
1820
1967
  # @!attribute [rw] api_key_secret_json_key
1821
- # The JSON key used to extract the API key value from the AWS Secrets
1822
- # Manager secret.
1968
+ # The JSON key used to extract the API key value from the Amazon Web
1969
+ # Services Secrets Manager secret.
1823
1970
  # @return [String]
1824
1971
  #
1825
1972
  # @!attribute [rw] api_key_secret_source
1826
1973
  # The source type of the API key secret. Either `MANAGED` if the
1827
1974
  # secret is managed by the service, or `EXTERNAL` if managed by the
1828
- # user in AWS Secrets Manager.
1975
+ # user in Amazon Web Services Secrets Manager.
1829
1976
  # @return [String]
1830
1977
  #
1831
1978
  # @!attribute [rw] name
@@ -2138,6 +2285,10 @@ module Aws::BedrockAgentCoreControl
2138
2285
  # optional ARN.
2139
2286
  # @return [Types::VersionCreatedBySource]
2140
2287
  #
2288
+ # @!attribute [rw] kms_key_arn
2289
+ # Optional KMS key ARN for encrypting component configurations.
2290
+ # @return [String]
2291
+ #
2141
2292
  # @!attribute [rw] tags
2142
2293
  # A map of tag keys and values to assign to the configuration bundle.
2143
2294
  # Tags enable you to categorize your resources in different ways, for
@@ -2154,6 +2305,7 @@ module Aws::BedrockAgentCoreControl
2154
2305
  :branch_name,
2155
2306
  :commit_message,
2156
2307
  :created_by,
2308
+ :kms_key_arn,
2157
2309
  :tags)
2158
2310
  SENSITIVE = [:description, :components]
2159
2311
  include Aws::Structure
@@ -2538,7 +2690,7 @@ module Aws::BedrockAgentCoreControl
2538
2690
  :policy_engine_configuration,
2539
2691
  :exception_level,
2540
2692
  :tags)
2541
- SENSITIVE = [:name, :description]
2693
+ SENSITIVE = [:description]
2542
2694
  include Aws::Structure
2543
2695
  end
2544
2696
 
@@ -2604,6 +2756,12 @@ module Aws::BedrockAgentCoreControl
2604
2756
  # associated with the gateway.
2605
2757
  # @return [String]
2606
2758
  #
2759
+ # @!attribute [rw] custom_transform_configuration
2760
+ # The custom transformation configuration for the gateway. This
2761
+ # configuration defines how the gateway transforms requests and
2762
+ # responses.
2763
+ # @return [Types::CustomTransformConfiguration]
2764
+ #
2607
2765
  # @!attribute [rw] interceptor_configurations
2608
2766
  # The list of interceptor configurations for the created gateway.
2609
2767
  # @return [Array<Types::GatewayInterceptorConfiguration>]
@@ -2627,6 +2785,15 @@ module Aws::BedrockAgentCoreControl
2627
2785
  # the end user.
2628
2786
  # @return [String]
2629
2787
  #
2788
+ # @!attribute [rw] web_acl_arn
2789
+ # The Amazon Resource Name (ARN) of the Amazon Web Services WAF web
2790
+ # ACL associated with the gateway.
2791
+ # @return [String]
2792
+ #
2793
+ # @!attribute [rw] waf_configuration
2794
+ # The Amazon Web Services WAF configuration for the gateway.
2795
+ # @return [Types::WafConfiguration]
2796
+ #
2630
2797
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayResponse AWS API Documentation
2631
2798
  #
2632
2799
  class CreateGatewayResponse < Struct.new(
@@ -2645,11 +2812,14 @@ module Aws::BedrockAgentCoreControl
2645
2812
  :authorizer_type,
2646
2813
  :authorizer_configuration,
2647
2814
  :kms_key_arn,
2815
+ :custom_transform_configuration,
2648
2816
  :interceptor_configurations,
2649
2817
  :policy_engine_configuration,
2650
2818
  :workload_identity_details,
2651
- :exception_level)
2652
- SENSITIVE = [:name, :description]
2819
+ :exception_level,
2820
+ :web_acl_arn,
2821
+ :waf_configuration)
2822
+ SENSITIVE = [:description]
2653
2823
  include Aws::Structure
2654
2824
  end
2655
2825
 
@@ -2915,6 +3085,61 @@ module Aws::BedrockAgentCoreControl
2915
3085
  include Aws::Structure
2916
3086
  end
2917
3087
 
3088
+ # @!attribute [rw] harness_id
3089
+ # The ID of the harness to create an endpoint for.
3090
+ # @return [String]
3091
+ #
3092
+ # @!attribute [rw] endpoint_name
3093
+ # The name of the endpoint. Must start with a letter and contain only
3094
+ # alphanumeric characters and underscores.
3095
+ # @return [String]
3096
+ #
3097
+ # @!attribute [rw] target_version
3098
+ # The harness version that the endpoint points to and serves
3099
+ # invocations from.
3100
+ # @return [String]
3101
+ #
3102
+ # @!attribute [rw] description
3103
+ # A description of the endpoint.
3104
+ # @return [String]
3105
+ #
3106
+ # @!attribute [rw] client_token
3107
+ # A unique, case-sensitive identifier to ensure idempotency of the
3108
+ # request.
3109
+ #
3110
+ # **A suitable default value is auto-generated.** You should normally
3111
+ # not need to pass this option.
3112
+ # @return [String]
3113
+ #
3114
+ # @!attribute [rw] tags
3115
+ # Tags to apply to the endpoint resource.
3116
+ # @return [Hash<String,String>]
3117
+ #
3118
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateHarnessEndpointRequest AWS API Documentation
3119
+ #
3120
+ class CreateHarnessEndpointRequest < Struct.new(
3121
+ :harness_id,
3122
+ :endpoint_name,
3123
+ :target_version,
3124
+ :description,
3125
+ :client_token,
3126
+ :tags)
3127
+ SENSITIVE = []
3128
+ include Aws::Structure
3129
+ end
3130
+
3131
+ # @!attribute [rw] endpoint
3132
+ # The endpoint that was created.
3133
+ # @return [Types::HarnessEndpoint]
3134
+ #
3135
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateHarnessEndpointResponse AWS API Documentation
3136
+ #
3137
+ class CreateHarnessEndpointResponse < Struct.new(
3138
+ :endpoint)
3139
+ SENSITIVE = []
3140
+ include Aws::Structure
3141
+ end
3142
+
2918
3143
  # @!attribute [rw] harness_name
2919
3144
  # The name of the harness. Must start with a letter and contain only
2920
3145
  # alphanumeric characters and underscores.
@@ -3163,19 +3388,19 @@ module Aws::BedrockAgentCoreControl
3163
3388
  end
3164
3389
 
3165
3390
  # @!attribute [rw] client_secret_arn
3166
- # The Amazon Resource Name (ARN) of the client secret in AWS Secrets
3167
- # Manager.
3391
+ # The Amazon Resource Name (ARN) of the client secret in Amazon Web
3392
+ # Services Secrets Manager.
3168
3393
  # @return [Types::Secret]
3169
3394
  #
3170
3395
  # @!attribute [rw] client_secret_json_key
3171
- # The JSON key used to extract the client secret value from the AWS
3172
- # Secrets Manager secret.
3396
+ # The JSON key used to extract the client secret value from the Amazon
3397
+ # Web Services Secrets Manager secret.
3173
3398
  # @return [String]
3174
3399
  #
3175
3400
  # @!attribute [rw] client_secret_source
3176
3401
  # The source type of the client secret. Either `MANAGED` if the secret
3177
3402
  # is managed by the service, or `EXTERNAL` if managed by the user in
3178
- # AWS Secrets Manager.
3403
+ # Amazon Web Services Secrets Manager.
3179
3404
  # @return [String]
3180
3405
  #
3181
3406
  # @!attribute [rw] name
@@ -3257,6 +3482,15 @@ module Aws::BedrockAgentCoreControl
3257
3482
  # `CreateEvaluator`.
3258
3483
  # @return [Array<Types::EvaluatorReference>]
3259
3484
  #
3485
+ # @!attribute [rw] insights
3486
+ # The list of insight types to run against agent sessions.
3487
+ # @return [Array<Types::Insight>]
3488
+ #
3489
+ # @!attribute [rw] clustering_config
3490
+ # Configuration for periodic batch evaluation clustering of insight
3491
+ # results.
3492
+ # @return [Types::ClusteringConfig]
3493
+ #
3260
3494
  # @!attribute [rw] evaluation_execution_role_arn
3261
3495
  # The Amazon Resource Name (ARN) of the IAM role that grants
3262
3496
  # permissions to read from CloudWatch logs, write evaluation results,
@@ -3292,6 +3526,8 @@ module Aws::BedrockAgentCoreControl
3292
3526
  :rule,
3293
3527
  :data_source_config,
3294
3528
  :evaluators,
3529
+ :insights,
3530
+ :clustering_config,
3295
3531
  :evaluation_execution_role_arn,
3296
3532
  :enable_on_create,
3297
3533
  :tags)
@@ -3774,6 +4010,13 @@ module Aws::BedrockAgentCoreControl
3774
4010
  # accept the analyzer findings.
3775
4011
  # @return [String]
3776
4012
  #
4013
+ # @!attribute [rw] enforcement_mode
4014
+ # The enforcement mode for the policy. Run this policy in `LOG_ONLY`
4015
+ # mode to collect data on how it affects your application. Once you
4016
+ # are satisfied with the data gathered, switch the policy to `ACTIVE`.
4017
+ # Defaults to `ACTIVE`.
4018
+ # @return [String]
4019
+ #
3777
4020
  # @!attribute [rw] policy_engine_id
3778
4021
  # The identifier of the policy engine which contains this policy.
3779
4022
  # Policy engines group related policies and provide the execution
@@ -3798,6 +4041,7 @@ module Aws::BedrockAgentCoreControl
3798
4041
  :definition,
3799
4042
  :description,
3800
4043
  :validation_mode,
4044
+ :enforcement_mode,
3801
4045
  :policy_engine_id,
3802
4046
  :client_token)
3803
4047
  SENSITIVE = [:description]
@@ -3844,6 +4088,10 @@ module Aws::BedrockAgentCoreControl
3844
4088
  # policy is ready for use.
3845
4089
  # @return [String]
3846
4090
  #
4091
+ # @!attribute [rw] enforcement_mode
4092
+ # The enforcement mode of the created policy.
4093
+ # @return [String]
4094
+ #
3847
4095
  # @!attribute [rw] definition
3848
4096
  # The Cedar policy statement that was created. This is the validated
3849
4097
  # policy definition that will be used for agent behavior control and
@@ -3872,6 +4120,7 @@ module Aws::BedrockAgentCoreControl
3872
4120
  :updated_at,
3873
4121
  :policy_arn,
3874
4122
  :status,
4123
+ :enforcement_mode,
3875
4124
  :definition,
3876
4125
  :description,
3877
4126
  :status_reasons)
@@ -4481,6 +4730,14 @@ module Aws::BedrockAgentCoreControl
4481
4730
  # configuration.
4482
4731
  # @return [Array<Types::PrivateEndpointOverride>]
4483
4732
  #
4733
+ # @!attribute [rw] allowed_workload_configuration
4734
+ # The configuration that restricts which workloads in the request's
4735
+ # identity chain are allowed to invoke the target, identified by their
4736
+ # hosting environments and workload identities. At launch, this is
4737
+ # supported only for AgentCore Runtime targets, and the allowed
4738
+ # workloads are AgentCore Gateways.
4739
+ # @return [Types::AllowedWorkloadConfiguration]
4740
+ #
4484
4741
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomJWTAuthorizerConfiguration AWS API Documentation
4485
4742
  #
4486
4743
  class CustomJWTAuthorizerConfiguration < Struct.new(
@@ -4490,7 +4747,8 @@ module Aws::BedrockAgentCoreControl
4490
4747
  :allowed_scopes,
4491
4748
  :custom_claims,
4492
4749
  :private_endpoint,
4493
- :private_endpoint_overrides)
4750
+ :private_endpoint_overrides,
4751
+ :allowed_workload_configuration)
4494
4752
  SENSITIVE = []
4495
4753
  include Aws::Structure
4496
4754
  end
@@ -4550,16 +4808,16 @@ module Aws::BedrockAgentCoreControl
4550
4808
  # @return [String]
4551
4809
  #
4552
4810
  # @!attribute [rw] client_secret_config
4553
- # A reference to the AWS Secrets Manager secret that stores the client
4554
- # secret. This includes the secret ID and the JSON key used to extract
4555
- # the client secret value from the secret. Required when
4556
- # `clientSecretSource` is set to `EXTERNAL`.
4811
+ # A reference to the Amazon Web Services Secrets Manager secret that
4812
+ # stores the client secret. This includes the secret ID and the JSON
4813
+ # key used to extract the client secret value from the secret.
4814
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
4557
4815
  # @return [Types::SecretReference]
4558
4816
  #
4559
4817
  # @!attribute [rw] client_secret_source
4560
4818
  # The source type of the client secret. Use `MANAGED` if the secret is
4561
4819
  # managed by the service, or `EXTERNAL` if you manage the secret
4562
- # yourself in AWS Secrets Manager.
4820
+ # yourself in Amazon Web Services Secrets Manager.
4563
4821
  # @return [String]
4564
4822
  #
4565
4823
  # @!attribute [rw] on_behalf_of_token_exchange_config
@@ -4686,6 +4944,24 @@ module Aws::BedrockAgentCoreControl
4686
4944
  class Unknown < CustomReflectionConfigurationInput; end
4687
4945
  end
4688
4946
 
4947
+ # The configuration for custom transformations applied to requests and
4948
+ # responses through the gateway. This structure defines how the gateway
4949
+ # transforms data.
4950
+ #
4951
+ # @!attribute [rw] lambda
4952
+ # The Lambda configuration for custom transformations. This
4953
+ # configuration defines how the gateway uses a Lambda function to
4954
+ # transform data.
4955
+ # @return [Types::LambdaTransformConfiguration]
4956
+ #
4957
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomTransformConfiguration AWS API Documentation
4958
+ #
4959
+ class CustomTransformConfiguration < Struct.new(
4960
+ :lambda)
4961
+ SENSITIVE = []
4962
+ include Aws::Structure
4963
+ end
4964
+
4689
4965
  # The configuration that specifies where to read agent traces for online
4690
4966
  # evaluation.
4691
4967
  #
@@ -5371,6 +5647,44 @@ module Aws::BedrockAgentCoreControl
5371
5647
  include Aws::Structure
5372
5648
  end
5373
5649
 
5650
+ # @!attribute [rw] harness_id
5651
+ # The ID of the harness that the endpoint belongs to.
5652
+ # @return [String]
5653
+ #
5654
+ # @!attribute [rw] endpoint_name
5655
+ # The name of the endpoint to delete.
5656
+ # @return [String]
5657
+ #
5658
+ # @!attribute [rw] client_token
5659
+ # A unique, case-sensitive identifier to ensure idempotency of the
5660
+ # request.
5661
+ #
5662
+ # **A suitable default value is auto-generated.** You should normally
5663
+ # not need to pass this option.
5664
+ # @return [String]
5665
+ #
5666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteHarnessEndpointRequest AWS API Documentation
5667
+ #
5668
+ class DeleteHarnessEndpointRequest < Struct.new(
5669
+ :harness_id,
5670
+ :endpoint_name,
5671
+ :client_token)
5672
+ SENSITIVE = []
5673
+ include Aws::Structure
5674
+ end
5675
+
5676
+ # @!attribute [rw] endpoint
5677
+ # The endpoint that was deleted.
5678
+ # @return [Types::HarnessEndpoint]
5679
+ #
5680
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteHarnessEndpointResponse AWS API Documentation
5681
+ #
5682
+ class DeleteHarnessEndpointResponse < Struct.new(
5683
+ :endpoint)
5684
+ SENSITIVE = []
5685
+ include Aws::Structure
5686
+ end
5687
+
5374
5688
  # @!attribute [rw] harness_id
5375
5689
  # The ID of the harness to delete.
5376
5690
  # @return [String]
@@ -5383,11 +5697,18 @@ module Aws::BedrockAgentCoreControl
5383
5697
  # not need to pass this option.
5384
5698
  # @return [String]
5385
5699
  #
5700
+ # @!attribute [rw] delete_managed_memory
5701
+ # Whether to delete the managed memory on harness deletion. Default:
5702
+ # true. If false, the memory is disassociated and becomes a regular
5703
+ # customer-owned resource.
5704
+ # @return [Boolean]
5705
+ #
5386
5706
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteHarnessRequest AWS API Documentation
5387
5707
  #
5388
5708
  class DeleteHarnessRequest < Struct.new(
5389
5709
  :harness_id,
5390
- :client_token)
5710
+ :client_token,
5711
+ :delete_managed_memory)
5391
5712
  SENSITIVE = []
5392
5713
  include Aws::Structure
5393
5714
  end
@@ -5763,6 +6084,10 @@ module Aws::BedrockAgentCoreControl
5763
6084
  # process.
5764
6085
  # @return [String]
5765
6086
  #
6087
+ # @!attribute [rw] enforcement_mode
6088
+ # The enforcement mode of the deleted policy.
6089
+ # @return [String]
6090
+ #
5766
6091
  # @!attribute [rw] definition
5767
6092
  # Represents the definition structure for policies within the
5768
6093
  # AgentCore Policy system. This structure encapsulates different
@@ -5790,6 +6115,7 @@ module Aws::BedrockAgentCoreControl
5790
6115
  :updated_at,
5791
6116
  :policy_arn,
5792
6117
  :status,
6118
+ :enforcement_mode,
5793
6119
  :definition,
5794
6120
  :description,
5795
6121
  :status_reasons)
@@ -6795,7 +7121,7 @@ module Aws::BedrockAgentCoreControl
6795
7121
  :updated_at,
6796
7122
  :authorizer_type,
6797
7123
  :protocol_type)
6798
- SENSITIVE = [:name, :description]
7124
+ SENSITIVE = [:description]
6799
7125
  include Aws::Structure
6800
7126
  end
6801
7127
 
@@ -7119,19 +7445,19 @@ module Aws::BedrockAgentCoreControl
7119
7445
  end
7120
7446
 
7121
7447
  # @!attribute [rw] api_key_secret_arn
7122
- # The Amazon Resource Name (ARN) of the API key secret in AWS Secrets
7123
- # Manager.
7448
+ # The Amazon Resource Name (ARN) of the API key secret in Amazon Web
7449
+ # Services Secrets Manager.
7124
7450
  # @return [Types::Secret]
7125
7451
  #
7126
7452
  # @!attribute [rw] api_key_secret_json_key
7127
- # The JSON key used to extract the API key value from the AWS Secrets
7128
- # Manager secret.
7453
+ # The JSON key used to extract the API key value from the Amazon Web
7454
+ # Services Secrets Manager secret.
7129
7455
  # @return [String]
7130
7456
  #
7131
7457
  # @!attribute [rw] api_key_secret_source
7132
7458
  # The source type of the API key secret. Either `MANAGED` if the
7133
7459
  # secret is managed by the service, or `EXTERNAL` if managed by the
7134
- # user in AWS Secrets Manager.
7460
+ # user in Amazon Web Services Secrets Manager.
7135
7461
  # @return [String]
7136
7462
  #
7137
7463
  # @!attribute [rw] name
@@ -7459,6 +7785,11 @@ module Aws::BedrockAgentCoreControl
7459
7785
  # The timestamp when the configuration bundle was last updated.
7460
7786
  # @return [Time]
7461
7787
  #
7788
+ # @!attribute [rw] kms_key_arn
7789
+ # KMS key ARN used to encrypt component configurations, if CMK was
7790
+ # provided.
7791
+ # @return [String]
7792
+ #
7462
7793
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleResponse AWS API Documentation
7463
7794
  #
7464
7795
  class GetConfigurationBundleResponse < Struct.new(
@@ -7470,7 +7801,8 @@ module Aws::BedrockAgentCoreControl
7470
7801
  :components,
7471
7802
  :lineage_metadata,
7472
7803
  :created_at,
7473
- :updated_at)
7804
+ :updated_at,
7805
+ :kms_key_arn)
7474
7806
  SENSITIVE = [:description, :components]
7475
7807
  include Aws::Structure
7476
7808
  end
@@ -7531,6 +7863,11 @@ module Aws::BedrockAgentCoreControl
7531
7863
  # The timestamp when this specific version was created.
7532
7864
  # @return [Time]
7533
7865
  #
7866
+ # @!attribute [rw] kms_key_arn
7867
+ # KMS key ARN used to encrypt component configurations, if CMK was
7868
+ # provided.
7869
+ # @return [String]
7870
+ #
7534
7871
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionResponse AWS API Documentation
7535
7872
  #
7536
7873
  class GetConfigurationBundleVersionResponse < Struct.new(
@@ -7542,7 +7879,8 @@ module Aws::BedrockAgentCoreControl
7542
7879
  :components,
7543
7880
  :lineage_metadata,
7544
7881
  :created_at,
7545
- :version_created_at)
7882
+ :version_created_at,
7883
+ :kms_key_arn)
7546
7884
  SENSITIVE = [:description, :components]
7547
7885
  include Aws::Structure
7548
7886
  end
@@ -7825,6 +8163,12 @@ module Aws::BedrockAgentCoreControl
7825
8163
  # gateway.
7826
8164
  # @return [String]
7827
8165
  #
8166
+ # @!attribute [rw] custom_transform_configuration
8167
+ # The custom transformation configuration for the gateway. This
8168
+ # configuration defines how the gateway transforms requests and
8169
+ # responses.
8170
+ # @return [Types::CustomTransformConfiguration]
8171
+ #
7828
8172
  # @!attribute [rw] interceptor_configurations
7829
8173
  # The interceptors configured on the gateway.
7830
8174
  # @return [Array<Types::GatewayInterceptorConfiguration>]
@@ -7848,6 +8192,15 @@ module Aws::BedrockAgentCoreControl
7848
8192
  # the end user.
7849
8193
  # @return [String]
7850
8194
  #
8195
+ # @!attribute [rw] web_acl_arn
8196
+ # The Amazon Resource Name (ARN) of the Amazon Web Services WAF web
8197
+ # ACL associated with the gateway.
8198
+ # @return [String]
8199
+ #
8200
+ # @!attribute [rw] waf_configuration
8201
+ # The Amazon Web Services WAF configuration for the gateway.
8202
+ # @return [Types::WafConfiguration]
8203
+ #
7851
8204
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayResponse AWS API Documentation
7852
8205
  #
7853
8206
  class GetGatewayResponse < Struct.new(
@@ -7866,11 +8219,14 @@ module Aws::BedrockAgentCoreControl
7866
8219
  :authorizer_type,
7867
8220
  :authorizer_configuration,
7868
8221
  :kms_key_arn,
8222
+ :custom_transform_configuration,
7869
8223
  :interceptor_configurations,
7870
8224
  :policy_engine_configuration,
7871
8225
  :workload_identity_details,
7872
- :exception_level)
7873
- SENSITIVE = [:name, :description]
8226
+ :exception_level,
8227
+ :web_acl_arn,
8228
+ :waf_configuration)
8229
+ SENSITIVE = [:description]
7874
8230
  include Aws::Structure
7875
8231
  end
7876
8232
 
@@ -8062,14 +8418,49 @@ module Aws::BedrockAgentCoreControl
8062
8418
  include Aws::Structure
8063
8419
  end
8064
8420
 
8421
+ # @!attribute [rw] harness_id
8422
+ # The ID of the harness that the endpoint belongs to.
8423
+ # @return [String]
8424
+ #
8425
+ # @!attribute [rw] endpoint_name
8426
+ # The name of the endpoint to retrieve.
8427
+ # @return [String]
8428
+ #
8429
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetHarnessEndpointRequest AWS API Documentation
8430
+ #
8431
+ class GetHarnessEndpointRequest < Struct.new(
8432
+ :harness_id,
8433
+ :endpoint_name)
8434
+ SENSITIVE = []
8435
+ include Aws::Structure
8436
+ end
8437
+
8438
+ # @!attribute [rw] endpoint
8439
+ # The endpoint resource.
8440
+ # @return [Types::HarnessEndpoint]
8441
+ #
8442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetHarnessEndpointResponse AWS API Documentation
8443
+ #
8444
+ class GetHarnessEndpointResponse < Struct.new(
8445
+ :endpoint)
8446
+ SENSITIVE = []
8447
+ include Aws::Structure
8448
+ end
8449
+
8065
8450
  # @!attribute [rw] harness_id
8066
8451
  # The ID of the harness to retrieve.
8067
8452
  # @return [String]
8068
8453
  #
8454
+ # @!attribute [rw] harness_version
8455
+ # Specific version of the harness to retrieve. If omitted, returns the
8456
+ # current Harness configuration, including its status.
8457
+ # @return [String]
8458
+ #
8069
8459
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetHarnessRequest AWS API Documentation
8070
8460
  #
8071
8461
  class GetHarnessRequest < Struct.new(
8072
- :harness_id)
8462
+ :harness_id,
8463
+ :harness_version)
8073
8464
  SENSITIVE = []
8074
8465
  include Aws::Structure
8075
8466
  end
@@ -8128,19 +8519,19 @@ module Aws::BedrockAgentCoreControl
8128
8519
  end
8129
8520
 
8130
8521
  # @!attribute [rw] client_secret_arn
8131
- # The Amazon Resource Name (ARN) of the client secret in AWS Secrets
8132
- # Manager.
8522
+ # The Amazon Resource Name (ARN) of the client secret in Amazon Web
8523
+ # Services Secrets Manager.
8133
8524
  # @return [Types::Secret]
8134
8525
  #
8135
8526
  # @!attribute [rw] client_secret_json_key
8136
- # The JSON key used to extract the client secret value from the AWS
8137
- # Secrets Manager secret.
8527
+ # The JSON key used to extract the client secret value from the Amazon
8528
+ # Web Services Secrets Manager secret.
8138
8529
  # @return [String]
8139
8530
  #
8140
8531
  # @!attribute [rw] client_secret_source
8141
8532
  # The source type of the client secret. Either `MANAGED` if the secret
8142
8533
  # is managed by the service, or `EXTERNAL` if managed by the user in
8143
- # AWS Secrets Manager.
8534
+ # Amazon Web Services Secrets Manager.
8144
8535
  # @return [String]
8145
8536
  #
8146
8537
  # @!attribute [rw] name
@@ -8245,6 +8636,14 @@ module Aws::BedrockAgentCoreControl
8245
8636
  # The list of evaluators applied during online evaluation.
8246
8637
  # @return [Array<Types::EvaluatorReference>]
8247
8638
  #
8639
+ # @!attribute [rw] insights
8640
+ # The list of insight types configured for this evaluation.
8641
+ # @return [Array<Types::Insight>]
8642
+ #
8643
+ # @!attribute [rw] clustering_config
8644
+ # The clustering configuration for periodic batch evaluation.
8645
+ # @return [Types::ClusteringConfig]
8646
+ #
8248
8647
  # @!attribute [rw] output_config
8249
8648
  # The output configuration specifying where evaluation results are
8250
8649
  # written.
@@ -8288,6 +8687,8 @@ module Aws::BedrockAgentCoreControl
8288
8687
  :rule,
8289
8688
  :data_source_config,
8290
8689
  :evaluators,
8690
+ :insights,
8691
+ :clustering_config,
8291
8692
  :output_config,
8292
8693
  :evaluation_execution_role_arn,
8293
8694
  :status,
@@ -8871,6 +9272,10 @@ module Aws::BedrockAgentCoreControl
8871
9272
  # The current status of the policy.
8872
9273
  # @return [String]
8873
9274
  #
9275
+ # @!attribute [rw] enforcement_mode
9276
+ # The current enforcement mode of the policy.
9277
+ # @return [String]
9278
+ #
8874
9279
  # @!attribute [rw] definition
8875
9280
  # The Cedar policy statement that defines the access control rules.
8876
9281
  # This contains the actual policy logic used for agent behavior
@@ -8898,6 +9303,7 @@ module Aws::BedrockAgentCoreControl
8898
9303
  :updated_at,
8899
9304
  :policy_arn,
8900
9305
  :status,
9306
+ :enforcement_mode,
8901
9307
  :definition,
8902
9308
  :description,
8903
9309
  :status_reasons)
@@ -8953,6 +9359,10 @@ module Aws::BedrockAgentCoreControl
8953
9359
  # The current status of the policy.
8954
9360
  # @return [String]
8955
9361
  #
9362
+ # @!attribute [rw] enforcement_mode
9363
+ # The current enforcement mode of the policy.
9364
+ # @return [String]
9365
+ #
8956
9366
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummaryResponse AWS API Documentation
8957
9367
  #
8958
9368
  class GetPolicySummaryResponse < Struct.new(
@@ -8962,7 +9372,8 @@ module Aws::BedrockAgentCoreControl
8962
9372
  :created_at,
8963
9373
  :updated_at,
8964
9374
  :policy_arn,
8965
- :status)
9375
+ :status,
9376
+ :enforcement_mode)
8966
9377
  SENSITIVE = []
8967
9378
  include Aws::Structure
8968
9379
  end
@@ -9276,16 +9687,16 @@ module Aws::BedrockAgentCoreControl
9276
9687
  # @return [String]
9277
9688
  #
9278
9689
  # @!attribute [rw] client_secret_config
9279
- # A reference to the AWS Secrets Manager secret that stores the client
9280
- # secret. This includes the secret ID and the JSON key used to extract
9281
- # the client secret value from the secret. Required when
9282
- # `clientSecretSource` is set to `EXTERNAL`.
9690
+ # A reference to the Amazon Web Services Secrets Manager secret that
9691
+ # stores the client secret. This includes the secret ID and the JSON
9692
+ # key used to extract the client secret value from the secret.
9693
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
9283
9694
  # @return [Types::SecretReference]
9284
9695
  #
9285
9696
  # @!attribute [rw] client_secret_source
9286
9697
  # The source type of the client secret. Use `MANAGED` if the secret is
9287
9698
  # managed by the service, or `EXTERNAL` if you manage the secret
9288
- # yourself in AWS Secrets Manager.
9699
+ # yourself in Amazon Web Services Secrets Manager.
9289
9700
  # @return [String]
9290
9701
  #
9291
9702
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GithubOauth2ProviderConfigInput AWS API Documentation
@@ -9329,16 +9740,16 @@ module Aws::BedrockAgentCoreControl
9329
9740
  # @return [String]
9330
9741
  #
9331
9742
  # @!attribute [rw] client_secret_config
9332
- # A reference to the AWS Secrets Manager secret that stores the client
9333
- # secret. This includes the secret ID and the JSON key used to extract
9334
- # the client secret value from the secret. Required when
9335
- # `clientSecretSource` is set to `EXTERNAL`.
9743
+ # A reference to the Amazon Web Services Secrets Manager secret that
9744
+ # stores the client secret. This includes the secret ID and the JSON
9745
+ # key used to extract the client secret value from the secret.
9746
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
9336
9747
  # @return [Types::SecretReference]
9337
9748
  #
9338
9749
  # @!attribute [rw] client_secret_source
9339
9750
  # The source type of the client secret. Use `MANAGED` if the secret is
9340
9751
  # managed by the service, or `EXTERNAL` if you manage the secret
9341
- # yourself in AWS Secrets Manager.
9752
+ # yourself in Amazon Web Services Secrets Manager.
9342
9753
  # @return [String]
9343
9754
  #
9344
9755
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GoogleOauth2ProviderConfigInput AWS API Documentation
@@ -9371,34 +9782,39 @@ module Aws::BedrockAgentCoreControl
9371
9782
  include Aws::Structure
9372
9783
  end
9373
9784
 
9374
- # Representation of a Harness.
9785
+ # Representation of a harness.
9375
9786
  #
9376
9787
  # @!attribute [rw] harness_id
9377
- # The ID of the Harness.
9788
+ # The ID of the harness.
9378
9789
  # @return [String]
9379
9790
  #
9380
9791
  # @!attribute [rw] harness_name
9381
- # The name of the Harness.
9792
+ # The name of the harness.
9382
9793
  # @return [String]
9383
9794
  #
9384
9795
  # @!attribute [rw] arn
9385
- # The ARN of the Harness.
9796
+ # The ARN of the harness.
9386
9797
  # @return [String]
9387
9798
  #
9388
9799
  # @!attribute [rw] status
9389
- # The status of the Harness.
9800
+ # The status of the harness.
9801
+ # @return [String]
9802
+ #
9803
+ # @!attribute [rw] harness_version
9804
+ # The version of the harness. Incremented on every successful
9805
+ # UpdateHarness.
9390
9806
  # @return [String]
9391
9807
  #
9392
9808
  # @!attribute [rw] execution_role_arn
9393
- # IAM role the Harness assumes when running.
9809
+ # IAM role the harness assumes when running.
9394
9810
  # @return [String]
9395
9811
  #
9396
9812
  # @!attribute [rw] created_at
9397
- # The createdAt time of the Harness.
9813
+ # The createdAt time of the harness.
9398
9814
  # @return [Time]
9399
9815
  #
9400
9816
  # @!attribute [rw] updated_at
9401
- # The updatedAt time of the Harness.
9817
+ # The updatedAt time of the harness.
9402
9818
  # @return [Time]
9403
9819
  #
9404
9820
  # @!attribute [rw] model
@@ -9406,19 +9822,19 @@ module Aws::BedrockAgentCoreControl
9406
9822
  # @return [Types::HarnessModelConfiguration]
9407
9823
  #
9408
9824
  # @!attribute [rw] system_prompt
9409
- # The system prompt of the Harness.
9825
+ # The system prompt of the harness.
9410
9826
  # @return [Array<Types::HarnessSystemContentBlock>]
9411
9827
  #
9412
9828
  # @!attribute [rw] tools
9413
- # The tools of the Harness.
9829
+ # The tools of the harness.
9414
9830
  # @return [Array<Types::HarnessTool>]
9415
9831
  #
9416
9832
  # @!attribute [rw] skills
9417
- # The skills of the Harness.
9833
+ # The skills of the harness.
9418
9834
  # @return [Array<Types::HarnessSkill>]
9419
9835
  #
9420
9836
  # @!attribute [rw] allowed_tools
9421
- # The allowed tools of the Harness. All tools are allowed by default.
9837
+ # The allowed tools of the harness. All tools are allowed by default.
9422
9838
  # @return [Array<String>]
9423
9839
  #
9424
9840
  # @!attribute [rw] truncation
@@ -9436,7 +9852,7 @@ module Aws::BedrockAgentCoreControl
9436
9852
  #
9437
9853
  # @!attribute [rw] environment_variables
9438
9854
  # Environment variables exposed in the environment in which the
9439
- # Harness operates.
9855
+ # harness operates.
9440
9856
  # @return [Hash<String,String>]
9441
9857
  #
9442
9858
  # @!attribute [rw] authorizer_configuration
@@ -9474,6 +9890,7 @@ module Aws::BedrockAgentCoreControl
9474
9890
  :harness_name,
9475
9891
  :arn,
9476
9892
  :status,
9893
+ :harness_version,
9477
9894
  :execution_role_arn,
9478
9895
  :created_at,
9479
9896
  :updated_at,
@@ -9710,16 +10127,93 @@ module Aws::BedrockAgentCoreControl
9710
10127
  include Aws::Structure
9711
10128
  end
9712
10129
 
9713
- # The environment artifact for a harness, such as a container image
9714
- # containing custom dependencies.
10130
+ # Explicitly opt out of memory.
9715
10131
  #
9716
- # @note HarnessEnvironmentArtifact is a union - when making an API calls you must set exactly one of the members.
10132
+ # @api private
9717
10133
  #
9718
- # @note HarnessEnvironmentArtifact is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of HarnessEnvironmentArtifact corresponding to the set member.
10134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessDisabledMemoryConfiguration AWS API Documentation
9719
10135
  #
9720
- # @!attribute [rw] container_configuration
9721
- # Representation of a container configuration.
9722
- # @return [Types::ContainerConfiguration]
10136
+ class HarnessDisabledMemoryConfiguration < Aws::EmptyStructure; end
10137
+
10138
+ # Representation of a harness endpoint. An endpoint is a named, stable
10139
+ # reference to a specific version of a harness that callers invoke,
10140
+ # allowing the underlying version to be updated without changing how the
10141
+ # agent is invoked.
10142
+ #
10143
+ # @!attribute [rw] harness_id
10144
+ # The ID of the harness that the endpoint belongs to.
10145
+ # @return [String]
10146
+ #
10147
+ # @!attribute [rw] harness_name
10148
+ # The name of the harness that the endpoint belongs to.
10149
+ # @return [String]
10150
+ #
10151
+ # @!attribute [rw] endpoint_name
10152
+ # The name of the endpoint.
10153
+ # @return [String]
10154
+ #
10155
+ # @!attribute [rw] arn
10156
+ # The ARN of the endpoint.
10157
+ # @return [String]
10158
+ #
10159
+ # @!attribute [rw] status
10160
+ # The status of the endpoint.
10161
+ # @return [String]
10162
+ #
10163
+ # @!attribute [rw] created_at
10164
+ # The timestamp when the endpoint was created.
10165
+ # @return [Time]
10166
+ #
10167
+ # @!attribute [rw] updated_at
10168
+ # The timestamp when the endpoint was last updated.
10169
+ # @return [Time]
10170
+ #
10171
+ # @!attribute [rw] live_version
10172
+ # The harness version that the endpoint is currently serving.
10173
+ # @return [String]
10174
+ #
10175
+ # @!attribute [rw] target_version
10176
+ # The harness version that the endpoint points to. While an update is
10177
+ # in progress, this can differ from the live version until the
10178
+ # endpoint finishes transitioning.
10179
+ # @return [String]
10180
+ #
10181
+ # @!attribute [rw] description
10182
+ # The description of the endpoint.
10183
+ # @return [String]
10184
+ #
10185
+ # @!attribute [rw] failure_reason
10186
+ # The reason the endpoint's last create or update operation failed.
10187
+ # @return [String]
10188
+ #
10189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessEndpoint AWS API Documentation
10190
+ #
10191
+ class HarnessEndpoint < Struct.new(
10192
+ :harness_id,
10193
+ :harness_name,
10194
+ :endpoint_name,
10195
+ :arn,
10196
+ :status,
10197
+ :created_at,
10198
+ :updated_at,
10199
+ :live_version,
10200
+ :target_version,
10201
+ :description,
10202
+ :failure_reason)
10203
+ SENSITIVE = []
10204
+ include Aws::Structure
10205
+ end
10206
+
10207
+ # The environment artifact for a harness, such as a container image
10208
+ # containing custom dependencies.
10209
+ #
10210
+ # @note HarnessEnvironmentArtifact is a union - when making an API calls you must set exactly one of the members.
10211
+ #
10212
+ # @note HarnessEnvironmentArtifact is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of HarnessEnvironmentArtifact corresponding to the set member.
10213
+ #
10214
+ # @!attribute [rw] container_configuration
10215
+ # Representation of a container configuration.
10216
+ # @return [Types::ContainerConfiguration]
9723
10217
  #
9724
10218
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessEnvironmentArtifact AWS API Documentation
9725
10219
  #
@@ -9920,6 +10414,37 @@ module Aws::BedrockAgentCoreControl
9920
10414
  include Aws::Structure
9921
10415
  end
9922
10416
 
10417
+ # Configuration for managed memory creation.
10418
+ #
10419
+ # @!attribute [rw] arn
10420
+ # The ARN of the managed AgentCore Memory resource. Read-only on Get,
10421
+ # ignored on Create/Update input.
10422
+ # @return [String]
10423
+ #
10424
+ # @!attribute [rw] strategies
10425
+ # Strategy types to enable. Defaults to \[SEMANTIC, SUMMARIZATION\].
10426
+ # @return [Array<String>]
10427
+ #
10428
+ # @!attribute [rw] event_expiry_duration
10429
+ # Event retention in days. Defaults to 30.
10430
+ # @return [Integer]
10431
+ #
10432
+ # @!attribute [rw] encryption_key_arn
10433
+ # Customer-managed KMS key. Defaults to AWS-owned key. Not updatable
10434
+ # after creation.
10435
+ # @return [String]
10436
+ #
10437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessManagedMemoryConfiguration AWS API Documentation
10438
+ #
10439
+ class HarnessManagedMemoryConfiguration < Struct.new(
10440
+ :arn,
10441
+ :strategies,
10442
+ :event_expiry_duration,
10443
+ :encryption_key_arn)
10444
+ SENSITIVE = []
10445
+ include Aws::Structure
10446
+ end
10447
+
9923
10448
  # The memory configuration for a harness.
9924
10449
  #
9925
10450
  # @note HarnessMemoryConfiguration is a union - when making an API calls you must set exactly one of the members.
@@ -9930,16 +10455,29 @@ module Aws::BedrockAgentCoreControl
9930
10455
  # The AgentCore Memory configuration.
9931
10456
  # @return [Types::HarnessAgentCoreMemoryConfiguration]
9932
10457
  #
10458
+ # @!attribute [rw] managed_memory_configuration
10459
+ # Harness creates and manages a memory resource in the customer's
10460
+ # account.
10461
+ # @return [Types::HarnessManagedMemoryConfiguration]
10462
+ #
10463
+ # @!attribute [rw] disabled
10464
+ # Explicitly opt out of memory.
10465
+ # @return [Types::HarnessDisabledMemoryConfiguration]
10466
+ #
9933
10467
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessMemoryConfiguration AWS API Documentation
9934
10468
  #
9935
10469
  class HarnessMemoryConfiguration < Struct.new(
9936
10470
  :agent_core_memory_configuration,
10471
+ :managed_memory_configuration,
10472
+ :disabled,
9937
10473
  :unknown)
9938
10474
  SENSITIVE = []
9939
10475
  include Aws::Structure
9940
10476
  include Aws::Structure::Union
9941
10477
 
9942
10478
  class AgentCoreMemoryConfiguration < HarnessMemoryConfiguration; end
10479
+ class ManagedMemoryConfiguration < HarnessMemoryConfiguration; end
10480
+ class Disabled < HarnessMemoryConfiguration; end
9943
10481
  class Unknown < HarnessMemoryConfiguration; end
9944
10482
  end
9945
10483
 
@@ -10069,12 +10607,17 @@ module Aws::BedrockAgentCoreControl
10069
10607
  # A git repository containing the skill.
10070
10608
  # @return [Types::HarnessSkillGitSource]
10071
10609
  #
10610
+ # @!attribute [rw] aws_skills
10611
+ # AWS Skills baked into the harness's underlying Runtime.
10612
+ # @return [Types::HarnessSkillAwsSkillsSource]
10613
+ #
10072
10614
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkill AWS API Documentation
10073
10615
  #
10074
10616
  class HarnessSkill < Struct.new(
10075
10617
  :path,
10076
10618
  :s3,
10077
10619
  :git,
10620
+ :aws_skills,
10078
10621
  :unknown)
10079
10622
  SENSITIVE = []
10080
10623
  include Aws::Structure
@@ -10083,9 +10626,25 @@ module Aws::BedrockAgentCoreControl
10083
10626
  class Path < HarnessSkill; end
10084
10627
  class S3 < HarnessSkill; end
10085
10628
  class Git < HarnessSkill; end
10629
+ class AwsSkills < HarnessSkill; end
10086
10630
  class Unknown < HarnessSkill; end
10087
10631
  end
10088
10632
 
10633
+ # Passed to show that AWS Skills should be included.
10634
+ #
10635
+ # @!attribute [rw] paths
10636
+ # Optionally filter allowed skills with glob syntax, e.g.,
10637
+ # \['core-skills/*'\].
10638
+ # @return [Array<String>]
10639
+ #
10640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkillAwsSkillsSource AWS API Documentation
10641
+ #
10642
+ class HarnessSkillAwsSkillsSource < Struct.new(
10643
+ :paths)
10644
+ SENSITIVE = []
10645
+ include Aws::Structure
10646
+ end
10647
+
10089
10648
  # Authentication configuration for accessing a private git repository.
10090
10649
  #
10091
10650
  # @!attribute [rw] credential_arn
@@ -10210,6 +10769,10 @@ module Aws::BedrockAgentCoreControl
10210
10769
  # The timestamp when the harness was last updated.
10211
10770
  # @return [Time]
10212
10771
  #
10772
+ # @!attribute [rw] harness_version
10773
+ # The latest version of the harness.
10774
+ # @return [String]
10775
+ #
10213
10776
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSummary AWS API Documentation
10214
10777
  #
10215
10778
  class HarnessSummary < Struct.new(
@@ -10218,7 +10781,8 @@ module Aws::BedrockAgentCoreControl
10218
10781
  :arn,
10219
10782
  :status,
10220
10783
  :created_at,
10221
- :updated_at)
10784
+ :updated_at,
10785
+ :harness_version)
10222
10786
  SENSITIVE = []
10223
10787
  include Aws::Structure
10224
10788
  end
@@ -10367,6 +10931,87 @@ module Aws::BedrockAgentCoreControl
10367
10931
  class Unknown < HarnessTruncationStrategyConfiguration; end
10368
10932
  end
10369
10933
 
10934
+ # Summary information about a single version of a harness.
10935
+ #
10936
+ # @!attribute [rw] harness_id
10937
+ # The ID of the harness.
10938
+ # @return [String]
10939
+ #
10940
+ # @!attribute [rw] harness_name
10941
+ # The name of the harness.
10942
+ # @return [String]
10943
+ #
10944
+ # @!attribute [rw] arn
10945
+ # The ARN of the harness.
10946
+ # @return [String]
10947
+ #
10948
+ # @!attribute [rw] harness_version
10949
+ # The version of the harness that this summary describes.
10950
+ # @return [String]
10951
+ #
10952
+ # @!attribute [rw] status
10953
+ # The status of this harness version.
10954
+ # @return [String]
10955
+ #
10956
+ # @!attribute [rw] created_at
10957
+ # The timestamp when this harness version was created.
10958
+ # @return [Time]
10959
+ #
10960
+ # @!attribute [rw] updated_at
10961
+ # The timestamp when this harness version was last updated.
10962
+ # @return [Time]
10963
+ #
10964
+ # @!attribute [rw] failure_reason
10965
+ # Reason why the create or update operation for this harness version
10966
+ # failed.
10967
+ # @return [String]
10968
+ #
10969
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessVersionSummary AWS API Documentation
10970
+ #
10971
+ class HarnessVersionSummary < Struct.new(
10972
+ :harness_id,
10973
+ :harness_name,
10974
+ :arn,
10975
+ :harness_version,
10976
+ :status,
10977
+ :created_at,
10978
+ :updated_at,
10979
+ :failure_reason)
10980
+ SENSITIVE = []
10981
+ include Aws::Structure
10982
+ end
10983
+
10984
+ # A hosting environment whose workloads are allowed to invoke the
10985
+ # target. At launch, the only supported hosting environment is AgentCore
10986
+ # Gateway.
10987
+ #
10988
+ # @!attribute [rw] arn
10989
+ # The Amazon Resource Name (ARN) of the hosting environment.
10990
+ # @return [String]
10991
+ #
10992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HostingEnvironment AWS API Documentation
10993
+ #
10994
+ class HostingEnvironment < Struct.new(
10995
+ :arn)
10996
+ SENSITIVE = []
10997
+ include Aws::Structure
10998
+ end
10999
+
11000
+ # The API schema configuration for an HTTP target. This schema defines
11001
+ # the API structure that the target exposes.
11002
+ #
11003
+ # @!attribute [rw] source
11004
+ # Configuration for API schema.
11005
+ # @return [Types::ApiSchemaConfiguration]
11006
+ #
11007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpApiSchemaConfiguration AWS API Documentation
11008
+ #
11009
+ class HttpApiSchemaConfiguration < Struct.new(
11010
+ :source)
11011
+ SENSITIVE = []
11012
+ include Aws::Structure
11013
+ end
11014
+
10370
11015
  # The HTTP target configuration for a gateway target. Contains the
10371
11016
  # configuration for HTTP-based target endpoints.
10372
11017
  #
@@ -10379,16 +11024,23 @@ module Aws::BedrockAgentCoreControl
10379
11024
  # communication with an agent runtime.
10380
11025
  # @return [Types::RuntimeTargetConfiguration]
10381
11026
  #
11027
+ # @!attribute [rw] passthrough
11028
+ # The passthrough configuration for the HTTP target. A passthrough
11029
+ # target forwards requests directly to an external HTTP endpoint.
11030
+ # @return [Types::PassthroughTargetConfiguration]
11031
+ #
10382
11032
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpTargetConfiguration AWS API Documentation
10383
11033
  #
10384
11034
  class HttpTargetConfiguration < Struct.new(
10385
11035
  :agentcore_runtime,
11036
+ :passthrough,
10386
11037
  :unknown)
10387
11038
  SENSITIVE = []
10388
11039
  include Aws::Structure
10389
11040
  include Aws::Structure::Union
10390
11041
 
10391
11042
  class AgentcoreRuntime < HttpTargetConfiguration; end
11043
+ class Passthrough < HttpTargetConfiguration; end
10392
11044
  class Unknown < HttpTargetConfiguration; end
10393
11045
  end
10394
11046
 
@@ -10454,16 +11106,16 @@ module Aws::BedrockAgentCoreControl
10454
11106
  # @return [String]
10455
11107
  #
10456
11108
  # @!attribute [rw] client_secret_config
10457
- # A reference to the AWS Secrets Manager secret that stores the client
10458
- # secret. This includes the secret ID and the JSON key used to extract
10459
- # the client secret value from the secret. Required when
10460
- # `clientSecretSource` is set to `EXTERNAL`.
11109
+ # A reference to the Amazon Web Services Secrets Manager secret that
11110
+ # stores the client secret. This includes the secret ID and the JSON
11111
+ # key used to extract the client secret value from the secret.
11112
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
10461
11113
  # @return [Types::SecretReference]
10462
11114
  #
10463
11115
  # @!attribute [rw] client_secret_source
10464
11116
  # The source type of the client secret. Use `MANAGED` if the secret is
10465
11117
  # managed by the service, or `EXTERNAL` if you manage the secret
10466
- # yourself in AWS Secrets Manager.
11118
+ # yourself in Amazon Web Services Secrets Manager.
10467
11119
  # @return [String]
10468
11120
  #
10469
11121
  # @!attribute [rw] issuer
@@ -10571,6 +11223,132 @@ module Aws::BedrockAgentCoreControl
10571
11223
  include Aws::Structure
10572
11224
  end
10573
11225
 
11226
+ # The source identifying the inference connector.
11227
+ #
11228
+ # @!attribute [rw] connector_id
11229
+ # The identifier for the inference connector (for example,
11230
+ # `bedrock-mantle`, `openai`, or `anthropic`).
11231
+ # @return [String]
11232
+ #
11233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InferenceConnectorSource AWS API Documentation
11234
+ #
11235
+ class InferenceConnectorSource < Struct.new(
11236
+ :connector_id)
11237
+ SENSITIVE = []
11238
+ include Aws::Structure
11239
+ end
11240
+
11241
+ # The configuration for a connector-based inference target. This
11242
+ # configuration uses a built-in connector that provides predefined rules
11243
+ # for a large language model (LLM) provider.
11244
+ #
11245
+ # @!attribute [rw] source
11246
+ # The source configuration identifying which inference connector to
11247
+ # use.
11248
+ # @return [Types::InferenceConnectorSource]
11249
+ #
11250
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InferenceConnectorTargetConfiguration AWS API Documentation
11251
+ #
11252
+ class InferenceConnectorTargetConfiguration < Struct.new(
11253
+ :source)
11254
+ SENSITIVE = []
11255
+ include Aws::Structure
11256
+ end
11257
+
11258
+ # The configuration for a specific inference operation, including its
11259
+ # request path and the models that the operation supports.
11260
+ #
11261
+ # @!attribute [rw] path
11262
+ # The request path for this operation (for example, `/v1/messages` or
11263
+ # `/v1/responses`).
11264
+ # @return [String]
11265
+ #
11266
+ # @!attribute [rw] provider_path
11267
+ # The provider path to forward requests to, if it differs from the
11268
+ # request path. For example, `/anthropic/v1/messages` when the
11269
+ # provider expects a different path than the client-facing
11270
+ # `/v1/messages`.
11271
+ # @return [String]
11272
+ #
11273
+ # @!attribute [rw] models
11274
+ # The list of models supported for this operation.
11275
+ # @return [Array<Types::ModelEntry>]
11276
+ #
11277
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InferenceOperationConfiguration AWS API Documentation
11278
+ #
11279
+ class InferenceOperationConfiguration < Struct.new(
11280
+ :path,
11281
+ :provider_path,
11282
+ :models)
11283
+ SENSITIVE = []
11284
+ include Aws::Structure
11285
+ end
11286
+
11287
+ # The configuration for a provider-based inference target. This
11288
+ # configuration explicitly defines the endpoint, model mapping, and
11289
+ # operations used to route requests to a large language model (LLM)
11290
+ # provider.
11291
+ #
11292
+ # @!attribute [rw] endpoint
11293
+ # The HTTPS endpoint of the inference provider that the gateway
11294
+ # forwards requests to.
11295
+ # @return [String]
11296
+ #
11297
+ # @!attribute [rw] model_mapping
11298
+ # The configuration that translates client-facing model IDs to the
11299
+ # model IDs expected by the provider.
11300
+ # @return [Types::ModelMapping]
11301
+ #
11302
+ # @!attribute [rw] operations
11303
+ # A list of per-operation configurations that map request paths to the
11304
+ # models supported for each operation.
11305
+ # @return [Array<Types::InferenceOperationConfiguration>]
11306
+ #
11307
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InferenceProviderTargetConfiguration AWS API Documentation
11308
+ #
11309
+ class InferenceProviderTargetConfiguration < Struct.new(
11310
+ :endpoint,
11311
+ :model_mapping,
11312
+ :operations)
11313
+ SENSITIVE = []
11314
+ include Aws::Structure
11315
+ end
11316
+
11317
+ # The configuration for an inference target. An inference target routes
11318
+ # requests to a large language model (LLM) provider, either through a
11319
+ # built-in connector or an explicitly configured provider.
11320
+ #
11321
+ # @note InferenceTargetConfiguration is a union - when making an API calls you must set exactly one of the members.
11322
+ #
11323
+ # @note InferenceTargetConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InferenceTargetConfiguration corresponding to the set member.
11324
+ #
11325
+ # @!attribute [rw] connector
11326
+ # The connector-based inference configuration. Use this option to
11327
+ # route requests to an LLM provider through a built-in connector that
11328
+ # includes predefined provider rules.
11329
+ # @return [Types::InferenceConnectorTargetConfiguration]
11330
+ #
11331
+ # @!attribute [rw] provider
11332
+ # The provider-based inference configuration. Use this option to
11333
+ # explicitly configure the endpoint, model mapping, and operations for
11334
+ # an LLM provider.
11335
+ # @return [Types::InferenceProviderTargetConfiguration]
11336
+ #
11337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InferenceTargetConfiguration AWS API Documentation
11338
+ #
11339
+ class InferenceTargetConfiguration < Struct.new(
11340
+ :connector,
11341
+ :provider,
11342
+ :unknown)
11343
+ SENSITIVE = []
11344
+ include Aws::Structure
11345
+ include Aws::Structure::Union
11346
+
11347
+ class Connector < InferenceTargetConfiguration; end
11348
+ class Provider < InferenceTargetConfiguration; end
11349
+ class Unknown < InferenceTargetConfiguration; end
11350
+ end
11351
+
10574
11352
  # Inline examples provided directly in the request body.
10575
11353
  #
10576
11354
  # @!attribute [rw] examples
@@ -10585,6 +11363,23 @@ module Aws::BedrockAgentCoreControl
10585
11363
  include Aws::Structure
10586
11364
  end
10587
11365
 
11366
+ # A reference to an insight analysis to run against sessions during
11367
+ # evaluation. Insights provide deeper analysis beyond individual
11368
+ # evaluator scores, including failure detection, user intent clustering,
11369
+ # and execution summarization.
11370
+ #
11371
+ # @!attribute [rw] insight_id
11372
+ # The unique identifier of the insight to run.
11373
+ # @return [String]
11374
+ #
11375
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Insight AWS API Documentation
11376
+ #
11377
+ class Insight < Struct.new(
11378
+ :insight_id)
11379
+ SENSITIVE = []
11380
+ include Aws::Structure
11381
+ end
11382
+
10588
11383
  # The interceptor configuration.
10589
11384
  #
10590
11385
  # @note InterceptorConfiguration is a union - when making an API calls you must set exactly one of the members.
@@ -10615,10 +11410,56 @@ module Aws::BedrockAgentCoreControl
10615
11410
  # interceptor. When set to true, request headers will be passed.
10616
11411
  # @return [Boolean]
10617
11412
  #
11413
+ # @!attribute [rw] payload_filter
11414
+ # The filter that determines which parts of the request or response
11415
+ # payload are passed as input to the interceptor.
11416
+ # @return [Types::InterceptorPayloadFilter]
11417
+ #
10618
11418
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InterceptorInputConfiguration AWS API Documentation
10619
11419
  #
10620
11420
  class InterceptorInputConfiguration < Struct.new(
10621
- :pass_request_headers)
11421
+ :pass_request_headers,
11422
+ :payload_filter)
11423
+ SENSITIVE = []
11424
+ include Aws::Structure
11425
+ end
11426
+
11427
+ # A selector that identifies a payload field to exclude from the
11428
+ # interceptor input.
11429
+ #
11430
+ # @note InterceptorPayloadExclusionSelector is a union - when making an API calls you must set exactly one of the members.
11431
+ #
11432
+ # @note InterceptorPayloadExclusionSelector is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InterceptorPayloadExclusionSelector corresponding to the set member.
11433
+ #
11434
+ # @!attribute [rw] field
11435
+ # The field to exclude from the interceptor input.
11436
+ # @return [String]
11437
+ #
11438
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InterceptorPayloadExclusionSelector AWS API Documentation
11439
+ #
11440
+ class InterceptorPayloadExclusionSelector < Struct.new(
11441
+ :field,
11442
+ :unknown)
11443
+ SENSITIVE = []
11444
+ include Aws::Structure
11445
+ include Aws::Structure::Union
11446
+
11447
+ class Field < InterceptorPayloadExclusionSelector; end
11448
+ class Unknown < InterceptorPayloadExclusionSelector; end
11449
+ end
11450
+
11451
+ # The filter that controls which fields of the request or response
11452
+ # payload are included in the input to the interceptor.
11453
+ #
11454
+ # @!attribute [rw] exclude
11455
+ # The list of selectors that identify payload fields to exclude from
11456
+ # the interceptor input.
11457
+ # @return [Array<Types::InterceptorPayloadExclusionSelector>]
11458
+ #
11459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InterceptorPayloadFilter AWS API Documentation
11460
+ #
11461
+ class InterceptorPayloadFilter < Struct.new(
11462
+ :exclude)
10622
11463
  SENSITIVE = []
10623
11464
  include Aws::Structure
10624
11465
  end
@@ -10750,6 +11591,23 @@ module Aws::BedrockAgentCoreControl
10750
11591
  include Aws::Structure
10751
11592
  end
10752
11593
 
11594
+ # The Lambda configuration for custom transformations. This structure
11595
+ # defines the Lambda function that the gateway invokes to transform
11596
+ # data.
11597
+ #
11598
+ # @!attribute [rw] arn
11599
+ # The Amazon Resource Name (ARN) of the Lambda function. This function
11600
+ # is invoked by the gateway to transform data.
11601
+ # @return [String]
11602
+ #
11603
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LambdaTransformConfiguration AWS API Documentation
11604
+ #
11605
+ class LambdaTransformConfiguration < Struct.new(
11606
+ :arn)
11607
+ SENSITIVE = []
11608
+ include Aws::Structure
11609
+ end
11610
+
10753
11611
  # LifecycleConfiguration lets you manage the lifecycle of runtime
10754
11612
  # sessions and resources in AgentCore Runtime. This configuration helps
10755
11613
  # optimize resource utilization by automatically cleaning up idle
@@ -10793,16 +11651,16 @@ module Aws::BedrockAgentCoreControl
10793
11651
  # @return [String]
10794
11652
  #
10795
11653
  # @!attribute [rw] client_secret_config
10796
- # A reference to the AWS Secrets Manager secret that stores the client
10797
- # secret. This includes the secret ID and the JSON key used to extract
10798
- # the client secret value from the secret. Required when
10799
- # `clientSecretSource` is set to `EXTERNAL`.
11654
+ # A reference to the Amazon Web Services Secrets Manager secret that
11655
+ # stores the client secret. This includes the secret ID and the JSON
11656
+ # key used to extract the client secret value from the secret.
11657
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
10800
11658
  # @return [Types::SecretReference]
10801
11659
  #
10802
11660
  # @!attribute [rw] client_secret_source
10803
11661
  # The source type of the client secret. Use `MANAGED` if the secret is
10804
11662
  # managed by the service, or `EXTERNAL` if you manage the secret
10805
- # yourself in AWS Secrets Manager.
11663
+ # yourself in Amazon Web Services Secrets Manager.
10806
11664
  # @return [String]
10807
11665
  #
10808
11666
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LinkedinOauth2ProviderConfigInput AWS API Documentation
@@ -11512,6 +12370,84 @@ module Aws::BedrockAgentCoreControl
11512
12370
  include Aws::Structure
11513
12371
  end
11514
12372
 
12373
+ # @!attribute [rw] harness_id
12374
+ # The ID of the harness whose endpoints are listed.
12375
+ # @return [String]
12376
+ #
12377
+ # @!attribute [rw] max_results
12378
+ # The maximum number of results to return in a single call.
12379
+ # @return [Integer]
12380
+ #
12381
+ # @!attribute [rw] next_token
12382
+ # The token for the next set of results.
12383
+ # @return [String]
12384
+ #
12385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnessEndpointsRequest AWS API Documentation
12386
+ #
12387
+ class ListHarnessEndpointsRequest < Struct.new(
12388
+ :harness_id,
12389
+ :max_results,
12390
+ :next_token)
12391
+ SENSITIVE = []
12392
+ include Aws::Structure
12393
+ end
12394
+
12395
+ # @!attribute [rw] endpoints
12396
+ # The list of harness endpoints.
12397
+ # @return [Array<Types::HarnessEndpoint>]
12398
+ #
12399
+ # @!attribute [rw] next_token
12400
+ # The token for the next set of results.
12401
+ # @return [String]
12402
+ #
12403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnessEndpointsResponse AWS API Documentation
12404
+ #
12405
+ class ListHarnessEndpointsResponse < Struct.new(
12406
+ :endpoints,
12407
+ :next_token)
12408
+ SENSITIVE = []
12409
+ include Aws::Structure
12410
+ end
12411
+
12412
+ # @!attribute [rw] harness_id
12413
+ # The ID of the harness whose versions are listed.
12414
+ # @return [String]
12415
+ #
12416
+ # @!attribute [rw] max_results
12417
+ # The maximum number of results to return in a single call.
12418
+ # @return [Integer]
12419
+ #
12420
+ # @!attribute [rw] next_token
12421
+ # The token for the next set of results.
12422
+ # @return [String]
12423
+ #
12424
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnessVersionsRequest AWS API Documentation
12425
+ #
12426
+ class ListHarnessVersionsRequest < Struct.new(
12427
+ :harness_id,
12428
+ :max_results,
12429
+ :next_token)
12430
+ SENSITIVE = []
12431
+ include Aws::Structure
12432
+ end
12433
+
12434
+ # @!attribute [rw] harness_versions
12435
+ # The list of harness version summaries.
12436
+ # @return [Array<Types::HarnessVersionSummary>]
12437
+ #
12438
+ # @!attribute [rw] next_token
12439
+ # The token for the next set of results.
12440
+ # @return [String]
12441
+ #
12442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListHarnessVersionsResponse AWS API Documentation
12443
+ #
12444
+ class ListHarnessVersionsResponse < Struct.new(
12445
+ :harness_versions,
12446
+ :next_token)
12447
+ SENSITIVE = []
12448
+ include Aws::Structure
12449
+ end
12450
+
11515
12451
  # @!attribute [rw] max_results
11516
12452
  # The maximum number of results to return in a single call.
11517
12453
  # @return [Integer]
@@ -12456,7 +13392,7 @@ module Aws::BedrockAgentCoreControl
12456
13392
  :search_type,
12457
13393
  :session_configuration,
12458
13394
  :streaming_configuration)
12459
- SENSITIVE = []
13395
+ SENSITIVE = [:instructions]
12460
13396
  include Aws::Structure
12461
13397
  end
12462
13398
 
@@ -12705,6 +13641,12 @@ module Aws::BedrockAgentCoreControl
12705
13641
  # The configuration for an Amazon API Gateway target.
12706
13642
  # @return [Types::ApiGatewayTargetConfiguration]
12707
13643
  #
13644
+ # @!attribute [rw] connector
13645
+ # The connector integration configuration for the Model Context
13646
+ # Protocol target. This configuration defines how the gateway uses a
13647
+ # pre-built connector to communicate with the target.
13648
+ # @return [Types::ConnectorTargetConfiguration]
13649
+ #
12708
13650
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpTargetConfiguration AWS API Documentation
12709
13651
  #
12710
13652
  class McpTargetConfiguration < Struct.new(
@@ -12713,6 +13655,7 @@ module Aws::BedrockAgentCoreControl
12713
13655
  :lambda,
12714
13656
  :mcp_server,
12715
13657
  :api_gateway,
13658
+ :connector,
12716
13659
  :unknown)
12717
13660
  SENSITIVE = []
12718
13661
  include Aws::Structure
@@ -12723,6 +13666,7 @@ module Aws::BedrockAgentCoreControl
12723
13666
  class Lambda < McpTargetConfiguration; end
12724
13667
  class McpServer < McpTargetConfiguration; end
12725
13668
  class ApiGateway < McpTargetConfiguration; end
13669
+ class Connector < McpTargetConfiguration; end
12726
13670
  class Unknown < McpTargetConfiguration; end
12727
13671
  end
12728
13672
 
@@ -12817,6 +13761,12 @@ module Aws::BedrockAgentCoreControl
12817
13761
  # resources.
12818
13762
  # @return [Types::StreamDeliveryResources]
12819
13763
  #
13764
+ # @!attribute [rw] managed_by_resource_arn
13765
+ # ARN of the resource managing this memory (e.g. a harness). When set,
13766
+ # strategy modifications and deletion are only allowed through the
13767
+ # managing resource.
13768
+ # @return [String]
13769
+ #
12820
13770
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Memory AWS API Documentation
12821
13771
  #
12822
13772
  class Memory < Struct.new(
@@ -12833,7 +13783,8 @@ module Aws::BedrockAgentCoreControl
12833
13783
  :updated_at,
12834
13784
  :strategies,
12835
13785
  :indexed_keys,
12836
- :stream_delivery_resources)
13786
+ :stream_delivery_resources,
13787
+ :managed_by_resource_arn)
12837
13788
  SENSITIVE = [:description]
12838
13789
  include Aws::Structure
12839
13790
  end
@@ -12984,6 +13935,11 @@ module Aws::BedrockAgentCoreControl
12984
13935
  # The timestamp when the memory was last updated.
12985
13936
  # @return [Time]
12986
13937
  #
13938
+ # @!attribute [rw] managed_by_resource_arn
13939
+ # ARN of the resource managing this memory (e.g. a harness). Null if
13940
+ # not managed.
13941
+ # @return [String]
13942
+ #
12987
13943
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemorySummary AWS API Documentation
12988
13944
  #
12989
13945
  class MemorySummary < Struct.new(
@@ -12991,7 +13947,8 @@ module Aws::BedrockAgentCoreControl
12991
13947
  :id,
12992
13948
  :status,
12993
13949
  :created_at,
12994
- :updated_at)
13950
+ :updated_at,
13951
+ :managed_by_resource_arn)
12995
13952
  SENSITIVE = []
12996
13953
  include Aws::Structure
12997
13954
  end
@@ -13095,16 +14052,16 @@ module Aws::BedrockAgentCoreControl
13095
14052
  # @return [String]
13096
14053
  #
13097
14054
  # @!attribute [rw] client_secret_config
13098
- # A reference to the AWS Secrets Manager secret that stores the client
13099
- # secret. This includes the secret ID and the JSON key used to extract
13100
- # the client secret value from the secret. Required when
13101
- # `clientSecretSource` is set to `EXTERNAL`.
14055
+ # A reference to the Amazon Web Services Secrets Manager secret that
14056
+ # stores the client secret. This includes the secret ID and the JSON
14057
+ # key used to extract the client secret value from the secret.
14058
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
13102
14059
  # @return [Types::SecretReference]
13103
14060
  #
13104
14061
  # @!attribute [rw] client_secret_source
13105
14062
  # The source type of the client secret. Use `MANAGED` if the secret is
13106
14063
  # managed by the service, or `EXTERNAL` if you manage the secret
13107
- # yourself in AWS Secrets Manager.
14064
+ # yourself in Amazon Web Services Secrets Manager.
13108
14065
  # @return [String]
13109
14066
  #
13110
14067
  # @!attribute [rw] tenant_id
@@ -13144,6 +14101,37 @@ module Aws::BedrockAgentCoreControl
13144
14101
  include Aws::Structure
13145
14102
  end
13146
14103
 
14104
+ # A model entry that specifies a model supported for an inference
14105
+ # operation.
14106
+ #
14107
+ # @!attribute [rw] model
14108
+ # The model ID or glob pattern that identifies the model (for example,
14109
+ # `anthropic.claude-opus-*` or `openai.gpt-oss-*`).
14110
+ # @return [String]
14111
+ #
14112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModelEntry AWS API Documentation
14113
+ #
14114
+ class ModelEntry < Struct.new(
14115
+ :model)
14116
+ SENSITIVE = []
14117
+ include Aws::Structure
14118
+ end
14119
+
14120
+ # The configuration that translates model IDs between client-facing
14121
+ # names and provider model IDs.
14122
+ #
14123
+ # @!attribute [rw] provider_prefix
14124
+ # The provider prefix configuration used for model ID translation.
14125
+ # @return [Types::ProviderPrefix]
14126
+ #
14127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ModelMapping AWS API Documentation
14128
+ #
14129
+ class ModelMapping < Struct.new(
14130
+ :provider_prefix)
14131
+ SENSITIVE = []
14132
+ include Aws::Structure
14133
+ end
14134
+
13147
14135
  # Contains information for modifying a consolidation configuration.
13148
14136
  #
13149
14137
  # @note ModifyConsolidationConfiguration is a union - when making an API calls you must set exactly one of the members.
@@ -13791,6 +14779,14 @@ module Aws::BedrockAgentCoreControl
13791
14779
  # execution failed.
13792
14780
  # @return [String]
13793
14781
  #
14782
+ # @!attribute [rw] insights
14783
+ # The list of insight types configured for this evaluation.
14784
+ # @return [Array<Types::Insight>]
14785
+ #
14786
+ # @!attribute [rw] clustering_config
14787
+ # The clustering configuration for periodic batch evaluation.
14788
+ # @return [Types::ClusteringConfig]
14789
+ #
13794
14790
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/OnlineEvaluationConfigSummary AWS API Documentation
13795
14791
  #
13796
14792
  class OnlineEvaluationConfigSummary < Struct.new(
@@ -13802,7 +14798,9 @@ module Aws::BedrockAgentCoreControl
13802
14798
  :execution_status,
13803
14799
  :created_at,
13804
14800
  :updated_at,
13805
- :failure_reason)
14801
+ :failure_reason,
14802
+ :insights,
14803
+ :clustering_config)
13806
14804
  SENSITIVE = [:description]
13807
14805
  include Aws::Structure
13808
14806
  end
@@ -13823,6 +14821,41 @@ module Aws::BedrockAgentCoreControl
13823
14821
  include Aws::Structure
13824
14822
  end
13825
14823
 
14824
+ # The configuration for an HTTP passthrough target. A passthrough target
14825
+ # forwards requests directly to an external HTTP endpoint.
14826
+ #
14827
+ # @!attribute [rw] endpoint
14828
+ # The HTTPS endpoint that the gateway forwards requests to for this
14829
+ # passthrough target.
14830
+ # @return [String]
14831
+ #
14832
+ # @!attribute [rw] protocol_type
14833
+ # The application protocol the passthrough target implements. Required
14834
+ # for passthrough targets.
14835
+ # @return [String]
14836
+ #
14837
+ # @!attribute [rw] schema
14838
+ # The API schema configuration that defines the structure of the
14839
+ # passthrough target's API.
14840
+ # @return [Types::HttpApiSchemaConfiguration]
14841
+ #
14842
+ # @!attribute [rw] stickiness_configuration
14843
+ # The session stickiness configuration for the passthrough target.
14844
+ # This configuration routes requests within the same session to the
14845
+ # same target.
14846
+ # @return [Types::StickinessConfiguration]
14847
+ #
14848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PassthroughTargetConfiguration AWS API Documentation
14849
+ #
14850
+ class PassthroughTargetConfiguration < Struct.new(
14851
+ :endpoint,
14852
+ :protocol_type,
14853
+ :schema,
14854
+ :stickiness_configuration)
14855
+ SENSITIVE = []
14856
+ include Aws::Structure
14857
+ end
14858
+
13826
14859
  # Contains summary information about a payment connector.
13827
14860
  #
13828
14861
  # @!attribute [rw] payment_connector_id
@@ -14080,6 +15113,10 @@ module Aws::BedrockAgentCoreControl
14080
15113
  # The current status of the policy.
14081
15114
  # @return [String]
14082
15115
  #
15116
+ # @!attribute [rw] enforcement_mode
15117
+ # The current enforcement mode of the policy.
15118
+ # @return [String]
15119
+ #
14083
15120
  # @!attribute [rw] definition
14084
15121
  # The Cedar policy statement that defines the access control rules.
14085
15122
  # This contains the actual policy logic used for agent behavior
@@ -14108,6 +15145,7 @@ module Aws::BedrockAgentCoreControl
14108
15145
  :updated_at,
14109
15146
  :policy_arn,
14110
15147
  :status,
15148
+ :enforcement_mode,
14111
15149
  :definition,
14112
15150
  :description,
14113
15151
  :status_reasons)
@@ -14147,11 +15185,17 @@ module Aws::BedrockAgentCoreControl
14147
15185
  # select the most appropriate policy option.
14148
15186
  # @return [Types::PolicyGenerationDetails]
14149
15187
  #
15188
+ # @!attribute [rw] policy
15189
+ # An AgentCore policy statement that defines the access control rules.
15190
+ # The statement can be a Cedar policy or a guardrails definition.
15191
+ # @return [Types::PolicyStatement]
15192
+ #
14150
15193
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyDefinition AWS API Documentation
14151
15194
  #
14152
15195
  class PolicyDefinition < Struct.new(
14153
15196
  :cedar,
14154
15197
  :policy_generation,
15198
+ :policy,
14155
15199
  :unknown)
14156
15200
  SENSITIVE = []
14157
15201
  include Aws::Structure
@@ -14159,6 +15203,7 @@ module Aws::BedrockAgentCoreControl
14159
15203
 
14160
15204
  class Cedar < PolicyDefinition; end
14161
15205
  class PolicyGeneration < PolicyDefinition; end
15206
+ class Policy < PolicyDefinition; end
14162
15207
  class Unknown < PolicyDefinition; end
14163
15208
  end
14164
15209
 
@@ -14499,6 +15544,22 @@ module Aws::BedrockAgentCoreControl
14499
15544
  include Aws::Structure
14500
15545
  end
14501
15546
 
15547
+ # An AgentCore policy statement, which supports plain Cedar policies as
15548
+ # well as guardrails definitions.
15549
+ #
15550
+ # @!attribute [rw] statement
15551
+ # The body of the AgentCore policy statement. Contains the policy
15552
+ # logic, which can be a Cedar policy or a guardrails definition.
15553
+ # @return [String]
15554
+ #
15555
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyStatement AWS API Documentation
15556
+ #
15557
+ class PolicyStatement < Struct.new(
15558
+ :statement)
15559
+ SENSITIVE = []
15560
+ include Aws::Structure
15561
+ end
15562
+
14502
15563
  # Represents a metadata-only summary of a policy resource. This
14503
15564
  # structure contains resource identifiers, status, and timestamps
14504
15565
  # without customer-encrypted fields such as definition, description, or
@@ -14533,6 +15594,10 @@ module Aws::BedrockAgentCoreControl
14533
15594
  # The current status of the policy.
14534
15595
  # @return [String]
14535
15596
  #
15597
+ # @!attribute [rw] enforcement_mode
15598
+ # The current enforcement mode of the policy.
15599
+ # @return [String]
15600
+ #
14536
15601
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicySummary AWS API Documentation
14537
15602
  #
14538
15603
  class PolicySummary < Struct.new(
@@ -14542,7 +15607,8 @@ module Aws::BedrockAgentCoreControl
14542
15607
  :created_at,
14543
15608
  :updated_at,
14544
15609
  :policy_arn,
14545
- :status)
15610
+ :status,
15611
+ :enforcement_mode)
14546
15612
  SENSITIVE = []
14547
15613
  include Aws::Structure
14548
15614
  end
@@ -14616,6 +15682,30 @@ module Aws::BedrockAgentCoreControl
14616
15682
  include Aws::Structure
14617
15683
  end
14618
15684
 
15685
+ # The configuration that controls how a provider prefix is applied to
15686
+ # model IDs during translation.
15687
+ #
15688
+ # @!attribute [rw] strip
15689
+ # Whether clients can omit the provider prefix from model IDs. If
15690
+ # `true`, the gateway accepts model IDs without the prefix and
15691
+ # restores the full prefixed form before forwarding to the provider.
15692
+ # The default is `false`.
15693
+ # @return [Boolean]
15694
+ #
15695
+ # @!attribute [rw] separator
15696
+ # The single character that separates the provider prefix from the
15697
+ # model name (for example, `.`). The default is `.`.
15698
+ # @return [String]
15699
+ #
15700
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ProviderPrefix AWS API Documentation
15701
+ #
15702
+ class ProviderPrefix < Struct.new(
15703
+ :strip,
15704
+ :separator)
15705
+ SENSITIVE = []
15706
+ include Aws::Structure
15707
+ end
15708
+
14619
15709
  # @!attribute [rw] resource_arn
14620
15710
  # The Amazon Resource Name (ARN) of the resource for which to create
14621
15711
  # or update the resource policy.
@@ -15163,11 +16253,17 @@ module Aws::BedrockAgentCoreControl
15163
16253
  # endpoint version. If not specified, the default endpoint is used.
15164
16254
  # @return [String]
15165
16255
  #
16256
+ # @!attribute [rw] schema
16257
+ # The API schema configuration that defines the structure of the
16258
+ # runtime target's API.
16259
+ # @return [Types::HttpApiSchemaConfiguration]
16260
+ #
15166
16261
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RuntimeTargetConfiguration AWS API Documentation
15167
16262
  #
15168
16263
  class RuntimeTargetConfiguration < Struct.new(
15169
16264
  :arn,
15170
- :qualifier)
16265
+ :qualifier,
16266
+ :schema)
15171
16267
  SENSITIVE = []
15172
16268
  include Aws::Structure
15173
16269
  end
@@ -15272,16 +16368,16 @@ module Aws::BedrockAgentCoreControl
15272
16368
  # @return [String]
15273
16369
  #
15274
16370
  # @!attribute [rw] client_secret_config
15275
- # A reference to the AWS Secrets Manager secret that stores the client
15276
- # secret. This includes the secret ID and the JSON key used to extract
15277
- # the client secret value from the secret. Required when
15278
- # `clientSecretSource` is set to `EXTERNAL`.
16371
+ # A reference to the Amazon Web Services Secrets Manager secret that
16372
+ # stores the client secret. This includes the secret ID and the JSON
16373
+ # key used to extract the client secret value from the secret.
16374
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
15279
16375
  # @return [Types::SecretReference]
15280
16376
  #
15281
16377
  # @!attribute [rw] client_secret_source
15282
16378
  # The source type of the client secret. Use `MANAGED` if the secret is
15283
16379
  # managed by the service, or `EXTERNAL` if you manage the secret
15284
- # yourself in AWS Secrets Manager.
16380
+ # yourself in Amazon Web Services Secrets Manager.
15285
16381
  # @return [String]
15286
16382
  #
15287
16383
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SalesforceOauth2ProviderConfigInput AWS API Documentation
@@ -15370,10 +16466,12 @@ module Aws::BedrockAgentCoreControl
15370
16466
  include Aws::Structure
15371
16467
  end
15372
16468
 
15373
- # Contains information about a secret in AWS Secrets Manager.
16469
+ # Contains information about a secret in Amazon Web Services Secrets
16470
+ # Manager.
15374
16471
  #
15375
16472
  # @!attribute [rw] secret_arn
15376
- # The Amazon Resource Name (ARN) of the secret in AWS Secrets Manager.
16473
+ # The Amazon Resource Name (ARN) of the secret in Amazon Web Services
16474
+ # Secrets Manager.
15377
16475
  # @return [String]
15378
16476
  #
15379
16477
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Secret AWS API Documentation
@@ -15384,16 +16482,17 @@ module Aws::BedrockAgentCoreControl
15384
16482
  include Aws::Structure
15385
16483
  end
15386
16484
 
15387
- # Contains a reference to a secret stored in AWS Secrets Manager.
16485
+ # Contains a reference to a secret stored in Amazon Web Services Secrets
16486
+ # Manager.
15388
16487
  #
15389
16488
  # @!attribute [rw] secret_id
15390
- # The ID of the AWS Secrets Manager secret that stores the secret
15391
- # value.
16489
+ # The ID of the Amazon Web Services Secrets Manager secret that stores
16490
+ # the secret value.
15392
16491
  # @return [String]
15393
16492
  #
15394
16493
  # @!attribute [rw] json_key
15395
- # The JSON key used to extract the secret value from the AWS Secrets
15396
- # Manager secret.
16494
+ # The JSON key used to extract the secret value from the Amazon Web
16495
+ # Services Secrets Manager secret.
15397
16496
  # @return [String]
15398
16497
  #
15399
16498
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SecretReference AWS API Documentation
@@ -15814,16 +16913,16 @@ module Aws::BedrockAgentCoreControl
15814
16913
  # @return [String]
15815
16914
  #
15816
16915
  # @!attribute [rw] client_secret_config
15817
- # A reference to the AWS Secrets Manager secret that stores the client
15818
- # secret. This includes the secret ID and the JSON key used to extract
15819
- # the client secret value from the secret. Required when
15820
- # `clientSecretSource` is set to `EXTERNAL`.
16916
+ # A reference to the Amazon Web Services Secrets Manager secret that
16917
+ # stores the client secret. This includes the secret ID and the JSON
16918
+ # key used to extract the client secret value from the secret.
16919
+ # Required when `clientSecretSource` is set to `EXTERNAL`.
15821
16920
  # @return [Types::SecretReference]
15822
16921
  #
15823
16922
  # @!attribute [rw] client_secret_source
15824
16923
  # The source type of the client secret. Use `MANAGED` if the secret is
15825
16924
  # managed by the service, or `EXTERNAL` if you manage the secret
15826
- # yourself in AWS Secrets Manager.
16925
+ # yourself in Amazon Web Services Secrets Manager.
15827
16926
  # @return [String]
15828
16927
  #
15829
16928
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SlackOauth2ProviderConfigInput AWS API Documentation
@@ -15996,6 +17095,31 @@ module Aws::BedrockAgentCoreControl
15996
17095
  include Aws::Structure
15997
17096
  end
15998
17097
 
17098
+ # The configuration for session-sticky routing to a target. Session
17099
+ # stickiness routes requests that share a session identifier to the same
17100
+ # target.
17101
+ #
17102
+ # @!attribute [rw] identifier
17103
+ # The expression that identifies where to extract the session
17104
+ # identifier from the request (for example,
17105
+ # `$context.header.x-session-id`).
17106
+ # @return [String]
17107
+ #
17108
+ # @!attribute [rw] timeout
17109
+ # The session stickiness timeout, in seconds. After this duration of
17110
+ # inactivity, the session affinity expires. Valid values range from 1
17111
+ # to 86400.
17112
+ # @return [Integer]
17113
+ #
17114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StickinessConfiguration AWS API Documentation
17115
+ #
17116
+ class StickinessConfiguration < Struct.new(
17117
+ :identifier,
17118
+ :timeout)
17119
+ SENSITIVE = []
17120
+ include Aws::Structure
17121
+ end
17122
+
15999
17123
  # Contains configuration information for a memory strategy.
16000
17124
  #
16001
17125
  # @!attribute [rw] type
@@ -16130,13 +17254,13 @@ module Aws::BedrockAgentCoreControl
16130
17254
  # @!attribute [rw] app_secret_source
16131
17255
  # The source type of the app secret. Use `MANAGED` if the secret is
16132
17256
  # managed by the service, or `EXTERNAL` if you manage the secret
16133
- # yourself in AWS Secrets Manager.
17257
+ # yourself in Amazon Web Services Secrets Manager.
16134
17258
  # @return [String]
16135
17259
  #
16136
17260
  # @!attribute [rw] app_secret_config
16137
- # A reference to the AWS Secrets Manager secret that stores the app
16138
- # secret. This includes the secret ID and the JSON key used to extract
16139
- # the app secret value from the secret. Required when
17261
+ # A reference to the Amazon Web Services Secrets Manager secret that
17262
+ # stores the app secret. This includes the secret ID and the JSON key
17263
+ # used to extract the app secret value from the secret. Required when
16140
17264
  # `appSecretSource` is set to `EXTERNAL`.
16141
17265
  # @return [Types::SecretReference]
16142
17266
  #
@@ -16147,15 +17271,15 @@ module Aws::BedrockAgentCoreControl
16147
17271
  # @!attribute [rw] authorization_private_key_source
16148
17272
  # The source type of the authorization private key. Use `MANAGED` if
16149
17273
  # the secret is managed by the service, or `EXTERNAL` if you manage
16150
- # the secret yourself in AWS Secrets Manager.
17274
+ # the secret yourself in Amazon Web Services Secrets Manager.
16151
17275
  # @return [String]
16152
17276
  #
16153
17277
  # @!attribute [rw] authorization_private_key_config
16154
- # A reference to the AWS Secrets Manager secret that stores the
16155
- # authorization private key. This includes the secret ID and the JSON
16156
- # key used to extract the authorization private key value from the
16157
- # secret. Required when `authorizationPrivateKeySource` is set to
16158
- # `EXTERNAL`.
17278
+ # A reference to the Amazon Web Services Secrets Manager secret that
17279
+ # stores the authorization private key. This includes the secret ID
17280
+ # and the JSON key used to extract the authorization private key value
17281
+ # from the secret. Required when `authorizationPrivateKeySource` is
17282
+ # set to `EXTERNAL`.
16159
17283
  # @return [Types::SecretReference]
16160
17284
  #
16161
17285
  # @!attribute [rw] authorization_id
@@ -16184,33 +17308,35 @@ module Aws::BedrockAgentCoreControl
16184
17308
  # @return [String]
16185
17309
  #
16186
17310
  # @!attribute [rw] app_secret_arn
16187
- # Contains information about a secret in AWS Secrets Manager.
17311
+ # Contains information about a secret in Amazon Web Services Secrets
17312
+ # Manager.
16188
17313
  # @return [Types::Secret]
16189
17314
  #
16190
17315
  # @!attribute [rw] app_secret_json_key
16191
- # The JSON key used to extract the app secret value from the AWS
16192
- # Secrets Manager secret.
17316
+ # The JSON key used to extract the app secret value from the Amazon
17317
+ # Web Services Secrets Manager secret.
16193
17318
  # @return [String]
16194
17319
  #
16195
17320
  # @!attribute [rw] app_secret_source
16196
17321
  # The source type of the app secret. Either `MANAGED` if the secret is
16197
- # managed by the service, or `EXTERNAL` if managed by the user in AWS
16198
- # Secrets Manager.
17322
+ # managed by the service, or `EXTERNAL` if managed by the user in
17323
+ # Amazon Web Services Secrets Manager.
16199
17324
  # @return [String]
16200
17325
  #
16201
17326
  # @!attribute [rw] authorization_private_key_arn
16202
- # Contains information about a secret in AWS Secrets Manager.
17327
+ # Contains information about a secret in Amazon Web Services Secrets
17328
+ # Manager.
16203
17329
  # @return [Types::Secret]
16204
17330
  #
16205
17331
  # @!attribute [rw] authorization_private_key_json_key
16206
17332
  # The JSON key used to extract the authorization private key value
16207
- # from the AWS Secrets Manager secret.
17333
+ # from the Amazon Web Services Secrets Manager secret.
16208
17334
  # @return [String]
16209
17335
  #
16210
17336
  # @!attribute [rw] authorization_private_key_source
16211
17337
  # The source type of the authorization private key. Either `MANAGED`
16212
17338
  # if the secret is managed by the service, or `EXTERNAL` if managed by
16213
- # the user in AWS Secrets Manager.
17339
+ # the user in Amazon Web Services Secrets Manager.
16214
17340
  # @return [String]
16215
17341
  #
16216
17342
  # @!attribute [rw] authorization_id
@@ -16472,11 +17598,17 @@ module Aws::BedrockAgentCoreControl
16472
17598
  # an HTTP-based endpoint such as an AgentCore Runtime.
16473
17599
  # @return [Types::HttpTargetConfiguration]
16474
17600
  #
17601
+ # @!attribute [rw] inference
17602
+ # The inference configuration for the target. This configuration
17603
+ # routes requests to a large language model (LLM) provider.
17604
+ # @return [Types::InferenceTargetConfiguration]
17605
+ #
16475
17606
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetConfiguration AWS API Documentation
16476
17607
  #
16477
17608
  class TargetConfiguration < Struct.new(
16478
17609
  :mcp,
16479
17610
  :http,
17611
+ :inference,
16480
17612
  :unknown)
16481
17613
  SENSITIVE = []
16482
17614
  include Aws::Structure
@@ -16484,6 +17616,7 @@ module Aws::BedrockAgentCoreControl
16484
17616
 
16485
17617
  class Mcp < TargetConfiguration; end
16486
17618
  class Http < TargetConfiguration; end
17619
+ class Inference < TargetConfiguration; end
16487
17620
  class Unknown < TargetConfiguration; end
16488
17621
  end
16489
17622
 
@@ -16519,6 +17652,26 @@ module Aws::BedrockAgentCoreControl
16519
17652
  # values take precedence. Defaults to 1000 when not set.
16520
17653
  # @return [Integer]
16521
17654
  #
17655
+ # @!attribute [rw] last_synchronized_at
17656
+ # The timestamp when the target was last synchronized.
17657
+ # @return [Time]
17658
+ #
17659
+ # @!attribute [rw] authorization_data
17660
+ # Contains the authorization data that is returned when a gateway
17661
+ # target is configured with a credential provider with authorization
17662
+ # code grant type and requires user federation.
17663
+ # @return [Types::AuthorizationData]
17664
+ #
17665
+ # @!attribute [rw] target_type
17666
+ # The type of the target.
17667
+ # @return [String]
17668
+ #
17669
+ # @!attribute [rw] listing_mode
17670
+ # The listing mode for the target. MCP resources for `DEFAULT` targets
17671
+ # are cached at the control plane for faster access. MCP resources for
17672
+ # `DYNAMIC` targets are retrieved dynamically when listing tools.
17673
+ # @return [String]
17674
+ #
16522
17675
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetSummary AWS API Documentation
16523
17676
  #
16524
17677
  class TargetSummary < Struct.new(
@@ -16528,7 +17681,11 @@ module Aws::BedrockAgentCoreControl
16528
17681
  :description,
16529
17682
  :created_at,
16530
17683
  :updated_at,
16531
- :resource_priority)
17684
+ :resource_priority,
17685
+ :last_synchronized_at,
17686
+ :authorization_data,
17687
+ :target_type,
17688
+ :listing_mode)
16532
17689
  SENSITIVE = [:name, :description]
16533
17690
  include Aws::Structure
16534
17691
  end
@@ -16726,7 +17883,7 @@ module Aws::BedrockAgentCoreControl
16726
17883
  :s3,
16727
17884
  :inline_payload,
16728
17885
  :unknown)
16729
- SENSITIVE = []
17886
+ SENSITIVE = [:inline_payload]
16730
17887
  include Aws::Structure
16731
17888
  include Aws::Structure::Union
16732
17889
 
@@ -17116,16 +18273,16 @@ module Aws::BedrockAgentCoreControl
17116
18273
  # @return [String]
17117
18274
  #
17118
18275
  # @!attribute [rw] api_key_secret_config
17119
- # A reference to the AWS Secrets Manager secret that stores the API
17120
- # key. This includes the secret ID and the JSON key used to extract
17121
- # the API key value from the secret. Required when
18276
+ # A reference to the Amazon Web Services Secrets Manager secret that
18277
+ # stores the API key. This includes the secret ID and the JSON key
18278
+ # used to extract the API key value from the secret. Required when
17122
18279
  # `apiKeySecretSource` is set to `EXTERNAL`.
17123
18280
  # @return [Types::SecretReference]
17124
18281
  #
17125
18282
  # @!attribute [rw] api_key_secret_source
17126
18283
  # The source type of the API key secret. Use `MANAGED` if the secret
17127
18284
  # is managed by the service, or `EXTERNAL` if you manage the secret
17128
- # yourself in AWS Secrets Manager.
18285
+ # yourself in Amazon Web Services Secrets Manager.
17129
18286
  # @return [String]
17130
18287
  #
17131
18288
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateApiKeyCredentialProviderRequest AWS API Documentation
@@ -17140,19 +18297,19 @@ module Aws::BedrockAgentCoreControl
17140
18297
  end
17141
18298
 
17142
18299
  # @!attribute [rw] api_key_secret_arn
17143
- # The Amazon Resource Name (ARN) of the API key secret in AWS Secrets
17144
- # Manager.
18300
+ # The Amazon Resource Name (ARN) of the API key secret in Amazon Web
18301
+ # Services Secrets Manager.
17145
18302
  # @return [Types::Secret]
17146
18303
  #
17147
18304
  # @!attribute [rw] api_key_secret_json_key
17148
- # The JSON key used to extract the API key value from the AWS Secrets
17149
- # Manager secret.
18305
+ # The JSON key used to extract the API key value from the Amazon Web
18306
+ # Services Secrets Manager secret.
17150
18307
  # @return [String]
17151
18308
  #
17152
18309
  # @!attribute [rw] api_key_secret_source
17153
18310
  # The source type of the API key secret. Either `MANAGED` if the
17154
18311
  # secret is managed by the service, or `EXTERNAL` if managed by the
17155
- # user in AWS Secrets Manager.
18312
+ # user in Amazon Web Services Secrets Manager.
17156
18313
  # @return [String]
17157
18314
  #
17158
18315
  # @!attribute [rw] name
@@ -17240,6 +18397,12 @@ module Aws::BedrockAgentCoreControl
17240
18397
  # optional ARN.
17241
18398
  # @return [Types::VersionCreatedBySource]
17242
18399
  #
18400
+ # @!attribute [rw] kms_key_arn
18401
+ # Optional KMS key ARN for encrypting component configurations. If
18402
+ # provided, components will be encrypted with this key. If the bundle
18403
+ # already has a KMS key, this rotates to the new key.
18404
+ # @return [String]
18405
+ #
17243
18406
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleRequest AWS API Documentation
17244
18407
  #
17245
18408
  class UpdateConfigurationBundleRequest < Struct.new(
@@ -17251,7 +18414,8 @@ module Aws::BedrockAgentCoreControl
17251
18414
  :parent_version_ids,
17252
18415
  :branch_name,
17253
18416
  :commit_message,
17254
- :created_by)
18417
+ :created_by,
18418
+ :kms_key_arn)
17255
18419
  SENSITIVE = [:description, :components]
17256
18420
  include Aws::Structure
17257
18421
  end
@@ -17536,6 +18700,12 @@ module Aws::BedrockAgentCoreControl
17536
18700
  # The updated ARN of the KMS key used to encrypt the gateway.
17537
18701
  # @return [String]
17538
18702
  #
18703
+ # @!attribute [rw] custom_transform_configuration
18704
+ # The updated custom transformation configuration for the gateway.
18705
+ # This configuration defines how the gateway transforms requests and
18706
+ # responses.
18707
+ # @return [Types::CustomTransformConfiguration]
18708
+ #
17539
18709
  # @!attribute [rw] interceptor_configurations
17540
18710
  # The updated interceptor configurations for the gateway.
17541
18711
  # @return [Array<Types::GatewayInterceptorConfiguration>]
@@ -17559,6 +18729,10 @@ module Aws::BedrockAgentCoreControl
17559
18729
  # the end user.
17560
18730
  # @return [String]
17561
18731
  #
18732
+ # @!attribute [rw] waf_configuration
18733
+ # The updated Amazon Web Services WAF configuration for the gateway.
18734
+ # @return [Types::WafConfiguration]
18735
+ #
17562
18736
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRequest AWS API Documentation
17563
18737
  #
17564
18738
  class UpdateGatewayRequest < Struct.new(
@@ -17571,10 +18745,12 @@ module Aws::BedrockAgentCoreControl
17571
18745
  :authorizer_type,
17572
18746
  :authorizer_configuration,
17573
18747
  :kms_key_arn,
18748
+ :custom_transform_configuration,
17574
18749
  :interceptor_configurations,
17575
18750
  :policy_engine_configuration,
17576
- :exception_level)
17577
- SENSITIVE = [:name, :description]
18751
+ :exception_level,
18752
+ :waf_configuration)
18753
+ SENSITIVE = [:description]
17578
18754
  include Aws::Structure
17579
18755
  end
17580
18756
 
@@ -17639,6 +18815,12 @@ module Aws::BedrockAgentCoreControl
17639
18815
  # The updated ARN of the KMS key used to encrypt the gateway.
17640
18816
  # @return [String]
17641
18817
  #
18818
+ # @!attribute [rw] custom_transform_configuration
18819
+ # The custom transformation configuration for the gateway. This
18820
+ # configuration defines how the gateway transforms requests and
18821
+ # responses.
18822
+ # @return [Types::CustomTransformConfiguration]
18823
+ #
17642
18824
  # @!attribute [rw] interceptor_configurations
17643
18825
  # The updated interceptor configurations for the gateway.
17644
18826
  # @return [Array<Types::GatewayInterceptorConfiguration>]
@@ -17662,6 +18844,15 @@ module Aws::BedrockAgentCoreControl
17662
18844
  # the end user.
17663
18845
  # @return [String]
17664
18846
  #
18847
+ # @!attribute [rw] web_acl_arn
18848
+ # The Amazon Resource Name (ARN) of the Amazon Web Services WAF web
18849
+ # ACL associated with the gateway.
18850
+ # @return [String]
18851
+ #
18852
+ # @!attribute [rw] waf_configuration
18853
+ # The Amazon Web Services WAF configuration for the gateway.
18854
+ # @return [Types::WafConfiguration]
18855
+ #
17665
18856
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayResponse AWS API Documentation
17666
18857
  #
17667
18858
  class UpdateGatewayResponse < Struct.new(
@@ -17680,11 +18871,14 @@ module Aws::BedrockAgentCoreControl
17680
18871
  :authorizer_type,
17681
18872
  :authorizer_configuration,
17682
18873
  :kms_key_arn,
18874
+ :custom_transform_configuration,
17683
18875
  :interceptor_configurations,
17684
18876
  :policy_engine_configuration,
17685
18877
  :workload_identity_details,
17686
- :exception_level)
17687
- SENSITIVE = [:name, :description]
18878
+ :exception_level,
18879
+ :web_acl_arn,
18880
+ :waf_configuration)
18881
+ SENSITIVE = [:description]
17688
18882
  include Aws::Structure
17689
18883
  end
17690
18884
 
@@ -17930,6 +19124,56 @@ module Aws::BedrockAgentCoreControl
17930
19124
  include Aws::Structure
17931
19125
  end
17932
19126
 
19127
+ # @!attribute [rw] harness_id
19128
+ # The ID of the harness that the endpoint belongs to.
19129
+ # @return [String]
19130
+ #
19131
+ # @!attribute [rw] endpoint_name
19132
+ # The name of the endpoint to update.
19133
+ # @return [String]
19134
+ #
19135
+ # @!attribute [rw] target_version
19136
+ # The harness version that the endpoint points to. If not specified,
19137
+ # the existing value is retained.
19138
+ # @return [String]
19139
+ #
19140
+ # @!attribute [rw] description
19141
+ # A description of the endpoint. If not specified, the existing value
19142
+ # is retained.
19143
+ # @return [String]
19144
+ #
19145
+ # @!attribute [rw] client_token
19146
+ # A unique, case-sensitive identifier to ensure idempotency of the
19147
+ # request.
19148
+ #
19149
+ # **A suitable default value is auto-generated.** You should normally
19150
+ # not need to pass this option.
19151
+ # @return [String]
19152
+ #
19153
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateHarnessEndpointRequest AWS API Documentation
19154
+ #
19155
+ class UpdateHarnessEndpointRequest < Struct.new(
19156
+ :harness_id,
19157
+ :endpoint_name,
19158
+ :target_version,
19159
+ :description,
19160
+ :client_token)
19161
+ SENSITIVE = []
19162
+ include Aws::Structure
19163
+ end
19164
+
19165
+ # @!attribute [rw] endpoint
19166
+ # The updated endpoint.
19167
+ # @return [Types::HarnessEndpoint]
19168
+ #
19169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateHarnessEndpointResponse AWS API Documentation
19170
+ #
19171
+ class UpdateHarnessEndpointResponse < Struct.new(
19172
+ :endpoint)
19173
+ SENSITIVE = []
19174
+ include Aws::Structure
19175
+ end
19176
+
17933
19177
  # @!attribute [rw] harness_id
17934
19178
  # The ID of the harness to update.
17935
19179
  # @return [String]
@@ -18152,19 +19396,19 @@ module Aws::BedrockAgentCoreControl
18152
19396
  end
18153
19397
 
18154
19398
  # @!attribute [rw] client_secret_arn
18155
- # The Amazon Resource Name (ARN) of the client secret in AWS Secrets
18156
- # Manager.
19399
+ # The Amazon Resource Name (ARN) of the client secret in Amazon Web
19400
+ # Services Secrets Manager.
18157
19401
  # @return [Types::Secret]
18158
19402
  #
18159
19403
  # @!attribute [rw] client_secret_json_key
18160
- # The JSON key used to extract the client secret value from the AWS
18161
- # Secrets Manager secret.
19404
+ # The JSON key used to extract the client secret value from the Amazon
19405
+ # Web Services Secrets Manager secret.
18162
19406
  # @return [String]
18163
19407
  #
18164
19408
  # @!attribute [rw] client_secret_source
18165
19409
  # The source type of the client secret. Either `MANAGED` if the secret
18166
19410
  # is managed by the service, or `EXTERNAL` if managed by the user in
18167
- # AWS Secrets Manager.
19411
+ # Amazon Web Services Secrets Manager.
18168
19412
  # @return [String]
18169
19413
  #
18170
19414
  # @!attribute [rw] name
@@ -18258,6 +19502,14 @@ module Aws::BedrockAgentCoreControl
18258
19502
  # The updated list of evaluators to apply during online evaluation.
18259
19503
  # @return [Array<Types::EvaluatorReference>]
18260
19504
  #
19505
+ # @!attribute [rw] insights
19506
+ # The updated list of insight types to run against agent sessions.
19507
+ # @return [Array<Types::Insight>]
19508
+ #
19509
+ # @!attribute [rw] clustering_config
19510
+ # The updated clustering configuration for periodic batch evaluation.
19511
+ # @return [Types::ClusteringConfig]
19512
+ #
18261
19513
  # @!attribute [rw] evaluation_execution_role_arn
18262
19514
  # The updated Amazon Resource Name (ARN) of the IAM role used for
18263
19515
  # evaluation execution.
@@ -18277,6 +19529,8 @@ module Aws::BedrockAgentCoreControl
18277
19529
  :rule,
18278
19530
  :data_source_config,
18279
19531
  :evaluators,
19532
+ :insights,
19533
+ :clustering_config,
18280
19534
  :evaluation_execution_role_arn,
18281
19535
  :execution_status)
18282
19536
  SENSITIVE = [:description]
@@ -18686,6 +19940,14 @@ module Aws::BedrockAgentCoreControl
18686
19940
  # especially when modifying policy logic or conditions.
18687
19941
  # @return [String]
18688
19942
  #
19943
+ # @!attribute [rw] enforcement_mode
19944
+ # The enforcement mode for the policy. Run this policy in `LOG_ONLY`
19945
+ # mode to collect data on how it affects your application. Once you
19946
+ # are satisfied with the data gathered, switch the policy to `ACTIVE`.
19947
+ # If you omit this field, the policy's existing enforcement mode is
19948
+ # unchanged.
19949
+ # @return [String]
19950
+ #
18689
19951
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePolicyRequest AWS API Documentation
18690
19952
  #
18691
19953
  class UpdatePolicyRequest < Struct.new(
@@ -18693,7 +19955,8 @@ module Aws::BedrockAgentCoreControl
18693
19955
  :policy_id,
18694
19956
  :description,
18695
19957
  :definition,
18696
- :validation_mode)
19958
+ :validation_mode,
19959
+ :enforcement_mode)
18697
19960
  SENSITIVE = []
18698
19961
  include Aws::Structure
18699
19962
  end
@@ -18726,6 +19989,10 @@ module Aws::BedrockAgentCoreControl
18726
19989
  # The current status of the updated policy.
18727
19990
  # @return [String]
18728
19991
  #
19992
+ # @!attribute [rw] enforcement_mode
19993
+ # The current enforcement mode of the updated policy.
19994
+ # @return [String]
19995
+ #
18729
19996
  # @!attribute [rw] definition
18730
19997
  # The updated Cedar policy statement.
18731
19998
  # @return [Types::PolicyDefinition]
@@ -18748,6 +20015,7 @@ module Aws::BedrockAgentCoreControl
18748
20015
  :updated_at,
18749
20016
  :policy_arn,
18750
20017
  :status,
20018
+ :enforcement_mode,
18751
20019
  :definition,
18752
20020
  :description,
18753
20021
  :status_reasons)
@@ -19825,6 +21093,30 @@ module Aws::BedrockAgentCoreControl
19825
21093
  include Aws::Structure
19826
21094
  end
19827
21095
 
21096
+ # The Amazon Web Services WAF configuration for the gateway. This
21097
+ # configuration controls how the gateway behaves when the associated web
21098
+ # ACL cannot be evaluated.
21099
+ #
21100
+ # @!attribute [rw] failure_mode
21101
+ # The failure mode that determines how the gateway handles requests
21102
+ # when Amazon Web Services WAF is unreachable or times out. Valid
21103
+ # values include:
21104
+ #
21105
+ # * `FAIL_CLOSE` - The gateway blocks requests when Amazon Web
21106
+ # Services WAF cannot be evaluated.
21107
+ #
21108
+ # * `FAIL_OPEN` - The gateway allows requests when Amazon Web Services
21109
+ # WAF cannot be evaluated.
21110
+ # @return [String]
21111
+ #
21112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/WafConfiguration AWS API Documentation
21113
+ #
21114
+ class WafConfiguration < Struct.new(
21115
+ :failure_mode)
21116
+ SENSITIVE = []
21117
+ include Aws::Structure
21118
+ end
21119
+
19828
21120
  # A weighted configuration bundle override that splits traffic between
19829
21121
  # multiple bundle versions.
19830
21122
  #