Struct aws_sdk_securityhub::model::AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails [−][src]
#[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails {
pub container_path: Option<String>,
pub mount_options: Option<Vec<String>>,
pub size: i32,
}
Expand description
The container path, mount options, and size (in MiB) of a tmpfs mount.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.container_path: Option<String>
The absolute file path where the tmpfs volume is to be mounted.
mount_options: Option<Vec<String>>
The list of tmpfs volume mount options.
size: i32
The maximum size (in MiB) of the tmpfs volume.
Implementations
Creates a new builder-style object to manufacture AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails
Trait Implementations
fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails
) -> bool
fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails
) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails
) -> bool
fn ne(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails
) -> 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