Struct aws_sdk_securityhub::types::builders::AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
source · #[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder { /* private fields */ }
Expand description
Implementations§
source§impl AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
sourcepub fn container_path(self, input: impl Into<String>) -> Self
pub fn container_path(self, input: impl Into<String>) -> Self
The path inside the container at which to expose the host device.
sourcepub fn set_container_path(self, input: Option<String>) -> Self
pub fn set_container_path(self, input: Option<String>) -> Self
The path inside the container at which to expose the host device.
sourcepub fn get_container_path(&self) -> &Option<String>
pub fn get_container_path(&self) -> &Option<String>
The path inside the container at which to expose the host device.
sourcepub fn host_path(self, input: impl Into<String>) -> Self
pub fn host_path(self, input: impl Into<String>) -> Self
The path for the device on the host container instance.
sourcepub fn set_host_path(self, input: Option<String>) -> Self
pub fn set_host_path(self, input: Option<String>) -> Self
The path for the device on the host container instance.
sourcepub fn get_host_path(&self) -> &Option<String>
pub fn get_host_path(&self) -> &Option<String>
The path for the device on the host container instance.
sourcepub fn permissions(self, input: impl Into<String>) -> Self
pub fn permissions(self, input: impl Into<String>) -> Self
Appends an item to permissions
.
To override the contents of this collection use set_permissions
.
The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod
for the device.
sourcepub fn set_permissions(self, input: Option<Vec<String>>) -> Self
pub fn set_permissions(self, input: Option<Vec<String>>) -> Self
The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod
for the device.
sourcepub fn get_permissions(&self) -> &Option<Vec<String>>
pub fn get_permissions(&self) -> &Option<Vec<String>>
The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod
for the device.
sourcepub fn build(
self
) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
pub fn build( self ) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
Consumes the builder and constructs a AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
.
Trait Implementations§
source§impl Clone for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl Clone for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
source§fn clone(
&self
) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
fn clone( &self ) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl Default for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
source§fn default(
) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
fn default( ) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
source§impl PartialEq for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl PartialEq for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
source§fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
) -> bool
fn eq( &self, other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl RefUnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl Send for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl Sync for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl Unpin for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
impl UnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetailsBuilder
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> 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