Struct aws_sdk_sagemaker::types::DefaultSpaceSettings
source · #[non_exhaustive]pub struct DefaultSpaceSettings {
pub execution_role: Option<String>,
pub security_groups: Option<Vec<String>>,
pub jupyter_server_app_settings: Option<JupyterServerAppSettings>,
pub kernel_gateway_app_settings: Option<KernelGatewayAppSettings>,
pub jupyter_lab_app_settings: Option<JupyterLabAppSettings>,
pub space_storage_settings: Option<DefaultSpaceStorageSettings>,
pub custom_posix_user_config: Option<CustomPosixUserConfig>,
pub custom_file_system_configs: Option<Vec<CustomFileSystemConfig>>,
}
Expand description
A collection of settings that apply to spaces created in the domain.
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.execution_role: Option<String>
The ARN of the execution role for the space.
security_groups: Option<Vec<String>>
The security group IDs for the Amazon VPC that the space uses for communication.
jupyter_server_app_settings: Option<JupyterServerAppSettings>
The JupyterServer app settings.
kernel_gateway_app_settings: Option<KernelGatewayAppSettings>
The KernelGateway app settings.
jupyter_lab_app_settings: Option<JupyterLabAppSettings>
The settings for the JupyterLab application.
space_storage_settings: Option<DefaultSpaceStorageSettings>
The default storage settings for a space.
custom_posix_user_config: Option<CustomPosixUserConfig>
Details about the POSIX identity that is used for file system operations.
custom_file_system_configs: Option<Vec<CustomFileSystemConfig>>
The settings for assigning a custom file system to a domain. Permitted users can access this file system in Amazon SageMaker Studio.
Implementations§
source§impl DefaultSpaceSettings
impl DefaultSpaceSettings
sourcepub fn execution_role(&self) -> Option<&str>
pub fn execution_role(&self) -> Option<&str>
The ARN of the execution role for the space.
sourcepub fn security_groups(&self) -> &[String]
pub fn security_groups(&self) -> &[String]
The security group IDs for the Amazon VPC that the space uses for communication.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_groups.is_none()
.
sourcepub fn jupyter_server_app_settings(&self) -> Option<&JupyterServerAppSettings>
pub fn jupyter_server_app_settings(&self) -> Option<&JupyterServerAppSettings>
The JupyterServer app settings.
sourcepub fn kernel_gateway_app_settings(&self) -> Option<&KernelGatewayAppSettings>
pub fn kernel_gateway_app_settings(&self) -> Option<&KernelGatewayAppSettings>
The KernelGateway app settings.
sourcepub fn jupyter_lab_app_settings(&self) -> Option<&JupyterLabAppSettings>
pub fn jupyter_lab_app_settings(&self) -> Option<&JupyterLabAppSettings>
The settings for the JupyterLab application.
sourcepub fn space_storage_settings(&self) -> Option<&DefaultSpaceStorageSettings>
pub fn space_storage_settings(&self) -> Option<&DefaultSpaceStorageSettings>
The default storage settings for a space.
sourcepub fn custom_posix_user_config(&self) -> Option<&CustomPosixUserConfig>
pub fn custom_posix_user_config(&self) -> Option<&CustomPosixUserConfig>
Details about the POSIX identity that is used for file system operations.
sourcepub fn custom_file_system_configs(&self) -> &[CustomFileSystemConfig]
pub fn custom_file_system_configs(&self) -> &[CustomFileSystemConfig]
The settings for assigning a custom file system to a domain. Permitted users can access this file system in Amazon SageMaker Studio.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .custom_file_system_configs.is_none()
.
source§impl DefaultSpaceSettings
impl DefaultSpaceSettings
sourcepub fn builder() -> DefaultSpaceSettingsBuilder
pub fn builder() -> DefaultSpaceSettingsBuilder
Creates a new builder-style object to manufacture DefaultSpaceSettings
.
Trait Implementations§
source§impl Clone for DefaultSpaceSettings
impl Clone for DefaultSpaceSettings
source§fn clone(&self) -> DefaultSpaceSettings
fn clone(&self) -> DefaultSpaceSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DefaultSpaceSettings
impl Debug for DefaultSpaceSettings
source§impl PartialEq for DefaultSpaceSettings
impl PartialEq for DefaultSpaceSettings
source§fn eq(&self, other: &DefaultSpaceSettings) -> bool
fn eq(&self, other: &DefaultSpaceSettings) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DefaultSpaceSettings
Auto Trait Implementations§
impl Freeze for DefaultSpaceSettings
impl RefUnwindSafe for DefaultSpaceSettings
impl Send for DefaultSpaceSettings
impl Sync for DefaultSpaceSettings
impl Unpin for DefaultSpaceSettings
impl UnwindSafe for DefaultSpaceSettings
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