Struct aws_sdk_sagemaker::types::WorkspaceSettings
source · #[non_exhaustive]pub struct WorkspaceSettings {
pub s3_artifact_path: Option<String>,
pub s3_kms_key_id: Option<String>,
}
Expand description
The workspace settings for the SageMaker Canvas application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_artifact_path: Option<String>
The Amazon S3 bucket used to store artifacts generated by Canvas. Updating the Amazon S3 location impacts existing configuration settings, and Canvas users no longer have access to their artifacts. Canvas users must log out and log back in to apply the new location.
s3_kms_key_id: Option<String>
The Amazon Web Services Key Management Service (KMS) encryption key ID that is used to encrypt artifacts generated by Canvas in the Amazon S3 bucket.
Implementations§
source§impl WorkspaceSettings
impl WorkspaceSettings
sourcepub fn s3_artifact_path(&self) -> Option<&str>
pub fn s3_artifact_path(&self) -> Option<&str>
The Amazon S3 bucket used to store artifacts generated by Canvas. Updating the Amazon S3 location impacts existing configuration settings, and Canvas users no longer have access to their artifacts. Canvas users must log out and log back in to apply the new location.
sourcepub fn s3_kms_key_id(&self) -> Option<&str>
pub fn s3_kms_key_id(&self) -> Option<&str>
The Amazon Web Services Key Management Service (KMS) encryption key ID that is used to encrypt artifacts generated by Canvas in the Amazon S3 bucket.
source§impl WorkspaceSettings
impl WorkspaceSettings
sourcepub fn builder() -> WorkspaceSettingsBuilder
pub fn builder() -> WorkspaceSettingsBuilder
Creates a new builder-style object to manufacture WorkspaceSettings
.
Trait Implementations§
source§impl Clone for WorkspaceSettings
impl Clone for WorkspaceSettings
source§fn clone(&self) -> WorkspaceSettings
fn clone(&self) -> WorkspaceSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for WorkspaceSettings
impl Debug for WorkspaceSettings
source§impl PartialEq for WorkspaceSettings
impl PartialEq for WorkspaceSettings
source§fn eq(&self, other: &WorkspaceSettings) -> bool
fn eq(&self, other: &WorkspaceSettings) -> bool
self
and other
values to be equal, and is used
by ==
.