aws-sdk-bedrockagentcorecontrol 1.51.0 → 1.53.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +142 -170
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +32 -2
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +155 -69
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +25 -3
- data/sig/params.rbs +1 -0
- data/sig/types.rbs +26 -3
- metadata +1 -1
|
@@ -474,21 +474,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
474
474
|
|
|
475
475
|
# @!group API Operations
|
|
476
476
|
|
|
477
|
-
# Adds examples to the dataset's DRAFT.
|
|
478
|
-
#
|
|
479
|
-
#
|
|
480
|
-
#
|
|
481
|
-
# the entire batch is rejected with ValidationException — no examples
|
|
482
|
-
# are written (all-or-nothing semantics).
|
|
483
|
-
#
|
|
484
|
-
# **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
|
|
485
|
-
# Use CreateDatasetVersion to publish DRAFT as a new numbered version.
|
|
486
|
-
#
|
|
487
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
488
|
-
# the dataset status is not in \{DRAFT, ACTIVE}.
|
|
489
|
-
#
|
|
490
|
-
# **Request size limit:** Max 5 MB total request body. Max 1000 examples
|
|
491
|
-
# per call.
|
|
477
|
+
# Adds examples to the dataset's DRAFT. All examples are validated
|
|
478
|
+
# against the dataset's schema type before any writes occur. If any
|
|
479
|
+
# example fails validation, the entire batch is rejected (all-or-nothing
|
|
480
|
+
# semantics).
|
|
492
481
|
#
|
|
493
482
|
# @option params [required, String] :dataset_id
|
|
494
483
|
# The unique identifier of the dataset to add examples to.
|
|
@@ -1199,6 +1188,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
1199
1188
|
# The source that created this version, including the source name and
|
|
1200
1189
|
# optional ARN.
|
|
1201
1190
|
#
|
|
1191
|
+
# @option params [String] :kms_key_arn
|
|
1192
|
+
# Optional KMS key ARN for encrypting component configurations.
|
|
1193
|
+
#
|
|
1202
1194
|
# @option params [Hash<String,String>] :tags
|
|
1203
1195
|
# A map of tag keys and values to assign to the configuration bundle.
|
|
1204
1196
|
# Tags enable you to categorize your resources in different ways, for
|
|
@@ -1229,6 +1221,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1229
1221
|
# name: "String", # required
|
|
1230
1222
|
# arn: "String",
|
|
1231
1223
|
# },
|
|
1224
|
+
# kms_key_arn: "KmsKeyArn",
|
|
1232
1225
|
# tags: {
|
|
1233
1226
|
# "TagKey" => "TagValue",
|
|
1234
1227
|
# },
|
|
@@ -1250,20 +1243,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
1250
1243
|
req.send_request(options)
|
|
1251
1244
|
end
|
|
1252
1245
|
|
|
1253
|
-
# Creates a new
|
|
1254
|
-
#
|
|
1255
|
-
#
|
|
1256
|
-
# transitions to ACTIVE or CREATE\_FAILED (with failureReason).
|
|
1246
|
+
# Creates a new dataset resource asynchronously. Returns immediately
|
|
1247
|
+
# with status CREATING. Poll `GetDataset` until status transitions to
|
|
1248
|
+
# ACTIVE or CREATE\_FAILED.
|
|
1257
1249
|
#
|
|
1258
1250
|
# @option params [String] :client_token
|
|
1259
|
-
#
|
|
1251
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
1252
|
+
# completes no more than one time. If you don't specify this field, a
|
|
1253
|
+
# value is randomly generated for you. If this token matches a previous
|
|
1254
|
+
# request, the service ignores the request, but doesn't return an
|
|
1255
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
1260
1256
|
#
|
|
1261
1257
|
# **A suitable default value is auto-generated.** You should normally
|
|
1262
1258
|
# not need to pass this option.**
|
|
1263
1259
|
#
|
|
1260
|
+
#
|
|
1261
|
+
#
|
|
1262
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
1263
|
+
#
|
|
1264
1264
|
# @option params [required, String] :dataset_name
|
|
1265
|
-
# Human-readable name for the dataset.
|
|
1266
|
-
#
|
|
1265
|
+
# Human-readable name for the dataset. Must be unique within the
|
|
1266
|
+
# account. Immutable after creation.
|
|
1267
1267
|
#
|
|
1268
1268
|
# @option params [String] :description
|
|
1269
1269
|
# A description of the dataset.
|
|
@@ -1277,7 +1277,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1277
1277
|
# after creation.
|
|
1278
1278
|
#
|
|
1279
1279
|
# @option params [String] :kms_key_arn
|
|
1280
|
-
# Optional
|
|
1280
|
+
# Optional KMS key ARN for server-side encryption on service Amazon S3
|
|
1281
|
+
# writes.
|
|
1281
1282
|
#
|
|
1282
1283
|
# @option params [Hash<String,String>] :tags
|
|
1283
1284
|
# A map of tag keys and values to assign to the dataset.
|
|
@@ -1329,20 +1330,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1329
1330
|
req.send_request(options)
|
|
1330
1331
|
end
|
|
1331
1332
|
|
|
1332
|
-
# Publishes the current DRAFT as a new numbered version.
|
|
1333
|
-
#
|
|
1334
|
-
#
|
|
1335
|
-
#
|
|
1336
|
-
# immediately with status UPDATING. Poll GetDataset until status
|
|
1337
|
-
# transitions to ACTIVE (draftStatus=UNMODIFIED) or UPDATE\_FAILED.
|
|
1338
|
-
#
|
|
1339
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
1340
|
-
# status is in \{CREATING, UPDATING, DELETING}, or
|
|
1341
|
-
# DATASET\_IN\_FAILED\_STATE if status is in \{CREATE\_FAILED,
|
|
1342
|
-
# DELETE\_FAILED}.
|
|
1343
|
-
#
|
|
1344
|
-
# **Quota:** MAX\_VERSIONS\_PER\_DATASET applies to published versions
|
|
1345
|
-
# only (not DRAFT).
|
|
1333
|
+
# Publishes the current DRAFT as a new numbered version. The DRAFT is
|
|
1334
|
+
# preserved and remains editable after publishing. Returns immediately
|
|
1335
|
+
# with status UPDATING. Poll `GetDataset` until status transitions to
|
|
1336
|
+
# ACTIVE or UPDATE\_FAILED.
|
|
1346
1337
|
#
|
|
1347
1338
|
# @option params [required, String] :dataset_id
|
|
1348
1339
|
# The unique identifier of the dataset to publish a version for.
|
|
@@ -2819,6 +2810,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2819
2810
|
# {
|
|
2820
2811
|
# key: "MetadataKey", # required
|
|
2821
2812
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2813
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2822
2814
|
# extraction_config: {
|
|
2823
2815
|
# llm_extraction_config: {
|
|
2824
2816
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -2852,6 +2844,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2852
2844
|
# {
|
|
2853
2845
|
# key: "MetadataKey", # required
|
|
2854
2846
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2847
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2855
2848
|
# extraction_config: {
|
|
2856
2849
|
# llm_extraction_config: {
|
|
2857
2850
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -2885,6 +2878,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2885
2878
|
# {
|
|
2886
2879
|
# key: "MetadataKey", # required
|
|
2887
2880
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2881
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2888
2882
|
# extraction_config: {
|
|
2889
2883
|
# llm_extraction_config: {
|
|
2890
2884
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -2959,6 +2953,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2959
2953
|
# {
|
|
2960
2954
|
# key: "MetadataKey", # required
|
|
2961
2955
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2956
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2962
2957
|
# extraction_config: {
|
|
2963
2958
|
# llm_extraction_config: {
|
|
2964
2959
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3009,6 +3004,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3009
3004
|
# {
|
|
3010
3005
|
# key: "MetadataKey", # required
|
|
3011
3006
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
3007
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
3012
3008
|
# extraction_config: {
|
|
3013
3009
|
# llm_extraction_config: {
|
|
3014
3010
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3045,6 +3041,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3045
3041
|
# {
|
|
3046
3042
|
# key: "MetadataKey", # required
|
|
3047
3043
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
3044
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
3048
3045
|
# extraction_config: {
|
|
3049
3046
|
# llm_extraction_config: {
|
|
3050
3047
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3073,6 +3070,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3073
3070
|
# {
|
|
3074
3071
|
# key: "MetadataKey", # required
|
|
3075
3072
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
3073
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
3076
3074
|
# extraction_config: {
|
|
3077
3075
|
# llm_extraction_config: {
|
|
3078
3076
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3133,7 +3131,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3133
3131
|
# resp.memory.encryption_key_arn #=> String
|
|
3134
3132
|
# resp.memory.memory_execution_role_arn #=> String
|
|
3135
3133
|
# resp.memory.event_expiry_duration #=> Integer
|
|
3136
|
-
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
3134
|
+
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
3137
3135
|
# resp.memory.failure_reason #=> String
|
|
3138
3136
|
# resp.memory.created_at #=> Time
|
|
3139
3137
|
# resp.memory.updated_at #=> Time
|
|
@@ -3165,6 +3163,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3165
3163
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
|
|
3166
3164
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
|
|
3167
3165
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
3166
|
+
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
3168
3167
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
3169
3168
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
3170
3169
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -3181,6 +3180,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3181
3180
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
|
|
3182
3181
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
|
|
3183
3182
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
3183
|
+
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
3184
3184
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
3185
3185
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
3186
3186
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -3208,6 +3208,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3208
3208
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
|
|
3209
3209
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
|
|
3210
3210
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
3211
|
+
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
3211
3212
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
3212
3213
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
3213
3214
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -3577,11 +3578,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3577
3578
|
# The data source configuration that specifies CloudWatch log groups and
|
|
3578
3579
|
# service names to monitor for agent traces.
|
|
3579
3580
|
#
|
|
3580
|
-
# @option params [
|
|
3581
|
+
# @option params [Array<Types::EvaluatorReference>] :evaluators
|
|
3581
3582
|
# The list of evaluators to apply during online evaluation. Can include
|
|
3582
3583
|
# both built-in evaluators and custom evaluators created with
|
|
3583
3584
|
# `CreateEvaluator`.
|
|
3584
3585
|
#
|
|
3586
|
+
# @option params [Array<Types::Insight>] :insights
|
|
3587
|
+
# The list of insight types to run against agent sessions.
|
|
3588
|
+
#
|
|
3589
|
+
# @option params [Types::ClusteringConfig] :clustering_config
|
|
3590
|
+
# Configuration for periodic batch evaluation clustering of insight
|
|
3591
|
+
# results.
|
|
3592
|
+
#
|
|
3585
3593
|
# @option params [required, String] :evaluation_execution_role_arn
|
|
3586
3594
|
# The Amazon Resource Name (ARN) of the IAM role that grants permissions
|
|
3587
3595
|
# to read from CloudWatch logs, write evaluation results, and invoke
|
|
@@ -3645,11 +3653,19 @@ module Aws::BedrockAgentCoreControl
|
|
|
3645
3653
|
# service_names: ["ServiceName"], # required
|
|
3646
3654
|
# },
|
|
3647
3655
|
# },
|
|
3648
|
-
# evaluators: [
|
|
3656
|
+
# evaluators: [
|
|
3649
3657
|
# {
|
|
3650
3658
|
# evaluator_id: "EvaluatorId",
|
|
3651
3659
|
# },
|
|
3652
3660
|
# ],
|
|
3661
|
+
# insights: [
|
|
3662
|
+
# {
|
|
3663
|
+
# insight_id: "InsightId", # required
|
|
3664
|
+
# },
|
|
3665
|
+
# ],
|
|
3666
|
+
# clustering_config: {
|
|
3667
|
+
# frequencies: ["DAILY"], # required, accepts DAILY, WEEKLY, MONTHLY
|
|
3668
|
+
# },
|
|
3653
3669
|
# evaluation_execution_role_arn: "RoleArn", # required
|
|
3654
3670
|
# enable_on_create: false, # required
|
|
3655
3671
|
# tags: {
|
|
@@ -4849,48 +4865,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
4849
4865
|
req.send_request(options)
|
|
4850
4866
|
end
|
|
4851
4867
|
|
|
4852
|
-
# Deletes a dataset version or an entire dataset
|
|
4853
|
-
#
|
|
4854
|
-
#
|
|
4855
|
-
# **State transitions:**
|
|
4856
|
-
#
|
|
4857
|
-
# * If `datasetVersion` is absent (full delete): status transitions to
|
|
4858
|
-
# DELETING immediately.
|
|
4859
|
-
# * If `datasetVersion` is provided (version-specific delete): status
|
|
4860
|
-
# transitions to UPDATING.
|
|
4861
|
-
#
|
|
4862
|
-
# **State guard (full delete):** Returns ConflictException
|
|
4863
|
-
# (DATASET\_NOT\_READY) if the dataset status is in \{CREATING,
|
|
4864
|
-
# UPDATING}. Deletion is allowed from ACTIVE, CREATE\_FAILED,
|
|
4865
|
-
# UPDATE\_FAILED, and DELETE\_FAILED states.
|
|
4866
|
-
#
|
|
4867
|
-
# **State guard (version-specific delete):** Returns ConflictException
|
|
4868
|
-
# (DATASET\_NOT\_READY) if the dataset status is not in \{ACTIVE,
|
|
4869
|
-
# CREATE\_FAILED, UPDATE\_FAILED}.
|
|
4870
|
-
#
|
|
4871
|
-
# Fails with ConflictException (REFERENCED\_BY\_EVAL\_JOB) if referenced
|
|
4872
|
-
# by an active evaluation job (full delete only).
|
|
4873
|
-
#
|
|
4874
|
-
# If the delete workflow fails after retries, status is set to
|
|
4875
|
-
# DELETE\_FAILED (full delete) or UPDATE\_FAILED (version-specific
|
|
4876
|
-
# delete). Calling DeleteDataset on a DELETE\_FAILED dataset re-triggers
|
|
4877
|
-
# the delete workflow (idempotent retry path).
|
|
4878
|
-
#
|
|
4879
|
-
# **Version parameter:**
|
|
4880
|
-
#
|
|
4881
|
-
# * If `datasetVersion` is absent: deletes ALL versions and the Dataset
|
|
4882
|
-
# record itself.
|
|
4883
|
-
# * If `datasetVersion` is provided: deletes only that specific
|
|
4884
|
-
# DatasetVersion. Returns ResourceNotFoundException if the specified
|
|
4885
|
-
# version does not exist.
|
|
4868
|
+
# Deletes a dataset version or an entire dataset asynchronously. If
|
|
4869
|
+
# `datasetVersion` is absent, deletes all versions and the dataset
|
|
4870
|
+
# record itself. If provided, deletes only that specific version.
|
|
4886
4871
|
#
|
|
4887
4872
|
# @option params [required, String] :dataset_id
|
|
4888
4873
|
# The unique identifier of the dataset to delete.
|
|
4889
4874
|
#
|
|
4890
4875
|
# @option params [String] :dataset_version
|
|
4891
|
-
# Optional version to delete.
|
|
4892
|
-
#
|
|
4893
|
-
# exist.
|
|
4876
|
+
# Optional version to delete. If absent, deletes the entire dataset. If
|
|
4877
|
+
# provided, deletes only that specific version.
|
|
4894
4878
|
#
|
|
4895
4879
|
# @return [Types::DeleteDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4896
4880
|
#
|
|
@@ -4924,18 +4908,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4924
4908
|
req.send_request(options)
|
|
4925
4909
|
end
|
|
4926
4910
|
|
|
4927
|
-
# Deletes specific examples by ID from DRAFT.
|
|
4928
|
-
#
|
|
4929
|
-
#
|
|
4930
|
-
# occur. If any ID does not exist in DRAFT, the entire batch is rejected
|
|
4931
|
-
# with ResourceNotFoundException — no examples are deleted
|
|
4932
|
-
# (all-or-nothing semantics).
|
|
4933
|
-
#
|
|
4934
|
-
# **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
|
|
4935
|
-
# Use CreateDatasetVersion to publish DRAFT as a new numbered version.
|
|
4936
|
-
#
|
|
4937
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
4938
|
-
# the dataset status is not in \{DRAFT, ACTIVE}.
|
|
4911
|
+
# Deletes specific examples by ID from DRAFT. All example IDs are
|
|
4912
|
+
# validated before any deletes occur. If any ID does not exist in DRAFT,
|
|
4913
|
+
# the entire batch is rejected (all-or-nothing semantics).
|
|
4939
4914
|
#
|
|
4940
4915
|
# @option params [required, String] :dataset_id
|
|
4941
4916
|
# The unique identifier of the dataset.
|
|
@@ -5328,7 +5303,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5328
5303
|
# @example Response structure
|
|
5329
5304
|
#
|
|
5330
5305
|
# resp.memory_id #=> String
|
|
5331
|
-
# resp.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
5306
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
5332
5307
|
#
|
|
5333
5308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteMemory AWS API Documentation
|
|
5334
5309
|
#
|
|
@@ -6142,6 +6117,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6142
6117
|
# * {Types::GetConfigurationBundleResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
|
|
6143
6118
|
# * {Types::GetConfigurationBundleResponse#created_at #created_at} => Time
|
|
6144
6119
|
# * {Types::GetConfigurationBundleResponse#updated_at #updated_at} => Time
|
|
6120
|
+
# * {Types::GetConfigurationBundleResponse#kms_key_arn #kms_key_arn} => String
|
|
6145
6121
|
#
|
|
6146
6122
|
# @example Request syntax with placeholder values
|
|
6147
6123
|
#
|
|
@@ -6166,6 +6142,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6166
6142
|
# resp.lineage_metadata.commit_message #=> String
|
|
6167
6143
|
# resp.created_at #=> Time
|
|
6168
6144
|
# resp.updated_at #=> Time
|
|
6145
|
+
# resp.kms_key_arn #=> String
|
|
6169
6146
|
#
|
|
6170
6147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundle AWS API Documentation
|
|
6171
6148
|
#
|
|
@@ -6197,6 +6174,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6197
6174
|
# * {Types::GetConfigurationBundleVersionResponse#lineage_metadata #lineage_metadata} => Types::VersionLineageMetadata
|
|
6198
6175
|
# * {Types::GetConfigurationBundleVersionResponse#created_at #created_at} => Time
|
|
6199
6176
|
# * {Types::GetConfigurationBundleVersionResponse#version_created_at #version_created_at} => Time
|
|
6177
|
+
# * {Types::GetConfigurationBundleVersionResponse#kms_key_arn #kms_key_arn} => String
|
|
6200
6178
|
#
|
|
6201
6179
|
# @example Request syntax with placeholder values
|
|
6202
6180
|
#
|
|
@@ -6221,6 +6199,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6221
6199
|
# resp.lineage_metadata.commit_message #=> String
|
|
6222
6200
|
# resp.created_at #=> Time
|
|
6223
6201
|
# resp.version_created_at #=> Time
|
|
6202
|
+
# resp.kms_key_arn #=> String
|
|
6224
6203
|
#
|
|
6225
6204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetConfigurationBundleVersion AWS API Documentation
|
|
6226
6205
|
#
|
|
@@ -6231,36 +6210,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
6231
6210
|
req.send_request(options)
|
|
6232
6211
|
end
|
|
6233
6212
|
|
|
6234
|
-
# Retrieves dataset metadata
|
|
6235
|
-
#
|
|
6236
|
-
#
|
|
6237
|
-
# specific version's metadata. If absent, defaults to DRAFT (the
|
|
6238
|
-
# mutable working copy). Returns ResourceNotFoundException if the
|
|
6239
|
-
# specified version is not found.
|
|
6240
|
-
#
|
|
6241
|
-
# **Initial state after CreateDataset:** When CreateDataset completes
|
|
6242
|
-
# successfully (status transitions to ACTIVE), only a DRAFT working copy
|
|
6243
|
-
# exists. No published versions exist until CreateDatasetVersion is
|
|
6244
|
-
# called. At this point draftStatus is MODIFIED because the DRAFT has
|
|
6245
|
-
# content that has never been published.
|
|
6246
|
-
#
|
|
6247
|
-
# **Default version behavior:** When `datasetVersion` is omitted, the
|
|
6248
|
-
# operation returns the DRAFT working copy. To retrieve a specific
|
|
6249
|
-
# published version, pass the version number as a string (e.g.
|
|
6250
|
-
# `?datasetVersion=1`).
|
|
6251
|
-
#
|
|
6252
|
-
# **State guard:** Allowed for all statuses including DELETING. Returns
|
|
6253
|
-
# the dataset record with its current status so callers can observe the
|
|
6254
|
-
# deletion in progress.
|
|
6255
|
-
#
|
|
6256
|
-
# For paginated example IDs use ListDatasetExamples.
|
|
6213
|
+
# Retrieves dataset metadata. Use the `datasetVersion` query parameter
|
|
6214
|
+
# to retrieve a specific version's metadata. If absent, defaults to
|
|
6215
|
+
# DRAFT. For paginated example content, use `ListDatasetExamples`.
|
|
6257
6216
|
#
|
|
6258
6217
|
# @option params [required, String] :dataset_id
|
|
6259
6218
|
# The unique identifier of the dataset to retrieve.
|
|
6260
6219
|
#
|
|
6261
6220
|
# @option params [String] :dataset_version
|
|
6262
|
-
# Version to retrieve: "DRAFT" or a version number. Defaults to DRAFT
|
|
6263
|
-
# absent.
|
|
6221
|
+
# Version to retrieve: "DRAFT" or a version number. Defaults to DRAFT
|
|
6222
|
+
# if absent.
|
|
6264
6223
|
#
|
|
6265
6224
|
# @return [Types::GetDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6266
6225
|
#
|
|
@@ -6899,7 +6858,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6899
6858
|
# resp.memory.encryption_key_arn #=> String
|
|
6900
6859
|
# resp.memory.memory_execution_role_arn #=> String
|
|
6901
6860
|
# resp.memory.event_expiry_duration #=> Integer
|
|
6902
|
-
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
6861
|
+
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
6903
6862
|
# resp.memory.failure_reason #=> String
|
|
6904
6863
|
# resp.memory.created_at #=> Time
|
|
6905
6864
|
# resp.memory.updated_at #=> Time
|
|
@@ -6931,6 +6890,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6931
6890
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
|
|
6932
6891
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
|
|
6933
6892
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
6893
|
+
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
6934
6894
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
6935
6895
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
6936
6896
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -6947,6 +6907,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6947
6907
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
|
|
6948
6908
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
|
|
6949
6909
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
6910
|
+
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
6950
6911
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
6951
6912
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
6952
6913
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -6974,6 +6935,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6974
6935
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
|
|
6975
6936
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
|
|
6976
6937
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
6938
|
+
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
6977
6939
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
6978
6940
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
6979
6941
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -7180,6 +7142,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
7180
7142
|
# * {Types::GetOnlineEvaluationConfigResponse#rule #rule} => Types::Rule
|
|
7181
7143
|
# * {Types::GetOnlineEvaluationConfigResponse#data_source_config #data_source_config} => Types::DataSourceConfig
|
|
7182
7144
|
# * {Types::GetOnlineEvaluationConfigResponse#evaluators #evaluators} => Array<Types::EvaluatorReference>
|
|
7145
|
+
# * {Types::GetOnlineEvaluationConfigResponse#insights #insights} => Array<Types::Insight>
|
|
7146
|
+
# * {Types::GetOnlineEvaluationConfigResponse#clustering_config #clustering_config} => Types::ClusteringConfig
|
|
7183
7147
|
# * {Types::GetOnlineEvaluationConfigResponse#output_config #output_config} => Types::OutputConfig
|
|
7184
7148
|
# * {Types::GetOnlineEvaluationConfigResponse#evaluation_execution_role_arn #evaluation_execution_role_arn} => String
|
|
7185
7149
|
# * {Types::GetOnlineEvaluationConfigResponse#status #status} => String
|
|
@@ -7214,6 +7178,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
7214
7178
|
# resp.data_source_config.cloud_watch_logs.service_names[0] #=> String
|
|
7215
7179
|
# resp.evaluators #=> Array
|
|
7216
7180
|
# resp.evaluators[0].evaluator_id #=> String
|
|
7181
|
+
# resp.insights #=> Array
|
|
7182
|
+
# resp.insights[0].insight_id #=> String
|
|
7183
|
+
# resp.clustering_config.frequencies #=> Array
|
|
7184
|
+
# resp.clustering_config.frequencies[0] #=> String, one of "DAILY", "WEEKLY", "MONTHLY"
|
|
7217
7185
|
# resp.output_config.cloud_watch_config.log_group_name #=> String
|
|
7218
7186
|
# resp.evaluation_execution_role_arn #=> String
|
|
7219
7187
|
# resp.status #=> String, one of "ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "ERROR"
|
|
@@ -8474,31 +8442,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
8474
8442
|
req.send_request(options)
|
|
8475
8443
|
end
|
|
8476
8444
|
|
|
8477
|
-
# Returns paginated examples from the dataset.
|
|
8478
|
-
#
|
|
8479
|
-
#
|
|
8480
|
-
#
|
|
8481
|
-
# pinned to that version regardless of concurrent mutations or whether
|
|
8482
|
-
# `datasetVersion` is passed on subsequent requests. The
|
|
8483
|
-
# `datasetVersion` query parameter is only used for the first request
|
|
8484
|
-
# (when `nextToken` is absent); if omitted, defaults to DRAFT.
|
|
8485
|
-
#
|
|
8486
|
-
# **State guard:** Allowed for all statuses including DELETING.
|
|
8445
|
+
# Returns paginated examples from the dataset. The server embeds the
|
|
8446
|
+
# resolved version in the pagination token. Once pagination begins, all
|
|
8447
|
+
# subsequent pages are pinned to that version regardless of concurrent
|
|
8448
|
+
# mutations.
|
|
8487
8449
|
#
|
|
8488
8450
|
# @option params [required, String] :dataset_id
|
|
8489
8451
|
# The unique identifier of the dataset.
|
|
8490
8452
|
#
|
|
8491
8453
|
# @option params [String] :dataset_version
|
|
8492
|
-
# Version to paginate: "DRAFT" or a version number. Defaults to DRAFT
|
|
8493
|
-
# absent. Only used on the first request
|
|
8494
|
-
#
|
|
8495
|
-
# parameter is ignored.
|
|
8454
|
+
# Version to paginate: "DRAFT" or a version number. Defaults to DRAFT
|
|
8455
|
+
# if absent. Only used on the first request; for subsequent pages, the
|
|
8456
|
+
# version is extracted from the pagination token.
|
|
8496
8457
|
#
|
|
8497
8458
|
# @option params [Integer] :max_results
|
|
8498
|
-
# Maximum number of examples to return per page.
|
|
8499
|
-
# max: 1000. Response size is validated against 5 MB limit after
|
|
8500
|
-
# reading. For bulk access to all examples, use the `downloadUrl` field
|
|
8501
|
-
# from GetDataset.
|
|
8459
|
+
# Maximum number of examples to return per page.
|
|
8502
8460
|
#
|
|
8503
8461
|
# @option params [String] :next_token
|
|
8504
8462
|
# The token for the next page of results.
|
|
@@ -8542,8 +8500,6 @@ module Aws::BedrockAgentCoreControl
|
|
|
8542
8500
|
# Lists all published versions of a dataset, sorted by version number
|
|
8543
8501
|
# descending (newest first). Does not include the DRAFT working copy.
|
|
8544
8502
|
#
|
|
8545
|
-
# **State guard:** Allowed for all statuses including DELETING.
|
|
8546
|
-
#
|
|
8547
8503
|
# @option params [required, String] :dataset_id
|
|
8548
8504
|
# The unique identifier of the dataset.
|
|
8549
8505
|
#
|
|
@@ -8585,8 +8541,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8585
8541
|
req.send_request(options)
|
|
8586
8542
|
end
|
|
8587
8543
|
|
|
8588
|
-
# Lists all datasets in the caller's account, paginated.
|
|
8589
|
-
# URLs in list results.
|
|
8544
|
+
# Lists all datasets in the caller's account, paginated.
|
|
8590
8545
|
#
|
|
8591
8546
|
# @option params [String] :next_token
|
|
8592
8547
|
# The token for the next page of results.
|
|
@@ -8933,7 +8888,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8933
8888
|
# resp.memories #=> Array
|
|
8934
8889
|
# resp.memories[0].arn #=> String
|
|
8935
8890
|
# resp.memories[0].id #=> String
|
|
8936
|
-
# resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
8891
|
+
# resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
8937
8892
|
# resp.memories[0].created_at #=> Time
|
|
8938
8893
|
# resp.memories[0].updated_at #=> Time
|
|
8939
8894
|
# resp.next_token #=> String
|
|
@@ -9025,6 +8980,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
9025
8980
|
# resp.online_evaluation_configs[0].created_at #=> Time
|
|
9026
8981
|
# resp.online_evaluation_configs[0].updated_at #=> Time
|
|
9027
8982
|
# resp.online_evaluation_configs[0].failure_reason #=> String
|
|
8983
|
+
# resp.online_evaluation_configs[0].insights #=> Array
|
|
8984
|
+
# resp.online_evaluation_configs[0].insights[0].insight_id #=> String
|
|
8985
|
+
# resp.online_evaluation_configs[0].clustering_config.frequencies #=> Array
|
|
8986
|
+
# resp.online_evaluation_configs[0].clustering_config.frequencies[0] #=> String, one of "DAILY", "WEEKLY", "MONTHLY"
|
|
9028
8987
|
# resp.next_token #=> String
|
|
9029
8988
|
#
|
|
9030
8989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListOnlineEvaluationConfigs AWS API Documentation
|
|
@@ -10633,6 +10592,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
10633
10592
|
# The source that created this version, including the source name and
|
|
10634
10593
|
# optional ARN.
|
|
10635
10594
|
#
|
|
10595
|
+
# @option params [String] :kms_key_arn
|
|
10596
|
+
# Optional KMS key ARN for encrypting component configurations. If
|
|
10597
|
+
# provided, components will be encrypted with this key. If the bundle
|
|
10598
|
+
# already has a KMS key, this rotates to the new key.
|
|
10599
|
+
#
|
|
10636
10600
|
# @return [Types::UpdateConfigurationBundleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10637
10601
|
#
|
|
10638
10602
|
# * {Types::UpdateConfigurationBundleResponse#bundle_arn #bundle_arn} => String
|
|
@@ -10660,6 +10624,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
10660
10624
|
# name: "String", # required
|
|
10661
10625
|
# arn: "String",
|
|
10662
10626
|
# },
|
|
10627
|
+
# kms_key_arn: "KmsKeyArn",
|
|
10663
10628
|
# })
|
|
10664
10629
|
#
|
|
10665
10630
|
# @example Response structure
|
|
@@ -10679,12 +10644,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
10679
10644
|
end
|
|
10680
10645
|
|
|
10681
10646
|
# Updates a dataset's metadata. Synchronous operation. Only provided
|
|
10682
|
-
# fields are updated; omitted fields remain unchanged.
|
|
10683
|
-
#
|
|
10684
|
-
#
|
|
10685
|
-
# UpdateDatasetExamples, or DeleteDatasetExamples.
|
|
10686
|
-
#
|
|
10687
|
-
# Cannot update: name, schemaType, kmsKeyArn (immutable after creation).
|
|
10647
|
+
# fields are updated; omitted fields remain unchanged. To modify dataset
|
|
10648
|
+
# content, use `AddDatasetExamples`, `UpdateDatasetExamples`, or
|
|
10649
|
+
# `DeleteDatasetExamples`.
|
|
10688
10650
|
#
|
|
10689
10651
|
# @option params [required, String] :dataset_id
|
|
10690
10652
|
# The unique identifier of the dataset to update.
|
|
@@ -10735,24 +10697,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10735
10697
|
req.send_request(options)
|
|
10736
10698
|
end
|
|
10737
10699
|
|
|
10738
|
-
# Updates multiple existing examples in-place on DRAFT.
|
|
10739
|
-
#
|
|
10740
|
-
#
|
|
10741
|
-
#
|
|
10742
|
-
# the entire batch is rejected with ValidationException — no examples
|
|
10743
|
-
# are updated (all-or-nothing semantics).
|
|
10744
|
-
#
|
|
10745
|
-
# **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
|
|
10746
|
-
# Use CreateDatasetVersion to publish DRAFT as a new numbered version.
|
|
10747
|
-
#
|
|
10748
|
-
# Fails with ResourceNotFoundException if any exampleId does not exist
|
|
10749
|
-
# in DRAFT. To add new examples, use AddDatasetExamples instead.
|
|
10750
|
-
#
|
|
10751
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
10752
|
-
# the dataset status is not in \{DRAFT, ACTIVE}.
|
|
10753
|
-
#
|
|
10754
|
-
# **Request size limit:** Max 5 MB total request body. Max 1000 examples
|
|
10755
|
-
# per call.
|
|
10700
|
+
# Updates multiple existing examples in-place on DRAFT. All examples are
|
|
10701
|
+
# validated against the dataset's schema type before any writes occur.
|
|
10702
|
+
# If any example fails validation, the entire batch is rejected
|
|
10703
|
+
# (all-or-nothing semantics).
|
|
10756
10704
|
#
|
|
10757
10705
|
# @option params [required, String] :dataset_id
|
|
10758
10706
|
# The unique identifier of the dataset.
|
|
@@ -10773,11 +10721,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10773
10721
|
#
|
|
10774
10722
|
# @option params [required, Array<Hash,Array,String,Numeric,Boolean>] :examples
|
|
10775
10723
|
# Examples to update. Each element is a JSON object containing a
|
|
10776
|
-
# required `exampleId`
|
|
10777
|
-
#
|
|
10778
|
-
# before persistence; the remaining document is validated against the
|
|
10779
|
-
# dataset's schemaType. Max 1000 examples per call. Total request body
|
|
10780
|
-
# must not exceed 5 MB.
|
|
10724
|
+
# required `exampleId` field identifying the existing example, plus the
|
|
10725
|
+
# replacement fields. Maximum 1000 examples per call.
|
|
10781
10726
|
#
|
|
10782
10727
|
# @return [Types::UpdateDatasetExamplesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10783
10728
|
#
|
|
@@ -12171,6 +12116,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12171
12116
|
# {
|
|
12172
12117
|
# key: "MetadataKey", # required
|
|
12173
12118
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12119
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12174
12120
|
# extraction_config: {
|
|
12175
12121
|
# llm_extraction_config: {
|
|
12176
12122
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12204,6 +12150,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12204
12150
|
# {
|
|
12205
12151
|
# key: "MetadataKey", # required
|
|
12206
12152
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12153
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12207
12154
|
# extraction_config: {
|
|
12208
12155
|
# llm_extraction_config: {
|
|
12209
12156
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12237,6 +12184,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12237
12184
|
# {
|
|
12238
12185
|
# key: "MetadataKey", # required
|
|
12239
12186
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12187
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12240
12188
|
# extraction_config: {
|
|
12241
12189
|
# llm_extraction_config: {
|
|
12242
12190
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12311,6 +12259,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12311
12259
|
# {
|
|
12312
12260
|
# key: "MetadataKey", # required
|
|
12313
12261
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12262
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12314
12263
|
# extraction_config: {
|
|
12315
12264
|
# llm_extraction_config: {
|
|
12316
12265
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12361,6 +12310,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12361
12310
|
# {
|
|
12362
12311
|
# key: "MetadataKey", # required
|
|
12363
12312
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12313
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12364
12314
|
# extraction_config: {
|
|
12365
12315
|
# llm_extraction_config: {
|
|
12366
12316
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12397,6 +12347,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12397
12347
|
# {
|
|
12398
12348
|
# key: "MetadataKey", # required
|
|
12399
12349
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12350
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12400
12351
|
# extraction_config: {
|
|
12401
12352
|
# llm_extraction_config: {
|
|
12402
12353
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12425,6 +12376,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12425
12376
|
# {
|
|
12426
12377
|
# key: "MetadataKey", # required
|
|
12427
12378
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12379
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12428
12380
|
# extraction_config: {
|
|
12429
12381
|
# llm_extraction_config: {
|
|
12430
12382
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12502,6 +12454,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12502
12454
|
# {
|
|
12503
12455
|
# key: "MetadataKey", # required
|
|
12504
12456
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12457
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12505
12458
|
# extraction_config: {
|
|
12506
12459
|
# llm_extraction_config: {
|
|
12507
12460
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12536,6 +12489,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12536
12489
|
# {
|
|
12537
12490
|
# key: "MetadataKey", # required
|
|
12538
12491
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12492
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12539
12493
|
# extraction_config: {
|
|
12540
12494
|
# llm_extraction_config: {
|
|
12541
12495
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12587,6 +12541,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12587
12541
|
# {
|
|
12588
12542
|
# key: "MetadataKey", # required
|
|
12589
12543
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12544
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12590
12545
|
# extraction_config: {
|
|
12591
12546
|
# llm_extraction_config: {
|
|
12592
12547
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12649,7 +12604,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12649
12604
|
# resp.memory.encryption_key_arn #=> String
|
|
12650
12605
|
# resp.memory.memory_execution_role_arn #=> String
|
|
12651
12606
|
# resp.memory.event_expiry_duration #=> Integer
|
|
12652
|
-
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
12607
|
+
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
12653
12608
|
# resp.memory.failure_reason #=> String
|
|
12654
12609
|
# resp.memory.created_at #=> Time
|
|
12655
12610
|
# resp.memory.updated_at #=> Time
|
|
@@ -12681,6 +12636,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12681
12636
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
|
|
12682
12637
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
|
|
12683
12638
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
12639
|
+
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
12684
12640
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
12685
12641
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
12686
12642
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -12697,6 +12653,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12697
12653
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
|
|
12698
12654
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
|
|
12699
12655
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
12656
|
+
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
12700
12657
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
12701
12658
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
12702
12659
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -12724,6 +12681,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12724
12681
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
|
|
12725
12682
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
|
|
12726
12683
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
12684
|
+
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
12727
12685
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
12728
12686
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
12729
12687
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -13089,6 +13047,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
13089
13047
|
# @option params [Array<Types::EvaluatorReference>] :evaluators
|
|
13090
13048
|
# The updated list of evaluators to apply during online evaluation.
|
|
13091
13049
|
#
|
|
13050
|
+
# @option params [Array<Types::Insight>] :insights
|
|
13051
|
+
# The updated list of insight types to run against agent sessions.
|
|
13052
|
+
#
|
|
13053
|
+
# @option params [Types::ClusteringConfig] :clustering_config
|
|
13054
|
+
# The updated clustering configuration for periodic batch evaluation.
|
|
13055
|
+
#
|
|
13092
13056
|
# @option params [String] :evaluation_execution_role_arn
|
|
13093
13057
|
# The updated Amazon Resource Name (ARN) of the IAM role used for
|
|
13094
13058
|
# evaluation execution.
|
|
@@ -13142,6 +13106,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13142
13106
|
# evaluator_id: "EvaluatorId",
|
|
13143
13107
|
# },
|
|
13144
13108
|
# ],
|
|
13109
|
+
# insights: [
|
|
13110
|
+
# {
|
|
13111
|
+
# insight_id: "InsightId", # required
|
|
13112
|
+
# },
|
|
13113
|
+
# ],
|
|
13114
|
+
# clustering_config: {
|
|
13115
|
+
# frequencies: ["DAILY"], # required, accepts DAILY, WEEKLY, MONTHLY
|
|
13116
|
+
# },
|
|
13145
13117
|
# evaluation_execution_role_arn: "RoleArn",
|
|
13146
13118
|
# execution_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
13147
13119
|
# })
|
|
@@ -14108,7 +14080,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14108
14080
|
tracer: tracer
|
|
14109
14081
|
)
|
|
14110
14082
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
14111
|
-
context[:gem_version] = '1.
|
|
14083
|
+
context[:gem_version] = '1.53.0'
|
|
14112
14084
|
Seahorse::Client::Request.new(handlers, context)
|
|
14113
14085
|
end
|
|
14114
14086
|
|