import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource type definition for AWS::AWSExternalAnthropic::Workspace */ export declare function getWorkspace(args: GetWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetWorkspaceArgs { /** * The ARN of the workspace. */ arn: string; } export interface GetWorkspaceResult { /** * The ARN of the workspace. */ readonly arn?: string; /** * The timestamp when the workspace was created. */ readonly createdAt?: string; /** * The unique identifier of the workspace. */ readonly id?: string; /** * The name of the workspace. */ readonly name?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource type definition for AWS::AWSExternalAnthropic::Workspace */ export declare function getWorkspaceOutput(args: GetWorkspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetWorkspaceOutputArgs { /** * The ARN of the workspace. */ arn: pulumi.Input; }