import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource definition for AWS::BedrockAgentCore::BrowserProfile */ export declare function getBrowserProfile(args: GetBrowserProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetBrowserProfileArgs { profileId: string; } export interface GetBrowserProfileResult { readonly createdAt?: string; readonly lastSavedAt?: string; readonly lastSavedBrowserId?: string; readonly lastSavedBrowserSessionId?: string; readonly lastUpdatedAt?: string; readonly profileArn?: string; readonly profileId?: string; readonly status?: enums.bedrockagentcore.BrowserProfileStatus; /** * A map of tag keys and values. */ readonly tags?: { [key: string]: string; }; } /** * Resource definition for AWS::BedrockAgentCore::BrowserProfile */ export declare function getBrowserProfileOutput(args: GetBrowserProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetBrowserProfileOutputArgs { profileId: pulumi.Input; }