@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.803Z") @Stability(value=Stable) public interface CfnDomainProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnDomainProps cfnDomainProps = CfnDomainProps.builder()
.authMode("authMode")
.defaultUserSettings(UserSettingsProperty.builder()
.executionRole("executionRole")
.jupyterServerAppSettings(JupyterServerAppSettingsProperty.builder()
.defaultResourceSpec(ResourceSpecProperty.builder()
.instanceType("instanceType")
.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")
.sageMakerImageArn("sageMakerImageArn")
.sageMakerImageVersionArn("sageMakerImageVersionArn")
.build())
.build())
.securityGroups(List.of("securityGroups"))
.sharingSettings(SharingSettingsProperty.builder()
.notebookOutputOption("notebookOutputOption")
.s3KmsKeyId("s3KmsKeyId")
.s3OutputPath("s3OutputPath")
.build())
.build())
.domainName("domainName")
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
// the properties below are optional
.appNetworkAccessType("appNetworkAccessType")
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDomainProps.Builder
A builder for
CfnDomainProps |
static class |
CfnDomainProps.Jsii$Proxy
An implementation for
CfnDomainProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDomainProps.Builder |
builder() |
default String |
getAppNetworkAccessType()
`AWS::SageMaker::Domain.AppNetworkAccessType`.
|
String |
getAuthMode()
`AWS::SageMaker::Domain.AuthMode`.
|
Object |
getDefaultUserSettings()
`AWS::SageMaker::Domain.DefaultUserSettings`.
|
String |
getDomainName()
`AWS::SageMaker::Domain.DomainName`.
|
default String |
getKmsKeyId()
`AWS::SageMaker::Domain.KmsKeyId`.
|
List<String> |
getSubnetIds()
`AWS::SageMaker::Domain.SubnetIds`.
|
default List<CfnTag> |
getTags()
`AWS::SageMaker::Domain.Tags`.
|
String |
getVpcId()
`AWS::SageMaker::Domain.VpcId`.
|
@Stability(value=Stable) @Nullable default String getAppNetworkAccessType()
@Stability(value=Stable) @NotNull String getAuthMode()
@Stability(value=Stable) @NotNull Object getDefaultUserSettings()
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) @NotNull List<String> getSubnetIds()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @NotNull String getVpcId()
@Stability(value=Stable) static CfnDomainProps.Builder builder()
CfnDomainProps.Builder of CfnDomainPropsCopyright © 2021. All rights reserved.