package awseks // Properties for EksOptimizedImage. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // eksOptimizedImageProps := &EksOptimizedImageProps{ // CpuArch: awscdk.Aws_eks.CpuArch_ARM_64, // KubernetesVersion: jsii.String("kubernetesVersion"), // NodeType: awscdk.*Aws_eks.NodeType_STANDARD, // } // type EksOptimizedImageProps struct { // What cpu architecture to retrieve the image for (arm64 or x86_64). CpuArch CpuArch `field:"optional" json:"cpuArch" yaml:"cpuArch"` // The Kubernetes version to use. KubernetesVersion *string `field:"optional" json:"kubernetesVersion" yaml:"kubernetesVersion"` // What instance type to retrieve the image for (standard or GPU-optimized). NodeType NodeType `field:"optional" json:"nodeType" yaml:"nodeType"` }