Struct aws_sdk_sagemaker::types::SpaceSettings
source · #[non_exhaustive]pub struct SpaceSettings {
pub jupyter_server_app_settings: Option<JupyterServerAppSettings>,
pub kernel_gateway_app_settings: Option<KernelGatewayAppSettings>,
}
Expand description
A collection of space settings.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.jupyter_server_app_settings: Option<JupyterServerAppSettings>
The JupyterServer app settings.
kernel_gateway_app_settings: Option<KernelGatewayAppSettings>
The KernelGateway app settings.
Implementations§
source§impl SpaceSettings
impl SpaceSettings
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.
source§impl SpaceSettings
impl SpaceSettings
sourcepub fn builder() -> SpaceSettingsBuilder
pub fn builder() -> SpaceSettingsBuilder
Creates a new builder-style object to manufacture SpaceSettings
.
Trait Implementations§
source§impl Clone for SpaceSettings
impl Clone for SpaceSettings
source§fn clone(&self) -> SpaceSettings
fn clone(&self) -> SpaceSettings
Returns a copy 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 SpaceSettings
impl Debug for SpaceSettings
source§impl PartialEq<SpaceSettings> for SpaceSettings
impl PartialEq<SpaceSettings> for SpaceSettings
source§fn eq(&self, other: &SpaceSettings) -> bool
fn eq(&self, other: &SpaceSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SpaceSettings
Auto Trait Implementations§
impl RefUnwindSafe for SpaceSettings
impl Send for SpaceSettings
impl Sync for SpaceSettings
impl Unpin for SpaceSettings
impl UnwindSafe for SpaceSettings
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