#[non_exhaustive]pub struct UpdateDomainInputBuilder { /* private fields */ }
Expand description
A builder for UpdateDomainInput
.
Implementations§
source§impl UpdateDomainInputBuilder
impl UpdateDomainInputBuilder
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
.
Trait Implementations§
source§impl Clone for UpdateDomainInputBuilder
impl Clone for UpdateDomainInputBuilder
source§fn clone(&self) -> UpdateDomainInputBuilder
fn clone(&self) -> UpdateDomainInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDomainInputBuilder
impl Debug for UpdateDomainInputBuilder
source§impl Default for UpdateDomainInputBuilder
impl Default for UpdateDomainInputBuilder
source§fn default() -> UpdateDomainInputBuilder
fn default() -> UpdateDomainInputBuilder
source§impl PartialEq<UpdateDomainInputBuilder> for UpdateDomainInputBuilder
impl PartialEq<UpdateDomainInputBuilder> for UpdateDomainInputBuilder
source§fn eq(&self, other: &UpdateDomainInputBuilder) -> bool
fn eq(&self, other: &UpdateDomainInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.