Interface CfnClusterPropsMixin.RemoteNetworkConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClusterPropsMixin.RemoteNetworkConfigProperty.Jsii$Proxy
Enclosing class:
CfnClusterPropsMixin

@Stability(Stable) public static interface CfnClusterPropsMixin.RemoteNetworkConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration in the cluster for EKS Hybrid Nodes.

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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.eks.*;
 RemoteNetworkConfigProperty remoteNetworkConfigProperty = RemoteNetworkConfigProperty.builder()
         .remoteNodeNetworks(List.of(RemoteNodeNetworkProperty.builder()
                 .cidrs(List.of("cidrs"))
                 .build()))
         .remotePodNetworks(List.of(RemotePodNetworkProperty.builder()
                 .cidrs(List.of("cidrs"))
                 .build()))
         .build();
 

See Also: