Interface CfnUserProfile.SharingSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserProfile.SharingSettingsProperty.Jsii$Proxy
Enclosing class:
CfnUserProfile

@Stability(Stable) public static interface CfnUserProfile.SharingSettingsProperty extends software.amazon.jsii.JsiiSerializable
Specifies options when sharing an Amazon SageMaker Studio notebook.

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();
 

See Also: