Struct aws_sdk_sagemaker::input::update_domain_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateDomainInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The ID of the domain to be updated.
sourcepub fn default_user_settings(self, input: UserSettings) -> Self
pub fn default_user_settings(self, input: UserSettings) -> Self
A collection of settings.
sourcepub fn set_default_user_settings(self, input: Option<UserSettings>) -> Self
pub fn set_default_user_settings(self, input: Option<UserSettings>) -> Self
A collection of settings.
sourcepub fn domain_settings_for_update(self, input: DomainSettingsForUpdate) -> Self
pub fn domain_settings_for_update(self, input: DomainSettingsForUpdate) -> Self
A collection of DomainSettings
configuration values to update.
sourcepub fn set_domain_settings_for_update(
self,
input: Option<DomainSettingsForUpdate>
) -> Self
pub fn set_domain_settings_for_update(
self,
input: Option<DomainSettingsForUpdate>
) -> Self
A collection of DomainSettings
configuration values to update.
sourcepub fn default_space_settings(self, input: DefaultSpaceSettings) -> Self
pub fn default_space_settings(self, input: DefaultSpaceSettings) -> Self
The default settings used to create a space within the Domain.
sourcepub fn set_default_space_settings(
self,
input: Option<DefaultSpaceSettings>
) -> Self
pub fn set_default_space_settings(
self,
input: Option<DefaultSpaceSettings>
) -> Self
The default settings used to create a space within the Domain.
sourcepub fn app_security_group_management(
self,
input: AppSecurityGroupManagement
) -> Self
pub fn app_security_group_management(
self,
input: AppSecurityGroupManagement
) -> Self
The entity that creates and manages the required security groups for inter-app communication in VPCOnly
mode. Required when CreateDomain.AppNetworkAccessType
is VPCOnly
and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn
is provided.
sourcepub fn set_app_security_group_management(
self,
input: Option<AppSecurityGroupManagement>
) -> Self
pub fn set_app_security_group_management(
self,
input: Option<AppSecurityGroupManagement>
) -> Self
The entity that creates and manages the required security groups for inter-app communication in VPCOnly
mode. Required when CreateDomain.AppNetworkAccessType
is VPCOnly
and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn
is provided.
sourcepub fn build(self) -> Result<UpdateDomainInput, BuildError>
pub fn build(self) -> Result<UpdateDomainInput, BuildError>
Consumes the builder and constructs a UpdateDomainInput
.