@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)
121 lines (120 loc) • 4.27 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::BrowserCustom
*/
export declare class BrowserCustom extends pulumi.CustomResource {
/**
* Get an existing BrowserCustom 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): BrowserCustom;
/**
* Returns true if the given object is an instance of BrowserCustom. 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 BrowserCustom;
/**
* The ARN of a Browser resource.
*/
readonly browserArn: pulumi.Output<string>;
/**
* The id of the browser.
*/
readonly browserId: pulumi.Output<string>;
/**
* Browser signing configuration.
*/
readonly browserSigning: pulumi.Output<outputs.bedrockagentcore.BrowserCustomBrowserSigning | undefined>;
/**
* Timestamp when the browser was created.
*/
readonly createdAt: pulumi.Output<string>;
/**
* The description of the browser.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The Amazon Resource Name (ARN) of the IAM role that the browser uses to access resources.
*/
readonly executionRoleArn: pulumi.Output<string | undefined>;
/**
* The reason for failure if the browser creation or operation failed.
*/
readonly failureReason: pulumi.Output<string>;
/**
* Timestamp when the browser was last updated.
*/
readonly lastUpdatedAt: pulumi.Output<string>;
/**
* The name of the browser.
*/
readonly name: pulumi.Output<string>;
/**
* Network configuration for browser.
*/
readonly networkConfiguration: pulumi.Output<outputs.bedrockagentcore.BrowserCustomBrowserNetworkConfiguration>;
/**
* Recording configuration for browser.
*/
readonly recordingConfig: pulumi.Output<outputs.bedrockagentcore.BrowserCustomRecordingConfig | undefined>;
/**
* Status of browser.
*/
readonly status: pulumi.Output<enums.bedrockagentcore.BrowserCustomBrowserStatus>;
/**
* The tags for the custom browser.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Create a BrowserCustom 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: BrowserCustomArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a BrowserCustom resource.
*/
export interface BrowserCustomArgs {
/**
* Browser signing configuration.
*/
browserSigning?: pulumi.Input<inputs.bedrockagentcore.BrowserCustomBrowserSigningArgs>;
/**
* The description of the browser.
*/
description?: pulumi.Input<string>;
/**
* The Amazon Resource Name (ARN) of the IAM role that the browser uses to access resources.
*/
executionRoleArn?: pulumi.Input<string>;
/**
* The name of the browser.
*/
name?: pulumi.Input<string>;
/**
* Network configuration for browser.
*/
networkConfiguration: pulumi.Input<inputs.bedrockagentcore.BrowserCustomBrowserNetworkConfigurationArgs>;
/**
* Recording configuration for browser.
*/
recordingConfig?: pulumi.Input<inputs.bedrockagentcore.BrowserCustomRecordingConfigArgs>;
/**
* The tags for the custom browser.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}