aws-sdk-bedrockagentcorecontrol 1.40.0 → 1.41.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 +1040 -27
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +618 -7
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +1601 -48
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +368 -15
- data/sig/types.rbs +435 -8
- metadata +1 -1
|
@@ -41,6 +41,36 @@ module Aws::BedrockAgentCoreControl
|
|
|
41
41
|
include Aws::Structure
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
# An action to take when a gateway rule's conditions are met.
|
|
45
|
+
#
|
|
46
|
+
# @note Action is a union - when making an API calls you must set exactly one of the members.
|
|
47
|
+
#
|
|
48
|
+
# @note Action is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Action corresponding to the set member.
|
|
49
|
+
#
|
|
50
|
+
# @!attribute [rw] configuration_bundle
|
|
51
|
+
# An action that applies a configuration bundle override to the
|
|
52
|
+
# request.
|
|
53
|
+
# @return [Types::ConfigurationBundleAction]
|
|
54
|
+
#
|
|
55
|
+
# @!attribute [rw] route_to_target
|
|
56
|
+
# An action that routes the request to a specific target.
|
|
57
|
+
# @return [Types::RouteToTargetAction]
|
|
58
|
+
#
|
|
59
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Action AWS API Documentation
|
|
60
|
+
#
|
|
61
|
+
class Action < Struct.new(
|
|
62
|
+
:configuration_bundle,
|
|
63
|
+
:route_to_target,
|
|
64
|
+
:unknown)
|
|
65
|
+
SENSITIVE = []
|
|
66
|
+
include Aws::Structure
|
|
67
|
+
include Aws::Structure::Union
|
|
68
|
+
|
|
69
|
+
class ConfigurationBundle < Action; end
|
|
70
|
+
class RouteToTarget < Action; end
|
|
71
|
+
class Unknown < Action; end
|
|
72
|
+
end
|
|
73
|
+
|
|
44
74
|
# The agent card definition for an A2A descriptor. Contains the schema
|
|
45
75
|
# version and inline content for the agent card.
|
|
46
76
|
#
|
|
@@ -1066,6 +1096,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
1066
1096
|
include Aws::Structure
|
|
1067
1097
|
end
|
|
1068
1098
|
|
|
1099
|
+
# The configuration for a component within a configuration bundle. The
|
|
1100
|
+
# component type is inferred from the component identifier ARN.
|
|
1101
|
+
#
|
|
1102
|
+
# @!attribute [rw] configuration
|
|
1103
|
+
# The configuration values as a flexible JSON document.
|
|
1104
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
1105
|
+
#
|
|
1106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ComponentConfiguration AWS API Documentation
|
|
1107
|
+
#
|
|
1108
|
+
class ComponentConfiguration < Struct.new(
|
|
1109
|
+
:configuration)
|
|
1110
|
+
SENSITIVE = []
|
|
1111
|
+
include Aws::Structure
|
|
1112
|
+
end
|
|
1113
|
+
|
|
1069
1114
|
# Exception thrown when a resource is modified concurrently by multiple
|
|
1070
1115
|
# requests.
|
|
1071
1116
|
#
|
|
@@ -1080,6 +1125,152 @@ module Aws::BedrockAgentCoreControl
|
|
|
1080
1125
|
include Aws::Structure
|
|
1081
1126
|
end
|
|
1082
1127
|
|
|
1128
|
+
# A condition that determines when a gateway rule applies. Conditions
|
|
1129
|
+
# can match on principals or request paths.
|
|
1130
|
+
#
|
|
1131
|
+
# @note Condition is a union - when making an API calls you must set exactly one of the members.
|
|
1132
|
+
#
|
|
1133
|
+
# @note Condition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Condition corresponding to the set member.
|
|
1134
|
+
#
|
|
1135
|
+
# @!attribute [rw] match_principals
|
|
1136
|
+
# A condition that matches on the identity of the caller making the
|
|
1137
|
+
# request.
|
|
1138
|
+
# @return [Types::MatchPrincipals]
|
|
1139
|
+
#
|
|
1140
|
+
# @!attribute [rw] match_paths
|
|
1141
|
+
# A condition that matches on the request path.
|
|
1142
|
+
# @return [Types::MatchPaths]
|
|
1143
|
+
#
|
|
1144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Condition AWS API Documentation
|
|
1145
|
+
#
|
|
1146
|
+
class Condition < Struct.new(
|
|
1147
|
+
:match_principals,
|
|
1148
|
+
:match_paths,
|
|
1149
|
+
:unknown)
|
|
1150
|
+
SENSITIVE = []
|
|
1151
|
+
include Aws::Structure
|
|
1152
|
+
include Aws::Structure::Union
|
|
1153
|
+
|
|
1154
|
+
class MatchPrincipals < Condition; end
|
|
1155
|
+
class MatchPaths < Condition; end
|
|
1156
|
+
class Unknown < Condition; end
|
|
1157
|
+
end
|
|
1158
|
+
|
|
1159
|
+
# An action that applies a configuration bundle override, either as a
|
|
1160
|
+
# static override or a weighted split for A/B testing.
|
|
1161
|
+
#
|
|
1162
|
+
# @note ConfigurationBundleAction is a union - when making an API calls you must set exactly one of the members.
|
|
1163
|
+
#
|
|
1164
|
+
# @note ConfigurationBundleAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigurationBundleAction corresponding to the set member.
|
|
1165
|
+
#
|
|
1166
|
+
# @!attribute [rw] static_override
|
|
1167
|
+
# A static configuration bundle override that applies a single bundle
|
|
1168
|
+
# version to all matching requests.
|
|
1169
|
+
# @return [Types::StaticOverride]
|
|
1170
|
+
#
|
|
1171
|
+
# @!attribute [rw] weighted_override
|
|
1172
|
+
# A weighted configuration bundle override that splits traffic between
|
|
1173
|
+
# multiple bundle versions based on configured weights.
|
|
1174
|
+
# @return [Types::WeightedOverride]
|
|
1175
|
+
#
|
|
1176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleAction AWS API Documentation
|
|
1177
|
+
#
|
|
1178
|
+
class ConfigurationBundleAction < Struct.new(
|
|
1179
|
+
:static_override,
|
|
1180
|
+
:weighted_override,
|
|
1181
|
+
:unknown)
|
|
1182
|
+
SENSITIVE = []
|
|
1183
|
+
include Aws::Structure
|
|
1184
|
+
include Aws::Structure::Union
|
|
1185
|
+
|
|
1186
|
+
class StaticOverride < ConfigurationBundleAction; end
|
|
1187
|
+
class WeightedOverride < ConfigurationBundleAction; end
|
|
1188
|
+
class Unknown < ConfigurationBundleAction; end
|
|
1189
|
+
end
|
|
1190
|
+
|
|
1191
|
+
# A reference to a specific version of a configuration bundle.
|
|
1192
|
+
#
|
|
1193
|
+
# @!attribute [rw] bundle_arn
|
|
1194
|
+
# The Amazon Resource Name (ARN) of the configuration bundle.
|
|
1195
|
+
# @return [String]
|
|
1196
|
+
#
|
|
1197
|
+
# @!attribute [rw] bundle_version
|
|
1198
|
+
# The version of the configuration bundle.
|
|
1199
|
+
# @return [String]
|
|
1200
|
+
#
|
|
1201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleReference AWS API Documentation
|
|
1202
|
+
#
|
|
1203
|
+
class ConfigurationBundleReference < Struct.new(
|
|
1204
|
+
:bundle_arn,
|
|
1205
|
+
:bundle_version)
|
|
1206
|
+
SENSITIVE = []
|
|
1207
|
+
include Aws::Structure
|
|
1208
|
+
end
|
|
1209
|
+
|
|
1210
|
+
# Summary information about a configuration bundle.
|
|
1211
|
+
#
|
|
1212
|
+
# @!attribute [rw] bundle_arn
|
|
1213
|
+
# The Amazon Resource Name (ARN) of the configuration bundle.
|
|
1214
|
+
# @return [String]
|
|
1215
|
+
#
|
|
1216
|
+
# @!attribute [rw] bundle_id
|
|
1217
|
+
# The unique identifier of the configuration bundle.
|
|
1218
|
+
# @return [String]
|
|
1219
|
+
#
|
|
1220
|
+
# @!attribute [rw] bundle_name
|
|
1221
|
+
# The name of the configuration bundle.
|
|
1222
|
+
# @return [String]
|
|
1223
|
+
#
|
|
1224
|
+
# @!attribute [rw] description
|
|
1225
|
+
# The description of the configuration bundle.
|
|
1226
|
+
# @return [String]
|
|
1227
|
+
#
|
|
1228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleSummary AWS API Documentation
|
|
1229
|
+
#
|
|
1230
|
+
class ConfigurationBundleSummary < Struct.new(
|
|
1231
|
+
:bundle_arn,
|
|
1232
|
+
:bundle_id,
|
|
1233
|
+
:bundle_name,
|
|
1234
|
+
:description)
|
|
1235
|
+
SENSITIVE = [:description]
|
|
1236
|
+
include Aws::Structure
|
|
1237
|
+
end
|
|
1238
|
+
|
|
1239
|
+
# Summary information about a configuration bundle version.
|
|
1240
|
+
#
|
|
1241
|
+
# @!attribute [rw] bundle_arn
|
|
1242
|
+
# The Amazon Resource Name (ARN) of the configuration bundle.
|
|
1243
|
+
# @return [String]
|
|
1244
|
+
#
|
|
1245
|
+
# @!attribute [rw] bundle_id
|
|
1246
|
+
# The unique identifier of the configuration bundle.
|
|
1247
|
+
# @return [String]
|
|
1248
|
+
#
|
|
1249
|
+
# @!attribute [rw] version_id
|
|
1250
|
+
# The version identifier of this configuration bundle version.
|
|
1251
|
+
# @return [String]
|
|
1252
|
+
#
|
|
1253
|
+
# @!attribute [rw] lineage_metadata
|
|
1254
|
+
# The version lineage metadata, including parent versions, branch
|
|
1255
|
+
# name, and creation source.
|
|
1256
|
+
# @return [Types::VersionLineageMetadata]
|
|
1257
|
+
#
|
|
1258
|
+
# @!attribute [rw] version_created_at
|
|
1259
|
+
# The timestamp when this version was created.
|
|
1260
|
+
# @return [Time]
|
|
1261
|
+
#
|
|
1262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleVersionSummary AWS API Documentation
|
|
1263
|
+
#
|
|
1264
|
+
class ConfigurationBundleVersionSummary < Struct.new(
|
|
1265
|
+
:bundle_arn,
|
|
1266
|
+
:bundle_id,
|
|
1267
|
+
:version_id,
|
|
1268
|
+
:lineage_metadata,
|
|
1269
|
+
:version_created_at)
|
|
1270
|
+
SENSITIVE = []
|
|
1271
|
+
include Aws::Structure
|
|
1272
|
+
end
|
|
1273
|
+
|
|
1083
1274
|
# This exception is thrown when there is a conflict performing an
|
|
1084
1275
|
# operation
|
|
1085
1276
|
#
|
|
@@ -1675,6 +1866,99 @@ module Aws::BedrockAgentCoreControl
|
|
|
1675
1866
|
include Aws::Structure
|
|
1676
1867
|
end
|
|
1677
1868
|
|
|
1869
|
+
# @!attribute [rw] client_token
|
|
1870
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
1871
|
+
# completes no more than one time. If you don't specify this field, a
|
|
1872
|
+
# value is randomly generated for you. If this token matches a
|
|
1873
|
+
# previous request, the service ignores the request, but doesn't
|
|
1874
|
+
# return an error. For more information, see [Ensuring
|
|
1875
|
+
# idempotency][1].
|
|
1876
|
+
#
|
|
1877
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1878
|
+
# not need to pass this option.
|
|
1879
|
+
#
|
|
1880
|
+
#
|
|
1881
|
+
#
|
|
1882
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
1883
|
+
# @return [String]
|
|
1884
|
+
#
|
|
1885
|
+
# @!attribute [rw] bundle_name
|
|
1886
|
+
# The name for the configuration bundle. Names must be unique within
|
|
1887
|
+
# your account.
|
|
1888
|
+
# @return [String]
|
|
1889
|
+
#
|
|
1890
|
+
# @!attribute [rw] description
|
|
1891
|
+
# The description for the configuration bundle.
|
|
1892
|
+
# @return [String]
|
|
1893
|
+
#
|
|
1894
|
+
# @!attribute [rw] components
|
|
1895
|
+
# A map of component identifiers to their configurations. Each
|
|
1896
|
+
# component represents a configurable element within the bundle.
|
|
1897
|
+
# @return [Hash<String,Types::ComponentConfiguration>]
|
|
1898
|
+
#
|
|
1899
|
+
# @!attribute [rw] branch_name
|
|
1900
|
+
# The branch name for version tracking. Defaults to `mainline` if not
|
|
1901
|
+
# specified.
|
|
1902
|
+
# @return [String]
|
|
1903
|
+
#
|
|
1904
|
+
# @!attribute [rw] commit_message
|
|
1905
|
+
# A commit message describing the initial version of the configuration
|
|
1906
|
+
# bundle.
|
|
1907
|
+
# @return [String]
|
|
1908
|
+
#
|
|
1909
|
+
# @!attribute [rw] created_by
|
|
1910
|
+
# The source that created this version, including the source name and
|
|
1911
|
+
# optional ARN.
|
|
1912
|
+
# @return [Types::VersionCreatedBySource]
|
|
1913
|
+
#
|
|
1914
|
+
# @!attribute [rw] tags
|
|
1915
|
+
# A map of tag keys and values to assign to the configuration bundle.
|
|
1916
|
+
# Tags enable you to categorize your resources in different ways, for
|
|
1917
|
+
# example, by purpose, owner, or environment.
|
|
1918
|
+
# @return [Hash<String,String>]
|
|
1919
|
+
#
|
|
1920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateConfigurationBundleRequest AWS API Documentation
|
|
1921
|
+
#
|
|
1922
|
+
class CreateConfigurationBundleRequest < Struct.new(
|
|
1923
|
+
:client_token,
|
|
1924
|
+
:bundle_name,
|
|
1925
|
+
:description,
|
|
1926
|
+
:components,
|
|
1927
|
+
:branch_name,
|
|
1928
|
+
:commit_message,
|
|
1929
|
+
:created_by,
|
|
1930
|
+
:tags)
|
|
1931
|
+
SENSITIVE = [:description, :components]
|
|
1932
|
+
include Aws::Structure
|
|
1933
|
+
end
|
|
1934
|
+
|
|
1935
|
+
# @!attribute [rw] bundle_arn
|
|
1936
|
+
# The Amazon Resource Name (ARN) of the created configuration bundle.
|
|
1937
|
+
# @return [String]
|
|
1938
|
+
#
|
|
1939
|
+
# @!attribute [rw] bundle_id
|
|
1940
|
+
# The unique identifier of the created configuration bundle.
|
|
1941
|
+
# @return [String]
|
|
1942
|
+
#
|
|
1943
|
+
# @!attribute [rw] version_id
|
|
1944
|
+
# The initial version identifier of the configuration bundle.
|
|
1945
|
+
# @return [String]
|
|
1946
|
+
#
|
|
1947
|
+
# @!attribute [rw] created_at
|
|
1948
|
+
# The timestamp when the configuration bundle was created.
|
|
1949
|
+
# @return [Time]
|
|
1950
|
+
#
|
|
1951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateConfigurationBundleResponse AWS API Documentation
|
|
1952
|
+
#
|
|
1953
|
+
class CreateConfigurationBundleResponse < Struct.new(
|
|
1954
|
+
:bundle_arn,
|
|
1955
|
+
:bundle_id,
|
|
1956
|
+
:version_id,
|
|
1957
|
+
:created_at)
|
|
1958
|
+
SENSITIVE = []
|
|
1959
|
+
include Aws::Structure
|
|
1960
|
+
end
|
|
1961
|
+
|
|
1678
1962
|
# @!attribute [rw] client_token
|
|
1679
1963
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
1680
1964
|
# completes no more than one time. If you don't specify this field, a
|
|
@@ -1713,6 +1997,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
1713
1997
|
# conversation sessions.
|
|
1714
1998
|
# @return [String]
|
|
1715
1999
|
#
|
|
2000
|
+
# @!attribute [rw] kms_key_arn
|
|
2001
|
+
# The Amazon Resource Name (ARN) of a customer managed KMS key to use
|
|
2002
|
+
# for encrypting sensitive evaluator data, including instructions and
|
|
2003
|
+
# rating scale. If you don't specify a KMS key, the evaluator data is
|
|
2004
|
+
# encrypted with an Amazon Web Services owned key. Only symmetric
|
|
2005
|
+
# encryption KMS keys are supported. For more information, see
|
|
2006
|
+
# [Encryption at rest for AgentCore Evaluations][1].
|
|
2007
|
+
#
|
|
2008
|
+
#
|
|
2009
|
+
#
|
|
2010
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
|
|
2011
|
+
# @return [String]
|
|
2012
|
+
#
|
|
1716
2013
|
# @!attribute [rw] tags
|
|
1717
2014
|
# A map of tag keys and values to assign to an AgentCore Evaluator.
|
|
1718
2015
|
# Tags enable you to categorize your resources in different ways, for
|
|
@@ -1727,6 +2024,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1727
2024
|
:description,
|
|
1728
2025
|
:evaluator_config,
|
|
1729
2026
|
:level,
|
|
2027
|
+
:kms_key_arn,
|
|
1730
2028
|
:tags)
|
|
1731
2029
|
SENSITIVE = [:description]
|
|
1732
2030
|
include Aws::Structure
|
|
@@ -1980,6 +2278,112 @@ module Aws::BedrockAgentCoreControl
|
|
|
1980
2278
|
include Aws::Structure
|
|
1981
2279
|
end
|
|
1982
2280
|
|
|
2281
|
+
# @!attribute [rw] gateway_identifier
|
|
2282
|
+
# The identifier of the gateway to create a rule for.
|
|
2283
|
+
# @return [String]
|
|
2284
|
+
#
|
|
2285
|
+
# @!attribute [rw] client_token
|
|
2286
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
2287
|
+
# completes no more than one time. If you don't specify this field, a
|
|
2288
|
+
# value is randomly generated for you. If this token matches a
|
|
2289
|
+
# previous request, the service ignores the request, but doesn't
|
|
2290
|
+
# return an error. For more information, see [Ensuring
|
|
2291
|
+
# idempotency][1].
|
|
2292
|
+
#
|
|
2293
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2294
|
+
# not need to pass this option.
|
|
2295
|
+
#
|
|
2296
|
+
#
|
|
2297
|
+
#
|
|
2298
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
2299
|
+
# @return [String]
|
|
2300
|
+
#
|
|
2301
|
+
# @!attribute [rw] priority
|
|
2302
|
+
# The priority of the rule. Rules are evaluated in order of priority,
|
|
2303
|
+
# with lower numbers evaluated first. Must be between 1 and 1,000,000.
|
|
2304
|
+
# @return [Integer]
|
|
2305
|
+
#
|
|
2306
|
+
# @!attribute [rw] conditions
|
|
2307
|
+
# The conditions that must be met for the rule to apply. Conditions
|
|
2308
|
+
# can match on principals (IAM ARNs) or request paths.
|
|
2309
|
+
# @return [Array<Types::Condition>]
|
|
2310
|
+
#
|
|
2311
|
+
# @!attribute [rw] actions
|
|
2312
|
+
# The actions to take when the rule conditions are met. Actions can
|
|
2313
|
+
# route to a specific target or apply a configuration bundle override.
|
|
2314
|
+
# @return [Array<Types::Action>]
|
|
2315
|
+
#
|
|
2316
|
+
# @!attribute [rw] description
|
|
2317
|
+
# The description of the gateway rule.
|
|
2318
|
+
# @return [String]
|
|
2319
|
+
#
|
|
2320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRuleRequest AWS API Documentation
|
|
2321
|
+
#
|
|
2322
|
+
class CreateGatewayRuleRequest < Struct.new(
|
|
2323
|
+
:gateway_identifier,
|
|
2324
|
+
:client_token,
|
|
2325
|
+
:priority,
|
|
2326
|
+
:conditions,
|
|
2327
|
+
:actions,
|
|
2328
|
+
:description)
|
|
2329
|
+
SENSITIVE = []
|
|
2330
|
+
include Aws::Structure
|
|
2331
|
+
end
|
|
2332
|
+
|
|
2333
|
+
# @!attribute [rw] rule_id
|
|
2334
|
+
# The unique identifier of the gateway rule.
|
|
2335
|
+
# @return [String]
|
|
2336
|
+
#
|
|
2337
|
+
# @!attribute [rw] gateway_arn
|
|
2338
|
+
# The Amazon Resource Name (ARN) of the gateway that the rule belongs
|
|
2339
|
+
# to.
|
|
2340
|
+
# @return [String]
|
|
2341
|
+
#
|
|
2342
|
+
# @!attribute [rw] priority
|
|
2343
|
+
# The priority of the rule. Rules are evaluated in order of priority,
|
|
2344
|
+
# with lower numbers evaluated first.
|
|
2345
|
+
# @return [Integer]
|
|
2346
|
+
#
|
|
2347
|
+
# @!attribute [rw] conditions
|
|
2348
|
+
# The conditions that must be met for the rule to apply.
|
|
2349
|
+
# @return [Array<Types::Condition>]
|
|
2350
|
+
#
|
|
2351
|
+
# @!attribute [rw] actions
|
|
2352
|
+
# The actions to take when the rule conditions are met.
|
|
2353
|
+
# @return [Array<Types::Action>]
|
|
2354
|
+
#
|
|
2355
|
+
# @!attribute [rw] description
|
|
2356
|
+
# The description of the gateway rule.
|
|
2357
|
+
# @return [String]
|
|
2358
|
+
#
|
|
2359
|
+
# @!attribute [rw] created_at
|
|
2360
|
+
# The timestamp when the rule was created.
|
|
2361
|
+
# @return [Time]
|
|
2362
|
+
#
|
|
2363
|
+
# @!attribute [rw] status
|
|
2364
|
+
# The current status of the rule.
|
|
2365
|
+
# @return [String]
|
|
2366
|
+
#
|
|
2367
|
+
# @!attribute [rw] system
|
|
2368
|
+
# System-managed metadata for rules created by automated processes.
|
|
2369
|
+
# @return [Types::SystemManagedBlock]
|
|
2370
|
+
#
|
|
2371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRuleResponse AWS API Documentation
|
|
2372
|
+
#
|
|
2373
|
+
class CreateGatewayRuleResponse < Struct.new(
|
|
2374
|
+
:rule_id,
|
|
2375
|
+
:gateway_arn,
|
|
2376
|
+
:priority,
|
|
2377
|
+
:conditions,
|
|
2378
|
+
:actions,
|
|
2379
|
+
:description,
|
|
2380
|
+
:created_at,
|
|
2381
|
+
:status,
|
|
2382
|
+
:system)
|
|
2383
|
+
SENSITIVE = []
|
|
2384
|
+
include Aws::Structure
|
|
2385
|
+
end
|
|
2386
|
+
|
|
1983
2387
|
# @!attribute [rw] gateway_identifier
|
|
1984
2388
|
# The identifier of the gateway to create a target for.
|
|
1985
2389
|
# @return [String]
|
|
@@ -2109,6 +2513,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
2109
2513
|
# with authorization code grant type and requires user federation.
|
|
2110
2514
|
# @return [Types::AuthorizationData]
|
|
2111
2515
|
#
|
|
2516
|
+
# @!attribute [rw] protocol_type
|
|
2517
|
+
# The protocol type of the created gateway target.
|
|
2518
|
+
# @return [String]
|
|
2519
|
+
#
|
|
2112
2520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTargetResponse AWS API Documentation
|
|
2113
2521
|
#
|
|
2114
2522
|
class CreateGatewayTargetResponse < Struct.new(
|
|
@@ -2126,7 +2534,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2126
2534
|
:metadata_configuration,
|
|
2127
2535
|
:private_endpoint,
|
|
2128
2536
|
:private_endpoint_managed_resources,
|
|
2129
|
-
:authorization_data
|
|
2537
|
+
:authorization_data,
|
|
2538
|
+
:protocol_type)
|
|
2130
2539
|
SENSITIVE = [:name, :description]
|
|
2131
2540
|
include Aws::Structure
|
|
2132
2541
|
end
|
|
@@ -2212,7 +2621,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2212
2621
|
# @return [Integer]
|
|
2213
2622
|
#
|
|
2214
2623
|
# @!attribute [rw] max_tokens
|
|
2215
|
-
# The maximum number of tokens the agent can generate
|
|
2624
|
+
# The maximum total number of output tokens the agent can generate
|
|
2625
|
+
# across all model calls within a single invocation.
|
|
2216
2626
|
# @return [Integer]
|
|
2217
2627
|
#
|
|
2218
2628
|
# @!attribute [rw] timeout_seconds
|
|
@@ -2456,7 +2866,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
2456
2866
|
# @!attribute [rw] evaluation_execution_role_arn
|
|
2457
2867
|
# The Amazon Resource Name (ARN) of the IAM role that grants
|
|
2458
2868
|
# permissions to read from CloudWatch logs, write evaluation results,
|
|
2459
|
-
# and invoke Amazon Bedrock models for evaluation.
|
|
2869
|
+
# and invoke Amazon Bedrock models for evaluation. If the
|
|
2870
|
+
# configuration references evaluators encrypted with a customer
|
|
2871
|
+
# managed KMS key, this role must also have `kms:Decrypt` permission
|
|
2872
|
+
# on the KMS key. The service validates this permission at
|
|
2873
|
+
# configuration creation time. For more information, see [Encryption
|
|
2874
|
+
# at rest for AgentCore Evaluations][1].
|
|
2875
|
+
#
|
|
2876
|
+
#
|
|
2877
|
+
#
|
|
2878
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
|
|
2460
2879
|
# @return [String]
|
|
2461
2880
|
#
|
|
2462
2881
|
# @!attribute [rw] enable_on_create
|
|
@@ -3807,6 +4226,35 @@ module Aws::BedrockAgentCoreControl
|
|
|
3807
4226
|
include Aws::Structure
|
|
3808
4227
|
end
|
|
3809
4228
|
|
|
4229
|
+
# @!attribute [rw] bundle_id
|
|
4230
|
+
# The unique identifier of the configuration bundle to delete.
|
|
4231
|
+
# @return [String]
|
|
4232
|
+
#
|
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteConfigurationBundleRequest AWS API Documentation
|
|
4234
|
+
#
|
|
4235
|
+
class DeleteConfigurationBundleRequest < Struct.new(
|
|
4236
|
+
:bundle_id)
|
|
4237
|
+
SENSITIVE = []
|
|
4238
|
+
include Aws::Structure
|
|
4239
|
+
end
|
|
4240
|
+
|
|
4241
|
+
# @!attribute [rw] bundle_id
|
|
4242
|
+
# The unique identifier of the deleted configuration bundle.
|
|
4243
|
+
# @return [String]
|
|
4244
|
+
#
|
|
4245
|
+
# @!attribute [rw] status
|
|
4246
|
+
# The status of the configuration bundle deletion operation.
|
|
4247
|
+
# @return [String]
|
|
4248
|
+
#
|
|
4249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteConfigurationBundleResponse AWS API Documentation
|
|
4250
|
+
#
|
|
4251
|
+
class DeleteConfigurationBundleResponse < Struct.new(
|
|
4252
|
+
:bundle_id,
|
|
4253
|
+
:status)
|
|
4254
|
+
SENSITIVE = []
|
|
4255
|
+
include Aws::Structure
|
|
4256
|
+
end
|
|
4257
|
+
|
|
3810
4258
|
# @!attribute [rw] evaluator_id
|
|
3811
4259
|
# The unique identifier of the evaluator to delete.
|
|
3812
4260
|
# @return [String]
|
|
@@ -3876,31 +4324,65 @@ module Aws::BedrockAgentCoreControl
|
|
|
3876
4324
|
end
|
|
3877
4325
|
|
|
3878
4326
|
# @!attribute [rw] gateway_identifier
|
|
3879
|
-
# The
|
|
4327
|
+
# The identifier of the gateway containing the rule.
|
|
3880
4328
|
# @return [String]
|
|
3881
4329
|
#
|
|
3882
|
-
# @!attribute [rw]
|
|
3883
|
-
# The unique identifier of the
|
|
4330
|
+
# @!attribute [rw] rule_id
|
|
4331
|
+
# The unique identifier of the rule to delete.
|
|
3884
4332
|
# @return [String]
|
|
3885
4333
|
#
|
|
3886
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/
|
|
4334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRuleRequest AWS API Documentation
|
|
3887
4335
|
#
|
|
3888
|
-
class
|
|
4336
|
+
class DeleteGatewayRuleRequest < Struct.new(
|
|
3889
4337
|
:gateway_identifier,
|
|
3890
|
-
:
|
|
4338
|
+
:rule_id)
|
|
3891
4339
|
SENSITIVE = []
|
|
3892
4340
|
include Aws::Structure
|
|
3893
4341
|
end
|
|
3894
4342
|
|
|
3895
|
-
# @!attribute [rw]
|
|
3896
|
-
# The
|
|
4343
|
+
# @!attribute [rw] rule_id
|
|
4344
|
+
# The unique identifier of the deleted rule.
|
|
3897
4345
|
# @return [String]
|
|
3898
4346
|
#
|
|
3899
|
-
# @!attribute [rw]
|
|
3900
|
-
# The
|
|
4347
|
+
# @!attribute [rw] status
|
|
4348
|
+
# The status of the rule deletion operation.
|
|
3901
4349
|
# @return [String]
|
|
3902
4350
|
#
|
|
3903
|
-
#
|
|
4351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRuleResponse AWS API Documentation
|
|
4352
|
+
#
|
|
4353
|
+
class DeleteGatewayRuleResponse < Struct.new(
|
|
4354
|
+
:rule_id,
|
|
4355
|
+
:status)
|
|
4356
|
+
SENSITIVE = []
|
|
4357
|
+
include Aws::Structure
|
|
4358
|
+
end
|
|
4359
|
+
|
|
4360
|
+
# @!attribute [rw] gateway_identifier
|
|
4361
|
+
# The unique identifier of the gateway associated with the target.
|
|
4362
|
+
# @return [String]
|
|
4363
|
+
#
|
|
4364
|
+
# @!attribute [rw] target_id
|
|
4365
|
+
# The unique identifier of the gateway target to delete.
|
|
4366
|
+
# @return [String]
|
|
4367
|
+
#
|
|
4368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayTargetRequest AWS API Documentation
|
|
4369
|
+
#
|
|
4370
|
+
class DeleteGatewayTargetRequest < Struct.new(
|
|
4371
|
+
:gateway_identifier,
|
|
4372
|
+
:target_id)
|
|
4373
|
+
SENSITIVE = []
|
|
4374
|
+
include Aws::Structure
|
|
4375
|
+
end
|
|
4376
|
+
|
|
4377
|
+
# @!attribute [rw] gateway_arn
|
|
4378
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
|
4379
|
+
# @return [String]
|
|
4380
|
+
#
|
|
4381
|
+
# @!attribute [rw] target_id
|
|
4382
|
+
# The unique identifier of the deleted gateway target.
|
|
4383
|
+
# @return [String]
|
|
4384
|
+
#
|
|
4385
|
+
# @!attribute [rw] status
|
|
3904
4386
|
# The current status of the gateway target deletion.
|
|
3905
4387
|
# @return [String]
|
|
3906
4388
|
#
|
|
@@ -4748,6 +5230,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
4748
5230
|
# referenced by active online evaluation configurations.
|
|
4749
5231
|
# @return [Boolean]
|
|
4750
5232
|
#
|
|
5233
|
+
# @!attribute [rw] kms_key_arn
|
|
5234
|
+
# The Amazon Resource Name (ARN) of the customer managed KMS key used
|
|
5235
|
+
# to encrypt the evaluator's sensitive data. This field is only
|
|
5236
|
+
# present for evaluators encrypted with a customer managed key.
|
|
5237
|
+
# @return [String]
|
|
5238
|
+
#
|
|
4751
5239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/EvaluatorSummary AWS API Documentation
|
|
4752
5240
|
#
|
|
4753
5241
|
class EvaluatorSummary < Struct.new(
|
|
@@ -4760,7 +5248,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
4760
5248
|
:status,
|
|
4761
5249
|
:created_at,
|
|
4762
5250
|
:updated_at,
|
|
4763
|
-
:locked_for_modification
|
|
5251
|
+
:locked_for_modification,
|
|
5252
|
+
:kms_key_arn)
|
|
4764
5253
|
SENSITIVE = [:description]
|
|
4765
5254
|
include Aws::Structure
|
|
4766
5255
|
end
|
|
@@ -5020,6 +5509,67 @@ module Aws::BedrockAgentCoreControl
|
|
|
5020
5509
|
class Unknown < GatewayProtocolConfiguration; end
|
|
5021
5510
|
end
|
|
5022
5511
|
|
|
5512
|
+
# Detailed information about a gateway rule.
|
|
5513
|
+
#
|
|
5514
|
+
# @!attribute [rw] rule_id
|
|
5515
|
+
# The unique identifier of the gateway rule.
|
|
5516
|
+
# @return [String]
|
|
5517
|
+
#
|
|
5518
|
+
# @!attribute [rw] gateway_arn
|
|
5519
|
+
# The Amazon Resource Name (ARN) of the gateway that the rule belongs
|
|
5520
|
+
# to.
|
|
5521
|
+
# @return [String]
|
|
5522
|
+
#
|
|
5523
|
+
# @!attribute [rw] priority
|
|
5524
|
+
# The priority of the rule. Rules are evaluated in order of priority,
|
|
5525
|
+
# with lower numbers evaluated first.
|
|
5526
|
+
# @return [Integer]
|
|
5527
|
+
#
|
|
5528
|
+
# @!attribute [rw] conditions
|
|
5529
|
+
# The conditions that must be met for the rule to apply.
|
|
5530
|
+
# @return [Array<Types::Condition>]
|
|
5531
|
+
#
|
|
5532
|
+
# @!attribute [rw] actions
|
|
5533
|
+
# The actions to take when the rule conditions are met.
|
|
5534
|
+
# @return [Array<Types::Action>]
|
|
5535
|
+
#
|
|
5536
|
+
# @!attribute [rw] description
|
|
5537
|
+
# The description of the gateway rule.
|
|
5538
|
+
# @return [String]
|
|
5539
|
+
#
|
|
5540
|
+
# @!attribute [rw] created_at
|
|
5541
|
+
# The timestamp when the rule was created.
|
|
5542
|
+
# @return [Time]
|
|
5543
|
+
#
|
|
5544
|
+
# @!attribute [rw] status
|
|
5545
|
+
# The current status of the rule.
|
|
5546
|
+
# @return [String]
|
|
5547
|
+
#
|
|
5548
|
+
# @!attribute [rw] system
|
|
5549
|
+
# System-managed metadata for rules created by automated processes.
|
|
5550
|
+
# @return [Types::SystemManagedBlock]
|
|
5551
|
+
#
|
|
5552
|
+
# @!attribute [rw] updated_at
|
|
5553
|
+
# The timestamp when the rule was last updated.
|
|
5554
|
+
# @return [Time]
|
|
5555
|
+
#
|
|
5556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayRuleDetail AWS API Documentation
|
|
5557
|
+
#
|
|
5558
|
+
class GatewayRuleDetail < Struct.new(
|
|
5559
|
+
:rule_id,
|
|
5560
|
+
:gateway_arn,
|
|
5561
|
+
:priority,
|
|
5562
|
+
:conditions,
|
|
5563
|
+
:actions,
|
|
5564
|
+
:description,
|
|
5565
|
+
:created_at,
|
|
5566
|
+
:status,
|
|
5567
|
+
:system,
|
|
5568
|
+
:updated_at)
|
|
5569
|
+
SENSITIVE = []
|
|
5570
|
+
include Aws::Structure
|
|
5571
|
+
end
|
|
5572
|
+
|
|
5023
5573
|
# Contains summary information about a gateway.
|
|
5024
5574
|
#
|
|
5025
5575
|
# @!attribute [rw] gateway_id
|
|
@@ -5138,6 +5688,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5138
5688
|
# authorization code grant type and requires user federation.
|
|
5139
5689
|
# @return [Types::AuthorizationData]
|
|
5140
5690
|
#
|
|
5691
|
+
# @!attribute [rw] protocol_type
|
|
5692
|
+
# The protocol type of the gateway target.
|
|
5693
|
+
# @return [String]
|
|
5694
|
+
#
|
|
5141
5695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayTarget AWS API Documentation
|
|
5142
5696
|
#
|
|
5143
5697
|
class GatewayTarget < Struct.new(
|
|
@@ -5155,7 +5709,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5155
5709
|
:metadata_configuration,
|
|
5156
5710
|
:private_endpoint,
|
|
5157
5711
|
:private_endpoint_managed_resources,
|
|
5158
|
-
:authorization_data
|
|
5712
|
+
:authorization_data,
|
|
5713
|
+
:protocol_type)
|
|
5159
5714
|
SENSITIVE = [:name, :description]
|
|
5160
5715
|
include Aws::Structure
|
|
5161
5716
|
end
|
|
@@ -5655,16 +6210,171 @@ module Aws::BedrockAgentCoreControl
|
|
|
5655
6210
|
include Aws::Structure
|
|
5656
6211
|
end
|
|
5657
6212
|
|
|
6213
|
+
# @!attribute [rw] bundle_id
|
|
6214
|
+
# The unique identifier of the configuration bundle to retrieve.
|
|
6215
|
+
# @return [String]
|
|
6216
|
+
#
|
|
6217
|
+
# @!attribute [rw] branch_name
|
|
6218
|
+
# The branch name to get the latest version from. If not specified,
|
|
6219
|
+
# returns the latest version on the mainline branch.
|
|
6220
|
+
# @return [String]
|
|
6221
|
+
#
|
|
6222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleRequest AWS API Documentation
|
|
6223
|
+
#
|
|
6224
|
+
class GetConfigurationBundleRequest < Struct.new(
|
|
6225
|
+
:bundle_id,
|
|
6226
|
+
:branch_name)
|
|
6227
|
+
SENSITIVE = []
|
|
6228
|
+
include Aws::Structure
|
|
6229
|
+
end
|
|
6230
|
+
|
|
6231
|
+
# @!attribute [rw] bundle_arn
|
|
6232
|
+
# The Amazon Resource Name (ARN) of the configuration bundle.
|
|
6233
|
+
# @return [String]
|
|
6234
|
+
#
|
|
6235
|
+
# @!attribute [rw] bundle_id
|
|
6236
|
+
# The unique identifier of the configuration bundle.
|
|
6237
|
+
# @return [String]
|
|
6238
|
+
#
|
|
6239
|
+
# @!attribute [rw] bundle_name
|
|
6240
|
+
# The name of the configuration bundle.
|
|
6241
|
+
# @return [String]
|
|
6242
|
+
#
|
|
6243
|
+
# @!attribute [rw] description
|
|
6244
|
+
# The description of the configuration bundle.
|
|
6245
|
+
# @return [String]
|
|
6246
|
+
#
|
|
6247
|
+
# @!attribute [rw] version_id
|
|
6248
|
+
# The version identifier of this configuration bundle.
|
|
6249
|
+
# @return [String]
|
|
6250
|
+
#
|
|
6251
|
+
# @!attribute [rw] components
|
|
6252
|
+
# A map of component identifiers to their configurations for this
|
|
6253
|
+
# version.
|
|
6254
|
+
# @return [Hash<String,Types::ComponentConfiguration>]
|
|
6255
|
+
#
|
|
6256
|
+
# @!attribute [rw] lineage_metadata
|
|
6257
|
+
# The version lineage metadata, including parent versions, branch
|
|
6258
|
+
# name, and creation source.
|
|
6259
|
+
# @return [Types::VersionLineageMetadata]
|
|
6260
|
+
#
|
|
6261
|
+
# @!attribute [rw] created_at
|
|
6262
|
+
# The timestamp when the configuration bundle was created.
|
|
6263
|
+
# @return [Time]
|
|
6264
|
+
#
|
|
6265
|
+
# @!attribute [rw] updated_at
|
|
6266
|
+
# The timestamp when the configuration bundle was last updated.
|
|
6267
|
+
# @return [Time]
|
|
6268
|
+
#
|
|
6269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleResponse AWS API Documentation
|
|
6270
|
+
#
|
|
6271
|
+
class GetConfigurationBundleResponse < Struct.new(
|
|
6272
|
+
:bundle_arn,
|
|
6273
|
+
:bundle_id,
|
|
6274
|
+
:bundle_name,
|
|
6275
|
+
:description,
|
|
6276
|
+
:version_id,
|
|
6277
|
+
:components,
|
|
6278
|
+
:lineage_metadata,
|
|
6279
|
+
:created_at,
|
|
6280
|
+
:updated_at)
|
|
6281
|
+
SENSITIVE = [:description, :components]
|
|
6282
|
+
include Aws::Structure
|
|
6283
|
+
end
|
|
6284
|
+
|
|
6285
|
+
# @!attribute [rw] bundle_id
|
|
6286
|
+
# The unique identifier of the configuration bundle.
|
|
6287
|
+
# @return [String]
|
|
6288
|
+
#
|
|
6289
|
+
# @!attribute [rw] version_id
|
|
6290
|
+
# The version identifier of the configuration bundle version to
|
|
6291
|
+
# retrieve.
|
|
6292
|
+
# @return [String]
|
|
6293
|
+
#
|
|
6294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionRequest AWS API Documentation
|
|
6295
|
+
#
|
|
6296
|
+
class GetConfigurationBundleVersionRequest < Struct.new(
|
|
6297
|
+
:bundle_id,
|
|
6298
|
+
:version_id)
|
|
6299
|
+
SENSITIVE = []
|
|
6300
|
+
include Aws::Structure
|
|
6301
|
+
end
|
|
6302
|
+
|
|
6303
|
+
# @!attribute [rw] bundle_arn
|
|
6304
|
+
# The Amazon Resource Name (ARN) of the configuration bundle.
|
|
6305
|
+
# @return [String]
|
|
6306
|
+
#
|
|
6307
|
+
# @!attribute [rw] bundle_id
|
|
6308
|
+
# The unique identifier of the configuration bundle.
|
|
6309
|
+
# @return [String]
|
|
6310
|
+
#
|
|
6311
|
+
# @!attribute [rw] bundle_name
|
|
6312
|
+
# The name of the configuration bundle.
|
|
6313
|
+
# @return [String]
|
|
6314
|
+
#
|
|
6315
|
+
# @!attribute [rw] description
|
|
6316
|
+
# The description of the configuration bundle.
|
|
6317
|
+
# @return [String]
|
|
6318
|
+
#
|
|
6319
|
+
# @!attribute [rw] version_id
|
|
6320
|
+
# The version identifier of this configuration bundle version.
|
|
6321
|
+
# @return [String]
|
|
6322
|
+
#
|
|
6323
|
+
# @!attribute [rw] components
|
|
6324
|
+
# A map of component identifiers to their configurations for this
|
|
6325
|
+
# version.
|
|
6326
|
+
# @return [Hash<String,Types::ComponentConfiguration>]
|
|
6327
|
+
#
|
|
6328
|
+
# @!attribute [rw] lineage_metadata
|
|
6329
|
+
# The version lineage metadata, including parent versions, branch
|
|
6330
|
+
# name, and creation source.
|
|
6331
|
+
# @return [Types::VersionLineageMetadata]
|
|
6332
|
+
#
|
|
6333
|
+
# @!attribute [rw] created_at
|
|
6334
|
+
# The timestamp when the configuration bundle was created.
|
|
6335
|
+
# @return [Time]
|
|
6336
|
+
#
|
|
6337
|
+
# @!attribute [rw] version_created_at
|
|
6338
|
+
# The timestamp when this specific version was created.
|
|
6339
|
+
# @return [Time]
|
|
6340
|
+
#
|
|
6341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersionResponse AWS API Documentation
|
|
6342
|
+
#
|
|
6343
|
+
class GetConfigurationBundleVersionResponse < Struct.new(
|
|
6344
|
+
:bundle_arn,
|
|
6345
|
+
:bundle_id,
|
|
6346
|
+
:bundle_name,
|
|
6347
|
+
:description,
|
|
6348
|
+
:version_id,
|
|
6349
|
+
:components,
|
|
6350
|
+
:lineage_metadata,
|
|
6351
|
+
:created_at,
|
|
6352
|
+
:version_created_at)
|
|
6353
|
+
SENSITIVE = [:description, :components]
|
|
6354
|
+
include Aws::Structure
|
|
6355
|
+
end
|
|
6356
|
+
|
|
5658
6357
|
# @!attribute [rw] evaluator_id
|
|
5659
6358
|
# The unique identifier of the evaluator to retrieve. Can be a
|
|
5660
6359
|
# built-in evaluator ID (e.g., Builtin.Helpfulness) or a custom
|
|
5661
6360
|
# evaluator ID.
|
|
5662
6361
|
# @return [String]
|
|
5663
6362
|
#
|
|
6363
|
+
# @!attribute [rw] included_data
|
|
6364
|
+
# Controls which data is returned in the response. `ALL_DATA`
|
|
6365
|
+
# (default) returns the full evaluator including decrypted
|
|
6366
|
+
# instructions and rating scale. For evaluators encrypted with a
|
|
6367
|
+
# customer managed KMS key, this requires `kms:Decrypt` permission on
|
|
6368
|
+
# the key. `METADATA_ONLY` returns evaluator metadata and model
|
|
6369
|
+
# configuration without instructions or rating scale, and does not
|
|
6370
|
+
# require any KMS permissions.
|
|
6371
|
+
# @return [String]
|
|
6372
|
+
#
|
|
5664
6373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetEvaluatorRequest AWS API Documentation
|
|
5665
6374
|
#
|
|
5666
6375
|
class GetEvaluatorRequest < Struct.new(
|
|
5667
|
-
:evaluator_id
|
|
6376
|
+
:evaluator_id,
|
|
6377
|
+
:included_data)
|
|
5668
6378
|
SENSITIVE = []
|
|
5669
6379
|
include Aws::Structure
|
|
5670
6380
|
end
|
|
@@ -5712,6 +6422,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
5712
6422
|
# referenced by active online evaluation configurations.
|
|
5713
6423
|
# @return [Boolean]
|
|
5714
6424
|
#
|
|
6425
|
+
# @!attribute [rw] kms_key_arn
|
|
6426
|
+
# The Amazon Resource Name (ARN) of the customer managed KMS key used
|
|
6427
|
+
# to encrypt the evaluator's sensitive data. This field is only
|
|
6428
|
+
# present for evaluators encrypted with a customer managed key.
|
|
6429
|
+
# @return [String]
|
|
6430
|
+
#
|
|
5715
6431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetEvaluatorResponse AWS API Documentation
|
|
5716
6432
|
#
|
|
5717
6433
|
class GetEvaluatorResponse < Struct.new(
|
|
@@ -5724,7 +6440,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5724
6440
|
:status,
|
|
5725
6441
|
:created_at,
|
|
5726
6442
|
:updated_at,
|
|
5727
|
-
:locked_for_modification
|
|
6443
|
+
:locked_for_modification,
|
|
6444
|
+
:kms_key_arn)
|
|
5728
6445
|
SENSITIVE = [:description]
|
|
5729
6446
|
include Aws::Structure
|
|
5730
6447
|
end
|
|
@@ -5852,6 +6569,85 @@ module Aws::BedrockAgentCoreControl
|
|
|
5852
6569
|
include Aws::Structure
|
|
5853
6570
|
end
|
|
5854
6571
|
|
|
6572
|
+
# @!attribute [rw] gateway_identifier
|
|
6573
|
+
# The identifier of the gateway containing the rule.
|
|
6574
|
+
# @return [String]
|
|
6575
|
+
#
|
|
6576
|
+
# @!attribute [rw] rule_id
|
|
6577
|
+
# The unique identifier of the rule to retrieve.
|
|
6578
|
+
# @return [String]
|
|
6579
|
+
#
|
|
6580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRuleRequest AWS API Documentation
|
|
6581
|
+
#
|
|
6582
|
+
class GetGatewayRuleRequest < Struct.new(
|
|
6583
|
+
:gateway_identifier,
|
|
6584
|
+
:rule_id)
|
|
6585
|
+
SENSITIVE = []
|
|
6586
|
+
include Aws::Structure
|
|
6587
|
+
end
|
|
6588
|
+
|
|
6589
|
+
# Create response excludes updatedAt (redundant on create). Get/Update
|
|
6590
|
+
# responses include it via their own output structures.
|
|
6591
|
+
#
|
|
6592
|
+
# @!attribute [rw] rule_id
|
|
6593
|
+
# The unique identifier of the gateway rule.
|
|
6594
|
+
# @return [String]
|
|
6595
|
+
#
|
|
6596
|
+
# @!attribute [rw] gateway_arn
|
|
6597
|
+
# The Amazon Resource Name (ARN) of the gateway that the rule belongs
|
|
6598
|
+
# to.
|
|
6599
|
+
# @return [String]
|
|
6600
|
+
#
|
|
6601
|
+
# @!attribute [rw] priority
|
|
6602
|
+
# The priority of the rule. Rules are evaluated in order of priority,
|
|
6603
|
+
# with lower numbers evaluated first.
|
|
6604
|
+
# @return [Integer]
|
|
6605
|
+
#
|
|
6606
|
+
# @!attribute [rw] conditions
|
|
6607
|
+
# The conditions that must be met for the rule to apply.
|
|
6608
|
+
# @return [Array<Types::Condition>]
|
|
6609
|
+
#
|
|
6610
|
+
# @!attribute [rw] actions
|
|
6611
|
+
# The actions to take when the rule conditions are met.
|
|
6612
|
+
# @return [Array<Types::Action>]
|
|
6613
|
+
#
|
|
6614
|
+
# @!attribute [rw] description
|
|
6615
|
+
# The description of the gateway rule.
|
|
6616
|
+
# @return [String]
|
|
6617
|
+
#
|
|
6618
|
+
# @!attribute [rw] created_at
|
|
6619
|
+
# The timestamp when the rule was created.
|
|
6620
|
+
# @return [Time]
|
|
6621
|
+
#
|
|
6622
|
+
# @!attribute [rw] status
|
|
6623
|
+
# The current status of the rule.
|
|
6624
|
+
# @return [String]
|
|
6625
|
+
#
|
|
6626
|
+
# @!attribute [rw] system
|
|
6627
|
+
# System-managed metadata for rules created by automated processes.
|
|
6628
|
+
# @return [Types::SystemManagedBlock]
|
|
6629
|
+
#
|
|
6630
|
+
# @!attribute [rw] updated_at
|
|
6631
|
+
# The timestamp when the rule was last updated.
|
|
6632
|
+
# @return [Time]
|
|
6633
|
+
#
|
|
6634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRuleResponse AWS API Documentation
|
|
6635
|
+
#
|
|
6636
|
+
class GetGatewayRuleResponse < Struct.new(
|
|
6637
|
+
:rule_id,
|
|
6638
|
+
:gateway_arn,
|
|
6639
|
+
:priority,
|
|
6640
|
+
:conditions,
|
|
6641
|
+
:actions,
|
|
6642
|
+
:description,
|
|
6643
|
+
:created_at,
|
|
6644
|
+
:status,
|
|
6645
|
+
:system,
|
|
6646
|
+
:updated_at)
|
|
6647
|
+
SENSITIVE = []
|
|
6648
|
+
include Aws::Structure
|
|
6649
|
+
end
|
|
6650
|
+
|
|
5855
6651
|
# @!attribute [rw] gateway_identifier
|
|
5856
6652
|
# The identifier of the gateway that contains the target.
|
|
5857
6653
|
# @return [String]
|
|
@@ -5934,6 +6730,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
5934
6730
|
# authorization code grant type and requires user federation.
|
|
5935
6731
|
# @return [Types::AuthorizationData]
|
|
5936
6732
|
#
|
|
6733
|
+
# @!attribute [rw] protocol_type
|
|
6734
|
+
# The protocol type of the gateway target.
|
|
6735
|
+
# @return [String]
|
|
6736
|
+
#
|
|
5937
6737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
|
|
5938
6738
|
#
|
|
5939
6739
|
class GetGatewayTargetResponse < Struct.new(
|
|
@@ -5951,7 +6751,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5951
6751
|
:metadata_configuration,
|
|
5952
6752
|
:private_endpoint,
|
|
5953
6753
|
:private_endpoint_managed_resources,
|
|
5954
|
-
:authorization_data
|
|
6754
|
+
:authorization_data,
|
|
6755
|
+
:protocol_type)
|
|
5955
6756
|
SENSITIVE = [:name, :description]
|
|
5956
6757
|
include Aws::Structure
|
|
5957
6758
|
end
|
|
@@ -6905,7 +7706,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
6905
7706
|
# @return [Integer]
|
|
6906
7707
|
#
|
|
6907
7708
|
# @!attribute [rw] max_tokens
|
|
6908
|
-
# The maximum number of tokens
|
|
7709
|
+
# The maximum total number of output tokens the agent can generate
|
|
7710
|
+
# across all model calls within a single invocation.
|
|
6909
7711
|
# @return [Integer]
|
|
6910
7712
|
#
|
|
6911
7713
|
# @!attribute [rw] timeout_seconds
|
|
@@ -6980,7 +7782,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6980
7782
|
# @return [String]
|
|
6981
7783
|
#
|
|
6982
7784
|
# @!attribute [rw] outbound_auth
|
|
6983
|
-
# How
|
|
7785
|
+
# How harness authenticates to this Gateway. Defaults to AWS\_IAM
|
|
6984
7786
|
# (SigV4) if omitted.
|
|
6985
7787
|
# @return [Types::HarnessGatewayOutboundAuth]
|
|
6986
7788
|
#
|
|
@@ -7126,7 +7928,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7126
7928
|
#
|
|
7127
7929
|
# @!attribute [rw] max_tokens
|
|
7128
7930
|
# The maximum number of tokens to allow in the generated response per
|
|
7129
|
-
#
|
|
7931
|
+
# model call.
|
|
7130
7932
|
# @return [Integer]
|
|
7131
7933
|
#
|
|
7132
7934
|
# @!attribute [rw] temperature
|
|
@@ -7264,7 +8066,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7264
8066
|
#
|
|
7265
8067
|
# @!attribute [rw] max_tokens
|
|
7266
8068
|
# The maximum number of tokens to allow in the generated response per
|
|
7267
|
-
#
|
|
8069
|
+
# model call.
|
|
7268
8070
|
# @return [Integer]
|
|
7269
8071
|
#
|
|
7270
8072
|
# @!attribute [rw] temperature
|
|
@@ -7383,7 +8185,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7383
8185
|
#
|
|
7384
8186
|
# @!attribute [rw] max_tokens
|
|
7385
8187
|
# The maximum number of tokens to allow in the generated response per
|
|
7386
|
-
#
|
|
8188
|
+
# model call.
|
|
7387
8189
|
# @return [Integer]
|
|
7388
8190
|
#
|
|
7389
8191
|
# @!attribute [rw] temperature
|
|
@@ -7413,7 +8215,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
7413
8215
|
# @return [String]
|
|
7414
8216
|
#
|
|
7415
8217
|
# @!attribute [rw] headers
|
|
7416
|
-
#
|
|
8218
|
+
# Custom headers to include when connecting to the remote MCP server.
|
|
7417
8219
|
# @return [Hash<String,String>]
|
|
7418
8220
|
#
|
|
7419
8221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessRemoteMcpConfig AWS API Documentation
|
|
@@ -7669,6 +8471,31 @@ module Aws::BedrockAgentCoreControl
|
|
|
7669
8471
|
class Unknown < HarnessTruncationStrategyConfiguration; end
|
|
7670
8472
|
end
|
|
7671
8473
|
|
|
8474
|
+
# The HTTP target configuration for a gateway target. Contains the
|
|
8475
|
+
# configuration for HTTP-based target endpoints.
|
|
8476
|
+
#
|
|
8477
|
+
# @note HttpTargetConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
8478
|
+
#
|
|
8479
|
+
# @note HttpTargetConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of HttpTargetConfiguration corresponding to the set member.
|
|
8480
|
+
#
|
|
8481
|
+
# @!attribute [rw] agentcore_runtime
|
|
8482
|
+
# The AgentCore Runtime target configuration for HTTP-based
|
|
8483
|
+
# communication with an agent runtime.
|
|
8484
|
+
# @return [Types::RuntimeTargetConfiguration]
|
|
8485
|
+
#
|
|
8486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HttpTargetConfiguration AWS API Documentation
|
|
8487
|
+
#
|
|
8488
|
+
class HttpTargetConfiguration < Struct.new(
|
|
8489
|
+
:agentcore_runtime,
|
|
8490
|
+
:unknown)
|
|
8491
|
+
SENSITIVE = []
|
|
8492
|
+
include Aws::Structure
|
|
8493
|
+
include Aws::Structure::Union
|
|
8494
|
+
|
|
8495
|
+
class AgentcoreRuntime < HttpTargetConfiguration; end
|
|
8496
|
+
class Unknown < HttpTargetConfiguration; end
|
|
8497
|
+
end
|
|
8498
|
+
|
|
7672
8499
|
# An IAM credential provider for gateway authentication. This structure
|
|
7673
8500
|
# contains the configuration for authenticating with the target endpoint
|
|
7674
8501
|
# using IAM credentials and SigV4 signing.
|
|
@@ -7693,6 +8520,28 @@ module Aws::BedrockAgentCoreControl
|
|
|
7693
8520
|
include Aws::Structure
|
|
7694
8521
|
end
|
|
7695
8522
|
|
|
8523
|
+
# An IAM principal specification for rule matching.
|
|
8524
|
+
#
|
|
8525
|
+
# @!attribute [rw] arn
|
|
8526
|
+
# The Amazon Resource Name (ARN) of the IAM principal. Supports user,
|
|
8527
|
+
# role, and assumed-role ARNs. Wildcards can be used with the
|
|
8528
|
+
# `StringLike` operator.
|
|
8529
|
+
# @return [String]
|
|
8530
|
+
#
|
|
8531
|
+
# @!attribute [rw] operator
|
|
8532
|
+
# The match operator. `StringEquals` requires an exact match.
|
|
8533
|
+
# `StringLike` supports wildcard patterns using `*` and `?`.
|
|
8534
|
+
# @return [String]
|
|
8535
|
+
#
|
|
8536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IamPrincipal AWS API Documentation
|
|
8537
|
+
#
|
|
8538
|
+
class IamPrincipal < Struct.new(
|
|
8539
|
+
:arn,
|
|
8540
|
+
:operator)
|
|
8541
|
+
SENSITIVE = []
|
|
8542
|
+
include Aws::Structure
|
|
8543
|
+
end
|
|
8544
|
+
|
|
7696
8545
|
# Configuration settings for connecting to a supported OAuth2 provider.
|
|
7697
8546
|
# This includes client credentials and OAuth2 discovery information for
|
|
7698
8547
|
# providers that have built-in support.
|
|
@@ -8296,32 +9145,131 @@ module Aws::BedrockAgentCoreControl
|
|
|
8296
9145
|
include Aws::Structure
|
|
8297
9146
|
end
|
|
8298
9147
|
|
|
9148
|
+
# @!attribute [rw] bundle_id
|
|
9149
|
+
# The unique identifier of the configuration bundle to list versions
|
|
9150
|
+
# for.
|
|
9151
|
+
# @return [String]
|
|
9152
|
+
#
|
|
8299
9153
|
# @!attribute [rw] next_token
|
|
8300
|
-
#
|
|
8301
|
-
#
|
|
9154
|
+
# If the total number of results is greater than the `maxResults`
|
|
9155
|
+
# value provided in the request, enter the token returned in the
|
|
9156
|
+
# `nextToken` field in the response in this field to return the next
|
|
9157
|
+
# batch of results.
|
|
8302
9158
|
# @return [String]
|
|
8303
9159
|
#
|
|
8304
9160
|
# @!attribute [rw] max_results
|
|
8305
|
-
# The maximum number of
|
|
9161
|
+
# The maximum number of results to return in the response. If the
|
|
9162
|
+
# total number of results is greater than this value, use the token
|
|
9163
|
+
# returned in the response in the `nextToken` field when making
|
|
9164
|
+
# another request to return the next batch of results.
|
|
8306
9165
|
# @return [Integer]
|
|
8307
9166
|
#
|
|
8308
|
-
#
|
|
9167
|
+
# @!attribute [rw] filter
|
|
9168
|
+
# An optional filter for listing versions, including branch name,
|
|
9169
|
+
# creation source, and whether to return only the latest version per
|
|
9170
|
+
# branch.
|
|
9171
|
+
# @return [Types::VersionFilter]
|
|
8309
9172
|
#
|
|
8310
|
-
|
|
9173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundleVersionsRequest AWS API Documentation
|
|
9174
|
+
#
|
|
9175
|
+
class ListConfigurationBundleVersionsRequest < Struct.new(
|
|
9176
|
+
:bundle_id,
|
|
8311
9177
|
:next_token,
|
|
8312
|
-
:max_results
|
|
9178
|
+
:max_results,
|
|
9179
|
+
:filter)
|
|
8313
9180
|
SENSITIVE = []
|
|
8314
9181
|
include Aws::Structure
|
|
8315
9182
|
end
|
|
8316
9183
|
|
|
8317
|
-
# @!attribute [rw]
|
|
8318
|
-
# The list of
|
|
8319
|
-
#
|
|
8320
|
-
# @return [Array<Types::EvaluatorSummary>]
|
|
9184
|
+
# @!attribute [rw] versions
|
|
9185
|
+
# The list of configuration bundle version summaries.
|
|
9186
|
+
# @return [Array<Types::ConfigurationBundleVersionSummary>]
|
|
8321
9187
|
#
|
|
8322
9188
|
# @!attribute [rw] next_token
|
|
8323
|
-
#
|
|
8324
|
-
#
|
|
9189
|
+
# If the total number of results is greater than the `maxResults`
|
|
9190
|
+
# value provided in the request, use this token when making another
|
|
9191
|
+
# request in the `nextToken` field to return the next batch of
|
|
9192
|
+
# results.
|
|
9193
|
+
# @return [String]
|
|
9194
|
+
#
|
|
9195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundleVersionsResponse AWS API Documentation
|
|
9196
|
+
#
|
|
9197
|
+
class ListConfigurationBundleVersionsResponse < Struct.new(
|
|
9198
|
+
:versions,
|
|
9199
|
+
:next_token)
|
|
9200
|
+
SENSITIVE = []
|
|
9201
|
+
include Aws::Structure
|
|
9202
|
+
end
|
|
9203
|
+
|
|
9204
|
+
# @!attribute [rw] next_token
|
|
9205
|
+
# If the total number of results is greater than the `maxResults`
|
|
9206
|
+
# value provided in the request, enter the token returned in the
|
|
9207
|
+
# `nextToken` field in the response in this field to return the next
|
|
9208
|
+
# batch of results.
|
|
9209
|
+
# @return [String]
|
|
9210
|
+
#
|
|
9211
|
+
# @!attribute [rw] max_results
|
|
9212
|
+
# The maximum number of results to return in the response. If the
|
|
9213
|
+
# total number of results is greater than this value, use the token
|
|
9214
|
+
# returned in the response in the `nextToken` field when making
|
|
9215
|
+
# another request to return the next batch of results.
|
|
9216
|
+
# @return [Integer]
|
|
9217
|
+
#
|
|
9218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundlesRequest AWS API Documentation
|
|
9219
|
+
#
|
|
9220
|
+
class ListConfigurationBundlesRequest < Struct.new(
|
|
9221
|
+
:next_token,
|
|
9222
|
+
:max_results)
|
|
9223
|
+
SENSITIVE = []
|
|
9224
|
+
include Aws::Structure
|
|
9225
|
+
end
|
|
9226
|
+
|
|
9227
|
+
# @!attribute [rw] bundles
|
|
9228
|
+
# The list of configuration bundle summaries.
|
|
9229
|
+
# @return [Array<Types::ConfigurationBundleSummary>]
|
|
9230
|
+
#
|
|
9231
|
+
# @!attribute [rw] next_token
|
|
9232
|
+
# If the total number of results is greater than the `maxResults`
|
|
9233
|
+
# value provided in the request, use this token when making another
|
|
9234
|
+
# request in the `nextToken` field to return the next batch of
|
|
9235
|
+
# results.
|
|
9236
|
+
# @return [String]
|
|
9237
|
+
#
|
|
9238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundlesResponse AWS API Documentation
|
|
9239
|
+
#
|
|
9240
|
+
class ListConfigurationBundlesResponse < Struct.new(
|
|
9241
|
+
:bundles,
|
|
9242
|
+
:next_token)
|
|
9243
|
+
SENSITIVE = []
|
|
9244
|
+
include Aws::Structure
|
|
9245
|
+
end
|
|
9246
|
+
|
|
9247
|
+
# @!attribute [rw] next_token
|
|
9248
|
+
# The pagination token from a previous request to retrieve the next
|
|
9249
|
+
# page of results.
|
|
9250
|
+
# @return [String]
|
|
9251
|
+
#
|
|
9252
|
+
# @!attribute [rw] max_results
|
|
9253
|
+
# The maximum number of evaluators to return in a single response.
|
|
9254
|
+
# @return [Integer]
|
|
9255
|
+
#
|
|
9256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListEvaluatorsRequest AWS API Documentation
|
|
9257
|
+
#
|
|
9258
|
+
class ListEvaluatorsRequest < Struct.new(
|
|
9259
|
+
:next_token,
|
|
9260
|
+
:max_results)
|
|
9261
|
+
SENSITIVE = []
|
|
9262
|
+
include Aws::Structure
|
|
9263
|
+
end
|
|
9264
|
+
|
|
9265
|
+
# @!attribute [rw] evaluators
|
|
9266
|
+
# The list of evaluator summaries containing basic information about
|
|
9267
|
+
# each evaluator.
|
|
9268
|
+
# @return [Array<Types::EvaluatorSummary>]
|
|
9269
|
+
#
|
|
9270
|
+
# @!attribute [rw] next_token
|
|
9271
|
+
# The pagination token to use in a subsequent request to retrieve the
|
|
9272
|
+
# next page of results.
|
|
8325
9273
|
# @return [String]
|
|
8326
9274
|
#
|
|
8327
9275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListEvaluatorsResponse AWS API Documentation
|
|
@@ -8333,6 +9281,48 @@ module Aws::BedrockAgentCoreControl
|
|
|
8333
9281
|
include Aws::Structure
|
|
8334
9282
|
end
|
|
8335
9283
|
|
|
9284
|
+
# @!attribute [rw] gateway_identifier
|
|
9285
|
+
# The identifier of the gateway to list rules for.
|
|
9286
|
+
# @return [String]
|
|
9287
|
+
#
|
|
9288
|
+
# @!attribute [rw] max_results
|
|
9289
|
+
# The maximum number of results to return in the response. If the
|
|
9290
|
+
# total number of results is greater than this value, use the token
|
|
9291
|
+
# returned in the response in the `nextToken` field when making
|
|
9292
|
+
# another request to return the next batch of results.
|
|
9293
|
+
# @return [Integer]
|
|
9294
|
+
#
|
|
9295
|
+
# @!attribute [rw] next_token
|
|
9296
|
+
# The pagination token from a previous request.
|
|
9297
|
+
# @return [String]
|
|
9298
|
+
#
|
|
9299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayRulesRequest AWS API Documentation
|
|
9300
|
+
#
|
|
9301
|
+
class ListGatewayRulesRequest < Struct.new(
|
|
9302
|
+
:gateway_identifier,
|
|
9303
|
+
:max_results,
|
|
9304
|
+
:next_token)
|
|
9305
|
+
SENSITIVE = []
|
|
9306
|
+
include Aws::Structure
|
|
9307
|
+
end
|
|
9308
|
+
|
|
9309
|
+
# @!attribute [rw] gateway_rules
|
|
9310
|
+
# The list of gateway rules.
|
|
9311
|
+
# @return [Array<Types::GatewayRuleDetail>]
|
|
9312
|
+
#
|
|
9313
|
+
# @!attribute [rw] next_token
|
|
9314
|
+
# The pagination token to use in a subsequent request.
|
|
9315
|
+
# @return [String]
|
|
9316
|
+
#
|
|
9317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayRulesResponse AWS API Documentation
|
|
9318
|
+
#
|
|
9319
|
+
class ListGatewayRulesResponse < Struct.new(
|
|
9320
|
+
:gateway_rules,
|
|
9321
|
+
:next_token)
|
|
9322
|
+
SENSITIVE = []
|
|
9323
|
+
include Aws::Structure
|
|
9324
|
+
end
|
|
9325
|
+
|
|
8336
9326
|
# @!attribute [rw] gateway_identifier
|
|
8337
9327
|
# The identifier of the gateway to list targets for.
|
|
8338
9328
|
# @return [String]
|
|
@@ -9103,6 +10093,61 @@ module Aws::BedrockAgentCoreControl
|
|
|
9103
10093
|
include Aws::Structure
|
|
9104
10094
|
end
|
|
9105
10095
|
|
|
10096
|
+
# A condition that matches requests based on the request path.
|
|
10097
|
+
#
|
|
10098
|
+
# @!attribute [rw] any_of
|
|
10099
|
+
# A list of path patterns. The condition is met if the request path
|
|
10100
|
+
# matches any of the patterns.
|
|
10101
|
+
# @return [Array<String>]
|
|
10102
|
+
#
|
|
10103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MatchPaths AWS API Documentation
|
|
10104
|
+
#
|
|
10105
|
+
class MatchPaths < Struct.new(
|
|
10106
|
+
:any_of)
|
|
10107
|
+
SENSITIVE = []
|
|
10108
|
+
include Aws::Structure
|
|
10109
|
+
end
|
|
10110
|
+
|
|
10111
|
+
# Union for principal matching. Currently supports IAM principal ARN
|
|
10112
|
+
# glob matching. Extensible for future principal types (e.g., OAuth
|
|
10113
|
+
# client ID).
|
|
10114
|
+
#
|
|
10115
|
+
# @note MatchPrincipalEntry is a union - when making an API calls you must set exactly one of the members.
|
|
10116
|
+
#
|
|
10117
|
+
# @note MatchPrincipalEntry is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MatchPrincipalEntry corresponding to the set member.
|
|
10118
|
+
#
|
|
10119
|
+
# @!attribute [rw] iam_principal
|
|
10120
|
+
# An IAM principal to match against, specified by ARN.
|
|
10121
|
+
# @return [Types::IamPrincipal]
|
|
10122
|
+
#
|
|
10123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MatchPrincipalEntry AWS API Documentation
|
|
10124
|
+
#
|
|
10125
|
+
class MatchPrincipalEntry < Struct.new(
|
|
10126
|
+
:iam_principal,
|
|
10127
|
+
:unknown)
|
|
10128
|
+
SENSITIVE = []
|
|
10129
|
+
include Aws::Structure
|
|
10130
|
+
include Aws::Structure::Union
|
|
10131
|
+
|
|
10132
|
+
class IamPrincipal < MatchPrincipalEntry; end
|
|
10133
|
+
class Unknown < MatchPrincipalEntry; end
|
|
10134
|
+
end
|
|
10135
|
+
|
|
10136
|
+
# A condition that matches requests based on the caller's identity.
|
|
10137
|
+
#
|
|
10138
|
+
# @!attribute [rw] any_of
|
|
10139
|
+
# A list of principal entries. The condition is met if any of the
|
|
10140
|
+
# entries match the caller's identity.
|
|
10141
|
+
# @return [Array<Types::MatchPrincipalEntry>]
|
|
10142
|
+
#
|
|
10143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MatchPrincipals AWS API Documentation
|
|
10144
|
+
#
|
|
10145
|
+
class MatchPrincipals < Struct.new(
|
|
10146
|
+
:any_of)
|
|
10147
|
+
SENSITIVE = []
|
|
10148
|
+
include Aws::Structure
|
|
10149
|
+
end
|
|
10150
|
+
|
|
9106
10151
|
# The Model Context Protocol (MCP) descriptor for a registry record.
|
|
9107
10152
|
# Contains the server definition and tools definition for an
|
|
9108
10153
|
# MCP-compatible server. The schema is validated against the MCP
|
|
@@ -9164,11 +10209,6 @@ module Aws::BedrockAgentCoreControl
|
|
|
9164
10209
|
# with mcpToolSchema.
|
|
9165
10210
|
# @return [Types::McpToolSchemaConfiguration]
|
|
9166
10211
|
#
|
|
9167
|
-
# @!attribute [rw] resource_priority
|
|
9168
|
-
# Priority for resolving MCP server targets with shared resource URIs.
|
|
9169
|
-
# Lower values take precedence. Defaults to 1000 when not set.
|
|
9170
|
-
# @return [Integer]
|
|
9171
|
-
#
|
|
9172
10212
|
# @!attribute [rw] listing_mode
|
|
9173
10213
|
# The listing mode for the MCP server target configuration. MCP
|
|
9174
10214
|
# resources for default targets are cached at the control plane for
|
|
@@ -9176,13 +10216,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
9176
10216
|
# retrieved when listing tools.
|
|
9177
10217
|
# @return [String]
|
|
9178
10218
|
#
|
|
10219
|
+
# @!attribute [rw] resource_priority
|
|
10220
|
+
# Priority for resolving MCP server targets with shared resource URIs.
|
|
10221
|
+
# Lower values take precedence. Defaults to 1000 when not set.
|
|
10222
|
+
# @return [Integer]
|
|
10223
|
+
#
|
|
9179
10224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpServerTargetConfiguration AWS API Documentation
|
|
9180
10225
|
#
|
|
9181
10226
|
class McpServerTargetConfiguration < Struct.new(
|
|
9182
10227
|
:endpoint,
|
|
9183
10228
|
:mcp_tool_schema,
|
|
9184
|
-
:
|
|
9185
|
-
:
|
|
10229
|
+
:listing_mode,
|
|
10230
|
+
:resource_priority)
|
|
9186
10231
|
SENSITIVE = []
|
|
9187
10232
|
include Aws::Structure
|
|
9188
10233
|
end
|
|
@@ -11109,6 +12154,36 @@ module Aws::BedrockAgentCoreControl
|
|
|
11109
12154
|
include Aws::Structure
|
|
11110
12155
|
end
|
|
11111
12156
|
|
|
12157
|
+
# An action that routes requests to a gateway target, either statically
|
|
12158
|
+
# or with weighted traffic splitting.
|
|
12159
|
+
#
|
|
12160
|
+
# @note RouteToTargetAction is a union - when making an API calls you must set exactly one of the members.
|
|
12161
|
+
#
|
|
12162
|
+
# @note RouteToTargetAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouteToTargetAction corresponding to the set member.
|
|
12163
|
+
#
|
|
12164
|
+
# @!attribute [rw] static_route
|
|
12165
|
+
# A static route that sends all matching requests to a single target.
|
|
12166
|
+
# @return [Types::StaticRoute]
|
|
12167
|
+
#
|
|
12168
|
+
# @!attribute [rw] weighted_route
|
|
12169
|
+
# A weighted route that splits traffic between multiple targets.
|
|
12170
|
+
# @return [Types::WeightedRoute]
|
|
12171
|
+
#
|
|
12172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RouteToTargetAction AWS API Documentation
|
|
12173
|
+
#
|
|
12174
|
+
class RouteToTargetAction < Struct.new(
|
|
12175
|
+
:static_route,
|
|
12176
|
+
:weighted_route,
|
|
12177
|
+
:unknown)
|
|
12178
|
+
SENSITIVE = []
|
|
12179
|
+
include Aws::Structure
|
|
12180
|
+
include Aws::Structure::Union
|
|
12181
|
+
|
|
12182
|
+
class StaticRoute < RouteToTargetAction; end
|
|
12183
|
+
class WeightedRoute < RouteToTargetAction; end
|
|
12184
|
+
class Unknown < RouteToTargetAction; end
|
|
12185
|
+
end
|
|
12186
|
+
|
|
11112
12187
|
# The evaluation rule that defines sampling configuration, filtering
|
|
11113
12188
|
# criteria, and session detection settings for online evaluation.
|
|
11114
12189
|
#
|
|
@@ -11153,6 +12228,28 @@ module Aws::BedrockAgentCoreControl
|
|
|
11153
12228
|
include Aws::Structure
|
|
11154
12229
|
end
|
|
11155
12230
|
|
|
12231
|
+
# Configuration for an AgentCore Runtime target. Specifies the agent
|
|
12232
|
+
# runtime to route requests to via HTTP.
|
|
12233
|
+
#
|
|
12234
|
+
# @!attribute [rw] arn
|
|
12235
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime to route
|
|
12236
|
+
# requests to.
|
|
12237
|
+
# @return [String]
|
|
12238
|
+
#
|
|
12239
|
+
# @!attribute [rw] qualifier
|
|
12240
|
+
# The qualifier for the agent runtime, used to target a specific
|
|
12241
|
+
# endpoint version. If not specified, the default endpoint is used.
|
|
12242
|
+
# @return [String]
|
|
12243
|
+
#
|
|
12244
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RuntimeTargetConfiguration AWS API Documentation
|
|
12245
|
+
#
|
|
12246
|
+
class RuntimeTargetConfiguration < Struct.new(
|
|
12247
|
+
:arn,
|
|
12248
|
+
:qualifier)
|
|
12249
|
+
SENSITIVE = []
|
|
12250
|
+
include Aws::Structure
|
|
12251
|
+
end
|
|
12252
|
+
|
|
11156
12253
|
# The Amazon S3 configuration for a gateway. This structure defines how
|
|
11157
12254
|
# the gateway accesses files in Amazon S3.
|
|
11158
12255
|
#
|
|
@@ -11829,6 +12926,39 @@ module Aws::BedrockAgentCoreControl
|
|
|
11829
12926
|
include Aws::Structure
|
|
11830
12927
|
end
|
|
11831
12928
|
|
|
12929
|
+
# A static configuration bundle override.
|
|
12930
|
+
#
|
|
12931
|
+
# @!attribute [rw] bundle_arn
|
|
12932
|
+
# The Amazon Resource Name (ARN) of the configuration bundle to apply.
|
|
12933
|
+
# @return [String]
|
|
12934
|
+
#
|
|
12935
|
+
# @!attribute [rw] bundle_version
|
|
12936
|
+
# The version of the configuration bundle to apply.
|
|
12937
|
+
# @return [String]
|
|
12938
|
+
#
|
|
12939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StaticOverride AWS API Documentation
|
|
12940
|
+
#
|
|
12941
|
+
class StaticOverride < Struct.new(
|
|
12942
|
+
:bundle_arn,
|
|
12943
|
+
:bundle_version)
|
|
12944
|
+
SENSITIVE = []
|
|
12945
|
+
include Aws::Structure
|
|
12946
|
+
end
|
|
12947
|
+
|
|
12948
|
+
# A static route to a single gateway target.
|
|
12949
|
+
#
|
|
12950
|
+
# @!attribute [rw] target_name
|
|
12951
|
+
# The name of the target to route requests to.
|
|
12952
|
+
# @return [String]
|
|
12953
|
+
#
|
|
12954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/StaticRoute AWS API Documentation
|
|
12955
|
+
#
|
|
12956
|
+
class StaticRoute < Struct.new(
|
|
12957
|
+
:target_name)
|
|
12958
|
+
SENSITIVE = [:target_name]
|
|
12959
|
+
include Aws::Structure
|
|
12960
|
+
end
|
|
12961
|
+
|
|
11832
12962
|
# Contains configuration information for a memory strategy.
|
|
11833
12963
|
#
|
|
11834
12964
|
# @!attribute [rw] type
|
|
@@ -12080,6 +13210,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
12080
13210
|
include Aws::Structure
|
|
12081
13211
|
end
|
|
12082
13212
|
|
|
13213
|
+
# System-managed metadata for rules created by automated processes such
|
|
13214
|
+
# as A/B tests.
|
|
13215
|
+
#
|
|
13216
|
+
# @!attribute [rw] managed_by
|
|
13217
|
+
# The identifier of the system or process that manages this rule.
|
|
13218
|
+
# @return [String]
|
|
13219
|
+
#
|
|
13220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SystemManagedBlock AWS API Documentation
|
|
13221
|
+
#
|
|
13222
|
+
class SystemManagedBlock < Struct.new(
|
|
13223
|
+
:managed_by)
|
|
13224
|
+
SENSITIVE = []
|
|
13225
|
+
include Aws::Structure
|
|
13226
|
+
end
|
|
13227
|
+
|
|
12083
13228
|
# @!attribute [rw] resource_arn
|
|
12084
13229
|
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
|
12085
13230
|
# @return [String]
|
|
@@ -12114,16 +13259,23 @@ module Aws::BedrockAgentCoreControl
|
|
|
12114
13259
|
# the target.
|
|
12115
13260
|
# @return [Types::McpTargetConfiguration]
|
|
12116
13261
|
#
|
|
13262
|
+
# @!attribute [rw] http
|
|
13263
|
+
# The HTTP target configuration. Use this to route gateway requests to
|
|
13264
|
+
# an HTTP-based endpoint such as an AgentCore Runtime.
|
|
13265
|
+
# @return [Types::HttpTargetConfiguration]
|
|
13266
|
+
#
|
|
12117
13267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetConfiguration AWS API Documentation
|
|
12118
13268
|
#
|
|
12119
13269
|
class TargetConfiguration < Struct.new(
|
|
12120
13270
|
:mcp,
|
|
13271
|
+
:http,
|
|
12121
13272
|
:unknown)
|
|
12122
13273
|
SENSITIVE = []
|
|
12123
13274
|
include Aws::Structure
|
|
12124
13275
|
include Aws::Structure::Union
|
|
12125
13276
|
|
|
12126
13277
|
class Mcp < TargetConfiguration; end
|
|
13278
|
+
class Http < TargetConfiguration; end
|
|
12127
13279
|
class Unknown < TargetConfiguration; end
|
|
12128
13280
|
end
|
|
12129
13281
|
|
|
@@ -12173,6 +13325,40 @@ module Aws::BedrockAgentCoreControl
|
|
|
12173
13325
|
include Aws::Structure
|
|
12174
13326
|
end
|
|
12175
13327
|
|
|
13328
|
+
# An entry in a target traffic split configuration.
|
|
13329
|
+
#
|
|
13330
|
+
# @!attribute [rw] name
|
|
13331
|
+
# The name of this traffic split variant.
|
|
13332
|
+
# @return [String]
|
|
13333
|
+
#
|
|
13334
|
+
# @!attribute [rw] weight
|
|
13335
|
+
# The percentage of traffic to route to this variant.
|
|
13336
|
+
# @return [Integer]
|
|
13337
|
+
#
|
|
13338
|
+
# @!attribute [rw] target_name
|
|
13339
|
+
# The name of the target to route traffic to.
|
|
13340
|
+
# @return [String]
|
|
13341
|
+
#
|
|
13342
|
+
# @!attribute [rw] description
|
|
13343
|
+
# The description of this traffic split variant.
|
|
13344
|
+
# @return [String]
|
|
13345
|
+
#
|
|
13346
|
+
# @!attribute [rw] metadata
|
|
13347
|
+
# Key-value metadata associated with this traffic split variant.
|
|
13348
|
+
# @return [Hash<String,String>]
|
|
13349
|
+
#
|
|
13350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TargetTrafficSplitEntry AWS API Documentation
|
|
13351
|
+
#
|
|
13352
|
+
class TargetTrafficSplitEntry < Struct.new(
|
|
13353
|
+
:name,
|
|
13354
|
+
:weight,
|
|
13355
|
+
:target_name,
|
|
13356
|
+
:description,
|
|
13357
|
+
:metadata)
|
|
13358
|
+
SENSITIVE = [:target_name]
|
|
13359
|
+
include Aws::Structure
|
|
13360
|
+
end
|
|
13361
|
+
|
|
12176
13362
|
# API rate limit has been exceeded.
|
|
12177
13363
|
#
|
|
12178
13364
|
# @!attribute [rw] message
|
|
@@ -12344,6 +13530,42 @@ module Aws::BedrockAgentCoreControl
|
|
|
12344
13530
|
include Aws::Structure
|
|
12345
13531
|
end
|
|
12346
13532
|
|
|
13533
|
+
# An entry in a traffic split configuration, defining a named variant
|
|
13534
|
+
# with a weight and configuration bundle reference.
|
|
13535
|
+
#
|
|
13536
|
+
# @!attribute [rw] name
|
|
13537
|
+
# The name of this traffic split variant.
|
|
13538
|
+
# @return [String]
|
|
13539
|
+
#
|
|
13540
|
+
# @!attribute [rw] weight
|
|
13541
|
+
# The percentage of traffic to route to this variant. Weights across
|
|
13542
|
+
# all entries must sum to 100.
|
|
13543
|
+
# @return [Integer]
|
|
13544
|
+
#
|
|
13545
|
+
# @!attribute [rw] configuration_bundle
|
|
13546
|
+
# The configuration bundle reference for this variant.
|
|
13547
|
+
# @return [Types::ConfigurationBundleReference]
|
|
13548
|
+
#
|
|
13549
|
+
# @!attribute [rw] description
|
|
13550
|
+
# The description of this traffic split variant.
|
|
13551
|
+
# @return [String]
|
|
13552
|
+
#
|
|
13553
|
+
# @!attribute [rw] metadata
|
|
13554
|
+
# Key-value metadata associated with this traffic split variant.
|
|
13555
|
+
# @return [Hash<String,String>]
|
|
13556
|
+
#
|
|
13557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TrafficSplitEntry AWS API Documentation
|
|
13558
|
+
#
|
|
13559
|
+
class TrafficSplitEntry < Struct.new(
|
|
13560
|
+
:name,
|
|
13561
|
+
:weight,
|
|
13562
|
+
:configuration_bundle,
|
|
13563
|
+
:description,
|
|
13564
|
+
:metadata)
|
|
13565
|
+
SENSITIVE = []
|
|
13566
|
+
include Aws::Structure
|
|
13567
|
+
end
|
|
13568
|
+
|
|
12347
13569
|
# Condition that triggers memory processing.
|
|
12348
13570
|
#
|
|
12349
13571
|
# @note TriggerCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TriggerCondition corresponding to the set member.
|
|
@@ -12707,6 +13929,104 @@ module Aws::BedrockAgentCoreControl
|
|
|
12707
13929
|
include Aws::Structure
|
|
12708
13930
|
end
|
|
12709
13931
|
|
|
13932
|
+
# @!attribute [rw] client_token
|
|
13933
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
13934
|
+
# completes no more than one time. If you don't specify this field, a
|
|
13935
|
+
# value is randomly generated for you. If this token matches a
|
|
13936
|
+
# previous request, the service ignores the request, but doesn't
|
|
13937
|
+
# return an error. For more information, see [Ensuring
|
|
13938
|
+
# idempotency][1].
|
|
13939
|
+
#
|
|
13940
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
13941
|
+
# not need to pass this option.
|
|
13942
|
+
#
|
|
13943
|
+
#
|
|
13944
|
+
#
|
|
13945
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
13946
|
+
# @return [String]
|
|
13947
|
+
#
|
|
13948
|
+
# @!attribute [rw] bundle_id
|
|
13949
|
+
# The unique identifier of the configuration bundle to update.
|
|
13950
|
+
# @return [String]
|
|
13951
|
+
#
|
|
13952
|
+
# @!attribute [rw] bundle_name
|
|
13953
|
+
# The updated name for the configuration bundle.
|
|
13954
|
+
# @return [String]
|
|
13955
|
+
#
|
|
13956
|
+
# @!attribute [rw] description
|
|
13957
|
+
# The updated description for the configuration bundle.
|
|
13958
|
+
# @return [String]
|
|
13959
|
+
#
|
|
13960
|
+
# @!attribute [rw] components
|
|
13961
|
+
# The updated component configurations. Creates a new version of the
|
|
13962
|
+
# bundle.
|
|
13963
|
+
# @return [Hash<String,Types::ComponentConfiguration>]
|
|
13964
|
+
#
|
|
13965
|
+
# @!attribute [rw] parent_version_ids
|
|
13966
|
+
# A list of parent version identifiers for lineage tracking. Regular
|
|
13967
|
+
# commits have a single parent. Merge commits have two parents: the
|
|
13968
|
+
# target branch parent and the source branch parent. If the branch
|
|
13969
|
+
# already exists, the first parent must be the latest version on that
|
|
13970
|
+
# branch.
|
|
13971
|
+
# @return [Array<String>]
|
|
13972
|
+
#
|
|
13973
|
+
# @!attribute [rw] branch_name
|
|
13974
|
+
# The branch name for this version. If not specified, inherits the
|
|
13975
|
+
# parent's branch or defaults to `mainline`.
|
|
13976
|
+
# @return [String]
|
|
13977
|
+
#
|
|
13978
|
+
# @!attribute [rw] commit_message
|
|
13979
|
+
# A commit message describing the changes in this version.
|
|
13980
|
+
# @return [String]
|
|
13981
|
+
#
|
|
13982
|
+
# @!attribute [rw] created_by
|
|
13983
|
+
# The source that created this version, including the source name and
|
|
13984
|
+
# optional ARN.
|
|
13985
|
+
# @return [Types::VersionCreatedBySource]
|
|
13986
|
+
#
|
|
13987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleRequest AWS API Documentation
|
|
13988
|
+
#
|
|
13989
|
+
class UpdateConfigurationBundleRequest < Struct.new(
|
|
13990
|
+
:client_token,
|
|
13991
|
+
:bundle_id,
|
|
13992
|
+
:bundle_name,
|
|
13993
|
+
:description,
|
|
13994
|
+
:components,
|
|
13995
|
+
:parent_version_ids,
|
|
13996
|
+
:branch_name,
|
|
13997
|
+
:commit_message,
|
|
13998
|
+
:created_by)
|
|
13999
|
+
SENSITIVE = [:description, :components]
|
|
14000
|
+
include Aws::Structure
|
|
14001
|
+
end
|
|
14002
|
+
|
|
14003
|
+
# @!attribute [rw] bundle_arn
|
|
14004
|
+
# The Amazon Resource Name (ARN) of the updated configuration bundle.
|
|
14005
|
+
# @return [String]
|
|
14006
|
+
#
|
|
14007
|
+
# @!attribute [rw] bundle_id
|
|
14008
|
+
# The unique identifier of the updated configuration bundle.
|
|
14009
|
+
# @return [String]
|
|
14010
|
+
#
|
|
14011
|
+
# @!attribute [rw] version_id
|
|
14012
|
+
# The new version identifier created by this update.
|
|
14013
|
+
# @return [String]
|
|
14014
|
+
#
|
|
14015
|
+
# @!attribute [rw] updated_at
|
|
14016
|
+
# The timestamp when the configuration bundle was updated.
|
|
14017
|
+
# @return [Time]
|
|
14018
|
+
#
|
|
14019
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateConfigurationBundleResponse AWS API Documentation
|
|
14020
|
+
#
|
|
14021
|
+
class UpdateConfigurationBundleResponse < Struct.new(
|
|
14022
|
+
:bundle_arn,
|
|
14023
|
+
:bundle_id,
|
|
14024
|
+
:version_id,
|
|
14025
|
+
:updated_at)
|
|
14026
|
+
SENSITIVE = []
|
|
14027
|
+
include Aws::Structure
|
|
14028
|
+
end
|
|
14029
|
+
|
|
12710
14030
|
# @!attribute [rw] client_token
|
|
12711
14031
|
# A unique, case-sensitive identifier to ensure that the API request
|
|
12712
14032
|
# completes no more than one time. If you don't specify this field, a
|
|
@@ -12743,6 +14063,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
12743
14063
|
# that determines the scope of evaluation.
|
|
12744
14064
|
# @return [String]
|
|
12745
14065
|
#
|
|
14066
|
+
# @!attribute [rw] kms_key_arn
|
|
14067
|
+
# The Amazon Resource Name (ARN) of a customer managed KMS key to use
|
|
14068
|
+
# for encrypting sensitive evaluator data. Specify a new key ARN to
|
|
14069
|
+
# rotate the encryption key, or specify a key ARN to add encryption to
|
|
14070
|
+
# an evaluator that was previously created without one. When you
|
|
14071
|
+
# rotate to a new key, the service decrypts the existing data with the
|
|
14072
|
+
# old key and re-encrypts it with the new key. Only symmetric
|
|
14073
|
+
# encryption KMS keys are supported. For more information, see
|
|
14074
|
+
# [Encryption at rest for AgentCore Evaluations][1].
|
|
14075
|
+
#
|
|
14076
|
+
#
|
|
14077
|
+
#
|
|
14078
|
+
# [1]: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/evaluations-encryption.html
|
|
14079
|
+
# @return [String]
|
|
14080
|
+
#
|
|
12746
14081
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateEvaluatorRequest AWS API Documentation
|
|
12747
14082
|
#
|
|
12748
14083
|
class UpdateEvaluatorRequest < Struct.new(
|
|
@@ -12750,7 +14085,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
12750
14085
|
:evaluator_id,
|
|
12751
14086
|
:description,
|
|
12752
14087
|
:evaluator_config,
|
|
12753
|
-
:level
|
|
14088
|
+
:level,
|
|
14089
|
+
:kms_key_arn)
|
|
12754
14090
|
SENSITIVE = [:description]
|
|
12755
14091
|
include Aws::Structure
|
|
12756
14092
|
end
|
|
@@ -12972,6 +14308,105 @@ module Aws::BedrockAgentCoreControl
|
|
|
12972
14308
|
include Aws::Structure
|
|
12973
14309
|
end
|
|
12974
14310
|
|
|
14311
|
+
# @!attribute [rw] gateway_identifier
|
|
14312
|
+
# The identifier of the gateway containing the rule.
|
|
14313
|
+
# @return [String]
|
|
14314
|
+
#
|
|
14315
|
+
# @!attribute [rw] rule_id
|
|
14316
|
+
# The unique identifier of the rule to update.
|
|
14317
|
+
# @return [String]
|
|
14318
|
+
#
|
|
14319
|
+
# @!attribute [rw] priority
|
|
14320
|
+
# The updated priority of the rule.
|
|
14321
|
+
# @return [Integer]
|
|
14322
|
+
#
|
|
14323
|
+
# @!attribute [rw] conditions
|
|
14324
|
+
# The updated conditions for the rule.
|
|
14325
|
+
# @return [Array<Types::Condition>]
|
|
14326
|
+
#
|
|
14327
|
+
# @!attribute [rw] actions
|
|
14328
|
+
# The updated actions for the rule.
|
|
14329
|
+
# @return [Array<Types::Action>]
|
|
14330
|
+
#
|
|
14331
|
+
# @!attribute [rw] description
|
|
14332
|
+
# The updated description of the rule.
|
|
14333
|
+
# @return [String]
|
|
14334
|
+
#
|
|
14335
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRuleRequest AWS API Documentation
|
|
14336
|
+
#
|
|
14337
|
+
class UpdateGatewayRuleRequest < Struct.new(
|
|
14338
|
+
:gateway_identifier,
|
|
14339
|
+
:rule_id,
|
|
14340
|
+
:priority,
|
|
14341
|
+
:conditions,
|
|
14342
|
+
:actions,
|
|
14343
|
+
:description)
|
|
14344
|
+
SENSITIVE = []
|
|
14345
|
+
include Aws::Structure
|
|
14346
|
+
end
|
|
14347
|
+
|
|
14348
|
+
# Create response excludes updatedAt (redundant on create). Get/Update
|
|
14349
|
+
# responses include it via their own output structures.
|
|
14350
|
+
#
|
|
14351
|
+
# @!attribute [rw] rule_id
|
|
14352
|
+
# The unique identifier of the gateway rule.
|
|
14353
|
+
# @return [String]
|
|
14354
|
+
#
|
|
14355
|
+
# @!attribute [rw] gateway_arn
|
|
14356
|
+
# The Amazon Resource Name (ARN) of the gateway that the rule belongs
|
|
14357
|
+
# to.
|
|
14358
|
+
# @return [String]
|
|
14359
|
+
#
|
|
14360
|
+
# @!attribute [rw] priority
|
|
14361
|
+
# The priority of the rule. Rules are evaluated in order of priority,
|
|
14362
|
+
# with lower numbers evaluated first.
|
|
14363
|
+
# @return [Integer]
|
|
14364
|
+
#
|
|
14365
|
+
# @!attribute [rw] conditions
|
|
14366
|
+
# The conditions that must be met for the rule to apply.
|
|
14367
|
+
# @return [Array<Types::Condition>]
|
|
14368
|
+
#
|
|
14369
|
+
# @!attribute [rw] actions
|
|
14370
|
+
# The actions to take when the rule conditions are met.
|
|
14371
|
+
# @return [Array<Types::Action>]
|
|
14372
|
+
#
|
|
14373
|
+
# @!attribute [rw] description
|
|
14374
|
+
# The description of the gateway rule.
|
|
14375
|
+
# @return [String]
|
|
14376
|
+
#
|
|
14377
|
+
# @!attribute [rw] created_at
|
|
14378
|
+
# The timestamp when the rule was created.
|
|
14379
|
+
# @return [Time]
|
|
14380
|
+
#
|
|
14381
|
+
# @!attribute [rw] status
|
|
14382
|
+
# The current status of the rule.
|
|
14383
|
+
# @return [String]
|
|
14384
|
+
#
|
|
14385
|
+
# @!attribute [rw] system
|
|
14386
|
+
# System-managed metadata for rules created by automated processes.
|
|
14387
|
+
# @return [Types::SystemManagedBlock]
|
|
14388
|
+
#
|
|
14389
|
+
# @!attribute [rw] updated_at
|
|
14390
|
+
# The timestamp when the rule was last updated.
|
|
14391
|
+
# @return [Time]
|
|
14392
|
+
#
|
|
14393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRuleResponse AWS API Documentation
|
|
14394
|
+
#
|
|
14395
|
+
class UpdateGatewayRuleResponse < Struct.new(
|
|
14396
|
+
:rule_id,
|
|
14397
|
+
:gateway_arn,
|
|
14398
|
+
:priority,
|
|
14399
|
+
:conditions,
|
|
14400
|
+
:actions,
|
|
14401
|
+
:description,
|
|
14402
|
+
:created_at,
|
|
14403
|
+
:status,
|
|
14404
|
+
:system,
|
|
14405
|
+
:updated_at)
|
|
14406
|
+
SENSITIVE = []
|
|
14407
|
+
include Aws::Structure
|
|
14408
|
+
end
|
|
14409
|
+
|
|
12975
14410
|
# @!attribute [rw] gateway_identifier
|
|
12976
14411
|
# The unique identifier of the gateway associated with the target.
|
|
12977
14412
|
# @return [String]
|
|
@@ -13088,6 +14523,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
13088
14523
|
# with authorization code grant type and requires user federation.
|
|
13089
14524
|
# @return [Types::AuthorizationData]
|
|
13090
14525
|
#
|
|
14526
|
+
# @!attribute [rw] protocol_type
|
|
14527
|
+
# The protocol type of the updated gateway target.
|
|
14528
|
+
# @return [String]
|
|
14529
|
+
#
|
|
13091
14530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
|
|
13092
14531
|
#
|
|
13093
14532
|
class UpdateGatewayTargetResponse < Struct.new(
|
|
@@ -13105,7 +14544,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
13105
14544
|
:metadata_configuration,
|
|
13106
14545
|
:private_endpoint,
|
|
13107
14546
|
:private_endpoint_managed_resources,
|
|
13108
|
-
:authorization_data
|
|
14547
|
+
:authorization_data,
|
|
14548
|
+
:protocol_type)
|
|
13109
14549
|
SENSITIVE = [:name, :description]
|
|
13110
14550
|
include Aws::Structure
|
|
13111
14551
|
end
|
|
@@ -13195,8 +14635,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
13195
14635
|
# @return [Integer]
|
|
13196
14636
|
#
|
|
13197
14637
|
# @!attribute [rw] max_tokens
|
|
13198
|
-
# The maximum number of tokens the agent can generate
|
|
13199
|
-
#
|
|
14638
|
+
# The maximum total number of output tokens the agent can generate
|
|
14639
|
+
# across all model calls within a single invocation. If not specified,
|
|
14640
|
+
# the existing value is retained.
|
|
13200
14641
|
# @return [Integer]
|
|
13201
14642
|
#
|
|
13202
14643
|
# @!attribute [rw] timeout_seconds
|
|
@@ -14550,6 +15991,87 @@ module Aws::BedrockAgentCoreControl
|
|
|
14550
15991
|
include Aws::Structure
|
|
14551
15992
|
end
|
|
14552
15993
|
|
|
15994
|
+
# The source that created a configuration bundle version.
|
|
15995
|
+
#
|
|
15996
|
+
# @!attribute [rw] name
|
|
15997
|
+
# The name of the source (for example, `user`, `optimization-job`, or
|
|
15998
|
+
# `system`).
|
|
15999
|
+
# @return [String]
|
|
16000
|
+
#
|
|
16001
|
+
# @!attribute [rw] arn
|
|
16002
|
+
# The Amazon Resource Name (ARN) of the source, if applicable (for
|
|
16003
|
+
# example, a user ARN or optimization job ARN).
|
|
16004
|
+
# @return [String]
|
|
16005
|
+
#
|
|
16006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VersionCreatedBySource AWS API Documentation
|
|
16007
|
+
#
|
|
16008
|
+
class VersionCreatedBySource < Struct.new(
|
|
16009
|
+
:name,
|
|
16010
|
+
:arn)
|
|
16011
|
+
SENSITIVE = []
|
|
16012
|
+
include Aws::Structure
|
|
16013
|
+
end
|
|
16014
|
+
|
|
16015
|
+
# A filter for listing configuration bundle versions.
|
|
16016
|
+
#
|
|
16017
|
+
# @!attribute [rw] branch_name
|
|
16018
|
+
# Filter by branch name.
|
|
16019
|
+
# @return [String]
|
|
16020
|
+
#
|
|
16021
|
+
# @!attribute [rw] created_by_name
|
|
16022
|
+
# Filter by creation source name.
|
|
16023
|
+
# @return [String]
|
|
16024
|
+
#
|
|
16025
|
+
# @!attribute [rw] latest_per_branch
|
|
16026
|
+
# When true, returns only the latest version for each branch. When
|
|
16027
|
+
# false or not specified, returns all versions. Can be combined with
|
|
16028
|
+
# `branchName` to get the latest version for a specific branch.
|
|
16029
|
+
# @return [Boolean]
|
|
16030
|
+
#
|
|
16031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VersionFilter AWS API Documentation
|
|
16032
|
+
#
|
|
16033
|
+
class VersionFilter < Struct.new(
|
|
16034
|
+
:branch_name,
|
|
16035
|
+
:created_by_name,
|
|
16036
|
+
:latest_per_branch)
|
|
16037
|
+
SENSITIVE = []
|
|
16038
|
+
include Aws::Structure
|
|
16039
|
+
end
|
|
16040
|
+
|
|
16041
|
+
# The version lineage metadata that tracks parent versions and creation
|
|
16042
|
+
# source. Supports git-like two-parent merges for branch management.
|
|
16043
|
+
#
|
|
16044
|
+
# @!attribute [rw] parent_version_ids
|
|
16045
|
+
# A list of parent version identifiers. Regular commits have 0-1
|
|
16046
|
+
# parents. Merge commits have 2 parents: the target branch parent and
|
|
16047
|
+
# the source branch parent. The first parent represents the primary
|
|
16048
|
+
# lineage.
|
|
16049
|
+
# @return [Array<String>]
|
|
16050
|
+
#
|
|
16051
|
+
# @!attribute [rw] branch_name
|
|
16052
|
+
# The branch name for this version. If not specified, inherits the
|
|
16053
|
+
# parent's branch or defaults to `mainline`.
|
|
16054
|
+
# @return [String]
|
|
16055
|
+
#
|
|
16056
|
+
# @!attribute [rw] created_by
|
|
16057
|
+
# The source that created this version.
|
|
16058
|
+
# @return [Types::VersionCreatedBySource]
|
|
16059
|
+
#
|
|
16060
|
+
# @!attribute [rw] commit_message
|
|
16061
|
+
# A commit message describing the changes in this version.
|
|
16062
|
+
# @return [String]
|
|
16063
|
+
#
|
|
16064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VersionLineageMetadata AWS API Documentation
|
|
16065
|
+
#
|
|
16066
|
+
class VersionLineageMetadata < Struct.new(
|
|
16067
|
+
:parent_version_ids,
|
|
16068
|
+
:branch_name,
|
|
16069
|
+
:created_by,
|
|
16070
|
+
:commit_message)
|
|
16071
|
+
SENSITIVE = []
|
|
16072
|
+
include Aws::Structure
|
|
16073
|
+
end
|
|
16074
|
+
|
|
14553
16075
|
# VpcConfig for the Agent.
|
|
14554
16076
|
#
|
|
14555
16077
|
# @!attribute [rw] security_groups
|
|
@@ -14569,6 +16091,37 @@ module Aws::BedrockAgentCoreControl
|
|
|
14569
16091
|
include Aws::Structure
|
|
14570
16092
|
end
|
|
14571
16093
|
|
|
16094
|
+
# A weighted configuration bundle override that splits traffic between
|
|
16095
|
+
# multiple bundle versions.
|
|
16096
|
+
#
|
|
16097
|
+
# @!attribute [rw] traffic_split
|
|
16098
|
+
# The traffic split entries defining how traffic is distributed
|
|
16099
|
+
# between configuration bundle versions.
|
|
16100
|
+
# @return [Array<Types::TrafficSplitEntry>]
|
|
16101
|
+
#
|
|
16102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/WeightedOverride AWS API Documentation
|
|
16103
|
+
#
|
|
16104
|
+
class WeightedOverride < Struct.new(
|
|
16105
|
+
:traffic_split)
|
|
16106
|
+
SENSITIVE = []
|
|
16107
|
+
include Aws::Structure
|
|
16108
|
+
end
|
|
16109
|
+
|
|
16110
|
+
# A weighted route that splits traffic between multiple gateway targets.
|
|
16111
|
+
#
|
|
16112
|
+
# @!attribute [rw] traffic_split
|
|
16113
|
+
# The traffic split entries defining how traffic is distributed
|
|
16114
|
+
# between targets.
|
|
16115
|
+
# @return [Array<Types::TargetTrafficSplitEntry>]
|
|
16116
|
+
#
|
|
16117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/WeightedRoute AWS API Documentation
|
|
16118
|
+
#
|
|
16119
|
+
class WeightedRoute < Struct.new(
|
|
16120
|
+
:traffic_split)
|
|
16121
|
+
SENSITIVE = []
|
|
16122
|
+
include Aws::Structure
|
|
16123
|
+
end
|
|
16124
|
+
|
|
14572
16125
|
# The information about the workload identity.
|
|
14573
16126
|
#
|
|
14574
16127
|
# @!attribute [rw] workload_identity_arn
|