Struct aws_sdk_ecs::types::builders::SystemControlBuilder
source · #[non_exhaustive]pub struct SystemControlBuilder { /* private fields */ }
Expand description
A builder for SystemControl
.
Implementations§
source§impl SystemControlBuilder
impl SystemControlBuilder
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespaced kernel parameter to set a value
for.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespaced kernel parameter to set a value
for.
sourcepub fn get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
The namespaced kernel parameter to set a value
for.
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
The value for the namespaced kernel parameter that's specified in namespace
.
sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
The value for the namespaced kernel parameter that's specified in namespace
.
sourcepub fn get_value(&self) -> &Option<String>
pub fn get_value(&self) -> &Option<String>
The value for the namespaced kernel parameter that's specified in namespace
.
sourcepub fn build(self) -> SystemControl
pub fn build(self) -> SystemControl
Consumes the builder and constructs a SystemControl
.
Trait Implementations§
source§impl Clone for SystemControlBuilder
impl Clone for SystemControlBuilder
source§fn clone(&self) -> SystemControlBuilder
fn clone(&self) -> SystemControlBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SystemControlBuilder
impl Debug for SystemControlBuilder
source§impl Default for SystemControlBuilder
impl Default for SystemControlBuilder
source§fn default() -> SystemControlBuilder
fn default() -> SystemControlBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SystemControlBuilder> for SystemControlBuilder
impl PartialEq<SystemControlBuilder> for SystemControlBuilder
source§fn eq(&self, other: &SystemControlBuilder) -> bool
fn eq(&self, other: &SystemControlBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SystemControlBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SystemControlBuilder
impl Send for SystemControlBuilder
impl Sync for SystemControlBuilder
impl Unpin for SystemControlBuilder
impl UnwindSafe for SystemControlBuilder
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
Mutably borrows from an owned value. Read more