Skip to main content

harnesses

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

Overview

Nameharnesses
TypeResource
Idaws.bedrock_agentcore_control.harnesses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe 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_atstring (date-time)The timestamp when the harness was created.
harness_idstringThe ID of the harness. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,39}-[a-zA-Z0-9]{10}</code>)
harness_namestringThe name of the harness. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,39}</code>)
harness_versionstringThe latest version of the harness. (pattern: <code>([1-9][0-9]{0,4})</code>)
statusstringThe current status of the harness. (CREATING, CREATE_FAILED, UPDATING, UPDATE_FAILED, READY, DELETING, DELETE_FAILED)
updated_atstring (date-time)The timestamp when the harness was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_harnessesselectregionmaxResults, nextTokenOperation 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return in a single call.
nextTokenstringThe token for the next set of results.

SELECT examples

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 }}'
;