Interface AlbControllerProps

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:31.277Z") @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.services.eks.*;
 AlbControllerVersion albControllerVersion;
 Cluster cluster;
 Object policy;
 AlbControllerProps albControllerProps = AlbControllerProps.builder()
         .cluster(cluster)
         .version(albControllerVersion)
         // the properties below are optional
         .additionalHelmChartValues(AlbControllerHelmChartOptions.builder()
                 .enableWaf(false)
                 .enableWafv2(false)
                 .build())
         .policy(policy)
         .repository("repository")
         .build();