Interface AddonReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AddonReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-15T14:51:57.202Z")
@Stability(Stable)
public interface AddonReference
extends software.amazon.jsii.JsiiSerializable
A reference to a Addon resource.
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.*; AddonReference addonReference = AddonReference.builder() .addonArn("addonArn") .addonName("addonName") .clusterName("clusterName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forAddonReference
static final class
An implementation forAddonReference
-
Method Summary
Modifier and TypeMethodDescriptionstatic AddonReference.Builder
builder()
The ARN of the Addon resource.The AddonName of the Addon resource.The ClusterName of the Addon resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddonArn
The ARN of the Addon resource. -
getAddonName
The AddonName of the Addon resource. -
getClusterName
The ClusterName of the Addon resource. -
builder
- Returns:
- a
AddonReference.Builder
ofAddonReference
-