Interface CfnDomain.RStudioServerProDomainSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.RStudioServerProDomainSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.RStudioServerProDomainSettingsProperty
extends software.amazon.jsii.JsiiSerializable
A collection of settings that configure the
RStudioServerPro Domain-level app.
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.*;
RStudioServerProDomainSettingsProperty rStudioServerProDomainSettingsProperty = RStudioServerProDomainSettingsProperty.builder()
.domainExecutionRoleArn("domainExecutionRoleArn")
// the properties below are optional
.defaultResourceSpec(ResourceSpecProperty.builder()
.instanceType("instanceType")
.lifecycleConfigArn("lifecycleConfigArn")
.sageMakerImageArn("sageMakerImageArn")
.sageMakerImageVersionArn("sageMakerImageVersionArn")
.build())
.rStudioConnectUrl("rStudioConnectUrl")
.rStudioPackageManagerUrl("rStudioPackageManagerUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.RStudioServerProDomainSettingsPropertystatic final classAn implementation forCfnDomain.RStudioServerProDomainSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA collection that defines the defaultInstanceType,SageMakerImageArn, andSageMakerImageVersionArnfor the Domain.The ARN of the execution role for theRStudioServerProDomain-level app.default StringA URL pointing to an RStudio Connect server.default StringA URL pointing to an RStudio Package Manager server.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainExecutionRoleArn
The ARN of the execution role for theRStudioServerProDomain-level app.- See Also:
-
getDefaultResourceSpec
A collection that defines the defaultInstanceType,SageMakerImageArn, andSageMakerImageVersionArnfor the Domain.Returns union: either
IResolvableorCfnDomain.ResourceSpecProperty- See Also:
-
getRStudioConnectUrl
A URL pointing to an RStudio Connect server.- See Also:
-
getRStudioPackageManagerUrl
A URL pointing to an RStudio Package Manager server.- See Also:
-
builder
-