Struct aws_sdk_sagemaker::types::builders::SpaceSettingsBuilder
source · #[non_exhaustive]pub struct SpaceSettingsBuilder { /* private fields */ }
Expand description
A builder for SpaceSettings
.
Implementations§
source§impl SpaceSettingsBuilder
impl SpaceSettingsBuilder
sourcepub fn jupyter_server_app_settings(
self,
input: JupyterServerAppSettings
) -> Self
pub fn jupyter_server_app_settings( self, input: JupyterServerAppSettings ) -> Self
The JupyterServer app settings.
sourcepub fn set_jupyter_server_app_settings(
self,
input: Option<JupyterServerAppSettings>
) -> Self
pub fn set_jupyter_server_app_settings( self, input: Option<JupyterServerAppSettings> ) -> Self
The JupyterServer app settings.
sourcepub fn get_jupyter_server_app_settings(
&self
) -> &Option<JupyterServerAppSettings>
pub fn get_jupyter_server_app_settings( &self ) -> &Option<JupyterServerAppSettings>
The JupyterServer app settings.
sourcepub fn kernel_gateway_app_settings(
self,
input: KernelGatewayAppSettings
) -> Self
pub fn kernel_gateway_app_settings( self, input: KernelGatewayAppSettings ) -> Self
The KernelGateway app settings.
sourcepub fn set_kernel_gateway_app_settings(
self,
input: Option<KernelGatewayAppSettings>
) -> Self
pub fn set_kernel_gateway_app_settings( self, input: Option<KernelGatewayAppSettings> ) -> Self
The KernelGateway app settings.
sourcepub fn get_kernel_gateway_app_settings(
&self
) -> &Option<KernelGatewayAppSettings>
pub fn get_kernel_gateway_app_settings( &self ) -> &Option<KernelGatewayAppSettings>
The KernelGateway app settings.
sourcepub fn code_editor_app_settings(self, input: SpaceCodeEditorAppSettings) -> Self
pub fn code_editor_app_settings(self, input: SpaceCodeEditorAppSettings) -> Self
The Code Editor application settings.
sourcepub fn set_code_editor_app_settings(
self,
input: Option<SpaceCodeEditorAppSettings>
) -> Self
pub fn set_code_editor_app_settings( self, input: Option<SpaceCodeEditorAppSettings> ) -> Self
The Code Editor application settings.
sourcepub fn get_code_editor_app_settings(
&self
) -> &Option<SpaceCodeEditorAppSettings>
pub fn get_code_editor_app_settings( &self ) -> &Option<SpaceCodeEditorAppSettings>
The Code Editor application settings.
sourcepub fn jupyter_lab_app_settings(self, input: SpaceJupyterLabAppSettings) -> Self
pub fn jupyter_lab_app_settings(self, input: SpaceJupyterLabAppSettings) -> Self
The settings for the JupyterLab application.
sourcepub fn set_jupyter_lab_app_settings(
self,
input: Option<SpaceJupyterLabAppSettings>
) -> Self
pub fn set_jupyter_lab_app_settings( self, input: Option<SpaceJupyterLabAppSettings> ) -> Self
The settings for the JupyterLab application.
sourcepub fn get_jupyter_lab_app_settings(
&self
) -> &Option<SpaceJupyterLabAppSettings>
pub fn get_jupyter_lab_app_settings( &self ) -> &Option<SpaceJupyterLabAppSettings>
The settings for the JupyterLab application.
sourcepub fn set_app_type(self, input: Option<AppType>) -> Self
pub fn set_app_type(self, input: Option<AppType>) -> Self
The type of app created within the space.
sourcepub fn get_app_type(&self) -> &Option<AppType>
pub fn get_app_type(&self) -> &Option<AppType>
The type of app created within the space.
sourcepub fn space_storage_settings(self, input: SpaceStorageSettings) -> Self
pub fn space_storage_settings(self, input: SpaceStorageSettings) -> Self
The storage settings for a private space.
sourcepub fn set_space_storage_settings(
self,
input: Option<SpaceStorageSettings>
) -> Self
pub fn set_space_storage_settings( self, input: Option<SpaceStorageSettings> ) -> Self
The storage settings for a private space.
sourcepub fn get_space_storage_settings(&self) -> &Option<SpaceStorageSettings>
pub fn get_space_storage_settings(&self) -> &Option<SpaceStorageSettings>
The storage settings for a private space.
sourcepub fn custom_file_systems(self, input: CustomFileSystem) -> Self
pub fn custom_file_systems(self, input: CustomFileSystem) -> Self
Appends an item to custom_file_systems
.
To override the contents of this collection use set_custom_file_systems
.
A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.
sourcepub fn set_custom_file_systems(
self,
input: Option<Vec<CustomFileSystem>>
) -> Self
pub fn set_custom_file_systems( self, input: Option<Vec<CustomFileSystem>> ) -> Self
A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.
sourcepub fn get_custom_file_systems(&self) -> &Option<Vec<CustomFileSystem>>
pub fn get_custom_file_systems(&self) -> &Option<Vec<CustomFileSystem>>
A file system, created by you, that you assign to a space for an Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.
sourcepub fn build(self) -> SpaceSettings
pub fn build(self) -> SpaceSettings
Consumes the builder and constructs a SpaceSettings
.
Trait Implementations§
source§impl Clone for SpaceSettingsBuilder
impl Clone for SpaceSettingsBuilder
source§fn clone(&self) -> SpaceSettingsBuilder
fn clone(&self) -> SpaceSettingsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SpaceSettingsBuilder
impl Debug for SpaceSettingsBuilder
source§impl Default for SpaceSettingsBuilder
impl Default for SpaceSettingsBuilder
source§fn default() -> SpaceSettingsBuilder
fn default() -> SpaceSettingsBuilder
source§impl PartialEq for SpaceSettingsBuilder
impl PartialEq for SpaceSettingsBuilder
source§fn eq(&self, other: &SpaceSettingsBuilder) -> bool
fn eq(&self, other: &SpaceSettingsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.