Skip to content

Bedrock Agentcore Control  >  Operations  >  get_configuration_bundle_version

get_configuration_bundle_version

Operation

get_configuration_bundle_version async

get_configuration_bundle_version(input: GetConfigurationBundleVersionInput, plugins: list[Plugin] | None = None) -> GetConfigurationBundleVersionOutput

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

Parameters:

Name Type Description Default
input GetConfigurationBundleVersionInput

An instance of GetConfigurationBundleVersionInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
GetConfigurationBundleVersionOutput

An instance of GetConfigurationBundleVersionOutput.

Input

GetConfigurationBundleVersionInput dataclass

Dataclass for GetConfigurationBundleVersionInput structure.

Attributes

bundle_id class-attribute instance-attribute
bundle_id: str | None = None

The unique identifier of the configuration bundle.

version_id class-attribute instance-attribute
version_id: str | None = None

The version identifier of the configuration bundle version to retrieve.

Output

GetConfigurationBundleVersionOutput dataclass

Dataclass for GetConfigurationBundleVersionOutput structure.

Attributes

bundle_arn instance-attribute
bundle_arn: str

The Amazon Resource Name (ARN) of the configuration bundle.

bundle_id instance-attribute
bundle_id: str

The unique identifier of the configuration bundle.

bundle_name instance-attribute
bundle_name: str

The name of the configuration bundle.

components instance-attribute
components: dict[str, ComponentConfiguration]

A map of component identifiers to their configurations for this version.

created_at instance-attribute
created_at: datetime

The timestamp when the configuration bundle was created.

description class-attribute instance-attribute
description: str | None = field(repr=False, default=None)

The description of the configuration bundle.

kms_key_arn class-attribute instance-attribute
kms_key_arn: str | None = None

KMS key ARN used to encrypt component configurations, if CMK was provided.

lineage_metadata class-attribute instance-attribute
lineage_metadata: VersionLineageMetadata | None = None

The version lineage metadata, including parent versions, branch name, and creation source.

version_created_at instance-attribute
version_created_at: datetime

The timestamp when this specific version was created.

version_id instance-attribute
version_id: str

The version identifier of this configuration bundle version.