Struct aws_sdk_sagemaker::types::builders::DomainSettingsBuilder
source · #[non_exhaustive]pub struct DomainSettingsBuilder { /* private fields */ }
Expand description
A builder for DomainSettings
.
Implementations§
source§impl DomainSettingsBuilder
impl DomainSettingsBuilder
sourcepub fn security_group_ids(self, input: impl Into<String>) -> Self
pub fn security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to security_group_ids
.
To override the contents of this collection use set_security_group_ids
.
The security groups for the Amazon Virtual Private Cloud that the Domain
uses for communication between Domain-level apps and user apps.
sourcepub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
The security groups for the Amazon Virtual Private Cloud that the Domain
uses for communication between Domain-level apps and user apps.
sourcepub fn get_security_group_ids(&self) -> &Option<Vec<String>>
pub fn get_security_group_ids(&self) -> &Option<Vec<String>>
The security groups for the Amazon Virtual Private Cloud that the Domain
uses for communication between Domain-level apps and user apps.
sourcepub fn r_studio_server_pro_domain_settings(
self,
input: RStudioServerProDomainSettings,
) -> Self
pub fn r_studio_server_pro_domain_settings( self, input: RStudioServerProDomainSettings, ) -> Self
A collection of settings that configure the RStudioServerPro
Domain-level app.
sourcepub fn set_r_studio_server_pro_domain_settings(
self,
input: Option<RStudioServerProDomainSettings>,
) -> Self
pub fn set_r_studio_server_pro_domain_settings( self, input: Option<RStudioServerProDomainSettings>, ) -> Self
A collection of settings that configure the RStudioServerPro
Domain-level app.
sourcepub fn get_r_studio_server_pro_domain_settings(
&self,
) -> &Option<RStudioServerProDomainSettings>
pub fn get_r_studio_server_pro_domain_settings( &self, ) -> &Option<RStudioServerProDomainSettings>
A collection of settings that configure the RStudioServerPro
Domain-level app.
sourcepub fn execution_role_identity_config(
self,
input: ExecutionRoleIdentityConfig,
) -> Self
pub fn execution_role_identity_config( self, input: ExecutionRoleIdentityConfig, ) -> Self
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
sourcepub fn set_execution_role_identity_config(
self,
input: Option<ExecutionRoleIdentityConfig>,
) -> Self
pub fn set_execution_role_identity_config( self, input: Option<ExecutionRoleIdentityConfig>, ) -> Self
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
sourcepub fn get_execution_role_identity_config(
&self,
) -> &Option<ExecutionRoleIdentityConfig>
pub fn get_execution_role_identity_config( &self, ) -> &Option<ExecutionRoleIdentityConfig>
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
sourcepub fn docker_settings(self, input: DockerSettings) -> Self
pub fn docker_settings(self, input: DockerSettings) -> Self
A collection of settings that configure the domain's Docker interaction.
sourcepub fn set_docker_settings(self, input: Option<DockerSettings>) -> Self
pub fn set_docker_settings(self, input: Option<DockerSettings>) -> Self
A collection of settings that configure the domain's Docker interaction.
sourcepub fn get_docker_settings(&self) -> &Option<DockerSettings>
pub fn get_docker_settings(&self) -> &Option<DockerSettings>
A collection of settings that configure the domain's Docker interaction.
sourcepub fn build(self) -> DomainSettings
pub fn build(self) -> DomainSettings
Consumes the builder and constructs a DomainSettings
.
Trait Implementations§
source§impl Clone for DomainSettingsBuilder
impl Clone for DomainSettingsBuilder
source§fn clone(&self) -> DomainSettingsBuilder
fn clone(&self) -> DomainSettingsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainSettingsBuilder
impl Debug for DomainSettingsBuilder
source§impl Default for DomainSettingsBuilder
impl Default for DomainSettingsBuilder
source§fn default() -> DomainSettingsBuilder
fn default() -> DomainSettingsBuilder
source§impl PartialEq for DomainSettingsBuilder
impl PartialEq for DomainSettingsBuilder
source§fn eq(&self, other: &DomainSettingsBuilder) -> bool
fn eq(&self, other: &DomainSettingsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DomainSettingsBuilder
Auto Trait Implementations§
impl Freeze for DomainSettingsBuilder
impl RefUnwindSafe for DomainSettingsBuilder
impl Send for DomainSettingsBuilder
impl Sync for DomainSettingsBuilder
impl Unpin for DomainSettingsBuilder
impl UnwindSafe for DomainSettingsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more