[][src]Struct rusoto_eks::KubernetesNetworkConfigResponse

pub struct KubernetesNetworkConfigResponse {
    pub service_ipv_4_cidr: Option<String>,
}

The Kubernetes network configuration for the cluster.

Fields

service_ipv_4_cidr: Option<String>

The CIDR block that Kubernetes service IP addresses are assigned from. 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 cannot be changed.

Trait Implementations

impl Clone for KubernetesNetworkConfigResponse[src]

impl Debug for KubernetesNetworkConfigResponse[src]

impl Default for KubernetesNetworkConfigResponse[src]

impl<'de> Deserialize<'de> for KubernetesNetworkConfigResponse[src]

impl PartialEq<KubernetesNetworkConfigResponse> for KubernetesNetworkConfigResponse[src]

impl StructuralPartialEq for KubernetesNetworkConfigResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.