@Stability(value=Stable)
public static interface CfnUserProfile.SharingSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
SharingSettingsProperty sharingSettingsProperty = SharingSettingsProperty.builder()
.notebookOutputOption("notebookOutputOption")
.s3KmsKeyId("s3KmsKeyId")
.s3OutputPath("s3OutputPath")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserProfile.SharingSettingsProperty.Builder
A builder for
CfnUserProfile.SharingSettingsProperty |
static class |
CfnUserProfile.SharingSettingsProperty.Jsii$Proxy
An implementation for
CfnUserProfile.SharingSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserProfile.SharingSettingsProperty.Builder |
builder() |
default String |
getNotebookOutputOption()
Whether to include the notebook cell output when sharing the notebook.
|
default String |
getS3KmsKeyId()
When `NotebookOutputOption` is `Allowed` , the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
|
default String |
getS3OutputPath()
When `NotebookOutputOption` is `Allowed` , the Amazon S3 bucket used to store the shared notebook snapshots.
|
@Stability(value=Stable) @Nullable default String getNotebookOutputOption()
The default is Disabled .
@Stability(value=Stable) @Nullable default String getS3KmsKeyId()
@Stability(value=Stable) @Nullable default String getS3OutputPath()
@Stability(value=Stable) static CfnUserProfile.SharingSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.