AWS cli documentation change
Summary
Added --filesystem-configurations parameter to update filesystem configurations mounted into AgentCore Runtime sessions
Security assessment
This change adds documentation for updating filesystem configurations feature. While filesystem access control is a security consideration, this documentation doesn't address any specific security issue or vulnerability.
Diff
diff --git a/cli/latest/reference/bedrock-agentcore-control/update-agent-runtime.md b/cli/latest/reference/bedrock-agentcore-control/update-agent-runtime.md index 1a20af239..a1053391f 100644 --- a//cli/latest/reference/bedrock-agentcore-control/update-agent-runtime.md +++ b//cli/latest/reference/bedrock-agentcore-control/update-agent-runtime.md @@ -15 +15 @@ - * [AWS CLI 2.34.14 Command Reference](../../index.html) » + * [AWS CLI 2.34.16 Command Reference](../../index.html) » @@ -77,0 +78 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/bedroc + [--filesystem-configurations <value>] @@ -708,0 +710,54 @@ JSON Syntax: +`--filesystem-configurations` (list) + +> The updated filesystem configurations to mount into the AgentCore Runtime. +> +> Constraints: +> +> * min: `0` +> * max: `1` +> + +> +> (tagged union structure) +> +>> Configuration for a filesystem that can be mounted into the AgentCore Runtime. +>> +>> ### Note +>> +>> This is a Tagged Union structure. Only one of the following top level keys can be set: `sessionStorage`. +>> +>> sessionStorage -> (structure) +>> +>>> Configuration for session storage. Session storage provides persistent storage that is preserved across AgentCore Runtime session invocations. +>>> +>>> mountPath -> (string) [required] +>>> +>>>> The mount path for the session storage filesystem inside the AgentCore Runtime. The path must be under `/mnt` with exactly one subdirectory level (for example, `/mnt/data` ). +>>>> +>>>> Constraints: +>>>> +>>>> * min: `6` +>>>> * max: `200` +>>>> * pattern: `/mnt/[a-zA-Z0-9._-]+/?` +>>>> + + +Shorthand Syntax: + + + sessionStorage={mountPath=string} ... + + +JSON Syntax: + + + [ + { + "sessionStorage": { + "mountPath": "string" + } + } + ... + ] + + @@ -914 +969 @@ status -> (string) - * [AWS CLI 2.34.14 Command Reference](../../index.html) » + * [AWS CLI 2.34.16 Command Reference](../../index.html) »