Struct aws_sdk_sagemaker::client::fluent_builders::UpdateDomain
source · pub struct UpdateDomain { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateDomain
.
Updates the default settings for new user profiles in the domain.
Implementations§
source§impl UpdateDomain
impl UpdateDomain
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDomain, AwsResponseRetryClassifier>, SdkError<UpdateDomainError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDomain, AwsResponseRetryClassifier>, SdkError<UpdateDomainError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateDomainOutput, SdkError<UpdateDomainError>>
pub async fn send(
self
) -> Result<UpdateDomainOutput, SdkError<UpdateDomainError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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.
Trait Implementations§
source§impl Clone for UpdateDomain
impl Clone for UpdateDomain
source§fn clone(&self) -> UpdateDomain
fn clone(&self) -> UpdateDomain
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more