@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)
55 lines (54 loc) • 1.78 kB
TypeScript
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<GetSpaceResult>;
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<GetSpaceResult>;
export interface GetSpaceOutputArgs {
/**
* The ID of the associated Domain.
*/
domainId: pulumi.Input<string>;
/**
* A name for the Space.
*/
spaceName: pulumi.Input<string>;
}