#[non_exhaustive]pub struct KubernetesNetworkConfigResponse {
pub service_ipv4_cidr: Option<String>,
pub service_ipv6_cidr: Option<String>,
pub ip_family: Option<IpFamily>,
}
Expand description
The Kubernetes network configuration for the cluster. The response contains a value for serviceIpv6Cidr or serviceIpv4Cidr, but not both.
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.service_ipv4_cidr: Option<String>
The CIDR block that Kubernetes Pod
and Service
object IP addresses are assigned from. Kubernetes assigns addresses from an IPv4
CIDR block assigned to a subnet that the node is in. If you didn't specify a CIDR block when you created the cluster, then Kubernetes assigns addresses from either the 10.100.0.0/16
or 172.20.0.0/16
CIDR blocks. If this was specified, then it was specified when the cluster was created and it can't be changed.
service_ipv6_cidr: Option<String>
The CIDR block that Kubernetes pod and service IP addresses are assigned from if you created a 1.21 or later cluster with version 1.10.1 or later of the Amazon VPC CNI add-on and specified ipv6
for ipFamily when you created the cluster. Kubernetes assigns service addresses from the unique local address range (fc00::/7
) because you can't specify a custom IPv6 CIDR block when you create the cluster.
ip_family: Option<IpFamily>
The IP family used to assign Kubernetes Pod
and Service
objects IP addresses. The IP family is always ipv4
, unless you have a 1.21
or later cluster running version 1.10.1
or later of the Amazon VPC CNI plugin for Kubernetes and specified ipv6
when you created the cluster.
Implementations§
source§impl KubernetesNetworkConfigResponse
impl KubernetesNetworkConfigResponse
sourcepub fn service_ipv4_cidr(&self) -> Option<&str>
pub fn service_ipv4_cidr(&self) -> Option<&str>
The CIDR block that Kubernetes Pod
and Service
object IP addresses are assigned from. Kubernetes assigns addresses from an IPv4
CIDR block assigned to a subnet that the node is in. If you didn't specify a CIDR block when you created the cluster, then Kubernetes assigns addresses from either the 10.100.0.0/16
or 172.20.0.0/16
CIDR blocks. If this was specified, then it was specified when the cluster was created and it can't be changed.
sourcepub fn service_ipv6_cidr(&self) -> Option<&str>
pub fn service_ipv6_cidr(&self) -> Option<&str>
The CIDR block that Kubernetes pod and service IP addresses are assigned from if you created a 1.21 or later cluster with version 1.10.1 or later of the Amazon VPC CNI add-on and specified ipv6
for ipFamily when you created the cluster. Kubernetes assigns service addresses from the unique local address range (fc00::/7
) because you can't specify a custom IPv6 CIDR block when you create the cluster.
sourcepub fn ip_family(&self) -> Option<&IpFamily>
pub fn ip_family(&self) -> Option<&IpFamily>
The IP family used to assign Kubernetes Pod
and Service
objects IP addresses. The IP family is always ipv4
, unless you have a 1.21
or later cluster running version 1.10.1
or later of the Amazon VPC CNI plugin for Kubernetes and specified ipv6
when you created the cluster.
source§impl KubernetesNetworkConfigResponse
impl KubernetesNetworkConfigResponse
sourcepub fn builder() -> KubernetesNetworkConfigResponseBuilder
pub fn builder() -> KubernetesNetworkConfigResponseBuilder
Creates a new builder-style object to manufacture KubernetesNetworkConfigResponse
.
Trait Implementations§
source§impl Clone for KubernetesNetworkConfigResponse
impl Clone for KubernetesNetworkConfigResponse
source§fn clone(&self) -> KubernetesNetworkConfigResponse
fn clone(&self) -> KubernetesNetworkConfigResponse
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for KubernetesNetworkConfigResponse
impl PartialEq for KubernetesNetworkConfigResponse
source§fn eq(&self, other: &KubernetesNetworkConfigResponse) -> bool
fn eq(&self, other: &KubernetesNetworkConfigResponse) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for KubernetesNetworkConfigResponse
Auto Trait Implementations§
impl Freeze for KubernetesNetworkConfigResponse
impl RefUnwindSafe for KubernetesNetworkConfigResponse
impl Send for KubernetesNetworkConfigResponse
impl Sync for KubernetesNetworkConfigResponse
impl Unpin for KubernetesNetworkConfigResponse
impl UnwindSafe for KubernetesNetworkConfigResponse
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> 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