@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)
55 lines (54 loc) • 1.74 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
*/
export declare function getCodeInterpreterCustom(args: GetCodeInterpreterCustomArgs, opts?: pulumi.InvokeOptions): Promise<GetCodeInterpreterCustomResult>;
export interface GetCodeInterpreterCustomArgs {
/**
* The id of the code interpreter.
*/
codeInterpreterId: string;
}
export interface GetCodeInterpreterCustomResult {
/**
* The ARN of a CodeInterpreter resource.
*/
readonly codeInterpreterArn?: string;
/**
* The id of the code interpreter.
*/
readonly codeInterpreterId?: string;
/**
* Timestamp when the code interpreter was created.
*/
readonly createdAt?: string;
/**
* The reason for failure if the code interpreter creation or operation failed.
*/
readonly failureReason?: string;
/**
* Timestamp when the code interpreter was last updated.
*/
readonly lastUpdatedAt?: string;
/**
* Status of code interpreter.
*/
readonly status?: enums.bedrockagentcore.CodeInterpreterCustomCodeInterpreterStatus;
/**
* The tags for the code interpreter.
*/
readonly tags?: {
[key: string]: string;
};
}
/**
* Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
*/
export declare function getCodeInterpreterCustomOutput(args: GetCodeInterpreterCustomOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCodeInterpreterCustomResult>;
export interface GetCodeInterpreterCustomOutputArgs {
/**
* The id of the code interpreter.
*/
codeInterpreterId: pulumi.Input<string>;
}