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: