Interface AlbControllerProps

All Superinterfaces:
AlbControllerOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AlbControllerProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-23T18:58:18.889Z") @Stability(Stable) public interface AlbControllerProps extends software.amazon.jsii.JsiiSerializable, AlbControllerOptions
Properties for AlbController.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.eks_v2.*;
 Object additionalHelmChartValues;
 AlbControllerVersion albControllerVersion;
 Cluster cluster;
 Object policy;
 AlbControllerProps albControllerProps = AlbControllerProps.builder()
         .cluster(cluster)
         .version(albControllerVersion)
         // the properties below are optional
         .additionalHelmChartValues(Map.of(
                 "additionalHelmChartValuesKey", additionalHelmChartValues))
         .overwriteServiceAccount(false)
         .policy(policy)
         .removalPolicy(RemovalPolicy.DESTROY)
         .repository("repository")
         .build();