#[non_exhaustive]pub struct DefaultSpaceSettingsBuilder { /* private fields */ }
Expand description
A builder for DefaultSpaceSettings
.
Implementations§
source§impl DefaultSpaceSettingsBuilder
impl DefaultSpaceSettingsBuilder
sourcepub fn execution_role(self, input: impl Into<String>) -> Self
pub fn execution_role(self, input: impl Into<String>) -> Self
The ARN of the execution role for the space.
sourcepub fn set_execution_role(self, input: Option<String>) -> Self
pub fn set_execution_role(self, input: Option<String>) -> Self
The ARN of the execution role for the space.
sourcepub fn get_execution_role(&self) -> &Option<String>
pub fn get_execution_role(&self) -> &Option<String>
The ARN of the execution role for the space.
sourcepub fn security_groups(self, input: impl Into<String>) -> Self
pub fn security_groups(self, input: impl Into<String>) -> Self
Appends an item to security_groups
.
To override the contents of this collection use set_security_groups
.
The security group IDs for the Amazon Virtual Private Cloud that the space uses for communication.
sourcepub fn set_security_groups(self, input: Option<Vec<String>>) -> Self
pub fn set_security_groups(self, input: Option<Vec<String>>) -> Self
The security group IDs for the Amazon Virtual Private Cloud that the space uses for communication.
sourcepub fn get_security_groups(&self) -> &Option<Vec<String>>
pub fn get_security_groups(&self) -> &Option<Vec<String>>
The security group IDs for the Amazon Virtual Private Cloud that the space uses for communication.
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 build(self) -> DefaultSpaceSettings
pub fn build(self) -> DefaultSpaceSettings
Consumes the builder and constructs a DefaultSpaceSettings
.
Trait Implementations§
source§impl Clone for DefaultSpaceSettingsBuilder
impl Clone for DefaultSpaceSettingsBuilder
source§fn clone(&self) -> DefaultSpaceSettingsBuilder
fn clone(&self) -> DefaultSpaceSettingsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DefaultSpaceSettingsBuilder
impl Debug for DefaultSpaceSettingsBuilder
source§impl Default for DefaultSpaceSettingsBuilder
impl Default for DefaultSpaceSettingsBuilder
source§fn default() -> DefaultSpaceSettingsBuilder
fn default() -> DefaultSpaceSettingsBuilder
source§impl PartialEq<DefaultSpaceSettingsBuilder> for DefaultSpaceSettingsBuilder
impl PartialEq<DefaultSpaceSettingsBuilder> for DefaultSpaceSettingsBuilder
source§fn eq(&self, other: &DefaultSpaceSettingsBuilder) -> bool
fn eq(&self, other: &DefaultSpaceSettingsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.