harnesses
Creates, updates, deletes, gets or lists a harnesses resource.
Overview
| Name | harnesses |
| Type | Resource |
| Id | aws.bedrock_agentcore_control.harnesses |
Fields
The following fields are returned by SELECT queries:
- list_harnesses
| Name | Datatype | Description |
|---|---|---|
arn | string | The ARN of the harness. (pattern: <code>arn:([^:]+)?:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:harness/[a-zA-Z][a-zA-Z0-9_]{0,39}-[a-zA-Z0-9]{10}</code>) |
created_at | string (date-time) | The timestamp when the harness was created. |
harness_id | string | The ID of the harness. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,39}-[a-zA-Z0-9]{10}</code>) |
harness_name | string | The name of the harness. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,39}</code>) |
harness_version | string | The latest version of the harness. (pattern: <code>([1-9][0-9]{0,4})</code>) |
status | string | The current status of the harness. (CREATING, CREATE_FAILED, UPDATING, UPDATE_FAILED, READY, DELETING, DELETE_FAILED) |
updated_at | string (date-time) | The timestamp when the harness was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_harnesses | select | region | maxResults, nextToken | Operation to list harnesses. |
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) |
maxResults | integer | The maximum number of results to return in a single call. |
nextToken | string | The token for the next set of results. |
SELECT examples
- list_harnesses
Operation to list harnesses.
SELECT
arn,
created_at,
harness_id,
harness_name,
harness_version,
status,
updated_at
FROM aws.bedrock_agentcore_control.harnesses
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;