AWS bedrock-agentcore documentation change
Summary
Added documentation for loading datasets from Dataset Management Service and changed section heading to 'Dataset encryption'
Security assessment
The heading change to 'Dataset encryption' strongly indicates new security documentation about data encryption features. The added Dataset Management Service integration suggests secure centralized dataset handling, though no specific vulnerabilities are addressed.
Diff
diff --git a/bedrock-agentcore/latest/devguide/dataset-evaluations-on-demand.md b/bedrock-agentcore/latest/devguide/dataset-evaluations-on-demand.md index f012a8d12..77131735f 100644 --- a//bedrock-agentcore/latest/devguide/dataset-evaluations-on-demand.md +++ b//bedrock-agentcore/latest/devguide/dataset-evaluations-on-demand.md @@ -83 +83 @@ The following example loads a dataset from a JSON file and runs the on-demand ev - # Load dataset (see Dataset schema for format) + # Load dataset from a local file (see Dataset schema for format) @@ -85,0 +86,5 @@ The following example loads a dataset from a JSON file and runs the on-demand ev + # Or load from the Dataset Management service + from bedrock_agentcore.evaluation import DatasetClient, DatasetManagementServiceProvider + ds_client = DatasetClient(region_name=REGION) + dataset = DatasetManagementServiceProvider(dataset_id="my-dataset-id", client=ds_client).get_dataset() + @@ -201 +206 @@ To use the Amazon Web Services Documentation, Javascript must be enabled. Please -Dataset schema +Dataset encryption