Interface EksOptimizedImageProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EksOptimizedImageProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:39.589Z")
@Stability(Stable)
public interface EksOptimizedImageProps
extends software.amazon.jsii.JsiiSerializable
Properties for EksOptimizedImage.
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.*;
EksOptimizedImageProps eksOptimizedImageProps = EksOptimizedImageProps.builder()
.cpuArch(CpuArch.ARM_64)
.kubernetesVersion("kubernetesVersion")
.nodeType(NodeType.STANDARD)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEksOptimizedImagePropsstatic final classAn implementation forEksOptimizedImageProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCpuArch
What cpu architecture to retrieve the image for (arm64 or x86_64).Default: CpuArch.X86_64
-
getKubernetesVersion
The Kubernetes version to use.Default: - The latest version
-
getNodeType
What instance type to retrieve the image for (standard or GPU-optimized).Default: NodeType.STANDARD
-
builder
- Returns:
- a
EksOptimizedImageProps.BuilderofEksOptimizedImageProps
-