Struct aws_sdk_ecs::types::builders::DeviceBuilder
source · #[non_exhaustive]pub struct DeviceBuilder { /* private fields */ }
Expand description
A builder for Device
.
Implementations§
source§impl DeviceBuilder
impl DeviceBuilder
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.
This field is required.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 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 permissions(self, input: DeviceCgroupPermission) -> Self
pub fn permissions(self, input: DeviceCgroupPermission) -> 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<DeviceCgroupPermission>>) -> Self
pub fn set_permissions(self, input: Option<Vec<DeviceCgroupPermission>>) -> 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<DeviceCgroupPermission>>
pub fn get_permissions(&self) -> &Option<Vec<DeviceCgroupPermission>>
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.
Trait Implementations§
source§impl Clone for DeviceBuilder
impl Clone for DeviceBuilder
source§fn clone(&self) -> DeviceBuilder
fn clone(&self) -> DeviceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeviceBuilder
impl Debug for DeviceBuilder
source§impl Default for DeviceBuilder
impl Default for DeviceBuilder
source§fn default() -> DeviceBuilder
fn default() -> DeviceBuilder
source§impl PartialEq for DeviceBuilder
impl PartialEq for DeviceBuilder
source§fn eq(&self, other: &DeviceBuilder) -> bool
fn eq(&self, other: &DeviceBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeviceBuilder
Auto Trait Implementations§
impl Freeze for DeviceBuilder
impl RefUnwindSafe for DeviceBuilder
impl Send for DeviceBuilder
impl Sync for DeviceBuilder
impl Unpin for DeviceBuilder
impl UnwindSafe for DeviceBuilder
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