aws-cdk-lib.aws_eks.EksOptimizedImageProps

interface EksOptimizedImageProps

LanguageType name
.NETAmazon.CDK.AWS.EKS.EksOptimizedImageProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awseks#EksOptimizedImageProps
Javasoftware.amazon.awscdk.services.eks.EksOptimizedImageProps
Pythonaws_cdk.aws_eks.EksOptimizedImageProps
TypeScript (source)aws-cdk-lib » aws_eks » EksOptimizedImageProps

Properties for EksOptimizedImage.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as eks } from 'aws-cdk-lib';
const eksOptimizedImageProps: eks.EksOptimizedImageProps = {
  cpuArch: eks.CpuArch.ARM_64,
  kubernetesVersion: 'kubernetesVersion',
  nodeType: eks.NodeType.STANDARD,
};

Properties

NameTypeDescription
cpuArch?CpuArchWhat cpu architecture to retrieve the image for (arm64 or x86_64).
kubernetesVersion?stringThe Kubernetes version to use.
nodeType?NodeTypeWhat instance type to retrieve the image for (standard or GPU-optimized).

cpuArch?

Type: CpuArch (optional, default: CpuArch.X86_64)

What cpu architecture to retrieve the image for (arm64 or x86_64).


kubernetesVersion?

Type: string (optional, default: The latest version)

The Kubernetes version to use.


nodeType?

Type: NodeType (optional, default: NodeType.STANDARD)

What instance type to retrieve the image for (standard or GPU-optimized).