@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)
113 lines (112 loc) • 4.22 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 definition for AWS::BedrockAgentCore::CodeInterpreterCustom
*/
export declare class CodeInterpreterCustom extends pulumi.CustomResource {
/**
* Get an existing CodeInterpreterCustom 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): CodeInterpreterCustom;
/**
* Returns true if the given object is an instance of CodeInterpreterCustom. 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 CodeInterpreterCustom;
/**
* List of root CA certificates in PEM format.
*/
readonly certificates: pulumi.Output<outputs.bedrockagentcore.CodeInterpreterCustomCertificate[] | undefined>;
/**
* The ARN of a CodeInterpreter resource.
*/
readonly codeInterpreterArn: pulumi.Output<string>;
/**
* The id of the code interpreter.
*/
readonly codeInterpreterId: pulumi.Output<string>;
/**
* Timestamp when the code interpreter was created.
*/
readonly createdAt: pulumi.Output<string>;
/**
* The description of the code interpreter.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The ARN of the IAM role that the code interpreter uses to access resources.
*/
readonly executionRoleArn: pulumi.Output<string | undefined>;
/**
* The reason for failure if the code interpreter creation or operation failed.
*/
readonly failureReason: pulumi.Output<string>;
/**
* Timestamp when the code interpreter was last updated.
*/
readonly lastUpdatedAt: pulumi.Output<string>;
/**
* The name of the code interpreter.
*/
readonly name: pulumi.Output<string>;
/**
* Network configuration for code interpreter.
*/
readonly networkConfiguration: pulumi.Output<outputs.bedrockagentcore.CodeInterpreterCustomCodeInterpreterNetworkConfiguration>;
/**
* Status of code interpreter.
*/
readonly status: pulumi.Output<enums.bedrockagentcore.CodeInterpreterCustomCodeInterpreterStatus>;
/**
* The tags for the code interpreter.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Create a CodeInterpreterCustom 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: CodeInterpreterCustomArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a CodeInterpreterCustom resource.
*/
export interface CodeInterpreterCustomArgs {
/**
* List of root CA certificates in PEM format.
*/
certificates?: pulumi.Input<pulumi.Input<inputs.bedrockagentcore.CodeInterpreterCustomCertificateArgs>[]>;
/**
* The description of the code interpreter.
*/
description?: pulumi.Input<string>;
/**
* The ARN of the IAM role that the code interpreter uses to access resources.
*/
executionRoleArn?: pulumi.Input<string>;
/**
* The name of the code interpreter.
*/
name?: pulumi.Input<string>;
/**
* Network configuration for code interpreter.
*/
networkConfiguration: pulumi.Input<inputs.bedrockagentcore.CodeInterpreterCustomCodeInterpreterNetworkConfigurationArgs>;
/**
* The tags for the code interpreter.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}