interface RStudioServerProDomainSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_RStudioServerProDomainSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDomainPropsMixin » RStudioServerProDomainSettingsProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const rStudioServerProDomainSettingsProperty: sagemaker_mixins.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty = {
defaultResourceSpec: {
instanceType: 'instanceType',
lifecycleConfigArn: 'lifecycleConfigArn',
sageMakerImageArn: 'sageMakerImageArn',
sageMakerImageVersionArn: 'sageMakerImageVersionArn',
},
domainExecutionRoleArn: 'domainExecutionRoleArn',
rStudioConnectUrl: 'rStudioConnectUrl',
rStudioPackageManagerUrl: 'rStudioPackageManagerUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Resource | A collection that defines the default InstanceType , SageMakerImageArn , and SageMakerImageVersionArn for the Domain. |
| domain | string | The ARN of the execution role for the RStudioServerPro Domain-level app. |
| r | string | A URL pointing to an RStudio Connect server. |
| r | string | A URL pointing to an RStudio Package Manager server. |
defaultResourceSpec?
Type:
IResolvable | Resource
(optional)
A collection that defines the default InstanceType , SageMakerImageArn , and SageMakerImageVersionArn for the Domain.
domainExecutionRoleArn?
Type:
string
(optional)
The ARN of the execution role for the RStudioServerPro Domain-level app.
rStudioConnectUrl?
Type:
string
(optional)
A URL pointing to an RStudio Connect server.
rStudioPackageManagerUrl?
Type:
string
(optional)
A URL pointing to an RStudio Package Manager server.

.NET
Go
Java
Python
TypeScript