Struct aws_sdk_sagemaker::types::DomainSettings
source · #[non_exhaustive]pub struct DomainSettings {
pub security_group_ids: Option<Vec<String>>,
pub r_studio_server_pro_domain_settings: Option<RStudioServerProDomainSettings>,
pub execution_role_identity_config: Option<ExecutionRoleIdentityConfig>,
pub docker_settings: Option<DockerSettings>,
}
Expand description
A collection of settings that apply to the SageMaker Domain
. These settings are specified through the CreateDomain
API call.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.security_group_ids: 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.
r_studio_server_pro_domain_settings: Option<RStudioServerProDomainSettings>
A collection of settings that configure the RStudioServerPro
Domain-level app.
execution_role_identity_config: Option<ExecutionRoleIdentityConfig>
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
docker_settings: Option<DockerSettings>
A collection of settings that configure the domain's Docker interaction.
Implementations§
source§impl DomainSettings
impl DomainSettings
sourcepub fn security_group_ids(&self) -> &[String]
pub fn security_group_ids(&self) -> &[String]
The security groups for the Amazon Virtual Private Cloud that the Domain
uses for communication between Domain-level apps and user apps.
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_group_ids.is_none()
.
sourcepub fn r_studio_server_pro_domain_settings(
&self
) -> Option<&RStudioServerProDomainSettings>
pub fn 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
) -> Option<&ExecutionRoleIdentityConfig>
pub fn 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) -> Option<&DockerSettings>
pub fn docker_settings(&self) -> Option<&DockerSettings>
A collection of settings that configure the domain's Docker interaction.
source§impl DomainSettings
impl DomainSettings
sourcepub fn builder() -> DomainSettingsBuilder
pub fn builder() -> DomainSettingsBuilder
Creates a new builder-style object to manufacture DomainSettings
.
Trait Implementations§
source§impl Clone for DomainSettings
impl Clone for DomainSettings
source§fn clone(&self) -> DomainSettings
fn clone(&self) -> DomainSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainSettings
impl Debug for DomainSettings
source§impl PartialEq for DomainSettings
impl PartialEq for DomainSettings
source§fn eq(&self, other: &DomainSettings) -> bool
fn eq(&self, other: &DomainSettings) -> bool
self
and other
values to be equal, and is used
by ==
.