Interface CfnCluster.ComputeConfigProperty

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

@Stability(Stable) public static interface CfnCluster.ComputeConfigProperty extends software.amazon.jsii.JsiiSerializable
Indicates the current configuration of the compute capability on your EKS Auto Mode cluster.

For example, if the capability is enabled or disabled. If the compute capability is enabled, EKS Auto Mode will create and delete EC2 Managed Instances in your AWS account. For more information, see EKS Auto Mode compute capability in the Amazon EKS User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.*;
 ComputeConfigProperty computeConfigProperty = ComputeConfigProperty.builder()
         .enabled(false)
         .nodePools(List.of("nodePools"))
         .nodeRoleArn("nodeRoleArn")
         .build();
 

See Also: