Struct aws_sdk_sagemaker::types::DomainSettingsForUpdate
source · #[non_exhaustive]pub struct DomainSettingsForUpdate {
pub r_studio_server_pro_domain_settings_for_update: Option<RStudioServerProDomainSettingsForUpdate>,
pub execution_role_identity_config: Option<ExecutionRoleIdentityConfig>,
pub security_group_ids: Option<Vec<String>>,
}
Expand description
A collection of Domain
configuration settings to update.
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.r_studio_server_pro_domain_settings_for_update: Option<RStudioServerProDomainSettingsForUpdate>
A collection of RStudioServerPro
Domain-level app settings to update. A single RStudioServerPro
application is created for a domain.
execution_role_identity_config: Option<ExecutionRoleIdentityConfig>
The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key. This configuration can only be modified if there are no apps in the InService
or Pending
state.
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.
Implementations§
source§impl DomainSettingsForUpdate
impl DomainSettingsForUpdate
sourcepub fn r_studio_server_pro_domain_settings_for_update(
&self
) -> Option<&RStudioServerProDomainSettingsForUpdate>
pub fn r_studio_server_pro_domain_settings_for_update( &self ) -> Option<&RStudioServerProDomainSettingsForUpdate>
A collection of RStudioServerPro
Domain-level app settings to update. A single RStudioServerPro
application is created for a domain.
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. This configuration can only be modified if there are no apps in the InService
or Pending
state.
sourcepub fn security_group_ids(&self) -> Option<&[String]>
pub fn security_group_ids(&self) -> Option<&[String]>
The security groups for the Amazon Virtual Private Cloud that the Domain
uses for communication between Domain-level apps and user apps.
source§impl DomainSettingsForUpdate
impl DomainSettingsForUpdate
sourcepub fn builder() -> DomainSettingsForUpdateBuilder
pub fn builder() -> DomainSettingsForUpdateBuilder
Creates a new builder-style object to manufacture DomainSettingsForUpdate
.
Trait Implementations§
source§impl Clone for DomainSettingsForUpdate
impl Clone for DomainSettingsForUpdate
source§fn clone(&self) -> DomainSettingsForUpdate
fn clone(&self) -> DomainSettingsForUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainSettingsForUpdate
impl Debug for DomainSettingsForUpdate
source§impl PartialEq<DomainSettingsForUpdate> for DomainSettingsForUpdate
impl PartialEq<DomainSettingsForUpdate> for DomainSettingsForUpdate
source§fn eq(&self, other: &DomainSettingsForUpdate) -> bool
fn eq(&self, other: &DomainSettingsForUpdate) -> bool
self
and other
values to be equal, and is used
by ==
.