aws-sdk-bedrockagentcorecontrol 1.53.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +896 -19
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +427 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1385 -190
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +110 -6
- data/sig/params.rbs +126 -13
- data/sig/types.rbs +329 -7
- metadata +1 -1
|
@@ -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
|
|
560
|
-
# secret. This includes the secret ID and the JSON
|
|
561
|
-
# the client secret value from the secret.
|
|
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
|
|
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
|
|
@@ -1215,14 +1242,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
1215
1242
|
# @!attribute [rw] api_key_secret_source
|
|
1216
1243
|
# The source type of the API key secret for the Coinbase Developer
|
|
1217
1244
|
# Platform. Use `MANAGED` if the secret is managed by the service, or
|
|
1218
|
-
# `EXTERNAL` if you manage the secret yourself in
|
|
1245
|
+
# `EXTERNAL` if you manage the secret yourself in Amazon Web Services
|
|
1246
|
+
# Secrets Manager.
|
|
1219
1247
|
# @return [String]
|
|
1220
1248
|
#
|
|
1221
1249
|
# @!attribute [rw] api_key_secret_config
|
|
1222
|
-
# A reference to the
|
|
1223
|
-
# key secret. This includes the secret ID and the JSON
|
|
1224
|
-
# extract the API key secret value from the secret.
|
|
1225
|
-
# `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`.
|
|
1226
1254
|
# @return [Types::SecretReference]
|
|
1227
1255
|
#
|
|
1228
1256
|
# @!attribute [rw] wallet_secret
|
|
@@ -1232,14 +1260,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
1232
1260
|
# @!attribute [rw] wallet_secret_source
|
|
1233
1261
|
# The source type of the wallet secret for the Coinbase Developer
|
|
1234
1262
|
# Platform. Use `MANAGED` if the secret is managed by the service, or
|
|
1235
|
-
# `EXTERNAL` if you manage the secret yourself in
|
|
1263
|
+
# `EXTERNAL` if you manage the secret yourself in Amazon Web Services
|
|
1264
|
+
# Secrets Manager.
|
|
1236
1265
|
# @return [String]
|
|
1237
1266
|
#
|
|
1238
1267
|
# @!attribute [rw] wallet_secret_config
|
|
1239
|
-
# A reference to the
|
|
1240
|
-
# secret. This includes the secret ID and the JSON
|
|
1241
|
-
# the wallet secret value from the secret.
|
|
1242
|
-
# `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`.
|
|
1243
1272
|
# @return [Types::SecretReference]
|
|
1244
1273
|
#
|
|
1245
1274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationInput AWS API Documentation
|
|
@@ -1263,33 +1292,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
1263
1292
|
# @return [String]
|
|
1264
1293
|
#
|
|
1265
1294
|
# @!attribute [rw] api_key_secret_arn
|
|
1266
|
-
# Contains information about a secret in
|
|
1295
|
+
# Contains information about a secret in Amazon Web Services Secrets
|
|
1296
|
+
# Manager.
|
|
1267
1297
|
# @return [Types::Secret]
|
|
1268
1298
|
#
|
|
1269
1299
|
# @!attribute [rw] api_key_secret_json_key
|
|
1270
|
-
# The JSON key used to extract the API key secret value from the
|
|
1271
|
-
# Secrets Manager secret.
|
|
1300
|
+
# The JSON key used to extract the API key secret value from the
|
|
1301
|
+
# Amazon Web Services Secrets Manager secret.
|
|
1272
1302
|
# @return [String]
|
|
1273
1303
|
#
|
|
1274
1304
|
# @!attribute [rw] api_key_secret_source
|
|
1275
1305
|
# The source type of the API key secret. Either `MANAGED` if the
|
|
1276
1306
|
# secret is managed by the service, or `EXTERNAL` if managed by the
|
|
1277
|
-
# user in
|
|
1307
|
+
# user in Amazon Web Services Secrets Manager.
|
|
1278
1308
|
# @return [String]
|
|
1279
1309
|
#
|
|
1280
1310
|
# @!attribute [rw] wallet_secret_arn
|
|
1281
|
-
# Contains information about a secret in
|
|
1311
|
+
# Contains information about a secret in Amazon Web Services Secrets
|
|
1312
|
+
# Manager.
|
|
1282
1313
|
# @return [Types::Secret]
|
|
1283
1314
|
#
|
|
1284
1315
|
# @!attribute [rw] wallet_secret_json_key
|
|
1285
|
-
# The JSON key used to extract the wallet secret value from the
|
|
1286
|
-
# Secrets Manager secret.
|
|
1316
|
+
# The JSON key used to extract the wallet secret value from the Amazon
|
|
1317
|
+
# Web Services Secrets Manager secret.
|
|
1287
1318
|
# @return [String]
|
|
1288
1319
|
#
|
|
1289
1320
|
# @!attribute [rw] wallet_secret_source
|
|
1290
1321
|
# The source type of the wallet secret. Either `MANAGED` if the secret
|
|
1291
1322
|
# is managed by the service, or `EXTERNAL` if managed by the user in
|
|
1292
|
-
#
|
|
1323
|
+
# Amazon Web Services Secrets Manager.
|
|
1293
1324
|
# @return [String]
|
|
1294
1325
|
#
|
|
1295
1326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CoinbaseCdpConfigurationOutput AWS API Documentation
|
|
@@ -1500,6 +1531,106 @@ module Aws::BedrockAgentCoreControl
|
|
|
1500
1531
|
include Aws::Structure
|
|
1501
1532
|
end
|
|
1502
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
|
+
|
|
1503
1634
|
# Contains consolidation configuration information for a memory
|
|
1504
1635
|
# strategy.
|
|
1505
1636
|
#
|
|
@@ -1799,16 +1930,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
1799
1930
|
# @return [String]
|
|
1800
1931
|
#
|
|
1801
1932
|
# @!attribute [rw] api_key_secret_config
|
|
1802
|
-
# A reference to the
|
|
1803
|
-
# key. This includes the secret ID and the JSON key
|
|
1804
|
-
# 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
|
|
1805
1936
|
# `apiKeySecretSource` is set to `EXTERNAL`.
|
|
1806
1937
|
# @return [Types::SecretReference]
|
|
1807
1938
|
#
|
|
1808
1939
|
# @!attribute [rw] api_key_secret_source
|
|
1809
1940
|
# The source type of the API key secret. Use `MANAGED` if the secret
|
|
1810
1941
|
# is managed by the service, or `EXTERNAL` if you manage the secret
|
|
1811
|
-
# yourself in
|
|
1942
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
1812
1943
|
# @return [String]
|
|
1813
1944
|
#
|
|
1814
1945
|
# @!attribute [rw] tags
|
|
@@ -1834,14 +1965,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
1834
1965
|
# @return [Types::Secret]
|
|
1835
1966
|
#
|
|
1836
1967
|
# @!attribute [rw] api_key_secret_json_key
|
|
1837
|
-
# The JSON key used to extract the API key value from the
|
|
1838
|
-
# Manager secret.
|
|
1968
|
+
# The JSON key used to extract the API key value from the Amazon Web
|
|
1969
|
+
# Services Secrets Manager secret.
|
|
1839
1970
|
# @return [String]
|
|
1840
1971
|
#
|
|
1841
1972
|
# @!attribute [rw] api_key_secret_source
|
|
1842
1973
|
# The source type of the API key secret. Either `MANAGED` if the
|
|
1843
1974
|
# secret is managed by the service, or `EXTERNAL` if managed by the
|
|
1844
|
-
# user in
|
|
1975
|
+
# user in Amazon Web Services Secrets Manager.
|
|
1845
1976
|
# @return [String]
|
|
1846
1977
|
#
|
|
1847
1978
|
# @!attribute [rw] name
|
|
@@ -2559,7 +2690,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2559
2690
|
:policy_engine_configuration,
|
|
2560
2691
|
:exception_level,
|
|
2561
2692
|
:tags)
|
|
2562
|
-
SENSITIVE = [:
|
|
2693
|
+
SENSITIVE = [:description]
|
|
2563
2694
|
include Aws::Structure
|
|
2564
2695
|
end
|
|
2565
2696
|
|
|
@@ -2625,6 +2756,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2625
2756
|
# associated with the gateway.
|
|
2626
2757
|
# @return [String]
|
|
2627
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
|
+
#
|
|
2628
2765
|
# @!attribute [rw] interceptor_configurations
|
|
2629
2766
|
# The list of interceptor configurations for the created gateway.
|
|
2630
2767
|
# @return [Array<Types::GatewayInterceptorConfiguration>]
|
|
@@ -2648,6 +2785,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
2648
2785
|
# the end user.
|
|
2649
2786
|
# @return [String]
|
|
2650
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
|
+
#
|
|
2651
2797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayResponse AWS API Documentation
|
|
2652
2798
|
#
|
|
2653
2799
|
class CreateGatewayResponse < Struct.new(
|
|
@@ -2666,11 +2812,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
2666
2812
|
:authorizer_type,
|
|
2667
2813
|
:authorizer_configuration,
|
|
2668
2814
|
:kms_key_arn,
|
|
2815
|
+
:custom_transform_configuration,
|
|
2669
2816
|
:interceptor_configurations,
|
|
2670
2817
|
:policy_engine_configuration,
|
|
2671
2818
|
:workload_identity_details,
|
|
2672
|
-
:exception_level
|
|
2673
|
-
|
|
2819
|
+
:exception_level,
|
|
2820
|
+
:web_acl_arn,
|
|
2821
|
+
:waf_configuration)
|
|
2822
|
+
SENSITIVE = [:description]
|
|
2674
2823
|
include Aws::Structure
|
|
2675
2824
|
end
|
|
2676
2825
|
|
|
@@ -2936,6 +3085,61 @@ module Aws::BedrockAgentCoreControl
|
|
|
2936
3085
|
include Aws::Structure
|
|
2937
3086
|
end
|
|
2938
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
|
+
|
|
2939
3143
|
# @!attribute [rw] harness_name
|
|
2940
3144
|
# The name of the harness. Must start with a letter and contain only
|
|
2941
3145
|
# alphanumeric characters and underscores.
|
|
@@ -3184,19 +3388,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
3184
3388
|
end
|
|
3185
3389
|
|
|
3186
3390
|
# @!attribute [rw] client_secret_arn
|
|
3187
|
-
# The Amazon Resource Name (ARN) of the client secret in
|
|
3188
|
-
# Manager.
|
|
3391
|
+
# The Amazon Resource Name (ARN) of the client secret in Amazon Web
|
|
3392
|
+
# Services Secrets Manager.
|
|
3189
3393
|
# @return [Types::Secret]
|
|
3190
3394
|
#
|
|
3191
3395
|
# @!attribute [rw] client_secret_json_key
|
|
3192
|
-
# The JSON key used to extract the client secret value from the
|
|
3193
|
-
# Secrets Manager secret.
|
|
3396
|
+
# The JSON key used to extract the client secret value from the Amazon
|
|
3397
|
+
# Web Services Secrets Manager secret.
|
|
3194
3398
|
# @return [String]
|
|
3195
3399
|
#
|
|
3196
3400
|
# @!attribute [rw] client_secret_source
|
|
3197
3401
|
# The source type of the client secret. Either `MANAGED` if the secret
|
|
3198
3402
|
# is managed by the service, or `EXTERNAL` if managed by the user in
|
|
3199
|
-
#
|
|
3403
|
+
# Amazon Web Services Secrets Manager.
|
|
3200
3404
|
# @return [String]
|
|
3201
3405
|
#
|
|
3202
3406
|
# @!attribute [rw] name
|
|
@@ -3806,6 +4010,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3806
4010
|
# accept the analyzer findings.
|
|
3807
4011
|
# @return [String]
|
|
3808
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
|
+
#
|
|
3809
4020
|
# @!attribute [rw] policy_engine_id
|
|
3810
4021
|
# The identifier of the policy engine which contains this policy.
|
|
3811
4022
|
# Policy engines group related policies and provide the execution
|
|
@@ -3830,6 +4041,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3830
4041
|
:definition,
|
|
3831
4042
|
:description,
|
|
3832
4043
|
:validation_mode,
|
|
4044
|
+
:enforcement_mode,
|
|
3833
4045
|
:policy_engine_id,
|
|
3834
4046
|
:client_token)
|
|
3835
4047
|
SENSITIVE = [:description]
|
|
@@ -3876,6 +4088,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
3876
4088
|
# policy is ready for use.
|
|
3877
4089
|
# @return [String]
|
|
3878
4090
|
#
|
|
4091
|
+
# @!attribute [rw] enforcement_mode
|
|
4092
|
+
# The enforcement mode of the created policy.
|
|
4093
|
+
# @return [String]
|
|
4094
|
+
#
|
|
3879
4095
|
# @!attribute [rw] definition
|
|
3880
4096
|
# The Cedar policy statement that was created. This is the validated
|
|
3881
4097
|
# policy definition that will be used for agent behavior control and
|
|
@@ -3904,6 +4120,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3904
4120
|
:updated_at,
|
|
3905
4121
|
:policy_arn,
|
|
3906
4122
|
:status,
|
|
4123
|
+
:enforcement_mode,
|
|
3907
4124
|
:definition,
|
|
3908
4125
|
:description,
|
|
3909
4126
|
:status_reasons)
|
|
@@ -4513,6 +4730,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
4513
4730
|
# configuration.
|
|
4514
4731
|
# @return [Array<Types::PrivateEndpointOverride>]
|
|
4515
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
|
+
#
|
|
4516
4741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomJWTAuthorizerConfiguration AWS API Documentation
|
|
4517
4742
|
#
|
|
4518
4743
|
class CustomJWTAuthorizerConfiguration < Struct.new(
|
|
@@ -4522,7 +4747,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4522
4747
|
:allowed_scopes,
|
|
4523
4748
|
:custom_claims,
|
|
4524
4749
|
:private_endpoint,
|
|
4525
|
-
:private_endpoint_overrides
|
|
4750
|
+
:private_endpoint_overrides,
|
|
4751
|
+
:allowed_workload_configuration)
|
|
4526
4752
|
SENSITIVE = []
|
|
4527
4753
|
include Aws::Structure
|
|
4528
4754
|
end
|
|
@@ -4582,16 +4808,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
4582
4808
|
# @return [String]
|
|
4583
4809
|
#
|
|
4584
4810
|
# @!attribute [rw] client_secret_config
|
|
4585
|
-
# A reference to the
|
|
4586
|
-
# secret. This includes the secret ID and the JSON
|
|
4587
|
-
# the client secret value from the secret.
|
|
4588
|
-
# `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`.
|
|
4589
4815
|
# @return [Types::SecretReference]
|
|
4590
4816
|
#
|
|
4591
4817
|
# @!attribute [rw] client_secret_source
|
|
4592
4818
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
4593
4819
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
4594
|
-
# yourself in
|
|
4820
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
4595
4821
|
# @return [String]
|
|
4596
4822
|
#
|
|
4597
4823
|
# @!attribute [rw] on_behalf_of_token_exchange_config
|
|
@@ -4718,6 +4944,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
4718
4944
|
class Unknown < CustomReflectionConfigurationInput; end
|
|
4719
4945
|
end
|
|
4720
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
|
+
|
|
4721
4965
|
# The configuration that specifies where to read agent traces for online
|
|
4722
4966
|
# evaluation.
|
|
4723
4967
|
#
|
|
@@ -5403,6 +5647,44 @@ module Aws::BedrockAgentCoreControl
|
|
|
5403
5647
|
include Aws::Structure
|
|
5404
5648
|
end
|
|
5405
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
|
+
|
|
5406
5688
|
# @!attribute [rw] harness_id
|
|
5407
5689
|
# The ID of the harness to delete.
|
|
5408
5690
|
# @return [String]
|
|
@@ -5415,11 +5697,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
5415
5697
|
# not need to pass this option.
|
|
5416
5698
|
# @return [String]
|
|
5417
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
|
+
#
|
|
5418
5706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteHarnessRequest AWS API Documentation
|
|
5419
5707
|
#
|
|
5420
5708
|
class DeleteHarnessRequest < Struct.new(
|
|
5421
5709
|
:harness_id,
|
|
5422
|
-
:client_token
|
|
5710
|
+
:client_token,
|
|
5711
|
+
:delete_managed_memory)
|
|
5423
5712
|
SENSITIVE = []
|
|
5424
5713
|
include Aws::Structure
|
|
5425
5714
|
end
|
|
@@ -5795,6 +6084,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5795
6084
|
# process.
|
|
5796
6085
|
# @return [String]
|
|
5797
6086
|
#
|
|
6087
|
+
# @!attribute [rw] enforcement_mode
|
|
6088
|
+
# The enforcement mode of the deleted policy.
|
|
6089
|
+
# @return [String]
|
|
6090
|
+
#
|
|
5798
6091
|
# @!attribute [rw] definition
|
|
5799
6092
|
# Represents the definition structure for policies within the
|
|
5800
6093
|
# AgentCore Policy system. This structure encapsulates different
|
|
@@ -5822,6 +6115,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5822
6115
|
:updated_at,
|
|
5823
6116
|
:policy_arn,
|
|
5824
6117
|
:status,
|
|
6118
|
+
:enforcement_mode,
|
|
5825
6119
|
:definition,
|
|
5826
6120
|
:description,
|
|
5827
6121
|
:status_reasons)
|
|
@@ -6827,7 +7121,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6827
7121
|
:updated_at,
|
|
6828
7122
|
:authorizer_type,
|
|
6829
7123
|
:protocol_type)
|
|
6830
|
-
SENSITIVE = [:
|
|
7124
|
+
SENSITIVE = [:description]
|
|
6831
7125
|
include Aws::Structure
|
|
6832
7126
|
end
|
|
6833
7127
|
|
|
@@ -7151,19 +7445,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
7151
7445
|
end
|
|
7152
7446
|
|
|
7153
7447
|
# @!attribute [rw] api_key_secret_arn
|
|
7154
|
-
# The Amazon Resource Name (ARN) of the API key secret in
|
|
7155
|
-
# Manager.
|
|
7448
|
+
# The Amazon Resource Name (ARN) of the API key secret in Amazon Web
|
|
7449
|
+
# Services Secrets Manager.
|
|
7156
7450
|
# @return [Types::Secret]
|
|
7157
7451
|
#
|
|
7158
7452
|
# @!attribute [rw] api_key_secret_json_key
|
|
7159
|
-
# The JSON key used to extract the API key value from the
|
|
7160
|
-
# Manager secret.
|
|
7453
|
+
# The JSON key used to extract the API key value from the Amazon Web
|
|
7454
|
+
# Services Secrets Manager secret.
|
|
7161
7455
|
# @return [String]
|
|
7162
7456
|
#
|
|
7163
7457
|
# @!attribute [rw] api_key_secret_source
|
|
7164
7458
|
# The source type of the API key secret. Either `MANAGED` if the
|
|
7165
7459
|
# secret is managed by the service, or `EXTERNAL` if managed by the
|
|
7166
|
-
# user in
|
|
7460
|
+
# user in Amazon Web Services Secrets Manager.
|
|
7167
7461
|
# @return [String]
|
|
7168
7462
|
#
|
|
7169
7463
|
# @!attribute [rw] name
|
|
@@ -7869,6 +8163,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
7869
8163
|
# gateway.
|
|
7870
8164
|
# @return [String]
|
|
7871
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
|
+
#
|
|
7872
8172
|
# @!attribute [rw] interceptor_configurations
|
|
7873
8173
|
# The interceptors configured on the gateway.
|
|
7874
8174
|
# @return [Array<Types::GatewayInterceptorConfiguration>]
|
|
@@ -7892,6 +8192,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
7892
8192
|
# the end user.
|
|
7893
8193
|
# @return [String]
|
|
7894
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
|
+
#
|
|
7895
8204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayResponse AWS API Documentation
|
|
7896
8205
|
#
|
|
7897
8206
|
class GetGatewayResponse < Struct.new(
|
|
@@ -7910,11 +8219,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
7910
8219
|
:authorizer_type,
|
|
7911
8220
|
:authorizer_configuration,
|
|
7912
8221
|
:kms_key_arn,
|
|
8222
|
+
:custom_transform_configuration,
|
|
7913
8223
|
:interceptor_configurations,
|
|
7914
8224
|
:policy_engine_configuration,
|
|
7915
8225
|
:workload_identity_details,
|
|
7916
|
-
:exception_level
|
|
7917
|
-
|
|
8226
|
+
:exception_level,
|
|
8227
|
+
:web_acl_arn,
|
|
8228
|
+
:waf_configuration)
|
|
8229
|
+
SENSITIVE = [:description]
|
|
7918
8230
|
include Aws::Structure
|
|
7919
8231
|
end
|
|
7920
8232
|
|
|
@@ -8106,14 +8418,49 @@ module Aws::BedrockAgentCoreControl
|
|
|
8106
8418
|
include Aws::Structure
|
|
8107
8419
|
end
|
|
8108
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
|
+
|
|
8109
8450
|
# @!attribute [rw] harness_id
|
|
8110
8451
|
# The ID of the harness to retrieve.
|
|
8111
8452
|
# @return [String]
|
|
8112
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
|
+
#
|
|
8113
8459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetHarnessRequest AWS API Documentation
|
|
8114
8460
|
#
|
|
8115
8461
|
class GetHarnessRequest < Struct.new(
|
|
8116
|
-
:harness_id
|
|
8462
|
+
:harness_id,
|
|
8463
|
+
:harness_version)
|
|
8117
8464
|
SENSITIVE = []
|
|
8118
8465
|
include Aws::Structure
|
|
8119
8466
|
end
|
|
@@ -8172,19 +8519,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
8172
8519
|
end
|
|
8173
8520
|
|
|
8174
8521
|
# @!attribute [rw] client_secret_arn
|
|
8175
|
-
# The Amazon Resource Name (ARN) of the client secret in
|
|
8176
|
-
# Manager.
|
|
8522
|
+
# The Amazon Resource Name (ARN) of the client secret in Amazon Web
|
|
8523
|
+
# Services Secrets Manager.
|
|
8177
8524
|
# @return [Types::Secret]
|
|
8178
8525
|
#
|
|
8179
8526
|
# @!attribute [rw] client_secret_json_key
|
|
8180
|
-
# The JSON key used to extract the client secret value from the
|
|
8181
|
-
# Secrets Manager secret.
|
|
8527
|
+
# The JSON key used to extract the client secret value from the Amazon
|
|
8528
|
+
# Web Services Secrets Manager secret.
|
|
8182
8529
|
# @return [String]
|
|
8183
8530
|
#
|
|
8184
8531
|
# @!attribute [rw] client_secret_source
|
|
8185
8532
|
# The source type of the client secret. Either `MANAGED` if the secret
|
|
8186
8533
|
# is managed by the service, or `EXTERNAL` if managed by the user in
|
|
8187
|
-
#
|
|
8534
|
+
# Amazon Web Services Secrets Manager.
|
|
8188
8535
|
# @return [String]
|
|
8189
8536
|
#
|
|
8190
8537
|
# @!attribute [rw] name
|
|
@@ -8925,6 +9272,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
8925
9272
|
# The current status of the policy.
|
|
8926
9273
|
# @return [String]
|
|
8927
9274
|
#
|
|
9275
|
+
# @!attribute [rw] enforcement_mode
|
|
9276
|
+
# The current enforcement mode of the policy.
|
|
9277
|
+
# @return [String]
|
|
9278
|
+
#
|
|
8928
9279
|
# @!attribute [rw] definition
|
|
8929
9280
|
# The Cedar policy statement that defines the access control rules.
|
|
8930
9281
|
# This contains the actual policy logic used for agent behavior
|
|
@@ -8952,6 +9303,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8952
9303
|
:updated_at,
|
|
8953
9304
|
:policy_arn,
|
|
8954
9305
|
:status,
|
|
9306
|
+
:enforcement_mode,
|
|
8955
9307
|
:definition,
|
|
8956
9308
|
:description,
|
|
8957
9309
|
:status_reasons)
|
|
@@ -9007,6 +9359,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
9007
9359
|
# The current status of the policy.
|
|
9008
9360
|
# @return [String]
|
|
9009
9361
|
#
|
|
9362
|
+
# @!attribute [rw] enforcement_mode
|
|
9363
|
+
# The current enforcement mode of the policy.
|
|
9364
|
+
# @return [String]
|
|
9365
|
+
#
|
|
9010
9366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetPolicySummaryResponse AWS API Documentation
|
|
9011
9367
|
#
|
|
9012
9368
|
class GetPolicySummaryResponse < Struct.new(
|
|
@@ -9016,7 +9372,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
9016
9372
|
:created_at,
|
|
9017
9373
|
:updated_at,
|
|
9018
9374
|
:policy_arn,
|
|
9019
|
-
:status
|
|
9375
|
+
:status,
|
|
9376
|
+
:enforcement_mode)
|
|
9020
9377
|
SENSITIVE = []
|
|
9021
9378
|
include Aws::Structure
|
|
9022
9379
|
end
|
|
@@ -9330,16 +9687,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
9330
9687
|
# @return [String]
|
|
9331
9688
|
#
|
|
9332
9689
|
# @!attribute [rw] client_secret_config
|
|
9333
|
-
# A reference to the
|
|
9334
|
-
# secret. This includes the secret ID and the JSON
|
|
9335
|
-
# the client secret value from the secret.
|
|
9336
|
-
# `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`.
|
|
9337
9694
|
# @return [Types::SecretReference]
|
|
9338
9695
|
#
|
|
9339
9696
|
# @!attribute [rw] client_secret_source
|
|
9340
9697
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
9341
9698
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
9342
|
-
# yourself in
|
|
9699
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
9343
9700
|
# @return [String]
|
|
9344
9701
|
#
|
|
9345
9702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GithubOauth2ProviderConfigInput AWS API Documentation
|
|
@@ -9383,16 +9740,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
9383
9740
|
# @return [String]
|
|
9384
9741
|
#
|
|
9385
9742
|
# @!attribute [rw] client_secret_config
|
|
9386
|
-
# A reference to the
|
|
9387
|
-
# secret. This includes the secret ID and the JSON
|
|
9388
|
-
# the client secret value from the secret.
|
|
9389
|
-
# `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`.
|
|
9390
9747
|
# @return [Types::SecretReference]
|
|
9391
9748
|
#
|
|
9392
9749
|
# @!attribute [rw] client_secret_source
|
|
9393
9750
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
9394
9751
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
9395
|
-
# yourself in
|
|
9752
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
9396
9753
|
# @return [String]
|
|
9397
9754
|
#
|
|
9398
9755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GoogleOauth2ProviderConfigInput AWS API Documentation
|
|
@@ -9425,34 +9782,39 @@ module Aws::BedrockAgentCoreControl
|
|
|
9425
9782
|
include Aws::Structure
|
|
9426
9783
|
end
|
|
9427
9784
|
|
|
9428
|
-
# Representation of a
|
|
9785
|
+
# Representation of a harness.
|
|
9429
9786
|
#
|
|
9430
9787
|
# @!attribute [rw] harness_id
|
|
9431
|
-
# The ID of the
|
|
9788
|
+
# The ID of the harness.
|
|
9432
9789
|
# @return [String]
|
|
9433
9790
|
#
|
|
9434
9791
|
# @!attribute [rw] harness_name
|
|
9435
|
-
# The name of the
|
|
9792
|
+
# The name of the harness.
|
|
9436
9793
|
# @return [String]
|
|
9437
9794
|
#
|
|
9438
9795
|
# @!attribute [rw] arn
|
|
9439
|
-
# The ARN of the
|
|
9796
|
+
# The ARN of the harness.
|
|
9440
9797
|
# @return [String]
|
|
9441
9798
|
#
|
|
9442
9799
|
# @!attribute [rw] status
|
|
9443
|
-
# The status of the
|
|
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.
|
|
9444
9806
|
# @return [String]
|
|
9445
9807
|
#
|
|
9446
9808
|
# @!attribute [rw] execution_role_arn
|
|
9447
|
-
# IAM role the
|
|
9809
|
+
# IAM role the harness assumes when running.
|
|
9448
9810
|
# @return [String]
|
|
9449
9811
|
#
|
|
9450
9812
|
# @!attribute [rw] created_at
|
|
9451
|
-
# The createdAt time of the
|
|
9813
|
+
# The createdAt time of the harness.
|
|
9452
9814
|
# @return [Time]
|
|
9453
9815
|
#
|
|
9454
9816
|
# @!attribute [rw] updated_at
|
|
9455
|
-
# The updatedAt time of the
|
|
9817
|
+
# The updatedAt time of the harness.
|
|
9456
9818
|
# @return [Time]
|
|
9457
9819
|
#
|
|
9458
9820
|
# @!attribute [rw] model
|
|
@@ -9460,19 +9822,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
9460
9822
|
# @return [Types::HarnessModelConfiguration]
|
|
9461
9823
|
#
|
|
9462
9824
|
# @!attribute [rw] system_prompt
|
|
9463
|
-
# The system prompt of the
|
|
9825
|
+
# The system prompt of the harness.
|
|
9464
9826
|
# @return [Array<Types::HarnessSystemContentBlock>]
|
|
9465
9827
|
#
|
|
9466
9828
|
# @!attribute [rw] tools
|
|
9467
|
-
# The tools of the
|
|
9829
|
+
# The tools of the harness.
|
|
9468
9830
|
# @return [Array<Types::HarnessTool>]
|
|
9469
9831
|
#
|
|
9470
9832
|
# @!attribute [rw] skills
|
|
9471
|
-
# The skills of the
|
|
9833
|
+
# The skills of the harness.
|
|
9472
9834
|
# @return [Array<Types::HarnessSkill>]
|
|
9473
9835
|
#
|
|
9474
9836
|
# @!attribute [rw] allowed_tools
|
|
9475
|
-
# The allowed tools of the
|
|
9837
|
+
# The allowed tools of the harness. All tools are allowed by default.
|
|
9476
9838
|
# @return [Array<String>]
|
|
9477
9839
|
#
|
|
9478
9840
|
# @!attribute [rw] truncation
|
|
@@ -9490,7 +9852,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9490
9852
|
#
|
|
9491
9853
|
# @!attribute [rw] environment_variables
|
|
9492
9854
|
# Environment variables exposed in the environment in which the
|
|
9493
|
-
#
|
|
9855
|
+
# harness operates.
|
|
9494
9856
|
# @return [Hash<String,String>]
|
|
9495
9857
|
#
|
|
9496
9858
|
# @!attribute [rw] authorizer_configuration
|
|
@@ -9528,6 +9890,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
9528
9890
|
:harness_name,
|
|
9529
9891
|
:arn,
|
|
9530
9892
|
:status,
|
|
9893
|
+
:harness_version,
|
|
9531
9894
|
:execution_role_arn,
|
|
9532
9895
|
:created_at,
|
|
9533
9896
|
:updated_at,
|
|
@@ -9764,39 +10127,116 @@ module Aws::BedrockAgentCoreControl
|
|
|
9764
10127
|
include Aws::Structure
|
|
9765
10128
|
end
|
|
9766
10129
|
|
|
9767
|
-
#
|
|
9768
|
-
# containing custom dependencies.
|
|
10130
|
+
# Explicitly opt out of memory.
|
|
9769
10131
|
#
|
|
9770
|
-
# @
|
|
10132
|
+
# @api private
|
|
9771
10133
|
#
|
|
9772
|
-
# @
|
|
10134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessDisabledMemoryConfiguration AWS API Documentation
|
|
9773
10135
|
#
|
|
9774
|
-
|
|
9775
|
-
|
|
9776
|
-
#
|
|
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.
|
|
9777
10142
|
#
|
|
9778
|
-
#
|
|
10143
|
+
# @!attribute [rw] harness_id
|
|
10144
|
+
# The ID of the harness that the endpoint belongs to.
|
|
10145
|
+
# @return [String]
|
|
9779
10146
|
#
|
|
9780
|
-
|
|
9781
|
-
|
|
9782
|
-
|
|
9783
|
-
SENSITIVE = []
|
|
9784
|
-
include Aws::Structure
|
|
9785
|
-
include Aws::Structure::Union
|
|
9786
|
-
|
|
9787
|
-
class ContainerConfiguration < HarnessEnvironmentArtifact; end
|
|
9788
|
-
class Unknown < HarnessEnvironmentArtifact; end
|
|
9789
|
-
end
|
|
9790
|
-
|
|
9791
|
-
# The environment provider for a harness.
|
|
10147
|
+
# @!attribute [rw] harness_name
|
|
10148
|
+
# The name of the harness that the endpoint belongs to.
|
|
10149
|
+
# @return [String]
|
|
9792
10150
|
#
|
|
9793
|
-
#
|
|
10151
|
+
# @!attribute [rw] endpoint_name
|
|
10152
|
+
# The name of the endpoint.
|
|
10153
|
+
# @return [String]
|
|
9794
10154
|
#
|
|
9795
|
-
# @!attribute [rw]
|
|
9796
|
-
# The
|
|
9797
|
-
# @return [
|
|
10155
|
+
# @!attribute [rw] arn
|
|
10156
|
+
# The ARN of the endpoint.
|
|
10157
|
+
# @return [String]
|
|
9798
10158
|
#
|
|
9799
|
-
#
|
|
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]
|
|
10217
|
+
#
|
|
10218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessEnvironmentArtifact AWS API Documentation
|
|
10219
|
+
#
|
|
10220
|
+
class HarnessEnvironmentArtifact < Struct.new(
|
|
10221
|
+
:container_configuration,
|
|
10222
|
+
:unknown)
|
|
10223
|
+
SENSITIVE = []
|
|
10224
|
+
include Aws::Structure
|
|
10225
|
+
include Aws::Structure::Union
|
|
10226
|
+
|
|
10227
|
+
class ContainerConfiguration < HarnessEnvironmentArtifact; end
|
|
10228
|
+
class Unknown < HarnessEnvironmentArtifact; end
|
|
10229
|
+
end
|
|
10230
|
+
|
|
10231
|
+
# The environment provider for a harness.
|
|
10232
|
+
#
|
|
10233
|
+
# @note HarnessEnvironmentProvider is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of HarnessEnvironmentProvider corresponding to the set member.
|
|
10234
|
+
#
|
|
10235
|
+
# @!attribute [rw] agent_core_runtime_environment
|
|
10236
|
+
# The AgentCore Runtime environment configuration.
|
|
10237
|
+
# @return [Types::HarnessAgentCoreRuntimeEnvironment]
|
|
10238
|
+
#
|
|
10239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessEnvironmentProvider AWS API Documentation
|
|
9800
10240
|
#
|
|
9801
10241
|
class HarnessEnvironmentProvider < Struct.new(
|
|
9802
10242
|
:agent_core_runtime_environment,
|
|
@@ -9974,6 +10414,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
9974
10414
|
include Aws::Structure
|
|
9975
10415
|
end
|
|
9976
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
|
+
|
|
9977
10448
|
# The memory configuration for a harness.
|
|
9978
10449
|
#
|
|
9979
10450
|
# @note HarnessMemoryConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -9984,16 +10455,29 @@ module Aws::BedrockAgentCoreControl
|
|
|
9984
10455
|
# The AgentCore Memory configuration.
|
|
9985
10456
|
# @return [Types::HarnessAgentCoreMemoryConfiguration]
|
|
9986
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
|
+
#
|
|
9987
10467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessMemoryConfiguration AWS API Documentation
|
|
9988
10468
|
#
|
|
9989
10469
|
class HarnessMemoryConfiguration < Struct.new(
|
|
9990
10470
|
:agent_core_memory_configuration,
|
|
10471
|
+
:managed_memory_configuration,
|
|
10472
|
+
:disabled,
|
|
9991
10473
|
:unknown)
|
|
9992
10474
|
SENSITIVE = []
|
|
9993
10475
|
include Aws::Structure
|
|
9994
10476
|
include Aws::Structure::Union
|
|
9995
10477
|
|
|
9996
10478
|
class AgentCoreMemoryConfiguration < HarnessMemoryConfiguration; end
|
|
10479
|
+
class ManagedMemoryConfiguration < HarnessMemoryConfiguration; end
|
|
10480
|
+
class Disabled < HarnessMemoryConfiguration; end
|
|
9997
10481
|
class Unknown < HarnessMemoryConfiguration; end
|
|
9998
10482
|
end
|
|
9999
10483
|
|
|
@@ -10123,12 +10607,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
10123
10607
|
# A git repository containing the skill.
|
|
10124
10608
|
# @return [Types::HarnessSkillGitSource]
|
|
10125
10609
|
#
|
|
10610
|
+
# @!attribute [rw] aws_skills
|
|
10611
|
+
# AWS Skills baked into the harness's underlying Runtime.
|
|
10612
|
+
# @return [Types::HarnessSkillAwsSkillsSource]
|
|
10613
|
+
#
|
|
10126
10614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkill AWS API Documentation
|
|
10127
10615
|
#
|
|
10128
10616
|
class HarnessSkill < Struct.new(
|
|
10129
10617
|
:path,
|
|
10130
10618
|
:s3,
|
|
10131
10619
|
:git,
|
|
10620
|
+
:aws_skills,
|
|
10132
10621
|
:unknown)
|
|
10133
10622
|
SENSITIVE = []
|
|
10134
10623
|
include Aws::Structure
|
|
@@ -10137,9 +10626,25 @@ module Aws::BedrockAgentCoreControl
|
|
|
10137
10626
|
class Path < HarnessSkill; end
|
|
10138
10627
|
class S3 < HarnessSkill; end
|
|
10139
10628
|
class Git < HarnessSkill; end
|
|
10629
|
+
class AwsSkills < HarnessSkill; end
|
|
10140
10630
|
class Unknown < HarnessSkill; end
|
|
10141
10631
|
end
|
|
10142
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
|
+
|
|
10143
10648
|
# Authentication configuration for accessing a private git repository.
|
|
10144
10649
|
#
|
|
10145
10650
|
# @!attribute [rw] credential_arn
|
|
@@ -10264,6 +10769,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10264
10769
|
# The timestamp when the harness was last updated.
|
|
10265
10770
|
# @return [Time]
|
|
10266
10771
|
#
|
|
10772
|
+
# @!attribute [rw] harness_version
|
|
10773
|
+
# The latest version of the harness.
|
|
10774
|
+
# @return [String]
|
|
10775
|
+
#
|
|
10267
10776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSummary AWS API Documentation
|
|
10268
10777
|
#
|
|
10269
10778
|
class HarnessSummary < Struct.new(
|
|
@@ -10272,7 +10781,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10272
10781
|
:arn,
|
|
10273
10782
|
:status,
|
|
10274
10783
|
:created_at,
|
|
10275
|
-
:updated_at
|
|
10784
|
+
:updated_at,
|
|
10785
|
+
:harness_version)
|
|
10276
10786
|
SENSITIVE = []
|
|
10277
10787
|
include Aws::Structure
|
|
10278
10788
|
end
|
|
@@ -10421,6 +10931,87 @@ module Aws::BedrockAgentCoreControl
|
|
|
10421
10931
|
class Unknown < HarnessTruncationStrategyConfiguration; end
|
|
10422
10932
|
end
|
|
10423
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
|
+
|
|
10424
11015
|
# The HTTP target configuration for a gateway target. Contains the
|
|
10425
11016
|
# configuration for HTTP-based target endpoints.
|
|
10426
11017
|
#
|
|
@@ -10433,16 +11024,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
10433
11024
|
# communication with an agent runtime.
|
|
10434
11025
|
# @return [Types::RuntimeTargetConfiguration]
|
|
10435
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
|
+
#
|
|
10436
11032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpTargetConfiguration AWS API Documentation
|
|
10437
11033
|
#
|
|
10438
11034
|
class HttpTargetConfiguration < Struct.new(
|
|
10439
11035
|
:agentcore_runtime,
|
|
11036
|
+
:passthrough,
|
|
10440
11037
|
:unknown)
|
|
10441
11038
|
SENSITIVE = []
|
|
10442
11039
|
include Aws::Structure
|
|
10443
11040
|
include Aws::Structure::Union
|
|
10444
11041
|
|
|
10445
11042
|
class AgentcoreRuntime < HttpTargetConfiguration; end
|
|
11043
|
+
class Passthrough < HttpTargetConfiguration; end
|
|
10446
11044
|
class Unknown < HttpTargetConfiguration; end
|
|
10447
11045
|
end
|
|
10448
11046
|
|
|
@@ -10508,16 +11106,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
10508
11106
|
# @return [String]
|
|
10509
11107
|
#
|
|
10510
11108
|
# @!attribute [rw] client_secret_config
|
|
10511
|
-
# A reference to the
|
|
10512
|
-
# secret. This includes the secret ID and the JSON
|
|
10513
|
-
# the client secret value from the secret.
|
|
10514
|
-
# `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`.
|
|
10515
11113
|
# @return [Types::SecretReference]
|
|
10516
11114
|
#
|
|
10517
11115
|
# @!attribute [rw] client_secret_source
|
|
10518
11116
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
10519
11117
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
10520
|
-
# yourself in
|
|
11118
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
10521
11119
|
# @return [String]
|
|
10522
11120
|
#
|
|
10523
11121
|
# @!attribute [rw] issuer
|
|
@@ -10625,6 +11223,132 @@ module Aws::BedrockAgentCoreControl
|
|
|
10625
11223
|
include Aws::Structure
|
|
10626
11224
|
end
|
|
10627
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
|
+
|
|
10628
11352
|
# Inline examples provided directly in the request body.
|
|
10629
11353
|
#
|
|
10630
11354
|
# @!attribute [rw] examples
|
|
@@ -10639,12 +11363,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
10639
11363
|
include Aws::Structure
|
|
10640
11364
|
end
|
|
10641
11365
|
|
|
10642
|
-
# A reference to an insight analysis to run against sessions
|
|
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.
|
|
10643
11370
|
#
|
|
10644
11371
|
# @!attribute [rw] insight_id
|
|
10645
|
-
#
|
|
10646
|
-
# convention. Used by BatchEvaluate, InternalEvaluate, and
|
|
10647
|
-
# ServiceEngineEvaluate flows.
|
|
11372
|
+
# The unique identifier of the insight to run.
|
|
10648
11373
|
# @return [String]
|
|
10649
11374
|
#
|
|
10650
11375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Insight AWS API Documentation
|
|
@@ -10685,10 +11410,56 @@ module Aws::BedrockAgentCoreControl
|
|
|
10685
11410
|
# interceptor. When set to true, request headers will be passed.
|
|
10686
11411
|
# @return [Boolean]
|
|
10687
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
|
+
#
|
|
10688
11418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/InterceptorInputConfiguration AWS API Documentation
|
|
10689
11419
|
#
|
|
10690
11420
|
class InterceptorInputConfiguration < Struct.new(
|
|
10691
|
-
: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)
|
|
10692
11463
|
SENSITIVE = []
|
|
10693
11464
|
include Aws::Structure
|
|
10694
11465
|
end
|
|
@@ -10820,6 +11591,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
10820
11591
|
include Aws::Structure
|
|
10821
11592
|
end
|
|
10822
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
|
+
|
|
10823
11611
|
# LifecycleConfiguration lets you manage the lifecycle of runtime
|
|
10824
11612
|
# sessions and resources in AgentCore Runtime. This configuration helps
|
|
10825
11613
|
# optimize resource utilization by automatically cleaning up idle
|
|
@@ -10863,16 +11651,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
10863
11651
|
# @return [String]
|
|
10864
11652
|
#
|
|
10865
11653
|
# @!attribute [rw] client_secret_config
|
|
10866
|
-
# A reference to the
|
|
10867
|
-
# secret. This includes the secret ID and the JSON
|
|
10868
|
-
# the client secret value from the secret.
|
|
10869
|
-
# `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`.
|
|
10870
11658
|
# @return [Types::SecretReference]
|
|
10871
11659
|
#
|
|
10872
11660
|
# @!attribute [rw] client_secret_source
|
|
10873
11661
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
10874
11662
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
10875
|
-
# yourself in
|
|
11663
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
10876
11664
|
# @return [String]
|
|
10877
11665
|
#
|
|
10878
11666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/LinkedinOauth2ProviderConfigInput AWS API Documentation
|
|
@@ -11582,6 +12370,84 @@ module Aws::BedrockAgentCoreControl
|
|
|
11582
12370
|
include Aws::Structure
|
|
11583
12371
|
end
|
|
11584
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
|
+
|
|
11585
12451
|
# @!attribute [rw] max_results
|
|
11586
12452
|
# The maximum number of results to return in a single call.
|
|
11587
12453
|
# @return [Integer]
|
|
@@ -12526,7 +13392,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12526
13392
|
:search_type,
|
|
12527
13393
|
:session_configuration,
|
|
12528
13394
|
:streaming_configuration)
|
|
12529
|
-
SENSITIVE = []
|
|
13395
|
+
SENSITIVE = [:instructions]
|
|
12530
13396
|
include Aws::Structure
|
|
12531
13397
|
end
|
|
12532
13398
|
|
|
@@ -12775,6 +13641,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
12775
13641
|
# The configuration for an Amazon API Gateway target.
|
|
12776
13642
|
# @return [Types::ApiGatewayTargetConfiguration]
|
|
12777
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
|
+
#
|
|
12778
13650
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpTargetConfiguration AWS API Documentation
|
|
12779
13651
|
#
|
|
12780
13652
|
class McpTargetConfiguration < Struct.new(
|
|
@@ -12783,6 +13655,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12783
13655
|
:lambda,
|
|
12784
13656
|
:mcp_server,
|
|
12785
13657
|
:api_gateway,
|
|
13658
|
+
:connector,
|
|
12786
13659
|
:unknown)
|
|
12787
13660
|
SENSITIVE = []
|
|
12788
13661
|
include Aws::Structure
|
|
@@ -12793,6 +13666,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12793
13666
|
class Lambda < McpTargetConfiguration; end
|
|
12794
13667
|
class McpServer < McpTargetConfiguration; end
|
|
12795
13668
|
class ApiGateway < McpTargetConfiguration; end
|
|
13669
|
+
class Connector < McpTargetConfiguration; end
|
|
12796
13670
|
class Unknown < McpTargetConfiguration; end
|
|
12797
13671
|
end
|
|
12798
13672
|
|
|
@@ -12887,6 +13761,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
12887
13761
|
# resources.
|
|
12888
13762
|
# @return [Types::StreamDeliveryResources]
|
|
12889
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
|
+
#
|
|
12890
13770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Memory AWS API Documentation
|
|
12891
13771
|
#
|
|
12892
13772
|
class Memory < Struct.new(
|
|
@@ -12903,7 +13783,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
12903
13783
|
:updated_at,
|
|
12904
13784
|
:strategies,
|
|
12905
13785
|
:indexed_keys,
|
|
12906
|
-
:stream_delivery_resources
|
|
13786
|
+
:stream_delivery_resources,
|
|
13787
|
+
:managed_by_resource_arn)
|
|
12907
13788
|
SENSITIVE = [:description]
|
|
12908
13789
|
include Aws::Structure
|
|
12909
13790
|
end
|
|
@@ -13054,6 +13935,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
13054
13935
|
# The timestamp when the memory was last updated.
|
|
13055
13936
|
# @return [Time]
|
|
13056
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
|
+
#
|
|
13057
13943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MemorySummary AWS API Documentation
|
|
13058
13944
|
#
|
|
13059
13945
|
class MemorySummary < Struct.new(
|
|
@@ -13061,7 +13947,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
13061
13947
|
:id,
|
|
13062
13948
|
:status,
|
|
13063
13949
|
:created_at,
|
|
13064
|
-
:updated_at
|
|
13950
|
+
:updated_at,
|
|
13951
|
+
:managed_by_resource_arn)
|
|
13065
13952
|
SENSITIVE = []
|
|
13066
13953
|
include Aws::Structure
|
|
13067
13954
|
end
|
|
@@ -13165,16 +14052,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
13165
14052
|
# @return [String]
|
|
13166
14053
|
#
|
|
13167
14054
|
# @!attribute [rw] client_secret_config
|
|
13168
|
-
# A reference to the
|
|
13169
|
-
# secret. This includes the secret ID and the JSON
|
|
13170
|
-
# the client secret value from the secret.
|
|
13171
|
-
# `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`.
|
|
13172
14059
|
# @return [Types::SecretReference]
|
|
13173
14060
|
#
|
|
13174
14061
|
# @!attribute [rw] client_secret_source
|
|
13175
14062
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
13176
14063
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
13177
|
-
# yourself in
|
|
14064
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
13178
14065
|
# @return [String]
|
|
13179
14066
|
#
|
|
13180
14067
|
# @!attribute [rw] tenant_id
|
|
@@ -13214,6 +14101,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
13214
14101
|
include Aws::Structure
|
|
13215
14102
|
end
|
|
13216
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
|
+
|
|
13217
14135
|
# Contains information for modifying a consolidation configuration.
|
|
13218
14136
|
#
|
|
13219
14137
|
# @note ModifyConsolidationConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -13903,6 +14821,41 @@ module Aws::BedrockAgentCoreControl
|
|
|
13903
14821
|
include Aws::Structure
|
|
13904
14822
|
end
|
|
13905
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
|
+
|
|
13906
14859
|
# Contains summary information about a payment connector.
|
|
13907
14860
|
#
|
|
13908
14861
|
# @!attribute [rw] payment_connector_id
|
|
@@ -14160,6 +15113,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
14160
15113
|
# The current status of the policy.
|
|
14161
15114
|
# @return [String]
|
|
14162
15115
|
#
|
|
15116
|
+
# @!attribute [rw] enforcement_mode
|
|
15117
|
+
# The current enforcement mode of the policy.
|
|
15118
|
+
# @return [String]
|
|
15119
|
+
#
|
|
14163
15120
|
# @!attribute [rw] definition
|
|
14164
15121
|
# The Cedar policy statement that defines the access control rules.
|
|
14165
15122
|
# This contains the actual policy logic used for agent behavior
|
|
@@ -14188,6 +15145,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14188
15145
|
:updated_at,
|
|
14189
15146
|
:policy_arn,
|
|
14190
15147
|
:status,
|
|
15148
|
+
:enforcement_mode,
|
|
14191
15149
|
:definition,
|
|
14192
15150
|
:description,
|
|
14193
15151
|
:status_reasons)
|
|
@@ -14227,11 +15185,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
14227
15185
|
# select the most appropriate policy option.
|
|
14228
15186
|
# @return [Types::PolicyGenerationDetails]
|
|
14229
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
|
+
#
|
|
14230
15193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicyDefinition AWS API Documentation
|
|
14231
15194
|
#
|
|
14232
15195
|
class PolicyDefinition < Struct.new(
|
|
14233
15196
|
:cedar,
|
|
14234
15197
|
:policy_generation,
|
|
15198
|
+
:policy,
|
|
14235
15199
|
:unknown)
|
|
14236
15200
|
SENSITIVE = []
|
|
14237
15201
|
include Aws::Structure
|
|
@@ -14239,6 +15203,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14239
15203
|
|
|
14240
15204
|
class Cedar < PolicyDefinition; end
|
|
14241
15205
|
class PolicyGeneration < PolicyDefinition; end
|
|
15206
|
+
class Policy < PolicyDefinition; end
|
|
14242
15207
|
class Unknown < PolicyDefinition; end
|
|
14243
15208
|
end
|
|
14244
15209
|
|
|
@@ -14579,6 +15544,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
14579
15544
|
include Aws::Structure
|
|
14580
15545
|
end
|
|
14581
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
|
+
|
|
14582
15563
|
# Represents a metadata-only summary of a policy resource. This
|
|
14583
15564
|
# structure contains resource identifiers, status, and timestamps
|
|
14584
15565
|
# without customer-encrypted fields such as definition, description, or
|
|
@@ -14613,6 +15594,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
14613
15594
|
# The current status of the policy.
|
|
14614
15595
|
# @return [String]
|
|
14615
15596
|
#
|
|
15597
|
+
# @!attribute [rw] enforcement_mode
|
|
15598
|
+
# The current enforcement mode of the policy.
|
|
15599
|
+
# @return [String]
|
|
15600
|
+
#
|
|
14616
15601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PolicySummary AWS API Documentation
|
|
14617
15602
|
#
|
|
14618
15603
|
class PolicySummary < Struct.new(
|
|
@@ -14622,7 +15607,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
14622
15607
|
:created_at,
|
|
14623
15608
|
:updated_at,
|
|
14624
15609
|
:policy_arn,
|
|
14625
|
-
:status
|
|
15610
|
+
:status,
|
|
15611
|
+
:enforcement_mode)
|
|
14626
15612
|
SENSITIVE = []
|
|
14627
15613
|
include Aws::Structure
|
|
14628
15614
|
end
|
|
@@ -14696,6 +15682,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
14696
15682
|
include Aws::Structure
|
|
14697
15683
|
end
|
|
14698
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
|
+
|
|
14699
15709
|
# @!attribute [rw] resource_arn
|
|
14700
15710
|
# The Amazon Resource Name (ARN) of the resource for which to create
|
|
14701
15711
|
# or update the resource policy.
|
|
@@ -15243,11 +16253,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
15243
16253
|
# endpoint version. If not specified, the default endpoint is used.
|
|
15244
16254
|
# @return [String]
|
|
15245
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
|
+
#
|
|
15246
16261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RuntimeTargetConfiguration AWS API Documentation
|
|
15247
16262
|
#
|
|
15248
16263
|
class RuntimeTargetConfiguration < Struct.new(
|
|
15249
16264
|
:arn,
|
|
15250
|
-
:qualifier
|
|
16265
|
+
:qualifier,
|
|
16266
|
+
:schema)
|
|
15251
16267
|
SENSITIVE = []
|
|
15252
16268
|
include Aws::Structure
|
|
15253
16269
|
end
|
|
@@ -15352,16 +16368,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
15352
16368
|
# @return [String]
|
|
15353
16369
|
#
|
|
15354
16370
|
# @!attribute [rw] client_secret_config
|
|
15355
|
-
# A reference to the
|
|
15356
|
-
# secret. This includes the secret ID and the JSON
|
|
15357
|
-
# the client secret value from the secret.
|
|
15358
|
-
# `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`.
|
|
15359
16375
|
# @return [Types::SecretReference]
|
|
15360
16376
|
#
|
|
15361
16377
|
# @!attribute [rw] client_secret_source
|
|
15362
16378
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
15363
16379
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
15364
|
-
# yourself in
|
|
16380
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
15365
16381
|
# @return [String]
|
|
15366
16382
|
#
|
|
15367
16383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SalesforceOauth2ProviderConfigInput AWS API Documentation
|
|
@@ -15450,10 +16466,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
15450
16466
|
include Aws::Structure
|
|
15451
16467
|
end
|
|
15452
16468
|
|
|
15453
|
-
# Contains information about a secret in
|
|
16469
|
+
# Contains information about a secret in Amazon Web Services Secrets
|
|
16470
|
+
# Manager.
|
|
15454
16471
|
#
|
|
15455
16472
|
# @!attribute [rw] secret_arn
|
|
15456
|
-
# The Amazon Resource Name (ARN) of the secret in
|
|
16473
|
+
# The Amazon Resource Name (ARN) of the secret in Amazon Web Services
|
|
16474
|
+
# Secrets Manager.
|
|
15457
16475
|
# @return [String]
|
|
15458
16476
|
#
|
|
15459
16477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Secret AWS API Documentation
|
|
@@ -15464,16 +16482,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
15464
16482
|
include Aws::Structure
|
|
15465
16483
|
end
|
|
15466
16484
|
|
|
15467
|
-
# Contains a reference to a secret stored in
|
|
16485
|
+
# Contains a reference to a secret stored in Amazon Web Services Secrets
|
|
16486
|
+
# Manager.
|
|
15468
16487
|
#
|
|
15469
16488
|
# @!attribute [rw] secret_id
|
|
15470
|
-
# The ID of the
|
|
15471
|
-
# value.
|
|
16489
|
+
# The ID of the Amazon Web Services Secrets Manager secret that stores
|
|
16490
|
+
# the secret value.
|
|
15472
16491
|
# @return [String]
|
|
15473
16492
|
#
|
|
15474
16493
|
# @!attribute [rw] json_key
|
|
15475
|
-
# The JSON key used to extract the secret value from the
|
|
15476
|
-
# Manager secret.
|
|
16494
|
+
# The JSON key used to extract the secret value from the Amazon Web
|
|
16495
|
+
# Services Secrets Manager secret.
|
|
15477
16496
|
# @return [String]
|
|
15478
16497
|
#
|
|
15479
16498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SecretReference AWS API Documentation
|
|
@@ -15894,16 +16913,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
15894
16913
|
# @return [String]
|
|
15895
16914
|
#
|
|
15896
16915
|
# @!attribute [rw] client_secret_config
|
|
15897
|
-
# A reference to the
|
|
15898
|
-
# secret. This includes the secret ID and the JSON
|
|
15899
|
-
# the client secret value from the secret.
|
|
15900
|
-
# `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`.
|
|
15901
16920
|
# @return [Types::SecretReference]
|
|
15902
16921
|
#
|
|
15903
16922
|
# @!attribute [rw] client_secret_source
|
|
15904
16923
|
# The source type of the client secret. Use `MANAGED` if the secret is
|
|
15905
16924
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
15906
|
-
# yourself in
|
|
16925
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
15907
16926
|
# @return [String]
|
|
15908
16927
|
#
|
|
15909
16928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SlackOauth2ProviderConfigInput AWS API Documentation
|
|
@@ -16076,6 +17095,31 @@ module Aws::BedrockAgentCoreControl
|
|
|
16076
17095
|
include Aws::Structure
|
|
16077
17096
|
end
|
|
16078
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
|
+
|
|
16079
17123
|
# Contains configuration information for a memory strategy.
|
|
16080
17124
|
#
|
|
16081
17125
|
# @!attribute [rw] type
|
|
@@ -16210,13 +17254,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
16210
17254
|
# @!attribute [rw] app_secret_source
|
|
16211
17255
|
# The source type of the app secret. Use `MANAGED` if the secret is
|
|
16212
17256
|
# managed by the service, or `EXTERNAL` if you manage the secret
|
|
16213
|
-
# yourself in
|
|
17257
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
16214
17258
|
# @return [String]
|
|
16215
17259
|
#
|
|
16216
17260
|
# @!attribute [rw] app_secret_config
|
|
16217
|
-
# A reference to the
|
|
16218
|
-
# secret. This includes the secret ID and the JSON key
|
|
16219
|
-
# 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
|
|
16220
17264
|
# `appSecretSource` is set to `EXTERNAL`.
|
|
16221
17265
|
# @return [Types::SecretReference]
|
|
16222
17266
|
#
|
|
@@ -16227,15 +17271,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
16227
17271
|
# @!attribute [rw] authorization_private_key_source
|
|
16228
17272
|
# The source type of the authorization private key. Use `MANAGED` if
|
|
16229
17273
|
# the secret is managed by the service, or `EXTERNAL` if you manage
|
|
16230
|
-
# the secret yourself in
|
|
17274
|
+
# the secret yourself in Amazon Web Services Secrets Manager.
|
|
16231
17275
|
# @return [String]
|
|
16232
17276
|
#
|
|
16233
17277
|
# @!attribute [rw] authorization_private_key_config
|
|
16234
|
-
# A reference to the
|
|
16235
|
-
# authorization private key. This includes the secret ID
|
|
16236
|
-
# key used to extract the authorization private key value
|
|
16237
|
-
# secret. Required when `authorizationPrivateKeySource` is
|
|
16238
|
-
# `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`.
|
|
16239
17283
|
# @return [Types::SecretReference]
|
|
16240
17284
|
#
|
|
16241
17285
|
# @!attribute [rw] authorization_id
|
|
@@ -16264,33 +17308,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
16264
17308
|
# @return [String]
|
|
16265
17309
|
#
|
|
16266
17310
|
# @!attribute [rw] app_secret_arn
|
|
16267
|
-
# Contains information about a secret in
|
|
17311
|
+
# Contains information about a secret in Amazon Web Services Secrets
|
|
17312
|
+
# Manager.
|
|
16268
17313
|
# @return [Types::Secret]
|
|
16269
17314
|
#
|
|
16270
17315
|
# @!attribute [rw] app_secret_json_key
|
|
16271
|
-
# The JSON key used to extract the app secret value from the
|
|
16272
|
-
# Secrets Manager secret.
|
|
17316
|
+
# The JSON key used to extract the app secret value from the Amazon
|
|
17317
|
+
# Web Services Secrets Manager secret.
|
|
16273
17318
|
# @return [String]
|
|
16274
17319
|
#
|
|
16275
17320
|
# @!attribute [rw] app_secret_source
|
|
16276
17321
|
# The source type of the app secret. Either `MANAGED` if the secret is
|
|
16277
|
-
# managed by the service, or `EXTERNAL` if managed by the user in
|
|
16278
|
-
# Secrets Manager.
|
|
17322
|
+
# managed by the service, or `EXTERNAL` if managed by the user in
|
|
17323
|
+
# Amazon Web Services Secrets Manager.
|
|
16279
17324
|
# @return [String]
|
|
16280
17325
|
#
|
|
16281
17326
|
# @!attribute [rw] authorization_private_key_arn
|
|
16282
|
-
# Contains information about a secret in
|
|
17327
|
+
# Contains information about a secret in Amazon Web Services Secrets
|
|
17328
|
+
# Manager.
|
|
16283
17329
|
# @return [Types::Secret]
|
|
16284
17330
|
#
|
|
16285
17331
|
# @!attribute [rw] authorization_private_key_json_key
|
|
16286
17332
|
# The JSON key used to extract the authorization private key value
|
|
16287
|
-
# from the
|
|
17333
|
+
# from the Amazon Web Services Secrets Manager secret.
|
|
16288
17334
|
# @return [String]
|
|
16289
17335
|
#
|
|
16290
17336
|
# @!attribute [rw] authorization_private_key_source
|
|
16291
17337
|
# The source type of the authorization private key. Either `MANAGED`
|
|
16292
17338
|
# if the secret is managed by the service, or `EXTERNAL` if managed by
|
|
16293
|
-
# the user in
|
|
17339
|
+
# the user in Amazon Web Services Secrets Manager.
|
|
16294
17340
|
# @return [String]
|
|
16295
17341
|
#
|
|
16296
17342
|
# @!attribute [rw] authorization_id
|
|
@@ -16552,11 +17598,17 @@ module Aws::BedrockAgentCoreControl
|
|
|
16552
17598
|
# an HTTP-based endpoint such as an AgentCore Runtime.
|
|
16553
17599
|
# @return [Types::HttpTargetConfiguration]
|
|
16554
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
|
+
#
|
|
16555
17606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetConfiguration AWS API Documentation
|
|
16556
17607
|
#
|
|
16557
17608
|
class TargetConfiguration < Struct.new(
|
|
16558
17609
|
:mcp,
|
|
16559
17610
|
:http,
|
|
17611
|
+
:inference,
|
|
16560
17612
|
:unknown)
|
|
16561
17613
|
SENSITIVE = []
|
|
16562
17614
|
include Aws::Structure
|
|
@@ -16564,6 +17616,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
16564
17616
|
|
|
16565
17617
|
class Mcp < TargetConfiguration; end
|
|
16566
17618
|
class Http < TargetConfiguration; end
|
|
17619
|
+
class Inference < TargetConfiguration; end
|
|
16567
17620
|
class Unknown < TargetConfiguration; end
|
|
16568
17621
|
end
|
|
16569
17622
|
|
|
@@ -16599,6 +17652,26 @@ module Aws::BedrockAgentCoreControl
|
|
|
16599
17652
|
# values take precedence. Defaults to 1000 when not set.
|
|
16600
17653
|
# @return [Integer]
|
|
16601
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
|
+
#
|
|
16602
17675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetSummary AWS API Documentation
|
|
16603
17676
|
#
|
|
16604
17677
|
class TargetSummary < Struct.new(
|
|
@@ -16608,7 +17681,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
16608
17681
|
:description,
|
|
16609
17682
|
:created_at,
|
|
16610
17683
|
:updated_at,
|
|
16611
|
-
:resource_priority
|
|
17684
|
+
:resource_priority,
|
|
17685
|
+
:last_synchronized_at,
|
|
17686
|
+
:authorization_data,
|
|
17687
|
+
:target_type,
|
|
17688
|
+
:listing_mode)
|
|
16612
17689
|
SENSITIVE = [:name, :description]
|
|
16613
17690
|
include Aws::Structure
|
|
16614
17691
|
end
|
|
@@ -16806,7 +17883,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
16806
17883
|
:s3,
|
|
16807
17884
|
:inline_payload,
|
|
16808
17885
|
:unknown)
|
|
16809
|
-
SENSITIVE = []
|
|
17886
|
+
SENSITIVE = [:inline_payload]
|
|
16810
17887
|
include Aws::Structure
|
|
16811
17888
|
include Aws::Structure::Union
|
|
16812
17889
|
|
|
@@ -17196,16 +18273,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
17196
18273
|
# @return [String]
|
|
17197
18274
|
#
|
|
17198
18275
|
# @!attribute [rw] api_key_secret_config
|
|
17199
|
-
# A reference to the
|
|
17200
|
-
# key. This includes the secret ID and the JSON key
|
|
17201
|
-
# 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
|
|
17202
18279
|
# `apiKeySecretSource` is set to `EXTERNAL`.
|
|
17203
18280
|
# @return [Types::SecretReference]
|
|
17204
18281
|
#
|
|
17205
18282
|
# @!attribute [rw] api_key_secret_source
|
|
17206
18283
|
# The source type of the API key secret. Use `MANAGED` if the secret
|
|
17207
18284
|
# is managed by the service, or `EXTERNAL` if you manage the secret
|
|
17208
|
-
# yourself in
|
|
18285
|
+
# yourself in Amazon Web Services Secrets Manager.
|
|
17209
18286
|
# @return [String]
|
|
17210
18287
|
#
|
|
17211
18288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateApiKeyCredentialProviderRequest AWS API Documentation
|
|
@@ -17220,19 +18297,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
17220
18297
|
end
|
|
17221
18298
|
|
|
17222
18299
|
# @!attribute [rw] api_key_secret_arn
|
|
17223
|
-
# The Amazon Resource Name (ARN) of the API key secret in
|
|
17224
|
-
# Manager.
|
|
18300
|
+
# The Amazon Resource Name (ARN) of the API key secret in Amazon Web
|
|
18301
|
+
# Services Secrets Manager.
|
|
17225
18302
|
# @return [Types::Secret]
|
|
17226
18303
|
#
|
|
17227
18304
|
# @!attribute [rw] api_key_secret_json_key
|
|
17228
|
-
# The JSON key used to extract the API key value from the
|
|
17229
|
-
# Manager secret.
|
|
18305
|
+
# The JSON key used to extract the API key value from the Amazon Web
|
|
18306
|
+
# Services Secrets Manager secret.
|
|
17230
18307
|
# @return [String]
|
|
17231
18308
|
#
|
|
17232
18309
|
# @!attribute [rw] api_key_secret_source
|
|
17233
18310
|
# The source type of the API key secret. Either `MANAGED` if the
|
|
17234
18311
|
# secret is managed by the service, or `EXTERNAL` if managed by the
|
|
17235
|
-
# user in
|
|
18312
|
+
# user in Amazon Web Services Secrets Manager.
|
|
17236
18313
|
# @return [String]
|
|
17237
18314
|
#
|
|
17238
18315
|
# @!attribute [rw] name
|
|
@@ -17623,6 +18700,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
17623
18700
|
# The updated ARN of the KMS key used to encrypt the gateway.
|
|
17624
18701
|
# @return [String]
|
|
17625
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
|
+
#
|
|
17626
18709
|
# @!attribute [rw] interceptor_configurations
|
|
17627
18710
|
# The updated interceptor configurations for the gateway.
|
|
17628
18711
|
# @return [Array<Types::GatewayInterceptorConfiguration>]
|
|
@@ -17646,6 +18729,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
17646
18729
|
# the end user.
|
|
17647
18730
|
# @return [String]
|
|
17648
18731
|
#
|
|
18732
|
+
# @!attribute [rw] waf_configuration
|
|
18733
|
+
# The updated Amazon Web Services WAF configuration for the gateway.
|
|
18734
|
+
# @return [Types::WafConfiguration]
|
|
18735
|
+
#
|
|
17649
18736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRequest AWS API Documentation
|
|
17650
18737
|
#
|
|
17651
18738
|
class UpdateGatewayRequest < Struct.new(
|
|
@@ -17658,10 +18745,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
17658
18745
|
:authorizer_type,
|
|
17659
18746
|
:authorizer_configuration,
|
|
17660
18747
|
:kms_key_arn,
|
|
18748
|
+
:custom_transform_configuration,
|
|
17661
18749
|
:interceptor_configurations,
|
|
17662
18750
|
:policy_engine_configuration,
|
|
17663
|
-
:exception_level
|
|
17664
|
-
|
|
18751
|
+
:exception_level,
|
|
18752
|
+
:waf_configuration)
|
|
18753
|
+
SENSITIVE = [:description]
|
|
17665
18754
|
include Aws::Structure
|
|
17666
18755
|
end
|
|
17667
18756
|
|
|
@@ -17726,6 +18815,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
17726
18815
|
# The updated ARN of the KMS key used to encrypt the gateway.
|
|
17727
18816
|
# @return [String]
|
|
17728
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
|
+
#
|
|
17729
18824
|
# @!attribute [rw] interceptor_configurations
|
|
17730
18825
|
# The updated interceptor configurations for the gateway.
|
|
17731
18826
|
# @return [Array<Types::GatewayInterceptorConfiguration>]
|
|
@@ -17749,6 +18844,15 @@ module Aws::BedrockAgentCoreControl
|
|
|
17749
18844
|
# the end user.
|
|
17750
18845
|
# @return [String]
|
|
17751
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
|
+
#
|
|
17752
18856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayResponse AWS API Documentation
|
|
17753
18857
|
#
|
|
17754
18858
|
class UpdateGatewayResponse < Struct.new(
|
|
@@ -17767,11 +18871,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
17767
18871
|
:authorizer_type,
|
|
17768
18872
|
:authorizer_configuration,
|
|
17769
18873
|
:kms_key_arn,
|
|
18874
|
+
:custom_transform_configuration,
|
|
17770
18875
|
:interceptor_configurations,
|
|
17771
18876
|
:policy_engine_configuration,
|
|
17772
18877
|
:workload_identity_details,
|
|
17773
|
-
:exception_level
|
|
17774
|
-
|
|
18878
|
+
:exception_level,
|
|
18879
|
+
:web_acl_arn,
|
|
18880
|
+
:waf_configuration)
|
|
18881
|
+
SENSITIVE = [:description]
|
|
17775
18882
|
include Aws::Structure
|
|
17776
18883
|
end
|
|
17777
18884
|
|
|
@@ -18017,6 +19124,56 @@ module Aws::BedrockAgentCoreControl
|
|
|
18017
19124
|
include Aws::Structure
|
|
18018
19125
|
end
|
|
18019
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
|
+
|
|
18020
19177
|
# @!attribute [rw] harness_id
|
|
18021
19178
|
# The ID of the harness to update.
|
|
18022
19179
|
# @return [String]
|
|
@@ -18239,19 +19396,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
18239
19396
|
end
|
|
18240
19397
|
|
|
18241
19398
|
# @!attribute [rw] client_secret_arn
|
|
18242
|
-
# The Amazon Resource Name (ARN) of the client secret in
|
|
18243
|
-
# Manager.
|
|
19399
|
+
# The Amazon Resource Name (ARN) of the client secret in Amazon Web
|
|
19400
|
+
# Services Secrets Manager.
|
|
18244
19401
|
# @return [Types::Secret]
|
|
18245
19402
|
#
|
|
18246
19403
|
# @!attribute [rw] client_secret_json_key
|
|
18247
|
-
# The JSON key used to extract the client secret value from the
|
|
18248
|
-
# Secrets Manager secret.
|
|
19404
|
+
# The JSON key used to extract the client secret value from the Amazon
|
|
19405
|
+
# Web Services Secrets Manager secret.
|
|
18249
19406
|
# @return [String]
|
|
18250
19407
|
#
|
|
18251
19408
|
# @!attribute [rw] client_secret_source
|
|
18252
19409
|
# The source type of the client secret. Either `MANAGED` if the secret
|
|
18253
19410
|
# is managed by the service, or `EXTERNAL` if managed by the user in
|
|
18254
|
-
#
|
|
19411
|
+
# Amazon Web Services Secrets Manager.
|
|
18255
19412
|
# @return [String]
|
|
18256
19413
|
#
|
|
18257
19414
|
# @!attribute [rw] name
|
|
@@ -18783,6 +19940,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
18783
19940
|
# especially when modifying policy logic or conditions.
|
|
18784
19941
|
# @return [String]
|
|
18785
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
|
+
#
|
|
18786
19951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatePolicyRequest AWS API Documentation
|
|
18787
19952
|
#
|
|
18788
19953
|
class UpdatePolicyRequest < Struct.new(
|
|
@@ -18790,7 +19955,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
18790
19955
|
:policy_id,
|
|
18791
19956
|
:description,
|
|
18792
19957
|
:definition,
|
|
18793
|
-
:validation_mode
|
|
19958
|
+
:validation_mode,
|
|
19959
|
+
:enforcement_mode)
|
|
18794
19960
|
SENSITIVE = []
|
|
18795
19961
|
include Aws::Structure
|
|
18796
19962
|
end
|
|
@@ -18823,6 +19989,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
18823
19989
|
# The current status of the updated policy.
|
|
18824
19990
|
# @return [String]
|
|
18825
19991
|
#
|
|
19992
|
+
# @!attribute [rw] enforcement_mode
|
|
19993
|
+
# The current enforcement mode of the updated policy.
|
|
19994
|
+
# @return [String]
|
|
19995
|
+
#
|
|
18826
19996
|
# @!attribute [rw] definition
|
|
18827
19997
|
# The updated Cedar policy statement.
|
|
18828
19998
|
# @return [Types::PolicyDefinition]
|
|
@@ -18845,6 +20015,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
18845
20015
|
:updated_at,
|
|
18846
20016
|
:policy_arn,
|
|
18847
20017
|
:status,
|
|
20018
|
+
:enforcement_mode,
|
|
18848
20019
|
:definition,
|
|
18849
20020
|
:description,
|
|
18850
20021
|
:status_reasons)
|
|
@@ -19922,6 +21093,30 @@ module Aws::BedrockAgentCoreControl
|
|
|
19922
21093
|
include Aws::Structure
|
|
19923
21094
|
end
|
|
19924
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
|
+
|
|
19925
21120
|
# A weighted configuration bundle override that splits traffic between
|
|
19926
21121
|
# multiple bundle versions.
|
|
19927
21122
|
#
|