interface EksOptimizedImageProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.EksOptimizedImageProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#EksOptimizedImageProps |
Java | software.amazon.awscdk.services.eks.EksOptimizedImageProps |
Python | aws_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
Name | Type | Description |
---|---|---|
cpu | Cpu | What cpu architecture to retrieve the image for (arm64 or x86_64). |
kubernetes | string | The Kubernetes version to use. |
node | Node | What instance type to retrieve the image for (standard or GPU-optimized). |
cpuArch?
Type:
Cpu
(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:
Node
(optional, default: NodeType.STANDARD)
What instance type to retrieve the image for (standard or GPU-optimized).