workload_access_token_for_user_ids
Creates, updates, deletes, gets or lists a workload_access_token_for_user_ids resource.
Overview
| Name | workload_access_token_for_user_ids |
| Type | Resource |
| Id | aws.bedrock_agentcore.workload_access_token_for_user_ids |
Fields
The following fields are returned by SELECT queries:
- get_workload_access_token_for_user_id
| Name | Datatype | Description |
|---|---|---|
workload_access_token | string | The access token for the specified workload. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_workload_access_token_for_user_id | select | region | Obtains a workload access token for agentic workloads acting on behalf of a user, using the user's ID. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_workload_access_token_for_user_id
Obtains a workload access token for agentic workloads acting on behalf of a user, using the user's ID.
SELECT
workload_access_token
FROM aws.bedrock_agentcore.workload_access_token_for_user_ids
WHERE region = '{{ region }}' -- required
;