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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.ComputeConfigProperty
static final class
An implementation forCfnCluster.ComputeConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Request to enable or disable the compute capability on your EKS Auto Mode cluster.Configuration for node pools that defines the compute resources for your EKS Auto Mode cluster.default String
The ARN of the IAM Role EKS will assign to EC2 Managed Instances in your EKS Auto Mode cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Request to enable or disable the compute capability on your EKS Auto Mode cluster.If the compute capability is enabled, EKS Auto Mode will create and delete EC2 Managed Instances in your AWS account.
- See Also:
-
getNodePools
Configuration for node pools that defines the compute resources for your EKS Auto Mode cluster.For more information, see EKS Auto Mode Node Pools in the Amazon EKS User Guide .
- See Also:
-
getNodeRoleArn
The ARN of the IAM Role EKS will assign to EC2 Managed Instances in your EKS Auto Mode cluster.This value cannot be changed after the compute capability of EKS Auto Mode is enabled. For more information, see the IAM Reference in the Amazon EKS User Guide .
- See Also:
-
builder
-