Skip to main content

workload_access_token_for_user_ids

Creates, updates, deletes, gets or lists a workload_access_token_for_user_ids resource.

Overview

Nameworkload_access_token_for_user_ids
TypeResource
Idaws.bedrock_agentcore.workload_access_token_for_user_ids

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
workload_access_tokenstringThe access token for the specified workload.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_workload_access_token_for_user_idselectregionObtains 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;