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>,
}
Expand description
A collection of settings that apply to spaces created in the domain.
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.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.
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.
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
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 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
This method tests for
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.