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; 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; export interface GetCodeInterpreterCustomOutputArgs { /** * The id of the code interpreter. */ codeInterpreterId: pulumi.Input; }