@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)
64 lines (63 loc) • 2.14 kB
TypeScript
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>;
}