BedrockAgentCoreControl / Client / get_configuration_bundle_version

get_configuration_bundle_version

BedrockAgentCoreControl.Client.get_configuration_bundle_version(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.get_configuration_bundle_version(
    bundleId='string',
    versionId='string'
)
Parameters:
  • bundleId (string) –

    [REQUIRED]

    The unique identifier of the configuration bundle.

  • versionId (string) –

    [REQUIRED]

    The version identifier of the configuration bundle version to retrieve.

Return type:

dict

Returns:

Response Syntax

{
    'bundleArn': 'string',
    'bundleId': 'string',
    'bundleName': 'string',
    'description': 'string',
    'versionId': 'string',
    'components': {
        'string': {
            'configuration': {...}|[...]|123|123.4|'string'|True|None
        }
    },
    'lineageMetadata': {
        'parentVersionIds': [
            'string',
        ],
        'branchName': 'string',
        'createdBy': {
            'name': 'string',
            'arn': 'string'
        },
        'commitMessage': 'string'
    },
    'createdAt': datetime(2015, 1, 1),
    'versionCreatedAt': datetime(2015, 1, 1)
}

Response Structure

  • (dict) –

    • bundleArn (string) –

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

    • bundleId (string) –

      The unique identifier of the configuration bundle.

    • bundleName (string) –

      The name of the configuration bundle.

    • description (string) –

      The description of the configuration bundle.

    • versionId (string) –

      The version identifier of this configuration bundle version.

    • components (dict) –

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

      • (string) –

        • (dict) –

          The configuration for a component within a configuration bundle. The component type is inferred from the component identifier ARN.

          • configuration (document) –

            The configuration values as a flexible JSON document.

    • lineageMetadata (dict) –

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

      • parentVersionIds (list) –

        A list of parent version identifiers. Regular commits have 0-1 parents. Merge commits have 2 parents: the target branch parent and the source branch parent. The first parent represents the primary lineage.

        • (string) –

      • branchName (string) –

        The branch name for this version. If not specified, inherits the parent’s branch or defaults to mainline.

      • createdBy (dict) –

        The source that created this version.

        • name (string) –

          The name of the source (for example, user, optimization-job, or system).

        • arn (string) –

          The Amazon Resource Name (ARN) of the source, if applicable (for example, a user ARN or optimization job ARN).

      • commitMessage (string) –

        A commit message describing the changes in this version.

    • createdAt (datetime) –

      The timestamp when the configuration bundle was created.

    • versionCreatedAt (datetime) –

      The timestamp when this specific version was created.

Exceptions

  • BedrockAgentCoreControl.Client.exceptions.ValidationException

  • BedrockAgentCoreControl.Client.exceptions.AccessDeniedException

  • BedrockAgentCoreControl.Client.exceptions.ResourceNotFoundException

  • BedrockAgentCoreControl.Client.exceptions.ThrottlingException

  • BedrockAgentCoreControl.Client.exceptions.InternalServerException