[][src]Struct rusoto_eks::KubernetesNetworkConfigRequest

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

The Kubernetes network configuration for the cluster.

Fields

service_ipv_4_cidr: Option<String>

The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you specify a block that does not overlap with resources in other networks that are peered or connected to your VPC. The block must meet the following requirements:

  • Within one of the following private IP address blocks: 10.0.0.0/8, 172.16.0.0.0/12, or 192.168.0.0/16.

  • Doesn't overlap with any CIDR block assigned to the VPC that you selected for VPC.

  • Between /24 and /12.

You can only specify a custom CIDR block when you create a cluster and can't change this value once the cluster is created.

Trait Implementations

impl Clone for KubernetesNetworkConfigRequest[src]

impl Debug for KubernetesNetworkConfigRequest[src]

impl Default for KubernetesNetworkConfigRequest[src]

impl PartialEq<KubernetesNetworkConfigRequest> for KubernetesNetworkConfigRequest[src]

impl Serialize for KubernetesNetworkConfigRequest[src]

impl StructuralPartialEq for KubernetesNetworkConfigRequest[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> 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.