@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)
118 lines (117 loc) • 4.65 kB
TypeScript
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<pulumi.ID>, 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<string>;
/**
* The list of history events for an alias for an Agent.
*/
readonly agentAliasHistoryEvents: pulumi.Output<outputs.bedrock.AgentAliasHistoryEvent[]>;
/**
* Id for an Agent Alias generated at the server side.
*/
readonly agentAliasId: pulumi.Output<string>;
/**
* Name for a resource.
*/
readonly agentAliasName: pulumi.Output<string>;
/**
* 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<enums.bedrock.AgentAliasStatus>;
/**
* Identifier for a resource.
*/
readonly agentId: pulumi.Output<string>;
/**
* Time Stamp.
*/
readonly createdAt: pulumi.Output<string>;
/**
* Description of the Resource.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Routing configuration for an Agent alias.
*/
readonly routingConfiguration: pulumi.Output<outputs.bedrock.AgentAliasRoutingConfigurationListItem[] | undefined>;
/**
* 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<string>;
/**
* 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<string>;
/**
* Identifier for a resource.
*/
agentId: pulumi.Input<string>;
/**
* Description of the Resource.
*/
description?: pulumi.Input<string>;
/**
* Routing configuration for an Agent alias.
*/
routingConfiguration?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentAliasRoutingConfigurationListItemArgs>[]>;
/**
* 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<string>;
}>;
}