import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of AWS::Bedrock::AgentAlias Resource Type */ export declare class AgentAlias extends pulumi.CustomResource { /** * Get an existing AgentAlias 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): AgentAlias; /** * Returns true if the given object is an instance of AgentAlias. 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 AgentAlias; /** * Arn representation of the Agent Alias. */ readonly agentAliasArn: pulumi.Output; /** * The list of history events for an alias for an Agent. */ readonly agentAliasHistoryEvents: pulumi.Output; /** * Id for an Agent Alias generated at the server side. */ readonly agentAliasId: pulumi.Output; /** * Name for a resource. */ readonly agentAliasName: pulumi.Output; /** * The status of the alias of the agent and whether it is ready for use. The following statuses are possible: * * - CREATING – The agent alias is being created. * - PREPARED – The agent alias is finished being created or updated and is ready to be invoked. * - FAILED – The agent alias API operation failed. * - UPDATING – The agent alias is being updated. * - DELETING – The agent alias is being deleted. * - DISSOCIATED - The agent alias has no version associated with it. */ readonly agentAliasStatus: pulumi.Output; /** * Identifier for a resource. */ readonly agentId: pulumi.Output; /** * Time Stamp. */ readonly createdAt: pulumi.Output; /** * Description of the Resource. */ readonly description: pulumi.Output; /** * Routing configuration for an Agent alias. */ readonly routingConfiguration: pulumi.Output; /** * Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources: * * - [Tag naming limits and requirements](https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html#tag-conventions) * - [Tagging best practices](https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html#tag-best-practices) */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Time Stamp. */ readonly updatedAt: pulumi.Output; /** * Create a AgentAlias 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: AgentAliasArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AgentAlias resource. */ export interface AgentAliasArgs { /** * Name for a resource. */ agentAliasName?: pulumi.Input; /** * Identifier for a resource. */ agentId: pulumi.Input; /** * Description of the Resource. */ description?: pulumi.Input; /** * Routing configuration for an Agent alias. */ routingConfiguration?: pulumi.Input[]>; /** * Metadata that you can assign to a resource as key-value pairs. For more information, see the following resources: * * - [Tag naming limits and requirements](https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html#tag-conventions) * - [Tagging best practices](https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html#tag-best-practices) */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }