Struct aws_sdk_eks::types::builders::UpgradePolicyResponseBuilder
source · #[non_exhaustive]pub struct UpgradePolicyResponseBuilder { /* private fields */ }Expand description
A builder for UpgradePolicyResponse.
Implementations§
source§impl UpgradePolicyResponseBuilder
impl UpgradePolicyResponseBuilder
sourcepub fn support_type(self, input: SupportType) -> Self
pub fn support_type(self, input: SupportType) -> Self
If the cluster is set to EXTENDED, it will enter extended support at the end of standard support. If the cluster is set to STANDARD, it will be automatically upgraded at the end of standard support.
Learn more about EKS Extended Support in the EKS User Guide.
sourcepub fn set_support_type(self, input: Option<SupportType>) -> Self
pub fn set_support_type(self, input: Option<SupportType>) -> Self
If the cluster is set to EXTENDED, it will enter extended support at the end of standard support. If the cluster is set to STANDARD, it will be automatically upgraded at the end of standard support.
Learn more about EKS Extended Support in the EKS User Guide.
sourcepub fn get_support_type(&self) -> &Option<SupportType>
pub fn get_support_type(&self) -> &Option<SupportType>
If the cluster is set to EXTENDED, it will enter extended support at the end of standard support. If the cluster is set to STANDARD, it will be automatically upgraded at the end of standard support.
Learn more about EKS Extended Support in the EKS User Guide.
sourcepub fn build(self) -> UpgradePolicyResponse
pub fn build(self) -> UpgradePolicyResponse
Consumes the builder and constructs a UpgradePolicyResponse.
Trait Implementations§
source§impl Clone for UpgradePolicyResponseBuilder
impl Clone for UpgradePolicyResponseBuilder
source§fn clone(&self) -> UpgradePolicyResponseBuilder
fn clone(&self) -> UpgradePolicyResponseBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpgradePolicyResponseBuilder
impl Debug for UpgradePolicyResponseBuilder
source§impl Default for UpgradePolicyResponseBuilder
impl Default for UpgradePolicyResponseBuilder
source§fn default() -> UpgradePolicyResponseBuilder
fn default() -> UpgradePolicyResponseBuilder
source§impl PartialEq for UpgradePolicyResponseBuilder
impl PartialEq for UpgradePolicyResponseBuilder
source§fn eq(&self, other: &UpgradePolicyResponseBuilder) -> bool
fn eq(&self, other: &UpgradePolicyResponseBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpgradePolicyResponseBuilder
Auto Trait Implementations§
impl Freeze for UpgradePolicyResponseBuilder
impl RefUnwindSafe for UpgradePolicyResponseBuilder
impl Send for UpgradePolicyResponseBuilder
impl Sync for UpgradePolicyResponseBuilder
impl Unpin for UpgradePolicyResponseBuilder
impl UnwindSafe for UpgradePolicyResponseBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
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>
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>
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 more