Show / Hide Table of Contents

Class RemotePodNetwork

Network configuration of pods run on-premises with EKS Hybrid Nodes.

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

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.AWS.EKS;

            var remotePodNetwork = new RemotePodNetwork {
                Cidrs = new [] { "cidrs" }
            };

Synopsis

Constructors

RemotePodNetwork()

Network configuration of pods run on-premises with EKS Hybrid Nodes.

Properties

Cidrs

Specifies the list of remote pod CIDRs.

Constructors

RemotePodNetwork()

Network configuration of pods run on-premises with EKS Hybrid Nodes.

public RemotePodNetwork()
Remarks

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.AWS.EKS;

            var remotePodNetwork = new RemotePodNetwork {
                Cidrs = new [] { "cidrs" }
            };

Properties

Cidrs

Specifies the list of remote pod CIDRs.

public string[] Cidrs { get; set; }
Property Value

string[]

Remarks

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

Implements

IRemotePodNetwork
Back to top Generated by DocFX