Interface HelmChartProps

All Superinterfaces:
HelmChartOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
HelmChartProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:01.702Z") @Stability(Stable) public interface HelmChartProps extends software.amazon.jsii.JsiiSerializable, HelmChartOptions
Helm Chart properties.

Example:

 Cluster cluster;
 // option 1: use a construct
 // option 1: use a construct
 HelmChart.Builder.create(this, "MyOCIChart")
         .cluster(cluster)
         .chart("some-chart")
         .repository("oci://${ACCOUNT_ID}.dkr.ecr.${ACCOUNT_REGION}.amazonaws.com/${REPO_NAME}")
         .namespace("oci")
         .version("0.0.1")
         .build();