workload_access_tokens
Creates, updates, deletes, gets or lists a workload_access_tokens resource.
Overview
| Name | workload_access_tokens |
| Type | Resource |
| Id | aws.bedrock_agentcore.workload_access_tokens |
Fields
The following fields are returned by SELECT queries:
- get_workload_access_token
| Name | Datatype | Description |
|---|---|---|
workload_access_token | string | An opaque token representing the identity of both the workload and the user. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_workload_access_token | select | region | Obtains a workload access token for agentic workloads not acting on behalf of a user. |
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
Obtains a workload access token for agentic workloads not acting on behalf of a user.
SELECT
workload_access_token
FROM aws.bedrock_agentcore.workload_access_tokens
WHERE region = '{{ region }}' -- required
;