public static interface CfnDomain.DefaultSpaceSettingsProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; DefaultSpaceSettingsProperty defaultSpaceSettingsProperty = DefaultSpaceSettingsProperty.builder() .executionRole("executionRole") .jupyterServerAppSettings(JupyterServerAppSettingsProperty.builder() .defaultResourceSpec(ResourceSpecProperty.builder() .instanceType("instanceType") .lifecycleConfigArn("lifecycleConfigArn") .sageMakerImageArn("sageMakerImageArn") .sageMakerImageVersionArn("sageMakerImageVersionArn") .build()) .build()) .kernelGatewayAppSettings(KernelGatewayAppSettingsProperty.builder() .customImages(List.of(CustomImageProperty.builder() .appImageConfigName("appImageConfigName") .imageName("imageName") // the properties below are optional .imageVersionNumber(123) .build())) .defaultResourceSpec(ResourceSpecProperty.builder() .instanceType("instanceType") .lifecycleConfigArn("lifecycleConfigArn") .sageMakerImageArn("sageMakerImageArn") .sageMakerImageVersionArn("sageMakerImageVersionArn") .build()) .build()) .securityGroups(List.of("securityGroups")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDomain.DefaultSpaceSettingsProperty.Builder
A builder for
CfnDomain.DefaultSpaceSettingsProperty |
static class |
CfnDomain.DefaultSpaceSettingsProperty.Jsii$Proxy
An implementation for
CfnDomain.DefaultSpaceSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDomain.DefaultSpaceSettingsProperty.Builder |
builder() |
default java.lang.String |
getExecutionRole()
The execution role for the space.
|
default java.lang.Object |
getJupyterServerAppSettings()
The JupyterServer app settings.
|
default java.lang.Object |
getKernelGatewayAppSettings()
The KernelGateway app settings.
|
default java.util.List<java.lang.String> |
getSecurityGroups()
The security groups for the Amazon Virtual Private Cloud that the space uses for communication.
|
default java.lang.String getExecutionRole()
default java.lang.Object getJupyterServerAppSettings()
default java.lang.Object getKernelGatewayAppSettings()
default java.util.List<java.lang.String> getSecurityGroups()
static CfnDomain.DefaultSpaceSettingsProperty.Builder builder()