#[non_exhaustive]pub struct UpdateClusterConfigInput {
pub name: Option<String>,
pub resources_vpc_config: Option<VpcConfigRequest>,
pub logging: Option<Logging>,
pub client_request_token: Option<String>,
pub access_config: Option<UpdateAccessConfigRequest>,
pub upgrade_policy: Option<UpgradePolicyRequest>,
}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.name: Option<String>The name of the Amazon EKS cluster to update.
resources_vpc_config: Option<VpcConfigRequest>An object representing the VPC configuration to use for an Amazon EKS cluster.
logging: Option<Logging>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS cluster control plane logs in the Amazon EKS User Guide .
CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing.
client_request_token: Option<String>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
access_config: Option<UpdateAccessConfigRequest>The access configuration for the cluster.
upgrade_policy: Option<UpgradePolicyRequest>You can enable or disable extended support for clusters currently on standard support. You cannot disable extended support once it starts. You must enable extended support before your cluster exits standard support.
Implementations§
source§impl UpdateClusterConfigInput
impl UpdateClusterConfigInput
sourcepub fn resources_vpc_config(&self) -> Option<&VpcConfigRequest>
pub fn resources_vpc_config(&self) -> Option<&VpcConfigRequest>
An object representing the VPC configuration to use for an Amazon EKS cluster.
sourcepub fn logging(&self) -> Option<&Logging>
pub fn logging(&self) -> Option<&Logging>
Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS cluster control plane logs in the Amazon EKS User Guide .
CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn access_config(&self) -> Option<&UpdateAccessConfigRequest>
pub fn access_config(&self) -> Option<&UpdateAccessConfigRequest>
The access configuration for the cluster.
sourcepub fn upgrade_policy(&self) -> Option<&UpgradePolicyRequest>
pub fn upgrade_policy(&self) -> Option<&UpgradePolicyRequest>
You can enable or disable extended support for clusters currently on standard support. You cannot disable extended support once it starts. You must enable extended support before your cluster exits standard support.
source§impl UpdateClusterConfigInput
impl UpdateClusterConfigInput
sourcepub fn builder() -> UpdateClusterConfigInputBuilder
pub fn builder() -> UpdateClusterConfigInputBuilder
Creates a new builder-style object to manufacture UpdateClusterConfigInput.
Trait Implementations§
source§impl Clone for UpdateClusterConfigInput
impl Clone for UpdateClusterConfigInput
source§fn clone(&self) -> UpdateClusterConfigInput
fn clone(&self) -> UpdateClusterConfigInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateClusterConfigInput
impl Debug for UpdateClusterConfigInput
source§impl PartialEq for UpdateClusterConfigInput
impl PartialEq for UpdateClusterConfigInput
impl StructuralPartialEq for UpdateClusterConfigInput
Auto Trait Implementations§
impl Freeze for UpdateClusterConfigInput
impl RefUnwindSafe for UpdateClusterConfigInput
impl Send for UpdateClusterConfigInput
impl Sync for UpdateClusterConfigInput
impl Unpin for UpdateClusterConfigInput
impl UnwindSafe for UpdateClusterConfigInput
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