pub struct SharingSettings {
pub notebook_output_option: Option<String>,
pub s3_kms_key_id: Option<String>,
pub s3_output_path: Option<String>,
}Expand description
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.
Fields§
§notebook_output_option: Option<String>Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
s3_kms_key_id: Option<String>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.
s3_output_path: Option<String>When NotebookOutputOption is Allowed, the Amazon S3 bucket used to save the notebook cell output. If S3OutputPath isn't specified, a default bucket is used.
Trait Implementations§
Source§impl Clone for SharingSettings
impl Clone for SharingSettings
Source§fn clone(&self) -> SharingSettings
fn clone(&self) -> SharingSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SharingSettings
impl Debug for SharingSettings
Source§impl Default for SharingSettings
impl Default for SharingSettings
Source§fn default() -> SharingSettings
fn default() -> SharingSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SharingSettings
impl<'de> Deserialize<'de> for SharingSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SharingSettings
impl PartialEq for SharingSettings
Source§impl Serialize for SharingSettings
impl Serialize for SharingSettings
impl StructuralPartialEq for SharingSettings
Auto Trait Implementations§
impl Freeze for SharingSettings
impl RefUnwindSafe for SharingSettings
impl Send for SharingSettings
impl Sync for SharingSettings
impl Unpin for SharingSettings
impl UnwindSafe for SharingSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more