Show / Hide Table of Contents

Class CfnClusterPropsMixin.RemoteNetworkConfigProperty

The configuration in the cluster for EKS Hybrid Nodes.

Inheritance
object
CfnClusterPropsMixin.RemoteNetworkConfigProperty
Implements
CfnClusterPropsMixin.IRemoteNetworkConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.EKS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnClusterPropsMixin.RemoteNetworkConfigProperty : CfnClusterPropsMixin.IRemoteNetworkConfigProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.RemoteNetworkConfigProperty Implements CfnClusterPropsMixin.IRemoteNetworkConfigProperty
Remarks

You can add, change, or remove this configuration after the cluster is created.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenetworkconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.EKS;

             var remoteNetworkConfigProperty = new RemoteNetworkConfigProperty {
                 RemoteNodeNetworks = new [] { new RemoteNodeNetworkProperty {
                     Cidrs = new [] { "cidrs" }
                 } },
                 RemotePodNetworks = new [] { new RemotePodNetworkProperty {
                     Cidrs = new [] { "cidrs" }
                 } }
             };

Synopsis

Constructors

RemoteNetworkConfigProperty()

The configuration in the cluster for EKS Hybrid Nodes.

Properties

RemoteNodeNetworks

The list of network CIDRs that can contain hybrid nodes.

RemotePodNetworks

The list of network CIDRs that can contain pods that run Kubernetes webhooks on hybrid nodes.

Constructors

RemoteNetworkConfigProperty()

The configuration in the cluster for EKS Hybrid Nodes.

public RemoteNetworkConfigProperty()
Remarks

You can add, change, or remove this configuration after the cluster is created.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenetworkconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.EKS;

             var remoteNetworkConfigProperty = new RemoteNetworkConfigProperty {
                 RemoteNodeNetworks = new [] { new RemoteNodeNetworkProperty {
                     Cidrs = new [] { "cidrs" }
                 } },
                 RemotePodNetworks = new [] { new RemotePodNetworkProperty {
                     Cidrs = new [] { "cidrs" }
                 } }
             };

Properties

RemoteNodeNetworks

The list of network CIDRs that can contain hybrid nodes.

public object? RemoteNodeNetworks { get; set; }
Property Value

object

Remarks

These CIDR blocks define the expected IP address range of the hybrid nodes that join the cluster. These blocks are typically determined by your network administrator.

Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example, 10.2.0.0/16 ).

It must satisfy the following requirements:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenetworkconfig.html#cfn-eks-cluster-remotenetworkconfig-remotenodenetworks

    Type union: either IResolvable or (either IResolvable or CfnClusterPropsMixin.IRemoteNodeNetworkProperty)[]

    RemotePodNetworks

    The list of network CIDRs that can contain pods that run Kubernetes webhooks on hybrid nodes.

    public object? RemotePodNetworks { get; set; }
    Property Value

    object

    Remarks

    These CIDR blocks are determined by configuring your Container Network Interface (CNI) plugin. We recommend the Calico CNI or Cilium CNI. Note that the Amazon VPC CNI plugin for Kubernetes isn't available for on-premises and edge locations.

    Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example, 10.2.0.0/16 ).

    It must satisfy the following requirements:

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenetworkconfig.html#cfn-eks-cluster-remotenetworkconfig-remotepodnetworks

      Type union: either IResolvable or (either IResolvable or CfnClusterPropsMixin.IRemotePodNetworkProperty)[]

      Implements

      CfnClusterPropsMixin.IRemoteNetworkConfigProperty
      Back to top Generated by DocFX