@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)
165 lines (164 loc) • 5.8 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";
/**
* Resource Type definition for AWS::BedrockAgentCore::Runtime
*/
export declare class Runtime extends pulumi.CustomResource {
/**
* Get an existing Runtime 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): Runtime;
/**
* Returns true if the given object is an instance of Runtime. 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 Runtime;
/**
* The Amazon Resource Name(ARN) that uniquely identifies the Agent
*/
readonly agentRuntimeArn: pulumi.Output<string>;
/**
* The artifact of the agent
*/
readonly agentRuntimeArtifact: pulumi.Output<outputs.bedrockagentcore.RuntimeAgentRuntimeArtifact>;
/**
* Identifier for a resource
*/
readonly agentRuntimeId: pulumi.Output<string>;
/**
* Name for a resource
*/
readonly agentRuntimeName: pulumi.Output<string>;
/**
* Version of the Agent
*/
readonly agentRuntimeVersion: pulumi.Output<string>;
/**
* Authorizer configuration for the agent runtime
*/
readonly authorizerConfiguration: pulumi.Output<outputs.bedrockagentcore.RuntimeAuthorizerConfiguration | undefined>;
/**
* Timestamp when the Agent was created
*/
readonly createdAt: pulumi.Output<string>;
/**
* Description of the resource
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Environment variables for the agent runtime
*/
readonly environmentVariables: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* The reason for failure if the agent is in a failed state.
*/
readonly failureReason: pulumi.Output<string>;
/**
* When resource was last updated
*/
readonly lastUpdatedAt: pulumi.Output<string>;
/**
* Lifecycle configuration for managing runtime sessions
*/
readonly lifecycleConfiguration: pulumi.Output<outputs.bedrockagentcore.RuntimeLifecycleConfiguration | undefined>;
/**
* Network access configuration for the Agent
*/
readonly networkConfiguration: pulumi.Output<outputs.bedrockagentcore.RuntimeNetworkConfiguration>;
/**
* Protocol configuration for the agent runtime
*/
readonly protocolConfiguration: pulumi.Output<enums.bedrockagentcore.RuntimeProtocolConfiguration | undefined>;
/**
* Configuration for HTTP request headers
*/
readonly requestHeaderConfiguration: pulumi.Output<outputs.bedrockagentcore.RuntimeRequestHeaderConfiguration | undefined>;
/**
* Amazon Resource Name (ARN) of an IAM role
*/
readonly roleArn: pulumi.Output<string>;
/**
* Current status of the agent
*/
readonly status: pulumi.Output<enums.bedrockagentcore.RuntimeAgentStatus>;
/**
* The tags for the agent.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Workload identity details for the agent
*/
readonly workloadIdentityDetails: pulumi.Output<outputs.bedrockagentcore.RuntimeWorkloadIdentityDetails>;
/**
* Create a Runtime 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: RuntimeArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a Runtime resource.
*/
export interface RuntimeArgs {
/**
* The artifact of the agent
*/
agentRuntimeArtifact: pulumi.Input<inputs.bedrockagentcore.RuntimeAgentRuntimeArtifactArgs>;
/**
* Name for a resource
*/
agentRuntimeName: pulumi.Input<string>;
/**
* Authorizer configuration for the agent runtime
*/
authorizerConfiguration?: pulumi.Input<inputs.bedrockagentcore.RuntimeAuthorizerConfigurationArgs>;
/**
* Description of the resource
*/
description?: pulumi.Input<string>;
/**
* Environment variables for the agent runtime
*/
environmentVariables?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Lifecycle configuration for managing runtime sessions
*/
lifecycleConfiguration?: pulumi.Input<inputs.bedrockagentcore.RuntimeLifecycleConfigurationArgs>;
/**
* Network access configuration for the Agent
*/
networkConfiguration: pulumi.Input<inputs.bedrockagentcore.RuntimeNetworkConfigurationArgs>;
/**
* Protocol configuration for the agent runtime
*/
protocolConfiguration?: pulumi.Input<enums.bedrockagentcore.RuntimeProtocolConfiguration>;
/**
* Configuration for HTTP request headers
*/
requestHeaderConfiguration?: pulumi.Input<inputs.bedrockagentcore.RuntimeRequestHeaderConfigurationArgs>;
/**
* Amazon Resource Name (ARN) of an IAM role
*/
roleArn: pulumi.Input<string>;
/**
* The tags for the agent.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}