import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SageMaker::Space */ export declare function getSpace(args: GetSpaceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetSpaceArgs { /** * The ID of the associated Domain. */ domainId: string; /** * A name for the Space. */ spaceName: string; } export interface GetSpaceResult { /** * The space Amazon Resource Name (ARN). */ readonly spaceArn?: string; /** * The name of the space that appears in the Studio UI. */ readonly spaceDisplayName?: string; /** * A list of tags to apply to the space. */ readonly tags?: outputs.Tag[]; /** * Returns the URL of the space. If the space is created with AWS IAM Identity Center (Successor to AWS Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through AWS IAM Identity Center. * * The following application types are supported: * * - Studio Classic: `&redirect=JupyterServer` * - JupyterLab: `&redirect=JupyterLab` * - Code Editor, based on Code-OSS, Visual Studio Code - Open Source: `&redirect=CodeEditor` */ readonly url?: string; } /** * Resource Type definition for AWS::SageMaker::Space */ export declare function getSpaceOutput(args: GetSpaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetSpaceOutputArgs { /** * The ID of the associated Domain. */ domainId: pulumi.Input; /** * A name for the Space. */ spaceName: pulumi.Input; }