@Stability(value=Stable)
public static interface CfnDomain.DomainSettingsProperty
extends software.amazon.jsii.JsiiSerializable
These settings are specified through the CreateDomain API call.
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.*;
DomainSettingsProperty domainSettingsProperty = DomainSettingsProperty.builder()
.rStudioServerProDomainSettings(RStudioServerProDomainSettingsProperty.builder()
.domainExecutionRoleArn("domainExecutionRoleArn")
// the properties below are optional
.defaultResourceSpec(ResourceSpecProperty.builder()
.instanceType("instanceType")
.sageMakerImageArn("sageMakerImageArn")
.sageMakerImageVersionArn("sageMakerImageVersionArn")
.build())
.rStudioConnectUrl("rStudioConnectUrl")
.rStudioPackageManagerUrl("rStudioPackageManagerUrl")
.build())
.securityGroupIds(List.of("securityGroupIds"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDomain.DomainSettingsProperty.Builder
A builder for
CfnDomain.DomainSettingsProperty |
static class |
CfnDomain.DomainSettingsProperty.Jsii$Proxy
An implementation for
CfnDomain.DomainSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDomain.DomainSettingsProperty.Builder |
builder() |
default Object |
getRStudioServerProDomainSettings()
A collection of settings that configure the `RStudioServerPro` Domain-level app.
|
default List<String> |
getSecurityGroupIds()
The security groups for the Amazon Virtual Private Cloud that the `Domain` uses for communication between Domain-level apps and user apps.
|
@Stability(value=Stable) @Nullable default Object getRStudioServerProDomainSettings()
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIds()
@Stability(value=Stable) static CfnDomain.DomainSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.