UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

119 lines (118 loc) 4.6 kB
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<pulumi.ID>, 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<string | undefined>; /** * The Amazon Resource Name (ARN) of the configuration bundle. */ readonly bundleArn: pulumi.Output<string>; /** * The unique identifier of the configuration bundle. */ readonly bundleId: pulumi.Output<string>; /** * The name for the configuration bundle. Names must be unique within your account. */ readonly bundleName: pulumi.Output<string>; /** * A commit message describing the version of the configuration bundle. */ readonly commitMessage: pulumi.Output<string | undefined>; /** * 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<string>; readonly createdBy: pulumi.Output<outputs.bedrockagentcore.ConfigurationBundleVersionCreatedBySource | undefined>; /** * The description for the configuration bundle. */ readonly description: pulumi.Output<string | undefined>; /** * The ARN of the KMS key used to encrypt component configurations. */ readonly kmsKeyArn: pulumi.Output<string | undefined>; readonly lineageMetadata: pulumi.Output<outputs.bedrockagentcore.ConfigurationBundleVersionLineageMetadata>; /** * Tags to assign to the configuration bundle. */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * The timestamp when the configuration bundle was last updated. */ readonly updatedAt: pulumi.Output<string>; /** * The version identifier of the configuration bundle. */ readonly versionId: pulumi.Output<string>; /** * 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<string>; /** * The name for the configuration bundle. Names must be unique within your account. */ bundleName?: pulumi.Input<string>; /** * A commit message describing the version of the configuration bundle. */ commitMessage?: pulumi.Input<string>; /** * A map of component identifiers to their configurations. */ components: pulumi.Input<{ [key: string]: pulumi.Input<inputs.bedrockagentcore.ConfigurationBundleComponentConfigurationArgs>; }>; createdBy?: pulumi.Input<inputs.bedrockagentcore.ConfigurationBundleVersionCreatedBySourceArgs>; /** * The description for the configuration bundle. */ description?: pulumi.Input<string>; /** * The ARN of the KMS key used to encrypt component configurations. */ kmsKeyArn?: pulumi.Input<string>; /** * Tags to assign to the configuration bundle. */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; }