Struct aws_sdk_eks::types::builders::UpdateTaintsPayloadBuilder
source · #[non_exhaustive]pub struct UpdateTaintsPayloadBuilder { /* private fields */ }Expand description
A builder for UpdateTaintsPayload.
Implementations§
source§impl UpdateTaintsPayloadBuilder
impl UpdateTaintsPayloadBuilder
sourcepub fn add_or_update_taints(self, input: Taint) -> Self
pub fn add_or_update_taints(self, input: Taint) -> Self
Appends an item to add_or_update_taints.
To override the contents of this collection use set_add_or_update_taints.
Kubernetes taints to be added or updated.
sourcepub fn set_add_or_update_taints(self, input: Option<Vec<Taint>>) -> Self
pub fn set_add_or_update_taints(self, input: Option<Vec<Taint>>) -> Self
Kubernetes taints to be added or updated.
sourcepub fn get_add_or_update_taints(&self) -> &Option<Vec<Taint>>
pub fn get_add_or_update_taints(&self) -> &Option<Vec<Taint>>
Kubernetes taints to be added or updated.
sourcepub fn remove_taints(self, input: Taint) -> Self
pub fn remove_taints(self, input: Taint) -> Self
Appends an item to remove_taints.
To override the contents of this collection use set_remove_taints.
Kubernetes taints to remove.
sourcepub fn set_remove_taints(self, input: Option<Vec<Taint>>) -> Self
pub fn set_remove_taints(self, input: Option<Vec<Taint>>) -> Self
Kubernetes taints to remove.
sourcepub fn get_remove_taints(&self) -> &Option<Vec<Taint>>
pub fn get_remove_taints(&self) -> &Option<Vec<Taint>>
Kubernetes taints to remove.
sourcepub fn build(self) -> UpdateTaintsPayload
pub fn build(self) -> UpdateTaintsPayload
Consumes the builder and constructs a UpdateTaintsPayload.
Trait Implementations§
source§impl Clone for UpdateTaintsPayloadBuilder
impl Clone for UpdateTaintsPayloadBuilder
source§fn clone(&self) -> UpdateTaintsPayloadBuilder
fn clone(&self) -> UpdateTaintsPayloadBuilder
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 UpdateTaintsPayloadBuilder
impl Debug for UpdateTaintsPayloadBuilder
source§impl Default for UpdateTaintsPayloadBuilder
impl Default for UpdateTaintsPayloadBuilder
source§fn default() -> UpdateTaintsPayloadBuilder
fn default() -> UpdateTaintsPayloadBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateTaintsPayloadBuilder
impl PartialEq for UpdateTaintsPayloadBuilder
source§fn eq(&self, other: &UpdateTaintsPayloadBuilder) -> bool
fn eq(&self, other: &UpdateTaintsPayloadBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateTaintsPayloadBuilder
Auto Trait Implementations§
impl Freeze for UpdateTaintsPayloadBuilder
impl RefUnwindSafe for UpdateTaintsPayloadBuilder
impl Send for UpdateTaintsPayloadBuilder
impl Sync for UpdateTaintsPayloadBuilder
impl Unpin for UpdateTaintsPayloadBuilder
impl UnwindSafe for UpdateTaintsPayloadBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.