import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Definition of AWS::BedrockAgentCore::ConfigurationBundle Resource Type
 */
export declare function getConfigurationBundle(args: GetConfigurationBundleArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationBundleResult>;
export interface GetConfigurationBundleArgs {
    /**
     * The Amazon Resource Name (ARN) of the configuration bundle.
     */
    bundleArn: string;
}
export interface GetConfigurationBundleResult {
    /**
     * The Amazon Resource Name (ARN) of the configuration bundle.
     */
    readonly bundleArn?: string;
    /**
     * The unique identifier of the configuration bundle.
     */
    readonly bundleId?: string;
    /**
     * A map of component identifiers to their configurations.
     */
    readonly components?: {
        [key: string]: outputs.bedrockagentcore.ConfigurationBundleComponentConfiguration;
    };
    /**
     * The timestamp when the configuration bundle was created.
     */
    readonly createdAt?: string;
    /**
     * The description for the configuration bundle.
     */
    readonly description?: string;
    /**
     * The ARN of the KMS key used to encrypt component configurations.
     */
    readonly kmsKeyArn?: string;
    readonly lineageMetadata?: outputs.bedrockagentcore.ConfigurationBundleVersionLineageMetadata;
    /**
     * Tags to assign to the configuration bundle.
     */
    readonly tags?: outputs.Tag[];
    /**
     * The timestamp when the configuration bundle was last updated.
     */
    readonly updatedAt?: string;
    /**
     * The version identifier of the configuration bundle.
     */
    readonly versionId?: string;
}
/**
 * Definition of AWS::BedrockAgentCore::ConfigurationBundle Resource Type
 */
export declare function getConfigurationBundleOutput(args: GetConfigurationBundleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationBundleResult>;
export interface GetConfigurationBundleOutputArgs {
    /**
     * The Amazon Resource Name (ARN) of the configuration bundle.
     */
    bundleArn: pulumi.Input<string>;
}
