interface ElasticLoadBalancingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCluster.ElasticLoadBalancingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_ElasticLoadBalancingProperty |
Java | software.amazon.awscdk.services.eks.CfnCluster.ElasticLoadBalancingProperty |
Python | aws_cdk.aws_eks.CfnCluster.ElasticLoadBalancingProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCluster » ElasticLoadBalancingProperty |
Indicates the current configuration of the load balancing capability on your EKS Auto Mode cluster.
For example, if the capability is enabled or disabled. For more information, see EKS Auto Mode load balancing 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 { aws_eks as eks } from 'aws-cdk-lib';
const elasticLoadBalancingProperty: eks.CfnCluster.ElasticLoadBalancingProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Indicates if the load balancing capability is enabled on your EKS Auto Mode cluster. |
enabled?
Type:
boolean | IResolvable
(optional)
Indicates if the load balancing capability is enabled on your EKS Auto Mode cluster.
If the load balancing capability is enabled, EKS Auto Mode will create and delete load balancers in your AWS account.

.NET
Go
Java
Python
TypeScript