Struct aws_sdk_securityhub::model::AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails [−][src]
#[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails {
pub container_path: Option<String>,
pub host_path: Option<String>,
pub permissions: Option<Vec<String>>,
}
Expand description
A host device to expose to the container.
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.container_path: Option<String>
The path inside the container at which to expose the host device.
host_path: Option<String>
The path for the device on the host container instance.
permissions: 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.
Implementations
The path inside the container at which to expose the host device.
Creates a new builder-style object to manufacture AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
Trait Implementations
fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
) -> bool
fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
) -> bool
fn ne(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails
) -> bool
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more