Struct aws_sdk_securityhub::model::AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
source · [−]#[non_exhaustive]pub struct AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails { /* private fields */ }
Expand description
>Linux-specific modifications that are applied to the container, such as Linux kernel capabilities.
Implementations
sourceimpl AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
sourcepub fn capabilities(
&self
) -> Option<&AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails>
pub fn capabilities(
&self
) -> Option<&AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails>
The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker.
sourcepub fn devices(
&self
) -> Option<&[AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails]>
pub fn devices(
&self
) -> Option<&[AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesDetails]>
The host devices to expose to the container.
sourcepub fn init_process_enabled(&self) -> bool
pub fn init_process_enabled(&self) -> bool
Whether to run an init
process inside the container that forwards signals and reaps processes.
sourcepub fn max_swap(&self) -> i32
pub fn max_swap(&self) -> i32
The total amount of swap memory (in MiB) that a container can use.
The value for the size (in MiB) of the /dev/shm volume.
sourcepub fn swappiness(&self) -> i32
pub fn swappiness(&self) -> i32
Configures the container's memory swappiness behavior. Determines how aggressively pages are swapped. The higher the value, the more aggressive the swappiness. The default is 60.
sourcepub fn tmpfs(
&self
) -> Option<&[AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails]>
pub fn tmpfs(
&self
) -> Option<&[AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails]>
The container path, mount options, and size (in MiB) of the tmpfs mount.
sourceimpl AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
.
Trait Implementations
sourceimpl Clone for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl Clone for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
sourcefn clone(
&self
) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
fn clone(
&self
) -> AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails> for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl PartialEq<AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails> for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
sourcefn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
) -> bool
fn eq(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
) -> bool
fn ne(
&self,
other: &AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
Auto Trait Implementations
impl RefUnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl Send for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl Sync for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl Unpin for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
impl UnwindSafe for AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more