#[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 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 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 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 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
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 DefaultSpaceSettingsBuilder
impl Debug for DefaultSpaceSettingsBuilder
source§impl Default for DefaultSpaceSettingsBuilder
impl Default for DefaultSpaceSettingsBuilder
source§fn default() -> DefaultSpaceSettingsBuilder
fn default() -> DefaultSpaceSettingsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DefaultSpaceSettingsBuilder> for DefaultSpaceSettingsBuilder
impl PartialEq<DefaultSpaceSettingsBuilder> for DefaultSpaceSettingsBuilder
source§fn eq(&self, other: &DefaultSpaceSettingsBuilder) -> bool
fn eq(&self, other: &DefaultSpaceSettingsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DefaultSpaceSettingsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DefaultSpaceSettingsBuilder
impl Send for DefaultSpaceSettingsBuilder
impl Sync for DefaultSpaceSettingsBuilder
impl Unpin for DefaultSpaceSettingsBuilder
impl UnwindSafe for DefaultSpaceSettingsBuilder
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