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>,
pub amazon_q_settings: Option<AmazonQSettings>,
}
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.
amazon_q_settings: Option<AmazonQSettings>
A collection of settings that configure the Amazon Q experience within the domain. The AuthMode
that you use to create the domain must be SSO
.
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.
sourcepub fn amazon_q_settings(&self) -> Option<&AmazonQSettings>
pub fn amazon_q_settings(&self) -> Option<&AmazonQSettings>
A collection of settings that configure the Amazon Q experience within the domain. The AuthMode
that you use to create the domain must be SSO
.
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 ==
.impl StructuralPartialEq for DomainSettings
Auto Trait Implementations§
impl Freeze for DomainSettings
impl RefUnwindSafe for DomainSettings
impl Send for DomainSettings
impl Sync for DomainSettings
impl Unpin for DomainSettings
impl UnwindSafe for DomainSettings
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