Interface HelmChartProps
- All Superinterfaces:
HelmChartOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HelmChartProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:51.327Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHelmChartPropsstatic final classAn implementation forHelmChartProps -
Method Summary
Modifier and TypeMethodDescriptionstatic HelmChartProps.Builderbuilder()The EKS cluster to apply this configuration to.Methods inherited from interface software.amazon.awscdk.services.eks.HelmChartOptions
getAtomic, getChart, getChartAsset, getCreateNamespace, getNamespace, getRelease, getRepository, getSkipCrds, getTimeout, getValues, getVersion, getWaitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCluster
The EKS cluster to apply this configuration to.[disable-awslint:ref-via-interface]
-
builder
- Returns:
- a
HelmChartProps.BuilderofHelmChartProps
-