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)

115 lines (114 loc) 4 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource definition for AWS::BedrockAgentCore::RuntimeEndpoint */ export declare class RuntimeEndpoint extends pulumi.CustomResource { /** * Get an existing RuntimeEndpoint 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): RuntimeEndpoint; /** * Returns true if the given object is an instance of RuntimeEndpoint. 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 RuntimeEndpoint; /** * The ARN of the Agent Runtime */ readonly agentRuntimeArn: pulumi.Output<string>; /** * The Amazon Resource Name (ARN) of the AgentCore Runtime. */ readonly agentRuntimeEndpointArn: pulumi.Output<string>; /** * The ID of the parent Agent Runtime (required for creation) */ readonly agentRuntimeId: pulumi.Output<string>; /** * The version of the AgentCore Runtime to use for the endpoint. */ readonly agentRuntimeVersion: pulumi.Output<string | undefined>; /** * The unique identifier of the AgentCore Runtime endpoint. */ readonly awsId: pulumi.Output<string>; /** * The timestamp when the Agent Runtime Endpoint was created */ readonly createdAt: pulumi.Output<string>; /** * The description of the AgentCore Runtime endpoint. */ readonly description: pulumi.Output<string | undefined>; /** * The reason for failure if the endpoint is in a failed state */ readonly failureReason: pulumi.Output<string>; /** * The timestamp when the Agent Runtime Endpoint was last updated */ readonly lastUpdatedAt: pulumi.Output<string>; /** * The Live version of the Agent Runtime */ readonly liveVersion: pulumi.Output<string>; /** * The name of the Agent Runtime Endpoint */ readonly name: pulumi.Output<string>; /** * The status of the Agent Runtime Endpoint */ readonly status: pulumi.Output<enums.bedrockagentcore.RuntimeEndpointAgentRuntimeEndpointStatus>; /** * The tags for the AgentCore Runtime endpoint. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The target version of the AgentCore Runtime for the endpoint. */ readonly targetVersion: pulumi.Output<string>; /** * Create a RuntimeEndpoint 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: RuntimeEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a RuntimeEndpoint resource. */ export interface RuntimeEndpointArgs { /** * The ID of the parent Agent Runtime (required for creation) */ agentRuntimeId: pulumi.Input<string>; /** * The version of the AgentCore Runtime to use for the endpoint. */ agentRuntimeVersion?: pulumi.Input<string>; /** * The description of the AgentCore Runtime endpoint. */ description?: pulumi.Input<string>; /** * The name of the Agent Runtime Endpoint */ name?: pulumi.Input<string>; /** * The tags for the AgentCore Runtime endpoint. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; }