#[non_exhaustive]pub struct AwsEksClusterResourcesVpcConfigDetails {
pub security_group_ids: Option<Vec<String>>,
pub subnet_ids: Option<Vec<String>>,
pub endpoint_public_access: Option<bool>,
}
Expand description
Information about the VPC configuration used by the cluster control plane.
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.security_group_ids: Option<Vec<String>>
The security groups that are associated with the cross-account elastic network interfaces that are used to allow communication between your nodes and the Amazon EKS control plane.
subnet_ids: Option<Vec<String>>
The subnets that are associated with the cluster.
endpoint_public_access: Option<bool>
Indicates whether the Amazon EKS public API server endpoint is turned on. If the Amazon EKS public API server endpoint is turned off, your cluster's Kubernetes API server can only receive requests that originate from within the cluster VPC.
Implementations§
source§impl AwsEksClusterResourcesVpcConfigDetails
impl AwsEksClusterResourcesVpcConfigDetails
sourcepub fn security_group_ids(&self) -> &[String]
pub fn security_group_ids(&self) -> &[String]
The security groups that are associated with the cross-account elastic network interfaces that are used to allow communication between your nodes and the Amazon EKS control plane.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_group_ids.is_none()
.
sourcepub fn subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
The subnets that are associated with the cluster.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .subnet_ids.is_none()
.
sourcepub fn endpoint_public_access(&self) -> Option<bool>
pub fn endpoint_public_access(&self) -> Option<bool>
Indicates whether the Amazon EKS public API server endpoint is turned on. If the Amazon EKS public API server endpoint is turned off, your cluster's Kubernetes API server can only receive requests that originate from within the cluster VPC.
source§impl AwsEksClusterResourcesVpcConfigDetails
impl AwsEksClusterResourcesVpcConfigDetails
sourcepub fn builder() -> AwsEksClusterResourcesVpcConfigDetailsBuilder
pub fn builder() -> AwsEksClusterResourcesVpcConfigDetailsBuilder
Creates a new builder-style object to manufacture AwsEksClusterResourcesVpcConfigDetails
.
Trait Implementations§
source§impl Clone for AwsEksClusterResourcesVpcConfigDetails
impl Clone for AwsEksClusterResourcesVpcConfigDetails
source§fn clone(&self) -> AwsEksClusterResourcesVpcConfigDetails
fn clone(&self) -> AwsEksClusterResourcesVpcConfigDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsEksClusterResourcesVpcConfigDetails
impl PartialEq for AwsEksClusterResourcesVpcConfigDetails
source§fn eq(&self, other: &AwsEksClusterResourcesVpcConfigDetails) -> bool
fn eq(&self, other: &AwsEksClusterResourcesVpcConfigDetails) -> bool
self
and other
values to be equal, and is used
by ==
.