import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Definition of AWS::BedrockAgentCore::ConfigurationBundle Resource Type */ export declare class ConfigurationBundle extends pulumi.CustomResource { /** * Get an existing ConfigurationBundle resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ConfigurationBundle; /** * Returns true if the given object is an instance of ConfigurationBundle. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ConfigurationBundle; /** * The branch name for version tracking. */ readonly branchName: pulumi.Output; /** * The Amazon Resource Name (ARN) of the configuration bundle. */ readonly bundleArn: pulumi.Output; /** * The unique identifier of the configuration bundle. */ readonly bundleId: pulumi.Output; /** * The name for the configuration bundle. Names must be unique within your account. */ readonly bundleName: pulumi.Output; /** * A commit message describing the version of the configuration bundle. */ readonly commitMessage: pulumi.Output; /** * A map of component identifiers to their configurations. */ readonly components: pulumi.Output<{ [key: string]: outputs.bedrockagentcore.ConfigurationBundleComponentConfiguration; }>; /** * The timestamp when the configuration bundle was created. */ readonly createdAt: pulumi.Output; readonly createdBy: pulumi.Output; /** * The description for the configuration bundle. */ readonly description: pulumi.Output; /** * The ARN of the KMS key used to encrypt component configurations. */ readonly kmsKeyArn: pulumi.Output; readonly lineageMetadata: pulumi.Output; /** * Tags to assign to the configuration bundle. */ readonly tags: pulumi.Output; /** * The timestamp when the configuration bundle was last updated. */ readonly updatedAt: pulumi.Output; /** * The version identifier of the configuration bundle. */ readonly versionId: pulumi.Output; /** * Create a ConfigurationBundle resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ConfigurationBundleArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ConfigurationBundle resource. */ export interface ConfigurationBundleArgs { /** * The branch name for version tracking. */ branchName?: pulumi.Input; /** * The name for the configuration bundle. Names must be unique within your account. */ bundleName?: pulumi.Input; /** * A commit message describing the version of the configuration bundle. */ commitMessage?: pulumi.Input; /** * A map of component identifiers to their configurations. */ components: pulumi.Input<{ [key: string]: pulumi.Input; }>; createdBy?: pulumi.Input; /** * The description for the configuration bundle. */ description?: pulumi.Input; /** * The ARN of the KMS key used to encrypt component configurations. */ kmsKeyArn?: pulumi.Input; /** * Tags to assign to the configuration bundle. */ tags?: pulumi.Input[]>; }