Skip to main content

resource_api_keys

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

Overview

Nameresource_api_keys
TypeResource
Idaws.bedrock_agentcore.resource_api_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
api_keystringThe API key associated with the resource requested.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_resource_api_keyselectregionRetrieves the API key associated with an API key credential provider.

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

Retrieves the API key associated with an API key credential provider.

SELECT
api_key
FROM aws.bedrock_agentcore.resource_api_keys
WHERE region = '{{ region }}' -- required
;