1. Packages
  2. AWS
  3. API Docs
  4. sagemaker
  5. Space
AWS v6.75.0 published on Wednesday, Apr 2, 2025 by Pulumi

aws.sagemaker.Space

Explore with Pulumi AI

Provides a SageMaker AI Space resource.

Example Usage

Basic usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.sagemaker.Space("example", {
    domainId: test.id,
    spaceName: "example",
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.sagemaker.Space("example",
    domain_id=test["id"],
    space_name="example")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sagemaker"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sagemaker.NewSpace(ctx, "example", &sagemaker.SpaceArgs{
			DomainId:  pulumi.Any(test.Id),
			SpaceName: pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.Sagemaker.Space("example", new()
    {
        DomainId = test.Id,
        SpaceName = "example",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.Space;
import com.pulumi.aws.sagemaker.SpaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Space("example", SpaceArgs.builder()
            .domainId(test.id())
            .spaceName("example")
            .build());

    }
}
Copy
resources:
  example:
    type: aws:sagemaker:Space
    properties:
      domainId: ${test.id}
      spaceName: example
Copy

Create Space Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Space(name: string, args: SpaceArgs, opts?: CustomResourceOptions);
@overload
def Space(resource_name: str,
          args: SpaceArgs,
          opts: Optional[ResourceOptions] = None)

@overload
def Space(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          domain_id: Optional[str] = None,
          space_name: Optional[str] = None,
          ownership_settings: Optional[SpaceOwnershipSettingsArgs] = None,
          space_display_name: Optional[str] = None,
          space_settings: Optional[SpaceSpaceSettingsArgs] = None,
          space_sharing_settings: Optional[SpaceSpaceSharingSettingsArgs] = None,
          tags: Optional[Mapping[str, str]] = None)
func NewSpace(ctx *Context, name string, args SpaceArgs, opts ...ResourceOption) (*Space, error)
public Space(string name, SpaceArgs args, CustomResourceOptions? opts = null)
public Space(String name, SpaceArgs args)
public Space(String name, SpaceArgs args, CustomResourceOptions options)
type: aws:sagemaker:Space
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SpaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SpaceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SpaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SpaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SpaceArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var spaceResource = new Aws.Sagemaker.Space("spaceResource", new()
{
    DomainId = "string",
    SpaceName = "string",
    OwnershipSettings = new Aws.Sagemaker.Inputs.SpaceOwnershipSettingsArgs
    {
        OwnerUserProfileName = "string",
    },
    SpaceDisplayName = "string",
    SpaceSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsArgs
    {
        AppType = "string",
        CodeEditorAppSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsCodeEditorAppSettingsArgs
        {
            DefaultResourceSpec = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpecArgs
            {
                InstanceType = "string",
                LifecycleConfigArn = "string",
                SagemakerImageArn = "string",
                SagemakerImageVersionAlias = "string",
                SagemakerImageVersionArn = "string",
            },
            AppLifecycleManagement = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementArgs
            {
                IdleSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettingsArgs
                {
                    IdleTimeoutInMinutes = 0,
                },
            },
        },
        CustomFileSystems = new[]
        {
            new Aws.Sagemaker.Inputs.SpaceSpaceSettingsCustomFileSystemArgs
            {
                EfsFileSystem = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsCustomFileSystemEfsFileSystemArgs
                {
                    FileSystemId = "string",
                },
            },
        },
        JupyterLabAppSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterLabAppSettingsArgs
        {
            DefaultResourceSpec = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpecArgs
            {
                InstanceType = "string",
                LifecycleConfigArn = "string",
                SagemakerImageArn = "string",
                SagemakerImageVersionAlias = "string",
                SagemakerImageVersionArn = "string",
            },
            AppLifecycleManagement = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementArgs
            {
                IdleSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettingsArgs
                {
                    IdleTimeoutInMinutes = 0,
                },
            },
            CodeRepositories = new[]
            {
                new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterLabAppSettingsCodeRepositoryArgs
                {
                    RepositoryUrl = "string",
                },
            },
        },
        JupyterServerAppSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterServerAppSettingsArgs
        {
            DefaultResourceSpec = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs
            {
                InstanceType = "string",
                LifecycleConfigArn = "string",
                SagemakerImageArn = "string",
                SagemakerImageVersionAlias = "string",
                SagemakerImageVersionArn = "string",
            },
            CodeRepositories = new[]
            {
                new Aws.Sagemaker.Inputs.SpaceSpaceSettingsJupyterServerAppSettingsCodeRepositoryArgs
                {
                    RepositoryUrl = "string",
                },
            },
            LifecycleConfigArns = new[]
            {
                "string",
            },
        },
        KernelGatewayAppSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsKernelGatewayAppSettingsArgs
        {
            DefaultResourceSpec = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpecArgs
            {
                InstanceType = "string",
                LifecycleConfigArn = "string",
                SagemakerImageArn = "string",
                SagemakerImageVersionAlias = "string",
                SagemakerImageVersionArn = "string",
            },
            CustomImages = new[]
            {
                new Aws.Sagemaker.Inputs.SpaceSpaceSettingsKernelGatewayAppSettingsCustomImageArgs
                {
                    AppImageConfigName = "string",
                    ImageName = "string",
                    ImageVersionNumber = 0,
                },
            },
            LifecycleConfigArns = new[]
            {
                "string",
            },
        },
        SpaceStorageSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsSpaceStorageSettingsArgs
        {
            EbsStorageSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettingsArgs
            {
                EbsVolumeSizeInGb = 0,
            },
        },
    },
    SpaceSharingSettings = new Aws.Sagemaker.Inputs.SpaceSpaceSharingSettingsArgs
    {
        SharingType = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := sagemaker.NewSpace(ctx, "spaceResource", &sagemaker.SpaceArgs{
	DomainId:  pulumi.String("string"),
	SpaceName: pulumi.String("string"),
	OwnershipSettings: &sagemaker.SpaceOwnershipSettingsArgs{
		OwnerUserProfileName: pulumi.String("string"),
	},
	SpaceDisplayName: pulumi.String("string"),
	SpaceSettings: &sagemaker.SpaceSpaceSettingsArgs{
		AppType: pulumi.String("string"),
		CodeEditorAppSettings: &sagemaker.SpaceSpaceSettingsCodeEditorAppSettingsArgs{
			DefaultResourceSpec: &sagemaker.SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpecArgs{
				InstanceType:               pulumi.String("string"),
				LifecycleConfigArn:         pulumi.String("string"),
				SagemakerImageArn:          pulumi.String("string"),
				SagemakerImageVersionAlias: pulumi.String("string"),
				SagemakerImageVersionArn:   pulumi.String("string"),
			},
			AppLifecycleManagement: &sagemaker.SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementArgs{
				IdleSettings: &sagemaker.SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettingsArgs{
					IdleTimeoutInMinutes: pulumi.Int(0),
				},
			},
		},
		CustomFileSystems: sagemaker.SpaceSpaceSettingsCustomFileSystemArray{
			&sagemaker.SpaceSpaceSettingsCustomFileSystemArgs{
				EfsFileSystem: &sagemaker.SpaceSpaceSettingsCustomFileSystemEfsFileSystemArgs{
					FileSystemId: pulumi.String("string"),
				},
			},
		},
		JupyterLabAppSettings: &sagemaker.SpaceSpaceSettingsJupyterLabAppSettingsArgs{
			DefaultResourceSpec: &sagemaker.SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpecArgs{
				InstanceType:               pulumi.String("string"),
				LifecycleConfigArn:         pulumi.String("string"),
				SagemakerImageArn:          pulumi.String("string"),
				SagemakerImageVersionAlias: pulumi.String("string"),
				SagemakerImageVersionArn:   pulumi.String("string"),
			},
			AppLifecycleManagement: &sagemaker.SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementArgs{
				IdleSettings: &sagemaker.SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettingsArgs{
					IdleTimeoutInMinutes: pulumi.Int(0),
				},
			},
			CodeRepositories: sagemaker.SpaceSpaceSettingsJupyterLabAppSettingsCodeRepositoryArray{
				&sagemaker.SpaceSpaceSettingsJupyterLabAppSettingsCodeRepositoryArgs{
					RepositoryUrl: pulumi.String("string"),
				},
			},
		},
		JupyterServerAppSettings: &sagemaker.SpaceSpaceSettingsJupyterServerAppSettingsArgs{
			DefaultResourceSpec: &sagemaker.SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs{
				InstanceType:               pulumi.String("string"),
				LifecycleConfigArn:         pulumi.String("string"),
				SagemakerImageArn:          pulumi.String("string"),
				SagemakerImageVersionAlias: pulumi.String("string"),
				SagemakerImageVersionArn:   pulumi.String("string"),
			},
			CodeRepositories: sagemaker.SpaceSpaceSettingsJupyterServerAppSettingsCodeRepositoryArray{
				&sagemaker.SpaceSpaceSettingsJupyterServerAppSettingsCodeRepositoryArgs{
					RepositoryUrl: pulumi.String("string"),
				},
			},
			LifecycleConfigArns: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		KernelGatewayAppSettings: &sagemaker.SpaceSpaceSettingsKernelGatewayAppSettingsArgs{
			DefaultResourceSpec: &sagemaker.SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpecArgs{
				InstanceType:               pulumi.String("string"),
				LifecycleConfigArn:         pulumi.String("string"),
				SagemakerImageArn:          pulumi.String("string"),
				SagemakerImageVersionAlias: pulumi.String("string"),
				SagemakerImageVersionArn:   pulumi.String("string"),
			},
			CustomImages: sagemaker.SpaceSpaceSettingsKernelGatewayAppSettingsCustomImageArray{
				&sagemaker.SpaceSpaceSettingsKernelGatewayAppSettingsCustomImageArgs{
					AppImageConfigName: pulumi.String("string"),
					ImageName:          pulumi.String("string"),
					ImageVersionNumber: pulumi.Int(0),
				},
			},
			LifecycleConfigArns: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		SpaceStorageSettings: &sagemaker.SpaceSpaceSettingsSpaceStorageSettingsArgs{
			EbsStorageSettings: &sagemaker.SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettingsArgs{
				EbsVolumeSizeInGb: pulumi.Int(0),
			},
		},
	},
	SpaceSharingSettings: &sagemaker.SpaceSpaceSharingSettingsArgs{
		SharingType: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var spaceResource = new Space("spaceResource", SpaceArgs.builder()
    .domainId("string")
    .spaceName("string")
    .ownershipSettings(SpaceOwnershipSettingsArgs.builder()
        .ownerUserProfileName("string")
        .build())
    .spaceDisplayName("string")
    .spaceSettings(SpaceSpaceSettingsArgs.builder()
        .appType("string")
        .codeEditorAppSettings(SpaceSpaceSettingsCodeEditorAppSettingsArgs.builder()
            .defaultResourceSpec(SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpecArgs.builder()
                .instanceType("string")
                .lifecycleConfigArn("string")
                .sagemakerImageArn("string")
                .sagemakerImageVersionAlias("string")
                .sagemakerImageVersionArn("string")
                .build())
            .appLifecycleManagement(SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementArgs.builder()
                .idleSettings(SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettingsArgs.builder()
                    .idleTimeoutInMinutes(0)
                    .build())
                .build())
            .build())
        .customFileSystems(SpaceSpaceSettingsCustomFileSystemArgs.builder()
            .efsFileSystem(SpaceSpaceSettingsCustomFileSystemEfsFileSystemArgs.builder()
                .fileSystemId("string")
                .build())
            .build())
        .jupyterLabAppSettings(SpaceSpaceSettingsJupyterLabAppSettingsArgs.builder()
            .defaultResourceSpec(SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpecArgs.builder()
                .instanceType("string")
                .lifecycleConfigArn("string")
                .sagemakerImageArn("string")
                .sagemakerImageVersionAlias("string")
                .sagemakerImageVersionArn("string")
                .build())
            .appLifecycleManagement(SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementArgs.builder()
                .idleSettings(SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettingsArgs.builder()
                    .idleTimeoutInMinutes(0)
                    .build())
                .build())
            .codeRepositories(SpaceSpaceSettingsJupyterLabAppSettingsCodeRepositoryArgs.builder()
                .repositoryUrl("string")
                .build())
            .build())
        .jupyterServerAppSettings(SpaceSpaceSettingsJupyterServerAppSettingsArgs.builder()
            .defaultResourceSpec(SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs.builder()
                .instanceType("string")
                .lifecycleConfigArn("string")
                .sagemakerImageArn("string")
                .sagemakerImageVersionAlias("string")
                .sagemakerImageVersionArn("string")
                .build())
            .codeRepositories(SpaceSpaceSettingsJupyterServerAppSettingsCodeRepositoryArgs.builder()
                .repositoryUrl("string")
                .build())
            .lifecycleConfigArns("string")
            .build())
        .kernelGatewayAppSettings(SpaceSpaceSettingsKernelGatewayAppSettingsArgs.builder()
            .defaultResourceSpec(SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpecArgs.builder()
                .instanceType("string")
                .lifecycleConfigArn("string")
                .sagemakerImageArn("string")
                .sagemakerImageVersionAlias("string")
                .sagemakerImageVersionArn("string")
                .build())
            .customImages(SpaceSpaceSettingsKernelGatewayAppSettingsCustomImageArgs.builder()
                .appImageConfigName("string")
                .imageName("string")
                .imageVersionNumber(0)
                .build())
            .lifecycleConfigArns("string")
            .build())
        .spaceStorageSettings(SpaceSpaceSettingsSpaceStorageSettingsArgs.builder()
            .ebsStorageSettings(SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettingsArgs.builder()
                .ebsVolumeSizeInGb(0)
                .build())
            .build())
        .build())
    .spaceSharingSettings(SpaceSpaceSharingSettingsArgs.builder()
        .sharingType("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
space_resource = aws.sagemaker.Space("spaceResource",
    domain_id="string",
    space_name="string",
    ownership_settings={
        "owner_user_profile_name": "string",
    },
    space_display_name="string",
    space_settings={
        "app_type": "string",
        "code_editor_app_settings": {
            "default_resource_spec": {
                "instance_type": "string",
                "lifecycle_config_arn": "string",
                "sagemaker_image_arn": "string",
                "sagemaker_image_version_alias": "string",
                "sagemaker_image_version_arn": "string",
            },
            "app_lifecycle_management": {
                "idle_settings": {
                    "idle_timeout_in_minutes": 0,
                },
            },
        },
        "custom_file_systems": [{
            "efs_file_system": {
                "file_system_id": "string",
            },
        }],
        "jupyter_lab_app_settings": {
            "default_resource_spec": {
                "instance_type": "string",
                "lifecycle_config_arn": "string",
                "sagemaker_image_arn": "string",
                "sagemaker_image_version_alias": "string",
                "sagemaker_image_version_arn": "string",
            },
            "app_lifecycle_management": {
                "idle_settings": {
                    "idle_timeout_in_minutes": 0,
                },
            },
            "code_repositories": [{
                "repository_url": "string",
            }],
        },
        "jupyter_server_app_settings": {
            "default_resource_spec": {
                "instance_type": "string",
                "lifecycle_config_arn": "string",
                "sagemaker_image_arn": "string",
                "sagemaker_image_version_alias": "string",
                "sagemaker_image_version_arn": "string",
            },
            "code_repositories": [{
                "repository_url": "string",
            }],
            "lifecycle_config_arns": ["string"],
        },
        "kernel_gateway_app_settings": {
            "default_resource_spec": {
                "instance_type": "string",
                "lifecycle_config_arn": "string",
                "sagemaker_image_arn": "string",
                "sagemaker_image_version_alias": "string",
                "sagemaker_image_version_arn": "string",
            },
            "custom_images": [{
                "app_image_config_name": "string",
                "image_name": "string",
                "image_version_number": 0,
            }],
            "lifecycle_config_arns": ["string"],
        },
        "space_storage_settings": {
            "ebs_storage_settings": {
                "ebs_volume_size_in_gb": 0,
            },
        },
    },
    space_sharing_settings={
        "sharing_type": "string",
    },
    tags={
        "string": "string",
    })
Copy
const spaceResource = new aws.sagemaker.Space("spaceResource", {
    domainId: "string",
    spaceName: "string",
    ownershipSettings: {
        ownerUserProfileName: "string",
    },
    spaceDisplayName: "string",
    spaceSettings: {
        appType: "string",
        codeEditorAppSettings: {
            defaultResourceSpec: {
                instanceType: "string",
                lifecycleConfigArn: "string",
                sagemakerImageArn: "string",
                sagemakerImageVersionAlias: "string",
                sagemakerImageVersionArn: "string",
            },
            appLifecycleManagement: {
                idleSettings: {
                    idleTimeoutInMinutes: 0,
                },
            },
        },
        customFileSystems: [{
            efsFileSystem: {
                fileSystemId: "string",
            },
        }],
        jupyterLabAppSettings: {
            defaultResourceSpec: {
                instanceType: "string",
                lifecycleConfigArn: "string",
                sagemakerImageArn: "string",
                sagemakerImageVersionAlias: "string",
                sagemakerImageVersionArn: "string",
            },
            appLifecycleManagement: {
                idleSettings: {
                    idleTimeoutInMinutes: 0,
                },
            },
            codeRepositories: [{
                repositoryUrl: "string",
            }],
        },
        jupyterServerAppSettings: {
            defaultResourceSpec: {
                instanceType: "string",
                lifecycleConfigArn: "string",
                sagemakerImageArn: "string",
                sagemakerImageVersionAlias: "string",
                sagemakerImageVersionArn: "string",
            },
            codeRepositories: [{
                repositoryUrl: "string",
            }],
            lifecycleConfigArns: ["string"],
        },
        kernelGatewayAppSettings: {
            defaultResourceSpec: {
                instanceType: "string",
                lifecycleConfigArn: "string",
                sagemakerImageArn: "string",
                sagemakerImageVersionAlias: "string",
                sagemakerImageVersionArn: "string",
            },
            customImages: [{
                appImageConfigName: "string",
                imageName: "string",
                imageVersionNumber: 0,
            }],
            lifecycleConfigArns: ["string"],
        },
        spaceStorageSettings: {
            ebsStorageSettings: {
                ebsVolumeSizeInGb: 0,
            },
        },
    },
    spaceSharingSettings: {
        sharingType: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: aws:sagemaker:Space
properties:
    domainId: string
    ownershipSettings:
        ownerUserProfileName: string
    spaceDisplayName: string
    spaceName: string
    spaceSettings:
        appType: string
        codeEditorAppSettings:
            appLifecycleManagement:
                idleSettings:
                    idleTimeoutInMinutes: 0
            defaultResourceSpec:
                instanceType: string
                lifecycleConfigArn: string
                sagemakerImageArn: string
                sagemakerImageVersionAlias: string
                sagemakerImageVersionArn: string
        customFileSystems:
            - efsFileSystem:
                fileSystemId: string
        jupyterLabAppSettings:
            appLifecycleManagement:
                idleSettings:
                    idleTimeoutInMinutes: 0
            codeRepositories:
                - repositoryUrl: string
            defaultResourceSpec:
                instanceType: string
                lifecycleConfigArn: string
                sagemakerImageArn: string
                sagemakerImageVersionAlias: string
                sagemakerImageVersionArn: string
        jupyterServerAppSettings:
            codeRepositories:
                - repositoryUrl: string
            defaultResourceSpec:
                instanceType: string
                lifecycleConfigArn: string
                sagemakerImageArn: string
                sagemakerImageVersionAlias: string
                sagemakerImageVersionArn: string
            lifecycleConfigArns:
                - string
        kernelGatewayAppSettings:
            customImages:
                - appImageConfigName: string
                  imageName: string
                  imageVersionNumber: 0
            defaultResourceSpec:
                instanceType: string
                lifecycleConfigArn: string
                sagemakerImageArn: string
                sagemakerImageVersionAlias: string
                sagemakerImageVersionArn: string
            lifecycleConfigArns:
                - string
        spaceStorageSettings:
            ebsStorageSettings:
                ebsVolumeSizeInGb: 0
    spaceSharingSettings:
        sharingType: string
    tags:
        string: string
Copy

Space Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Space resource accepts the following input properties:

DomainId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the associated Domain.
SpaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the space.
OwnershipSettings SpaceOwnershipSettings
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
SpaceDisplayName string
The name of the space that appears in the SageMaker AI Studio UI.
SpaceSettings SpaceSpaceSettings
A collection of space settings. See space_settings Block below.
SpaceSharingSettings SpaceSpaceSharingSettings
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
Tags Dictionary<string, string>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
DomainId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the associated Domain.
SpaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the space.
OwnershipSettings SpaceOwnershipSettingsArgs
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
SpaceDisplayName string
The name of the space that appears in the SageMaker AI Studio UI.
SpaceSettings SpaceSpaceSettingsArgs
A collection of space settings. See space_settings Block below.
SpaceSharingSettings SpaceSpaceSharingSettingsArgs
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
Tags map[string]string
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
domainId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the associated Domain.
spaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the space.
ownershipSettings SpaceOwnershipSettings
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
spaceDisplayName String
The name of the space that appears in the SageMaker AI Studio UI.
spaceSettings SpaceSpaceSettings
A collection of space settings. See space_settings Block below.
spaceSharingSettings SpaceSpaceSharingSettings
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags Map<String,String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
domainId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the associated Domain.
spaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the space.
ownershipSettings SpaceOwnershipSettings
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
spaceDisplayName string
The name of the space that appears in the SageMaker AI Studio UI.
spaceSettings SpaceSpaceSettings
A collection of space settings. See space_settings Block below.
spaceSharingSettings SpaceSpaceSharingSettings
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags {[key: string]: string}
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
domain_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the associated Domain.
space_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the space.
ownership_settings SpaceOwnershipSettingsArgs
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
space_display_name str
The name of the space that appears in the SageMaker AI Studio UI.
space_settings SpaceSpaceSettingsArgs
A collection of space settings. See space_settings Block below.
space_sharing_settings SpaceSpaceSharingSettingsArgs
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags Mapping[str, str]
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
domainId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the associated Domain.
spaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the space.
ownershipSettings Property Map
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
spaceDisplayName String
The name of the space that appears in the SageMaker AI Studio UI.
spaceSettings Property Map
A collection of space settings. See space_settings Block below.
spaceSharingSettings Property Map
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags Map<String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the Space resource produces the following output properties:

Arn string
The space's Amazon Resource Name (ARN).
HomeEfsFileSystemUid string
The ID of the space's profile in the Amazon Elastic File System volume.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Url string
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
Arn string
The space's Amazon Resource Name (ARN).
HomeEfsFileSystemUid string
The ID of the space's profile in the Amazon Elastic File System volume.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Url string
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn String
The space's Amazon Resource Name (ARN).
homeEfsFileSystemUid String
The ID of the space's profile in the Amazon Elastic File System volume.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url String
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn string
The space's Amazon Resource Name (ARN).
homeEfsFileSystemUid string
The ID of the space's profile in the Amazon Elastic File System volume.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url string
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn str
The space's Amazon Resource Name (ARN).
home_efs_file_system_uid str
The ID of the space's profile in the Amazon Elastic File System volume.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url str
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn String
The space's Amazon Resource Name (ARN).
homeEfsFileSystemUid String
The ID of the space's profile in the Amazon Elastic File System volume.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url String
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.

Look up Existing Space Resource

Get an existing Space resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: SpaceState, opts?: CustomResourceOptions): Space
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        domain_id: Optional[str] = None,
        home_efs_file_system_uid: Optional[str] = None,
        ownership_settings: Optional[SpaceOwnershipSettingsArgs] = None,
        space_display_name: Optional[str] = None,
        space_name: Optional[str] = None,
        space_settings: Optional[SpaceSpaceSettingsArgs] = None,
        space_sharing_settings: Optional[SpaceSpaceSharingSettingsArgs] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        url: Optional[str] = None) -> Space
func GetSpace(ctx *Context, name string, id IDInput, state *SpaceState, opts ...ResourceOption) (*Space, error)
public static Space Get(string name, Input<string> id, SpaceState? state, CustomResourceOptions? opts = null)
public static Space get(String name, Output<String> id, SpaceState state, CustomResourceOptions options)
resources:  _:    type: aws:sagemaker:Space    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
The space's Amazon Resource Name (ARN).
DomainId Changes to this property will trigger replacement. string
The ID of the associated Domain.
HomeEfsFileSystemUid string
The ID of the space's profile in the Amazon Elastic File System volume.
OwnershipSettings SpaceOwnershipSettings
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
SpaceDisplayName string
The name of the space that appears in the SageMaker AI Studio UI.
SpaceName Changes to this property will trigger replacement. string
The name of the space.
SpaceSettings SpaceSpaceSettings
A collection of space settings. See space_settings Block below.
SpaceSharingSettings SpaceSpaceSharingSettings
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
Tags Dictionary<string, string>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Url string
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
Arn string
The space's Amazon Resource Name (ARN).
DomainId Changes to this property will trigger replacement. string
The ID of the associated Domain.
HomeEfsFileSystemUid string
The ID of the space's profile in the Amazon Elastic File System volume.
OwnershipSettings SpaceOwnershipSettingsArgs
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
SpaceDisplayName string
The name of the space that appears in the SageMaker AI Studio UI.
SpaceName Changes to this property will trigger replacement. string
The name of the space.
SpaceSettings SpaceSpaceSettingsArgs
A collection of space settings. See space_settings Block below.
SpaceSharingSettings SpaceSpaceSharingSettingsArgs
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
Tags map[string]string
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Url string
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn String
The space's Amazon Resource Name (ARN).
domainId Changes to this property will trigger replacement. String
The ID of the associated Domain.
homeEfsFileSystemUid String
The ID of the space's profile in the Amazon Elastic File System volume.
ownershipSettings SpaceOwnershipSettings
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
spaceDisplayName String
The name of the space that appears in the SageMaker AI Studio UI.
spaceName Changes to this property will trigger replacement. String
The name of the space.
spaceSettings SpaceSpaceSettings
A collection of space settings. See space_settings Block below.
spaceSharingSettings SpaceSpaceSharingSettings
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags Map<String,String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url String
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn string
The space's Amazon Resource Name (ARN).
domainId Changes to this property will trigger replacement. string
The ID of the associated Domain.
homeEfsFileSystemUid string
The ID of the space's profile in the Amazon Elastic File System volume.
ownershipSettings SpaceOwnershipSettings
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
spaceDisplayName string
The name of the space that appears in the SageMaker AI Studio UI.
spaceName Changes to this property will trigger replacement. string
The name of the space.
spaceSettings SpaceSpaceSettings
A collection of space settings. See space_settings Block below.
spaceSharingSettings SpaceSpaceSharingSettings
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags {[key: string]: string}
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url string
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn str
The space's Amazon Resource Name (ARN).
domain_id Changes to this property will trigger replacement. str
The ID of the associated Domain.
home_efs_file_system_uid str
The ID of the space's profile in the Amazon Elastic File System volume.
ownership_settings SpaceOwnershipSettingsArgs
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
space_display_name str
The name of the space that appears in the SageMaker AI Studio UI.
space_name Changes to this property will trigger replacement. str
The name of the space.
space_settings SpaceSpaceSettingsArgs
A collection of space settings. See space_settings Block below.
space_sharing_settings SpaceSpaceSharingSettingsArgs
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags Mapping[str, str]
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url str
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.
arn String
The space's Amazon Resource Name (ARN).
domainId Changes to this property will trigger replacement. String
The ID of the associated Domain.
homeEfsFileSystemUid String
The ID of the space's profile in the Amazon Elastic File System volume.
ownershipSettings Property Map
A collection of ownership settings. Required if space_sharing_settings is set. See ownership_settings Block below.
spaceDisplayName String
The name of the space that appears in the SageMaker AI Studio UI.
spaceName Changes to this property will trigger replacement. String
The name of the space.
spaceSettings Property Map
A collection of space settings. See space_settings Block below.
spaceSharingSettings Property Map
A collection of space sharing settings. Required if ownership_settings is set. See space_sharing_settings Block below.
tags Map<String>
A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

url String
Returns the URL of the space. If the space is created with Amazon Web Services IAM Identity Center (Successor to Amazon Web Services Single Sign-On) authentication, users can navigate to the URL after appending the respective redirect parameter for the application type to be federated through Amazon Web Services IAM Identity Center.

Supporting Types

SpaceOwnershipSettings
, SpaceOwnershipSettingsArgs

OwnerUserProfileName This property is required. string
The user profile who is the owner of the private space.
OwnerUserProfileName This property is required. string
The user profile who is the owner of the private space.
ownerUserProfileName This property is required. String
The user profile who is the owner of the private space.
ownerUserProfileName This property is required. string
The user profile who is the owner of the private space.
owner_user_profile_name This property is required. str
The user profile who is the owner of the private space.
ownerUserProfileName This property is required. String
The user profile who is the owner of the private space.

SpaceSpaceSettings
, SpaceSpaceSettingsArgs

AppType string
The type of app created within the space.
CodeEditorAppSettings SpaceSpaceSettingsCodeEditorAppSettings
The Code Editor application settings. See code_editor_app_settings Block below.
CustomFileSystems List<SpaceSpaceSettingsCustomFileSystem>
A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. See custom_file_system Block below.
JupyterLabAppSettings SpaceSpaceSettingsJupyterLabAppSettings
The settings for the JupyterLab application. See jupyter_lab_app_settings Block below.
JupyterServerAppSettings SpaceSpaceSettingsJupyterServerAppSettings
The Jupyter server's app settings. See jupyter_server_app_settings Block below.
KernelGatewayAppSettings SpaceSpaceSettingsKernelGatewayAppSettings
The kernel gateway app settings. See kernel_gateway_app_settings Block below.
SpaceStorageSettings SpaceSpaceSettingsSpaceStorageSettings
The storage settings. See space_storage_settings Block below.
AppType string
The type of app created within the space.
CodeEditorAppSettings SpaceSpaceSettingsCodeEditorAppSettings
The Code Editor application settings. See code_editor_app_settings Block below.
CustomFileSystems []SpaceSpaceSettingsCustomFileSystem
A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. See custom_file_system Block below.
JupyterLabAppSettings SpaceSpaceSettingsJupyterLabAppSettings
The settings for the JupyterLab application. See jupyter_lab_app_settings Block below.
JupyterServerAppSettings SpaceSpaceSettingsJupyterServerAppSettings
The Jupyter server's app settings. See jupyter_server_app_settings Block below.
KernelGatewayAppSettings SpaceSpaceSettingsKernelGatewayAppSettings
The kernel gateway app settings. See kernel_gateway_app_settings Block below.
SpaceStorageSettings SpaceSpaceSettingsSpaceStorageSettings
The storage settings. See space_storage_settings Block below.
appType String
The type of app created within the space.
codeEditorAppSettings SpaceSpaceSettingsCodeEditorAppSettings
The Code Editor application settings. See code_editor_app_settings Block below.
customFileSystems List<SpaceSpaceSettingsCustomFileSystem>
A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. See custom_file_system Block below.
jupyterLabAppSettings SpaceSpaceSettingsJupyterLabAppSettings
The settings for the JupyterLab application. See jupyter_lab_app_settings Block below.
jupyterServerAppSettings SpaceSpaceSettingsJupyterServerAppSettings
The Jupyter server's app settings. See jupyter_server_app_settings Block below.
kernelGatewayAppSettings SpaceSpaceSettingsKernelGatewayAppSettings
The kernel gateway app settings. See kernel_gateway_app_settings Block below.
spaceStorageSettings SpaceSpaceSettingsSpaceStorageSettings
The storage settings. See space_storage_settings Block below.
appType string
The type of app created within the space.
codeEditorAppSettings SpaceSpaceSettingsCodeEditorAppSettings
The Code Editor application settings. See code_editor_app_settings Block below.
customFileSystems SpaceSpaceSettingsCustomFileSystem[]
A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. See custom_file_system Block below.
jupyterLabAppSettings SpaceSpaceSettingsJupyterLabAppSettings
The settings for the JupyterLab application. See jupyter_lab_app_settings Block below.
jupyterServerAppSettings SpaceSpaceSettingsJupyterServerAppSettings
The Jupyter server's app settings. See jupyter_server_app_settings Block below.
kernelGatewayAppSettings SpaceSpaceSettingsKernelGatewayAppSettings
The kernel gateway app settings. See kernel_gateway_app_settings Block below.
spaceStorageSettings SpaceSpaceSettingsSpaceStorageSettings
The storage settings. See space_storage_settings Block below.
app_type str
The type of app created within the space.
code_editor_app_settings SpaceSpaceSettingsCodeEditorAppSettings
The Code Editor application settings. See code_editor_app_settings Block below.
custom_file_systems Sequence[SpaceSpaceSettingsCustomFileSystem]
A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. See custom_file_system Block below.
jupyter_lab_app_settings SpaceSpaceSettingsJupyterLabAppSettings
The settings for the JupyterLab application. See jupyter_lab_app_settings Block below.
jupyter_server_app_settings SpaceSpaceSettingsJupyterServerAppSettings
The Jupyter server's app settings. See jupyter_server_app_settings Block below.
kernel_gateway_app_settings SpaceSpaceSettingsKernelGatewayAppSettings
The kernel gateway app settings. See kernel_gateway_app_settings Block below.
space_storage_settings SpaceSpaceSettingsSpaceStorageSettings
The storage settings. See space_storage_settings Block below.
appType String
The type of app created within the space.
codeEditorAppSettings Property Map
The Code Editor application settings. See code_editor_app_settings Block below.
customFileSystems List<Property Map>
A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. See custom_file_system Block below.
jupyterLabAppSettings Property Map
The settings for the JupyterLab application. See jupyter_lab_app_settings Block below.
jupyterServerAppSettings Property Map
The Jupyter server's app settings. See jupyter_server_app_settings Block below.
kernelGatewayAppSettings Property Map
The kernel gateway app settings. See kernel_gateway_app_settings Block below.
spaceStorageSettings Property Map
The storage settings. See space_storage_settings Block below.

SpaceSpaceSettingsCodeEditorAppSettings
, SpaceSpaceSettingsCodeEditorAppSettingsArgs

DefaultResourceSpec This property is required. SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
AppLifecycleManagement SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
DefaultResourceSpec This property is required. SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
AppLifecycleManagement SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
defaultResourceSpec This property is required. SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
appLifecycleManagement SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
defaultResourceSpec This property is required. SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
appLifecycleManagement SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
default_resource_spec This property is required. SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
app_lifecycle_management SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
defaultResourceSpec This property is required. Property Map
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
appLifecycleManagement Property Map
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.

SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagement
, SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementArgs

IdleSettings SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
IdleSettings SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idleSettings SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idleSettings SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idle_settings SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idleSettings Property Map
Settings related to idle shutdown of Studio applications. See idle_settings Block below.

SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettings
, SpaceSpaceSettingsCodeEditorAppSettingsAppLifecycleManagementIdleSettingsArgs

IdleTimeoutInMinutes int
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
IdleTimeoutInMinutes int
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idleTimeoutInMinutes Integer
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idleTimeoutInMinutes number
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idle_timeout_in_minutes int
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idleTimeoutInMinutes Number
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.

SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec
, SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpecArgs

InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.
instanceType string
The instance type.
lifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn string
The ARN of the image version created on the instance.
instance_type str
The instance type.
lifecycle_config_arn str
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemaker_image_arn str
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemaker_image_version_alias str
The SageMaker AI Image Version Alias.
sagemaker_image_version_arn str
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.

SpaceSpaceSettingsCustomFileSystem
, SpaceSpaceSettingsCustomFileSystemArgs

EfsFileSystem This property is required. SpaceSpaceSettingsCustomFileSystemEfsFileSystem
A custom file system in Amazon EFS. See efs_file_system Block below.
EfsFileSystem This property is required. SpaceSpaceSettingsCustomFileSystemEfsFileSystem
A custom file system in Amazon EFS. See efs_file_system Block below.
efsFileSystem This property is required. SpaceSpaceSettingsCustomFileSystemEfsFileSystem
A custom file system in Amazon EFS. See efs_file_system Block below.
efsFileSystem This property is required. SpaceSpaceSettingsCustomFileSystemEfsFileSystem
A custom file system in Amazon EFS. See efs_file_system Block below.
efs_file_system This property is required. SpaceSpaceSettingsCustomFileSystemEfsFileSystem
A custom file system in Amazon EFS. See efs_file_system Block below.
efsFileSystem This property is required. Property Map
A custom file system in Amazon EFS. See efs_file_system Block below.

SpaceSpaceSettingsCustomFileSystemEfsFileSystem
, SpaceSpaceSettingsCustomFileSystemEfsFileSystemArgs

FileSystemId This property is required. string
The ID of your Amazon EFS file system.
FileSystemId This property is required. string
The ID of your Amazon EFS file system.
fileSystemId This property is required. String
The ID of your Amazon EFS file system.
fileSystemId This property is required. string
The ID of your Amazon EFS file system.
file_system_id This property is required. str
The ID of your Amazon EFS file system.
fileSystemId This property is required. String
The ID of your Amazon EFS file system.

SpaceSpaceSettingsJupyterLabAppSettings
, SpaceSpaceSettingsJupyterLabAppSettingsArgs

DefaultResourceSpec This property is required. SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
AppLifecycleManagement SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
CodeRepositories List<SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository>
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterLab application. See code_repository Block below.
DefaultResourceSpec This property is required. SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
AppLifecycleManagement SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
CodeRepositories []SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterLab application. See code_repository Block below.
defaultResourceSpec This property is required. SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
appLifecycleManagement SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
codeRepositories List<SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository>
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterLab application. See code_repository Block below.
defaultResourceSpec This property is required. SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
appLifecycleManagement SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
codeRepositories SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository[]
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterLab application. See code_repository Block below.
default_resource_spec This property is required. SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
app_lifecycle_management SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
code_repositories Sequence[SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository]
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterLab application. See code_repository Block below.
defaultResourceSpec This property is required. Property Map
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
appLifecycleManagement Property Map
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. See app_lifecycle_management Block below.
codeRepositories List<Property Map>
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterLab application. See code_repository Block below.

SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagement
, SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementArgs

IdleSettings SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
IdleSettings SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idleSettings SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idleSettings SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idle_settings SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettings
Settings related to idle shutdown of Studio applications. See idle_settings Block below.
idleSettings Property Map
Settings related to idle shutdown of Studio applications. See idle_settings Block below.

SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettings
, SpaceSpaceSettingsJupyterLabAppSettingsAppLifecycleManagementIdleSettingsArgs

IdleTimeoutInMinutes int
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
IdleTimeoutInMinutes int
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idleTimeoutInMinutes Integer
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idleTimeoutInMinutes number
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idle_timeout_in_minutes int
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.
idleTimeoutInMinutes Number
The time that SageMaker AI waits after the application becomes idle before shutting it down. Valid values are between 60 and 525600.

SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository
, SpaceSpaceSettingsJupyterLabAppSettingsCodeRepositoryArgs

RepositoryUrl This property is required. string
The URL of the Git repository.
RepositoryUrl This property is required. string
The URL of the Git repository.
repositoryUrl This property is required. String
The URL of the Git repository.
repositoryUrl This property is required. string
The URL of the Git repository.
repository_url This property is required. str
The URL of the Git repository.
repositoryUrl This property is required. String
The URL of the Git repository.

SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec
, SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpecArgs

InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.
instanceType string
The instance type.
lifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn string
The ARN of the image version created on the instance.
instance_type str
The instance type.
lifecycle_config_arn str
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemaker_image_arn str
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemaker_image_version_alias str
The SageMaker AI Image Version Alias.
sagemaker_image_version_arn str
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.

SpaceSpaceSettingsJupyterServerAppSettings
, SpaceSpaceSettingsJupyterServerAppSettingsArgs

DefaultResourceSpec This property is required. SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
CodeRepositories List<SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository>
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application. See code_repository Block below.
LifecycleConfigArns List<string>
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
DefaultResourceSpec This property is required. SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
CodeRepositories []SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application. See code_repository Block below.
LifecycleConfigArns []string
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
defaultResourceSpec This property is required. SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
codeRepositories List<SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository>
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application. See code_repository Block below.
lifecycleConfigArns List<String>
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
defaultResourceSpec This property is required. SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
codeRepositories SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository[]
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application. See code_repository Block below.
lifecycleConfigArns string[]
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
default_resource_spec This property is required. SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
code_repositories Sequence[SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository]
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application. See code_repository Block below.
lifecycle_config_arns Sequence[str]
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
defaultResourceSpec This property is required. Property Map
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
codeRepositories List<Property Map>
A list of Git repositories that SageMaker AI automatically displays to users for cloning in the JupyterServer application. See code_repository Block below.
lifecycleConfigArns List<String>
The Amazon Resource Name (ARN) of the Lifecycle Configurations.

SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository
, SpaceSpaceSettingsJupyterServerAppSettingsCodeRepositoryArgs

RepositoryUrl This property is required. string
The URL of the Git repository.
RepositoryUrl This property is required. string
The URL of the Git repository.
repositoryUrl This property is required. String
The URL of the Git repository.
repositoryUrl This property is required. string
The URL of the Git repository.
repository_url This property is required. str
The URL of the Git repository.
repositoryUrl This property is required. String
The URL of the Git repository.

SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec
, SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs

InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.
instanceType string
The instance type.
lifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn string
The ARN of the image version created on the instance.
instance_type str
The instance type.
lifecycle_config_arn str
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemaker_image_arn str
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemaker_image_version_alias str
The SageMaker AI Image Version Alias.
sagemaker_image_version_arn str
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.

SpaceSpaceSettingsKernelGatewayAppSettings
, SpaceSpaceSettingsKernelGatewayAppSettingsArgs

DefaultResourceSpec This property is required. SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
CustomImages List<SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage>
A list of custom SageMaker AI images that are configured to run as a KernelGateway app. See custom_image Block below.
LifecycleConfigArns List<string>
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
DefaultResourceSpec This property is required. SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
CustomImages []SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage
A list of custom SageMaker AI images that are configured to run as a KernelGateway app. See custom_image Block below.
LifecycleConfigArns []string
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
defaultResourceSpec This property is required. SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
customImages List<SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage>
A list of custom SageMaker AI images that are configured to run as a KernelGateway app. See custom_image Block below.
lifecycleConfigArns List<String>
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
defaultResourceSpec This property is required. SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
customImages SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage[]
A list of custom SageMaker AI images that are configured to run as a KernelGateway app. See custom_image Block below.
lifecycleConfigArns string[]
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
default_resource_spec This property is required. SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
custom_images Sequence[SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage]
A list of custom SageMaker AI images that are configured to run as a KernelGateway app. See custom_image Block below.
lifecycle_config_arns Sequence[str]
The Amazon Resource Name (ARN) of the Lifecycle Configurations.
defaultResourceSpec This property is required. Property Map
The default instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance. See default_resource_spec Block below.
customImages List<Property Map>
A list of custom SageMaker AI images that are configured to run as a KernelGateway app. See custom_image Block below.
lifecycleConfigArns List<String>
The Amazon Resource Name (ARN) of the Lifecycle Configurations.

SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage
, SpaceSpaceSettingsKernelGatewayAppSettingsCustomImageArgs

AppImageConfigName This property is required. string
The name of the App Image Config.
ImageName This property is required. string
The name of the Custom Image.
ImageVersionNumber int
The version number of the Custom Image.
AppImageConfigName This property is required. string
The name of the App Image Config.
ImageName This property is required. string
The name of the Custom Image.
ImageVersionNumber int
The version number of the Custom Image.
appImageConfigName This property is required. String
The name of the App Image Config.
imageName This property is required. String
The name of the Custom Image.
imageVersionNumber Integer
The version number of the Custom Image.
appImageConfigName This property is required. string
The name of the App Image Config.
imageName This property is required. string
The name of the Custom Image.
imageVersionNumber number
The version number of the Custom Image.
app_image_config_name This property is required. str
The name of the App Image Config.
image_name This property is required. str
The name of the Custom Image.
image_version_number int
The version number of the Custom Image.
appImageConfigName This property is required. String
The name of the App Image Config.
imageName This property is required. String
The name of the Custom Image.
imageVersionNumber Number
The version number of the Custom Image.

SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec
, SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpecArgs

InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
InstanceType string
The instance type.
LifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
SagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
SagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
SagemakerImageVersionArn string
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.
instanceType string
The instance type.
lifecycleConfigArn string
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn string
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias string
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn string
The ARN of the image version created on the instance.
instance_type str
The instance type.
lifecycle_config_arn str
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemaker_image_arn str
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemaker_image_version_alias str
The SageMaker AI Image Version Alias.
sagemaker_image_version_arn str
The ARN of the image version created on the instance.
instanceType String
The instance type.
lifecycleConfigArn String
The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
sagemakerImageArn String
The Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.
sagemakerImageVersionAlias String
The SageMaker AI Image Version Alias.
sagemakerImageVersionArn String
The ARN of the image version created on the instance.

SpaceSpaceSettingsSpaceStorageSettings
, SpaceSpaceSettingsSpaceStorageSettingsArgs

EbsStorageSettings This property is required. SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings
A collection of EBS storage settings for a space. See ebs_storage_settings Block below.
EbsStorageSettings This property is required. SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings
A collection of EBS storage settings for a space. See ebs_storage_settings Block below.
ebsStorageSettings This property is required. SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings
A collection of EBS storage settings for a space. See ebs_storage_settings Block below.
ebsStorageSettings This property is required. SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings
A collection of EBS storage settings for a space. See ebs_storage_settings Block below.
ebs_storage_settings This property is required. SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings
A collection of EBS storage settings for a space. See ebs_storage_settings Block below.
ebsStorageSettings This property is required. Property Map
A collection of EBS storage settings for a space. See ebs_storage_settings Block below.

SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings
, SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettingsArgs

EbsVolumeSizeInGb This property is required. int
The size of an EBS storage volume for a space.
EbsVolumeSizeInGb This property is required. int
The size of an EBS storage volume for a space.
ebsVolumeSizeInGb This property is required. Integer
The size of an EBS storage volume for a space.
ebsVolumeSizeInGb This property is required. number
The size of an EBS storage volume for a space.
ebs_volume_size_in_gb This property is required. int
The size of an EBS storage volume for a space.
ebsVolumeSizeInGb This property is required. Number
The size of an EBS storage volume for a space.

SpaceSpaceSharingSettings
, SpaceSpaceSharingSettingsArgs

SharingType This property is required. string
Specifies the sharing type of the space. Valid values are Private and Shared.
SharingType This property is required. string
Specifies the sharing type of the space. Valid values are Private and Shared.
sharingType This property is required. String
Specifies the sharing type of the space. Valid values are Private and Shared.
sharingType This property is required. string
Specifies the sharing type of the space. Valid values are Private and Shared.
sharing_type This property is required. str
Specifies the sharing type of the space. Valid values are Private and Shared.
sharingType This property is required. String
Specifies the sharing type of the space. Valid values are Private and Shared.

Import

Using pulumi import, import SageMaker AI Spaces using the id. For example:

$ pulumi import aws:sagemaker/space:Space test_space arn:aws:sagemaker:us-west-2:123456789012:space/domain-id/space-name
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.