Struct aws_sdk_eks::types::UpgradePolicyRequest
source · #[non_exhaustive]pub struct UpgradePolicyRequest {
pub support_type: Option<SupportType>,
}Expand description
The support policy to use for the cluster. Extended support allows you to remain on specific Kubernetes versions for longer. Clusters in extended support have higher costs. The default value is EXTENDED. Use STANDARD to disable extended support.
Learn more about EKS Extended Support in the EKS User Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.support_type: 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.
Implementations§
source§impl UpgradePolicyRequest
impl UpgradePolicyRequest
sourcepub fn support_type(&self) -> Option<&SupportType>
pub fn 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.
source§impl UpgradePolicyRequest
impl UpgradePolicyRequest
sourcepub fn builder() -> UpgradePolicyRequestBuilder
pub fn builder() -> UpgradePolicyRequestBuilder
Creates a new builder-style object to manufacture UpgradePolicyRequest.
Trait Implementations§
source§impl Clone for UpgradePolicyRequest
impl Clone for UpgradePolicyRequest
source§fn clone(&self) -> UpgradePolicyRequest
fn clone(&self) -> UpgradePolicyRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpgradePolicyRequest
impl Debug for UpgradePolicyRequest
source§impl PartialEq for UpgradePolicyRequest
impl PartialEq for UpgradePolicyRequest
impl StructuralPartialEq for UpgradePolicyRequest
Auto Trait Implementations§
impl Freeze for UpgradePolicyRequest
impl RefUnwindSafe for UpgradePolicyRequest
impl Send for UpgradePolicyRequest
impl Sync for UpgradePolicyRequest
impl Unpin for UpgradePolicyRequest
impl UnwindSafe for UpgradePolicyRequest
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