#[non_exhaustive]pub struct RStudioServerProDomainSettingsBuilder { /* private fields */ }
Expand description
A builder for RStudioServerProDomainSettings
.
Implementations§
source§impl RStudioServerProDomainSettingsBuilder
impl RStudioServerProDomainSettingsBuilder
sourcepub fn domain_execution_role_arn(self, input: impl Into<String>) -> Self
pub fn domain_execution_role_arn(self, input: impl Into<String>) -> Self
The ARN of the execution role for the RStudioServerPro
Domain-level app.
sourcepub fn set_domain_execution_role_arn(self, input: Option<String>) -> Self
pub fn set_domain_execution_role_arn(self, input: Option<String>) -> Self
The ARN of the execution role for the RStudioServerPro
Domain-level app.
sourcepub fn get_domain_execution_role_arn(&self) -> &Option<String>
pub fn get_domain_execution_role_arn(&self) -> &Option<String>
The ARN of the execution role for the RStudioServerPro
Domain-level app.
sourcepub fn r_studio_connect_url(self, input: impl Into<String>) -> Self
pub fn r_studio_connect_url(self, input: impl Into<String>) -> Self
A URL pointing to an RStudio Connect server.
sourcepub fn set_r_studio_connect_url(self, input: Option<String>) -> Self
pub fn set_r_studio_connect_url(self, input: Option<String>) -> Self
A URL pointing to an RStudio Connect server.
sourcepub fn get_r_studio_connect_url(&self) -> &Option<String>
pub fn get_r_studio_connect_url(&self) -> &Option<String>
A URL pointing to an RStudio Connect server.
sourcepub fn r_studio_package_manager_url(self, input: impl Into<String>) -> Self
pub fn r_studio_package_manager_url(self, input: impl Into<String>) -> Self
A URL pointing to an RStudio Package Manager server.
sourcepub fn set_r_studio_package_manager_url(self, input: Option<String>) -> Self
pub fn set_r_studio_package_manager_url(self, input: Option<String>) -> Self
A URL pointing to an RStudio Package Manager server.
sourcepub fn get_r_studio_package_manager_url(&self) -> &Option<String>
pub fn get_r_studio_package_manager_url(&self) -> &Option<String>
A URL pointing to an RStudio Package Manager server.
sourcepub fn default_resource_spec(self, input: ResourceSpec) -> Self
pub fn default_resource_spec(self, input: ResourceSpec) -> Self
Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.
sourcepub fn set_default_resource_spec(self, input: Option<ResourceSpec>) -> Self
pub fn set_default_resource_spec(self, input: Option<ResourceSpec>) -> Self
Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.
sourcepub fn get_default_resource_spec(&self) -> &Option<ResourceSpec>
pub fn get_default_resource_spec(&self) -> &Option<ResourceSpec>
Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.
sourcepub fn build(self) -> RStudioServerProDomainSettings
pub fn build(self) -> RStudioServerProDomainSettings
Consumes the builder and constructs a RStudioServerProDomainSettings
.
Trait Implementations§
source§impl Clone for RStudioServerProDomainSettingsBuilder
impl Clone for RStudioServerProDomainSettingsBuilder
source§fn clone(&self) -> RStudioServerProDomainSettingsBuilder
fn clone(&self) -> RStudioServerProDomainSettingsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RStudioServerProDomainSettingsBuilder
impl Default for RStudioServerProDomainSettingsBuilder
source§fn default() -> RStudioServerProDomainSettingsBuilder
fn default() -> RStudioServerProDomainSettingsBuilder
source§impl PartialEq for RStudioServerProDomainSettingsBuilder
impl PartialEq for RStudioServerProDomainSettingsBuilder
source§fn eq(&self, other: &RStudioServerProDomainSettingsBuilder) -> bool
fn eq(&self, other: &RStudioServerProDomainSettingsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RStudioServerProDomainSettingsBuilder
Auto Trait Implementations§
impl Freeze for RStudioServerProDomainSettingsBuilder
impl RefUnwindSafe for RStudioServerProDomainSettingsBuilder
impl Send for RStudioServerProDomainSettingsBuilder
impl Sync for RStudioServerProDomainSettingsBuilder
impl Unpin for RStudioServerProDomainSettingsBuilder
impl UnwindSafe for RStudioServerProDomainSettingsBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more