Skip to main content

configuration_bundle_versions

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

Overview

Nameconfiguration_bundle_versions
TypeResource
Idaws.bedrock_agentcore_control.configuration_bundle_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bundle_arnstringThe Amazon Resource Name (ARN) of the configuration bundle. (pattern: <code>arn:aws[a-zA-Z-]*:bedrock-agentcore:[a-z0-9-]+:[0-9]{12}:configuration-bundle/[a-zA-Z][a-zA-Z0-9-_]{0,99}-[a-zA-Z0-9]{10}</code>)
bundle_idstringThe unique identifier of the configuration bundle. (pattern: <code>[a-zA-Z][a-zA-Z0-9-_]{0,99}-[a-zA-Z0-9]{10}</code>)
bundle_namestringThe name of the configuration bundle. (pattern: <code>[a-zA-Z][a-zA-Z0-9_]{0,99}</code>)
componentsobjectA map of component identifiers to their configurations for this version.
created_atstring (date-time)The timestamp when the configuration bundle was created.
descriptionstringThe description of the configuration bundle. (pattern: <code>.+</code>)
kms_key_arnstringKMS key ARN used to encrypt component configurations, if CMK was provided. (pattern: <code>arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}</code>)
lineage_metadataobjectThe version lineage metadata, including parent versions, branch name, and creation source.
version_created_atstring (date-time)The timestamp when this specific version was created.
version_idstringThe version identifier of this configuration bundle version. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_configuration_bundle_versionselectbundle_id, version_id, regionGets a specific version of a configuration bundle by its version identifier.
list_configuration_bundle_versionsselectbundle_id, regionnextToken, maxResultsLists all versions of a configuration bundle, with optional filtering by branch name or creation source.

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
bundle_idstringThe unique identifier of the configuration bundle to list versions for.
regionstringAWS region (default: us-east-1)
version_idstringThe version identifier of the configuration bundle version to retrieve.
maxResultsintegerThe maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
nextTokenstringIf the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

SELECT examples

Gets a specific version of a configuration bundle by its version identifier.

SELECT
bundle_arn,
bundle_id,
bundle_name,
components,
created_at,
description,
kms_key_arn,
lineage_metadata,
version_created_at,
version_id
FROM aws.bedrock_agentcore_control.configuration_bundle_versions
WHERE bundle_id = '{{ bundle_id }}' -- required
AND version_id = '{{ version_id }}' -- required
AND region = '{{ region }}' -- required
;