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 ==
.impl StructuralPartialEq for WorkspaceSettings
Auto Trait Implementations§
impl Freeze for WorkspaceSettings
impl RefUnwindSafe for WorkspaceSettings
impl Send for WorkspaceSettings
impl Sync for WorkspaceSettings
impl Unpin for WorkspaceSettings
impl UnwindSafe for WorkspaceSettings
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more