Struct aws_sdk_eks::types::builders::UpgradePolicyRequestBuilder
source · #[non_exhaustive]pub struct UpgradePolicyRequestBuilder { /* private fields */ }Expand description
A builder for UpgradePolicyRequest.
Implementations§
source§impl UpgradePolicyRequestBuilder
impl UpgradePolicyRequestBuilder
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) -> UpgradePolicyRequest
pub fn build(self) -> UpgradePolicyRequest
Consumes the builder and constructs a UpgradePolicyRequest.
Trait Implementations§
source§impl Clone for UpgradePolicyRequestBuilder
impl Clone for UpgradePolicyRequestBuilder
source§fn clone(&self) -> UpgradePolicyRequestBuilder
fn clone(&self) -> UpgradePolicyRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpgradePolicyRequestBuilder
impl Debug for UpgradePolicyRequestBuilder
source§impl Default for UpgradePolicyRequestBuilder
impl Default for UpgradePolicyRequestBuilder
source§fn default() -> UpgradePolicyRequestBuilder
fn default() -> UpgradePolicyRequestBuilder
impl StructuralPartialEq for UpgradePolicyRequestBuilder
Auto Trait Implementations§
impl Freeze for UpgradePolicyRequestBuilder
impl RefUnwindSafe for UpgradePolicyRequestBuilder
impl Send for UpgradePolicyRequestBuilder
impl Sync for UpgradePolicyRequestBuilder
impl Unpin for UpgradePolicyRequestBuilder
impl UnwindSafe for UpgradePolicyRequestBuilder
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