Struct aws_sdk_sagemaker::types::builders::DockerSettingsBuilder
source · #[non_exhaustive]pub struct DockerSettingsBuilder { /* private fields */ }
Expand description
A builder for DockerSettings
.
Implementations§
source§impl DockerSettingsBuilder
impl DockerSettingsBuilder
sourcepub fn enable_docker_access(self, input: FeatureStatus) -> Self
pub fn enable_docker_access(self, input: FeatureStatus) -> Self
Indicates whether the domain can access Docker.
sourcepub fn set_enable_docker_access(self, input: Option<FeatureStatus>) -> Self
pub fn set_enable_docker_access(self, input: Option<FeatureStatus>) -> Self
Indicates whether the domain can access Docker.
sourcepub fn get_enable_docker_access(&self) -> &Option<FeatureStatus>
pub fn get_enable_docker_access(&self) -> &Option<FeatureStatus>
Indicates whether the domain can access Docker.
sourcepub fn vpc_only_trusted_accounts(self, input: impl Into<String>) -> Self
pub fn vpc_only_trusted_accounts(self, input: impl Into<String>) -> Self
Appends an item to vpc_only_trusted_accounts
.
To override the contents of this collection use set_vpc_only_trusted_accounts
.
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
sourcepub fn set_vpc_only_trusted_accounts(self, input: Option<Vec<String>>) -> Self
pub fn set_vpc_only_trusted_accounts(self, input: Option<Vec<String>>) -> Self
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
sourcepub fn get_vpc_only_trusted_accounts(&self) -> &Option<Vec<String>>
pub fn get_vpc_only_trusted_accounts(&self) -> &Option<Vec<String>>
The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.
sourcepub fn build(self) -> DockerSettings
pub fn build(self) -> DockerSettings
Consumes the builder and constructs a DockerSettings
.
Trait Implementations§
source§impl Clone for DockerSettingsBuilder
impl Clone for DockerSettingsBuilder
source§fn clone(&self) -> DockerSettingsBuilder
fn clone(&self) -> DockerSettingsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DockerSettingsBuilder
impl Debug for DockerSettingsBuilder
source§impl Default for DockerSettingsBuilder
impl Default for DockerSettingsBuilder
source§fn default() -> DockerSettingsBuilder
fn default() -> DockerSettingsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DockerSettingsBuilder
impl PartialEq for DockerSettingsBuilder
impl StructuralPartialEq for DockerSettingsBuilder
Auto Trait Implementations§
impl Freeze for DockerSettingsBuilder
impl RefUnwindSafe for DockerSettingsBuilder
impl Send for DockerSettingsBuilder
impl Sync for DockerSettingsBuilder
impl Unpin for DockerSettingsBuilder
impl UnwindSafe for DockerSettingsBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.