aws.sagemaker.Space
Explore with Pulumi AI
Provides a SageMaker 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",
});
import pulumi
import pulumi_aws as aws
example = aws.sagemaker.Space("example",
domain_id=test["id"],
space_name="example")
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
})
}
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",
});
});
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());
}
}
resources:
example:
type: aws:sagemaker:Space
properties:
domainId: ${test.id}
spaceName: example
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)
type: aws:sagemaker:Space
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SpaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args SpaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
},
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",
},
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" },
},
});
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"),
},
},
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"),
},
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"),
},
})
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())
.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())
.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());
space_resource = aws.sagemaker.Space("spaceResource",
domain_id="string",
space_name="string",
ownership_settings={
"ownerUserProfileName": "string",
},
space_display_name="string",
space_settings={
"appType": "string",
"codeEditorAppSettings": {
"defaultResourceSpec": {
"instanceType": "string",
"lifecycleConfigArn": "string",
"sagemakerImageArn": "string",
"sagemakerImageVersionAlias": "string",
"sagemakerImageVersionArn": "string",
},
},
"customFileSystems": [{
"efsFileSystem": {
"fileSystemId": "string",
},
}],
"jupyterLabAppSettings": {
"defaultResourceSpec": {
"instanceType": "string",
"lifecycleConfigArn": "string",
"sagemakerImageArn": "string",
"sagemakerImageVersionAlias": "string",
"sagemakerImageVersionArn": "string",
},
"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,
},
},
},
space_sharing_settings={
"sharingType": "string",
},
tags={
"string": "string",
})
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",
},
},
customFileSystems: [{
efsFileSystem: {
fileSystemId: "string",
},
}],
jupyterLabAppSettings: {
defaultResourceSpec: {
instanceType: "string",
lifecycleConfigArn: "string",
sagemakerImageArn: "string",
sagemakerImageVersionAlias: "string",
sagemakerImageVersionArn: "string",
},
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",
},
});
type: aws:sagemaker:Space
properties:
domainId: string
ownershipSettings:
ownerUserProfileName: string
spaceDisplayName: string
spaceName: string
spaceSettings:
appType: string
codeEditorAppSettings:
defaultResourceSpec:
instanceType: string
lifecycleConfigArn: string
sagemakerImageArn: string
sagemakerImageVersionAlias: string
sagemakerImageVersionArn: string
customFileSystems:
- efsFileSystem:
fileSystemId: string
jupyterLabAppSettings:
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
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
The Space resource accepts the following input properties:
- Domain
Id string - The ID of the associated Domain.
- Space
Name string - The name of the space.
- Ownership
Settings Pulumi.Aws. Sagemaker. Inputs. Space Ownership Settings - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - Space
Display stringName - The name of the space that appears in the SageMaker Studio UI.
- Space
Settings Pulumi.Aws. Sagemaker. Inputs. Space Space Settings - A collection of space settings. See
space_settings
Block below. - Space
Sharing Pulumi.Settings Aws. Sagemaker. Inputs. Space Space Sharing Settings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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.
- Domain
Id string - The ID of the associated Domain.
- Space
Name string - The name of the space.
- Ownership
Settings SpaceOwnership Settings Args - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - Space
Display stringName - The name of the space that appears in the SageMaker Studio UI.
- Space
Settings SpaceSpace Settings Args - A collection of space settings. See
space_settings
Block below. - Space
Sharing SpaceSettings Space Sharing Settings Args - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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.
- domain
Id String - The ID of the associated Domain.
- space
Name String - The name of the space.
- ownership
Settings SpaceOwnership Settings - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space
Display StringName - The name of the space that appears in the SageMaker Studio UI.
- space
Settings SpaceSpace Settings - A collection of space settings. See
space_settings
Block below. - space
Sharing SpaceSettings Space Sharing Settings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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.
- domain
Id string - The ID of the associated Domain.
- space
Name string - The name of the space.
- ownership
Settings SpaceOwnership Settings - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space
Display stringName - The name of the space that appears in the SageMaker Studio UI.
- space
Settings SpaceSpace Settings - A collection of space settings. See
space_settings
Block below. - space
Sharing SpaceSettings Space Sharing Settings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - {[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 str - The ID of the associated Domain.
- space_
name str - The name of the space.
- ownership_
settings SpaceOwnership Settings Args - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space_
display_ strname - The name of the space that appears in the SageMaker Studio UI.
- space_
settings SpaceSpace Settings Args - A collection of space settings. See
space_settings
Block below. - space_
sharing_ Spacesettings Space Sharing Settings Args - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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.
- domain
Id String - The ID of the associated Domain.
- space
Name String - The name of the space.
- ownership
Settings Property Map - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space
Display StringName - The name of the space that appears in the SageMaker Studio UI.
- space
Settings Property Map - A collection of space settings. See
space_settings
Block below. - space
Sharing Property MapSettings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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).
- Home
Efs stringFile System Uid - 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.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- Home
Efs stringFile System Uid - 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.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- home
Efs StringFile System Uid - 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.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- home
Efs stringFile System Uid - 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.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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_ strfile_ system_ uid - 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.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- home
Efs StringFile System Uid - 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.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Arn string
- The space's Amazon Resource Name (ARN).
- Domain
Id string - The ID of the associated Domain.
- Home
Efs stringFile System Uid - The ID of the space's profile in the Amazon Elastic File System volume.
- Ownership
Settings Pulumi.Aws. Sagemaker. Inputs. Space Ownership Settings - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - Space
Display stringName - The name of the space that appears in the SageMaker Studio UI.
- Space
Name string - The name of the space.
- Space
Settings Pulumi.Aws. Sagemaker. Inputs. Space Space Settings - A collection of space settings. See
space_settings
Block below. - Space
Sharing Pulumi.Settings Aws. Sagemaker. Inputs. Space Space Sharing Settings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- Domain
Id string - The ID of the associated Domain.
- Home
Efs stringFile System Uid - The ID of the space's profile in the Amazon Elastic File System volume.
- Ownership
Settings SpaceOwnership Settings Args - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - Space
Display stringName - The name of the space that appears in the SageMaker Studio UI.
- Space
Name string - The name of the space.
- Space
Settings SpaceSpace Settings Args - A collection of space settings. See
space_settings
Block below. - Space
Sharing SpaceSettings Space Sharing Settings Args - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- domain
Id String - The ID of the associated Domain.
- home
Efs StringFile System Uid - The ID of the space's profile in the Amazon Elastic File System volume.
- ownership
Settings SpaceOwnership Settings - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space
Display StringName - The name of the space that appears in the SageMaker Studio UI.
- space
Name String - The name of the space.
- space
Settings SpaceSpace Settings - A collection of space settings. See
space_settings
Block below. - space
Sharing SpaceSettings Space Sharing Settings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- domain
Id string - The ID of the associated Domain.
- home
Efs stringFile System Uid - The ID of the space's profile in the Amazon Elastic File System volume.
- ownership
Settings SpaceOwnership Settings - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space
Display stringName - The name of the space that appears in the SageMaker Studio UI.
- space
Name string - The name of the space.
- space
Settings SpaceSpace Settings - A collection of space settings. See
space_settings
Block below. - space
Sharing SpaceSettings Space Sharing Settings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - {[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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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 str - The ID of the associated Domain.
- home_
efs_ strfile_ system_ uid - The ID of the space's profile in the Amazon Elastic File System volume.
- ownership_
settings SpaceOwnership Settings Args - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space_
display_ strname - The name of the space that appears in the SageMaker Studio UI.
- space_
name str - The name of the space.
- space_
settings SpaceSpace Settings Args - A collection of space settings. See
space_settings
Block below. - space_
sharing_ Spacesettings Space Sharing Settings Args - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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).
- domain
Id String - The ID of the associated Domain.
- home
Efs StringFile System Uid - The ID of the space's profile in the Amazon Elastic File System volume.
- ownership
Settings Property Map - A collection of ownership settings. Required if
space_sharing_settings
is set. Seeownership_settings
Block below. - space
Display StringName - The name of the space that appears in the SageMaker Studio UI.
- space
Name String - The name of the space.
- space
Settings Property Map - A collection of space settings. See
space_settings
Block below. - space
Sharing Property MapSettings - A collection of space sharing settings. Required if
ownership_settings
is set. Seespace_sharing_settings
Block below. - 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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - 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
- Owner
User stringProfile Name - The user profile who is the owner of the private space.
- Owner
User stringProfile Name - The user profile who is the owner of the private space.
- owner
User StringProfile Name - The user profile who is the owner of the private space.
- owner
User stringProfile Name - The user profile who is the owner of the private space.
- owner_
user_ strprofile_ name - The user profile who is the owner of the private space.
- owner
User StringProfile Name - The user profile who is the owner of the private space.
SpaceSpaceSettings, SpaceSpaceSettingsArgs
- App
Type string - The type of app created within the space.
- Code
Editor Pulumi.App Settings Aws. Sagemaker. Inputs. Space Space Settings Code Editor App Settings - The Code Editor application settings. See
code_editor_app_settings
Block below. - Custom
File List<Pulumi.Systems Aws. Sagemaker. Inputs. Space Space Settings Custom File System> - A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. See
custom_file_system
Block below. - Jupyter
Lab Pulumi.App Settings Aws. Sagemaker. Inputs. Space Space Settings Jupyter Lab App Settings - The settings for the JupyterLab application. See
jupyter_lab_app_settings
Block below. - Jupyter
Server Pulumi.App Settings Aws. Sagemaker. Inputs. Space Space Settings Jupyter Server App Settings - The Jupyter server's app settings. See
jupyter_server_app_settings
Block below. - Kernel
Gateway Pulumi.App Settings Aws. Sagemaker. Inputs. Space Space Settings Kernel Gateway App Settings - The kernel gateway app settings. See
kernel_gateway_app_settings
Block below. - Space
Storage Pulumi.Settings Aws. Sagemaker. Inputs. Space Space Settings Space Storage Settings - The storage settings. See
space_storage_settings
Block below.
- App
Type string - The type of app created within the space.
- Code
Editor SpaceApp Settings Space Settings Code Editor App Settings - The Code Editor application settings. See
code_editor_app_settings
Block below. - Custom
File []SpaceSystems Space Settings Custom File System - A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. See
custom_file_system
Block below. - Jupyter
Lab SpaceApp Settings Space Settings Jupyter Lab App Settings - The settings for the JupyterLab application. See
jupyter_lab_app_settings
Block below. - Jupyter
Server SpaceApp Settings Space Settings Jupyter Server App Settings - The Jupyter server's app settings. See
jupyter_server_app_settings
Block below. - Kernel
Gateway SpaceApp Settings Space Settings Kernel Gateway App Settings - The kernel gateway app settings. See
kernel_gateway_app_settings
Block below. - Space
Storage SpaceSettings Space Settings Space Storage Settings - The storage settings. See
space_storage_settings
Block below.
- app
Type String - The type of app created within the space.
- code
Editor SpaceApp Settings Space Settings Code Editor App Settings - The Code Editor application settings. See
code_editor_app_settings
Block below. - custom
File List<SpaceSystems Space Settings Custom File System> - A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. See
custom_file_system
Block below. - jupyter
Lab SpaceApp Settings Space Settings Jupyter Lab App Settings - The settings for the JupyterLab application. See
jupyter_lab_app_settings
Block below. - jupyter
Server SpaceApp Settings Space Settings Jupyter Server App Settings - The Jupyter server's app settings. See
jupyter_server_app_settings
Block below. - kernel
Gateway SpaceApp Settings Space Settings Kernel Gateway App Settings - The kernel gateway app settings. See
kernel_gateway_app_settings
Block below. - space
Storage SpaceSettings Space Settings Space Storage Settings - The storage settings. See
space_storage_settings
Block below.
- app
Type string - The type of app created within the space.
- code
Editor SpaceApp Settings Space Settings Code Editor App Settings - The Code Editor application settings. See
code_editor_app_settings
Block below. - custom
File SpaceSystems Space Settings Custom File System[] - A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. See
custom_file_system
Block below. - jupyter
Lab SpaceApp Settings Space Settings Jupyter Lab App Settings - The settings for the JupyterLab application. See
jupyter_lab_app_settings
Block below. - jupyter
Server SpaceApp Settings Space Settings Jupyter Server App Settings - The Jupyter server's app settings. See
jupyter_server_app_settings
Block below. - kernel
Gateway SpaceApp Settings Space Settings Kernel Gateway App Settings - The kernel gateway app settings. See
kernel_gateway_app_settings
Block below. - space
Storage SpaceSettings Space Settings Space Storage Settings - The storage settings. See
space_storage_settings
Block below.
- app_
type str - The type of app created within the space.
- code_
editor_ Spaceapp_ settings Space Settings Code Editor App Settings - The Code Editor application settings. See
code_editor_app_settings
Block below. - custom_
file_ Sequence[Spacesystems Space Settings Custom File System] - A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. See
custom_file_system
Block below. - jupyter_
lab_ Spaceapp_ settings Space Settings Jupyter Lab App Settings - The settings for the JupyterLab application. See
jupyter_lab_app_settings
Block below. - jupyter_
server_ Spaceapp_ settings Space Settings Jupyter Server App Settings - The Jupyter server's app settings. See
jupyter_server_app_settings
Block below. - kernel_
gateway_ Spaceapp_ settings Space Settings Kernel Gateway App Settings - The kernel gateway app settings. See
kernel_gateway_app_settings
Block below. - space_
storage_ Spacesettings Space Settings Space Storage Settings - The storage settings. See
space_storage_settings
Block below.
- app
Type String - The type of app created within the space.
- code
Editor Property MapApp Settings - The Code Editor application settings. See
code_editor_app_settings
Block below. - custom
File List<Property Map>Systems - A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. See
custom_file_system
Block below. - jupyter
Lab Property MapApp Settings - The settings for the JupyterLab application. See
jupyter_lab_app_settings
Block below. - jupyter
Server Property MapApp Settings - The Jupyter server's app settings. See
jupyter_server_app_settings
Block below. - kernel
Gateway Property MapApp Settings - The kernel gateway app settings. See
kernel_gateway_app_settings
Block below. - space
Storage Property MapSettings - The storage settings. See
space_storage_settings
Block below.
SpaceSpaceSettingsCodeEditorAppSettings, SpaceSpaceSettingsCodeEditorAppSettingsArgs
- Default
Resource Pulumi.Spec Aws. Sagemaker. Inputs. Space Space Settings Code Editor App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below.
- Default
Resource SpaceSpec Space Settings Code Editor App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below.
- default
Resource SpaceSpec Space Settings Code Editor App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below.
- default
Resource SpaceSpec Space Settings Code Editor App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below.
- default_
resource_ Spacespec Space Settings Code Editor App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below.
- default
Resource Property MapSpec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below.
SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpec, SpaceSpaceSettingsCodeEditorAppSettingsDefaultResourceSpecArgs
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
- instance
Type string - The instance type.
- lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance_
type str - The instance type.
- lifecycle_
config_ strarn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker_
image_ strarn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker_
image_ strversion_ alias - The SageMaker Image Version Alias.
- sagemaker_
image_ strversion_ arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
SpaceSpaceSettingsCustomFileSystem, SpaceSpaceSettingsCustomFileSystemArgs
- Efs
File Pulumi.System Aws. Sagemaker. Inputs. Space Space Settings Custom File System Efs File System - A custom file system in Amazon EFS. See
efs_file_system
Block below.
- Efs
File SpaceSystem Space Settings Custom File System Efs File System - A custom file system in Amazon EFS. See
efs_file_system
Block below.
- efs
File SpaceSystem Space Settings Custom File System Efs File System - A custom file system in Amazon EFS. See
efs_file_system
Block below.
- efs
File SpaceSystem Space Settings Custom File System Efs File System - A custom file system in Amazon EFS. See
efs_file_system
Block below.
- efs_
file_ Spacesystem Space Settings Custom File System Efs File System - A custom file system in Amazon EFS. See
efs_file_system
Block below.
- efs
File Property MapSystem - A custom file system in Amazon EFS. See
efs_file_system
Block below.
SpaceSpaceSettingsCustomFileSystemEfsFileSystem, SpaceSpaceSettingsCustomFileSystemEfsFileSystemArgs
- File
System stringId - The ID of your Amazon EFS file system.
- File
System stringId - The ID of your Amazon EFS file system.
- file
System StringId - The ID of your Amazon EFS file system.
- file
System stringId - The ID of your Amazon EFS file system.
- file_
system_ strid - The ID of your Amazon EFS file system.
- file
System StringId - The ID of your Amazon EFS file system.
SpaceSpaceSettingsJupyterLabAppSettings, SpaceSpaceSettingsJupyterLabAppSettingsArgs
- Default
Resource Pulumi.Spec Aws. Sagemaker. Inputs. Space Space Settings Jupyter Lab App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - Code
Repositories List<Pulumi.Aws. Sagemaker. Inputs. Space Space Settings Jupyter Lab App Settings Code Repository> - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below.
- Default
Resource SpaceSpec Space Settings Jupyter Lab App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - Code
Repositories []SpaceSpace Settings Jupyter Lab App Settings Code Repository - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below.
- default
Resource SpaceSpec Space Settings Jupyter Lab App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code
Repositories List<SpaceSpace Settings Jupyter Lab App Settings Code Repository> - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below.
- default
Resource SpaceSpec Space Settings Jupyter Lab App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code
Repositories SpaceSpace Settings Jupyter Lab App Settings Code Repository[] - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below.
- default_
resource_ Spacespec Space Settings Jupyter Lab App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code_
repositories Sequence[SpaceSpace Settings Jupyter Lab App Settings Code Repository] - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below.
- default
Resource Property MapSpec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code
Repositories List<Property Map> - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below.
SpaceSpaceSettingsJupyterLabAppSettingsCodeRepository, SpaceSpaceSettingsJupyterLabAppSettingsCodeRepositoryArgs
- Repository
Url string - The URL of the Git repository.
- Repository
Url string - The URL of the Git repository.
- repository
Url String - The URL of the Git repository.
- repository
Url string - The URL of the Git repository.
- repository_
url str - The URL of the Git repository.
- repository
Url String - The URL of the Git repository.
SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpec, SpaceSpaceSettingsJupyterLabAppSettingsDefaultResourceSpecArgs
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
- instance
Type string - The instance type.
- lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance_
type str - The instance type.
- lifecycle_
config_ strarn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker_
image_ strarn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker_
image_ strversion_ alias - The SageMaker Image Version Alias.
- sagemaker_
image_ strversion_ arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
SpaceSpaceSettingsJupyterServerAppSettings, SpaceSpaceSettingsJupyterServerAppSettingsArgs
- Default
Resource Pulumi.Spec Aws. Sagemaker. Inputs. Space Space Settings Jupyter Server App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - Code
Repositories List<Pulumi.Aws. Sagemaker. Inputs. Space Space Settings Jupyter Server App Settings Code Repository> - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below. - Lifecycle
Config List<string>Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- Default
Resource SpaceSpec Space Settings Jupyter Server App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - Code
Repositories []SpaceSpace Settings Jupyter Server App Settings Code Repository - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below. - Lifecycle
Config []stringArns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default
Resource SpaceSpec Space Settings Jupyter Server App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code
Repositories List<SpaceSpace Settings Jupyter Server App Settings Code Repository> - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below. - lifecycle
Config List<String>Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default
Resource SpaceSpec Space Settings Jupyter Server App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code
Repositories SpaceSpace Settings Jupyter Server App Settings Code Repository[] - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below. - lifecycle
Config string[]Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default_
resource_ Spacespec Space Settings Jupyter Server App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code_
repositories Sequence[SpaceSpace Settings Jupyter Server App Settings Code Repository] - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below. - lifecycle_
config_ Sequence[str]arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default
Resource Property MapSpec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - code
Repositories List<Property Map> - A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterServer application. See
code_repository
Block below. - lifecycle
Config List<String>Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
SpaceSpaceSettingsJupyterServerAppSettingsCodeRepository, SpaceSpaceSettingsJupyterServerAppSettingsCodeRepositoryArgs
- Repository
Url string - The URL of the Git repository.
- Repository
Url string - The URL of the Git repository.
- repository
Url String - The URL of the Git repository.
- repository
Url string - The URL of the Git repository.
- repository_
url str - The URL of the Git repository.
- repository
Url String - The URL of the Git repository.
SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpec, SpaceSpaceSettingsJupyterServerAppSettingsDefaultResourceSpecArgs
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
- instance
Type string - The instance type.
- lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance_
type str - The instance type.
- lifecycle_
config_ strarn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker_
image_ strarn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker_
image_ strversion_ alias - The SageMaker Image Version Alias.
- sagemaker_
image_ strversion_ arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
SpaceSpaceSettingsKernelGatewayAppSettings, SpaceSpaceSettingsKernelGatewayAppSettingsArgs
- Default
Resource Pulumi.Spec Aws. Sagemaker. Inputs. Space Space Settings Kernel Gateway App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - Custom
Images List<Pulumi.Aws. Sagemaker. Inputs. Space Space Settings Kernel Gateway App Settings Custom Image> - A list of custom SageMaker images that are configured to run as a KernelGateway app. See
custom_image
Block below. - Lifecycle
Config List<string>Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- Default
Resource SpaceSpec Space Settings Kernel Gateway App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - Custom
Images []SpaceSpace Settings Kernel Gateway App Settings Custom Image - A list of custom SageMaker images that are configured to run as a KernelGateway app. See
custom_image
Block below. - Lifecycle
Config []stringArns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default
Resource SpaceSpec Space Settings Kernel Gateway App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - custom
Images List<SpaceSpace Settings Kernel Gateway App Settings Custom Image> - A list of custom SageMaker images that are configured to run as a KernelGateway app. See
custom_image
Block below. - lifecycle
Config List<String>Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default
Resource SpaceSpec Space Settings Kernel Gateway App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - custom
Images SpaceSpace Settings Kernel Gateway App Settings Custom Image[] - A list of custom SageMaker images that are configured to run as a KernelGateway app. See
custom_image
Block below. - lifecycle
Config string[]Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default_
resource_ Spacespec Space Settings Kernel Gateway App Settings Default Resource Spec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - custom_
images Sequence[SpaceSpace Settings Kernel Gateway App Settings Custom Image] - A list of custom SageMaker images that are configured to run as a KernelGateway app. See
custom_image
Block below. - lifecycle_
config_ Sequence[str]arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
- default
Resource Property MapSpec - The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. See
default_resource_spec
Block below. - custom
Images List<Property Map> - A list of custom SageMaker images that are configured to run as a KernelGateway app. See
custom_image
Block below. - lifecycle
Config List<String>Arns - The Amazon Resource Name (ARN) of the Lifecycle Configurations.
SpaceSpaceSettingsKernelGatewayAppSettingsCustomImage, SpaceSpaceSettingsKernelGatewayAppSettingsCustomImageArgs
- App
Image stringConfig Name - The name of the App Image Config.
- Image
Name string - The name of the Custom Image.
- Image
Version intNumber - The version number of the Custom Image.
- App
Image stringConfig Name - The name of the App Image Config.
- Image
Name string - The name of the Custom Image.
- Image
Version intNumber - The version number of the Custom Image.
- app
Image StringConfig Name - The name of the App Image Config.
- image
Name String - The name of the Custom Image.
- image
Version IntegerNumber - The version number of the Custom Image.
- app
Image stringConfig Name - The name of the App Image Config.
- image
Name string - The name of the Custom Image.
- image
Version numberNumber - The version number of the Custom Image.
- app_
image_ strconfig_ name - The name of the App Image Config.
- image_
name str - The name of the Custom Image.
- image_
version_ intnumber - The version number of the Custom Image.
- app
Image StringConfig Name - The name of the App Image Config.
- image
Name String - The name of the Custom Image.
- image
Version NumberNumber - The version number of the Custom Image.
SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpec, SpaceSpaceSettingsKernelGatewayAppSettingsDefaultResourceSpecArgs
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- Instance
Type string - The instance type.
- Lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- Sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- Sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
- instance
Type string - The instance type.
- lifecycle
Config stringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image stringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image stringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image stringVersion Arn - The ARN of the image version created on the instance.
- instance_
type str - The instance type.
- lifecycle_
config_ strarn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker_
image_ strarn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker_
image_ strversion_ alias - The SageMaker Image Version Alias.
- sagemaker_
image_ strversion_ arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type.
- lifecycle
Config StringArn - The Amazon Resource Name (ARN) of the Lifecycle Configuration attached to the Resource.
- sagemaker
Image StringArn - The Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- sagemaker
Image StringVersion Alias - The SageMaker Image Version Alias.
- sagemaker
Image StringVersion Arn - The ARN of the image version created on the instance.
SpaceSpaceSettingsSpaceStorageSettings, SpaceSpaceSettingsSpaceStorageSettingsArgs
- Ebs
Storage Pulumi.Settings Aws. Sagemaker. Inputs. Space Space Settings Space Storage Settings Ebs Storage Settings - A collection of EBS storage settings for a space. See
ebs_storage_settings
Block below.
- Ebs
Storage SpaceSettings Space Settings Space Storage Settings Ebs Storage Settings - A collection of EBS storage settings for a space. See
ebs_storage_settings
Block below.
- ebs
Storage SpaceSettings Space Settings Space Storage Settings Ebs Storage Settings - A collection of EBS storage settings for a space. See
ebs_storage_settings
Block below.
- ebs
Storage SpaceSettings Space Settings Space Storage Settings Ebs Storage Settings - A collection of EBS storage settings for a space. See
ebs_storage_settings
Block below.
- ebs_
storage_ Spacesettings Space Settings Space Storage Settings Ebs Storage Settings - A collection of EBS storage settings for a space. See
ebs_storage_settings
Block below.
- ebs
Storage Property MapSettings - A collection of EBS storage settings for a space. See
ebs_storage_settings
Block below.
SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettings, SpaceSpaceSettingsSpaceStorageSettingsEbsStorageSettingsArgs
- Ebs
Volume intSize In Gb - The size of an EBS storage volume for a space.
- Ebs
Volume intSize In Gb - The size of an EBS storage volume for a space.
- ebs
Volume IntegerSize In Gb - The size of an EBS storage volume for a space.
- ebs
Volume numberSize In Gb - The size of an EBS storage volume for a space.
- ebs_
volume_ intsize_ in_ gb - The size of an EBS storage volume for a space.
- ebs
Volume NumberSize In Gb - The size of an EBS storage volume for a space.
SpaceSpaceSharingSettings, SpaceSpaceSharingSettingsArgs
- string
- Specifies the sharing type of the space. Valid values are
Private
andShared
.
- string
- Specifies the sharing type of the space. Valid values are
Private
andShared
.
- String
- Specifies the sharing type of the space. Valid values are
Private
andShared
.
- string
- Specifies the sharing type of the space. Valid values are
Private
andShared
.
- str
- Specifies the sharing type of the space. Valid values are
Private
andShared
.
- String
- Specifies the sharing type of the space. Valid values are
Private
andShared
.
Import
Using pulumi import
, import SageMaker 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
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.