Interface CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDomainPropsMixin
@Stability(Stable)
public static interface CfnDomainPropsMixin.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.mixins.preview.services.sagemaker.mixins.*;
RStudioServerProDomainSettingsProperty rStudioServerProDomainSettingsProperty = RStudioServerProDomainSettingsProperty.builder()
.defaultResourceSpec(ResourceSpecProperty.builder()
.instanceType("instanceType")
.lifecycleConfigArn("lifecycleConfigArn")
.sageMakerImageArn("sageMakerImageArn")
.sageMakerImageVersionArn("sageMakerImageVersionArn")
.build())
.domainExecutionRoleArn("domainExecutionRoleArn")
.rStudioConnectUrl("rStudioConnectUrl")
.rStudioPackageManagerUrl("rStudioPackageManagerUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDomainPropsMixin.RStudioServerProDomainSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA collection that defines the defaultInstanceType,SageMakerImageArn, andSageMakerImageVersionArnfor the Domain.default StringThe 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
-
getDefaultResourceSpec
A collection that defines the defaultInstanceType,SageMakerImageArn, andSageMakerImageVersionArnfor the Domain.Returns union: either
IResolvableorCfnDomainPropsMixin.ResourceSpecProperty- See Also:
-
getDomainExecutionRoleArn
The ARN of the execution role for theRStudioServerProDomain-level app.- 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
@Stability(Stable) static CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty.Builder builder()
-