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

SharingSettings

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

Specifies options for sharing SageMaker Studio notebooks. These settings are specified as part of DefaultUserSettings when the CreateDomain API is called, and as part of UserSettings when the CreateUserProfile API is called. When SharingSettings is not specified, notebook sharing isn't allowed.

interface SharingSettings {
NotebookOutputOption?: NotebookOutputOption | null;
S3KmsKeyId?: string | null;
S3OutputPath?: string | null;
}

§Properties

§
NotebookOutputOption?: NotebookOutputOption | null
[src]

Whether to include the notebook cell output when sharing the notebook. The default is Disabled.

§
S3KmsKeyId?: string | null
[src]

When NotebookOutputOption is Allowed, the Amazon Web Services Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.

§
S3OutputPath?: string | null
[src]

When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.