UNPKG

@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)

45 lines (44 loc) 1.23 kB
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<GetWorkspaceResult>; 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<GetWorkspaceResult>; export interface GetWorkspaceOutputArgs { /** * The ARN of the workspace. */ arn: pulumi.Input<string>; }