interface RStudioServerProDomainSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnDomainPropsMixin_RStudioServerProDomainSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnDomainPropsMixin.RStudioServerProDomainSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const rStudioServerProDomainSettingsProperty: sagemaker.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