Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UserSettings

import type { UserSettings } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

A collection of settings that apply to users of Amazon SageMaker Studio. These settings are specified when the CreateUserProfile API is called, and as DefaultUserSettings when the CreateDomain API is called.

SecurityGroups is aggregated when specified in both calls. For all other settings in UserSettings, the values specified in CreateUserProfile take precedence over those specified in CreateDomain.

interface UserSettings {
CanvasAppSettings?: CanvasAppSettings | null;
ExecutionRole?: string | null;
JupyterServerAppSettings?: JupyterServerAppSettings | null;
KernelGatewayAppSettings?: KernelGatewayAppSettings | null;
RSessionAppSettings?: RSessionAppSettings | null;
RStudioServerProAppSettings?: RStudioServerProAppSettings | null;
SecurityGroups?: string[] | null;
SharingSettings?: SharingSettings | null;
TensorBoardAppSettings?: TensorBoardAppSettings | null;
}

§Properties

§
CanvasAppSettings?: CanvasAppSettings | null
[src]

The Canvas app settings.

§
ExecutionRole?: string | null
[src]

The execution role for the user.

§
JupyterServerAppSettings?: JupyterServerAppSettings | null
[src]

The Jupyter server's app settings.

§
KernelGatewayAppSettings?: KernelGatewayAppSettings | null
[src]

The kernel gateway app settings.

§
RSessionAppSettings?: RSessionAppSettings | null
[src]

A collection of settings that configure the RSessionGateway app.

§
RStudioServerProAppSettings?: RStudioServerProAppSettings | null
[src]

A collection of settings that configure user interaction with the RStudioServerPro app.

§
SecurityGroups?: string[] | null
[src]

The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.

Optional when the CreateDomain.AppNetworkAccessType parameter is set to PublicInternetOnly.

Required when the CreateDomain.AppNetworkAccessType parameter is set to VpcOnly.

Amazon SageMaker adds a security group to allow NFS traffic from SageMaker Studio. Therefore, the number of security groups that you can specify is one less than the maximum number shown.

§
SharingSettings?: SharingSettings | null
[src]

Specifies options for sharing SageMaker Studio notebooks.

§
TensorBoardAppSettings?: TensorBoardAppSettings | null
[src]

The TensorBoard app settings.