#[non_exhaustive]pub struct UpdateDomainInput {
pub domain_id: Option<String>,
pub default_user_settings: Option<UserSettings>,
pub domain_settings_for_update: Option<DomainSettingsForUpdate>,
pub default_space_settings: Option<DefaultSpaceSettings>,
pub app_security_group_management: Option<AppSecurityGroupManagement>,
}
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.domain_id: Option<String>
The ID of the domain to be updated.
default_user_settings: Option<UserSettings>
A collection of settings.
domain_settings_for_update: Option<DomainSettingsForUpdate>
A collection of DomainSettings
configuration values to update.
default_space_settings: Option<DefaultSpaceSettings>
The default settings used to create a space within the Domain.
app_security_group_management: Option<AppSecurityGroupManagement>
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. If setting up the domain for use with RStudio, this value must be set to Service
.
Implementations§
source§impl UpdateDomainInput
impl UpdateDomainInput
sourcepub fn default_user_settings(&self) -> Option<&UserSettings>
pub fn default_user_settings(&self) -> Option<&UserSettings>
A collection of settings.
sourcepub fn domain_settings_for_update(&self) -> Option<&DomainSettingsForUpdate>
pub fn domain_settings_for_update(&self) -> Option<&DomainSettingsForUpdate>
A collection of DomainSettings
configuration values to update.
sourcepub fn default_space_settings(&self) -> Option<&DefaultSpaceSettings>
pub fn default_space_settings(&self) -> Option<&DefaultSpaceSettings>
The default settings used to create a space within the Domain.
sourcepub fn app_security_group_management(
&self
) -> Option<&AppSecurityGroupManagement>
pub fn app_security_group_management( &self ) -> Option<&AppSecurityGroupManagement>
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. If setting up the domain for use with RStudio, this value must be set to Service
.
source§impl UpdateDomainInput
impl UpdateDomainInput
sourcepub fn builder() -> UpdateDomainInputBuilder
pub fn builder() -> UpdateDomainInputBuilder
Creates a new builder-style object to manufacture UpdateDomainInput
.
Trait Implementations§
source§impl Clone for UpdateDomainInput
impl Clone for UpdateDomainInput
source§fn clone(&self) -> UpdateDomainInput
fn clone(&self) -> UpdateDomainInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateDomainInput
impl Debug for UpdateDomainInput
source§impl PartialEq<UpdateDomainInput> for UpdateDomainInput
impl PartialEq<UpdateDomainInput> for UpdateDomainInput
source§fn eq(&self, other: &UpdateDomainInput) -> bool
fn eq(&self, other: &UpdateDomainInput) -> bool
self
and other
values to be equal, and is used
by ==
.